Diff for /gforth/lib.fs between versions 1.23 and 1.34

version 1.23, 2008/02/12 20:28:51 version 1.34, 2008/08/08 20:56:14
Line 1 Line 1
 \ lib.fs        shared library support package          11may97py  \ lib.fs        shared library support package          11may97py
   
 \ Copyright (C) 1995,1996,1997,1998,2000,2003,2005,2006,2007 Free Software Foundation, Inc.  \ Copyright (C) 1995,1996,1997,1998,2000,2003,2005,2006,2007,2008 Free Software Foundation, Inc.
   
 \ This file is part of Gforth.  \ This file is part of Gforth.
   
Line 17 Line 17
 \ You should have received a copy of the GNU General Public License  \ You should have received a copy of the GNU General Public License
 \ along with this program. If not, see http://www.gnu.org/licenses/.  \ along with this program. If not, see http://www.gnu.org/licenses/.
   
 s" libavcall.so"     open-lib 0<>  libffi-present [if]
 s" libcallback.so"   open-lib 0<> and      require ./libffi.fs
 s" libvacall.so"     open-lib 0<> and  [else]
 s" libtrampoline.so" open-lib 0<> and [if]      ffcall-present [if]
     .( including fflib.fs [ffcall] )          require ./fflib.fs
     include fflib.fs      [else]
 [ELSE]          .( Neither libffi nor ffcall are configured ) cr
     s" libffi.so" open-lib [if]          .( If you have installed one of them, you can use libffi.fs or fflib.fs directly ) cr
         .( including libffi.fs )          .( Or you can just use the new, documented and better, but different, libcc.fs ) cr
         include libffi.fs          abort
     [ELSE]      [then]
         .( Neither libffi nor ffcall are available ) cr  [then]
         abort  
         .( Using oldlib.fs; incompatible with fflib.fs and libffi.fs) cr  
         include oldlib.fs  
     [THEN]  
 [THEN]  
   
 \ testing stuff  \ testing stuff
   
 [IFUNDEF] libc  \ [IFUNDEF] libc
     s" os-type" environment? [IF]  \     s" os-type" environment? [IF]
         2dup s" linux-gnu" str= [IF]  2drop  \       2dup s" linux-gnu" str= [IF]  2drop
             library libc libc.so.6  \           cell 8 = [IF]
         [ELSE] 2dup s" cygwin" str= [IF]  2drop  \               library libc /lib64/libc.so.6 
                 library libc cygwin1.dll  \           [ELSE]
             [ELSE]  2dup s" bsd" search nip nip [IF]  2drop  \               library libc /lib/libc.so.6
                     library libc libc.so  \           [THEN]
                 [ELSE]  2dup s" darwin" string-prefix? [IF]  2drop  \       [ELSE] 2dup s" cygwin" str= [IF]  2drop
                         library libc libc.dylib  \               library libc cygwin1.dll
                     [ELSE]  2drop \ or add your stuff here  \           [ELSE]  2dup s" bsd" search nip nip [IF]  2drop
                     [THEN]  \                   library libc libc.so
                 [THEN]  \               [ELSE]  2dup s" darwin" string-prefix? [IF]  2drop
             [THEN]  \                       library libc libc.dylib
         [THEN]  \                   [ELSE]  2drop \ or add your stuff here
     [THEN]  \                   [THEN]
 [THEN]  \               [THEN]
   \           [THEN]
   \       [THEN]
   \     [THEN]
   \ [THEN]
   
 [ifdef] testing  [ifdef] testing
   

Removed from v.1.23  
changed lines
  Added in v.1.34


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>