Diff for /gforth/lib.fs between versions 1.17 and 1.19

version 1.17, 2006/12/31 13:39:13 version 1.19, 2007/06/01 16:27:37
Line 24 Line 24
     [IFDEF] ffi-call      [IFDEF] ffi-call
         include libffi.fs          include libffi.fs
     [ELSE]      [ELSE]
           .( Neither libffi nor ffcall are available ) cr
           abort
           .( Using oldlib.fs; incompatible with fflib.fs and libffi.fs) cr
         include oldlib.fs          include oldlib.fs
     [THEN]      [THEN]
 [THEN]  [THEN]
   
 \ testing stuff  \ testing stuff
   
   [IFUNDEF] libc
       s" os-type" environment? [IF]
           2dup s" linux-gnu" str= [IF]  2drop
               library libc libc.so.6
           [ELSE] 2dup s" cygwin" str= [IF]  2drop
                   library libc cygwin1.dll
               [ELSE]  s" bsd" search nip nip [IF]
                       library libc libc.so
                   [THEN]
               [THEN]
           [THEN]
       [THEN]
   [THEN]
   
 [ifdef] testing  [ifdef] testing
   
 library libc libc.so.6  library libc libc.so.6

Removed from v.1.17  
changed lines
  Added in v.1.19


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