Diff for /gforth/lib.fs between versions 1.24 and 1.36

version 1.24, 2008/04/22 14:50:59 version 1.36, 2008/10/09 20:57:43
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" 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              library libc libc.so.6 
         [ELSE] 2dup s" cygwin" str= [IF]  2drop          [ELSE] 2dup s" cygwin" str= [IF]  2drop
                 library libc cygwin1.dll                  library libc cygwin1.dll
             [ELSE]  2dup s" bsd" search nip nip [IF]  2drop              [ELSE]  2dup s" bsd" search nip nip [IF]  2drop
Line 55  s" libtrampoline.so" open-lib 0<> and [i Line 50  s" libtrampoline.so" open-lib 0<> and [i
     [THEN]      [THEN]
 [THEN]  [THEN]
   
 [ifdef] testing  0 [if]
   
 library libc libc.so.6  library libc libc.so.6
                                   

Removed from v.1.24  
changed lines
  Added in v.1.36


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