Diff for /gforth/lib.fs between versions 1.26 and 1.28

version 1.26, 2008/07/15 16:11:49 version 1.28, 2008/07/26 21:31:08
Line 22  s" libcallback.so"   open-lib 0<> and [i Line 22  s" libcallback.so"   open-lib 0<> and [i
     .( including fflib.fs [ffcall] )      .( including fflib.fs [ffcall] )
     include fflib.fs      include fflib.fs
 [ELSE]  [ELSE]
     s" libffi" open-lib [if]      s" libffi.so" open-lib [if]
         .( including libffi.fs )          .( including libffi.fs )
         include libffi.fs          include libffi.fs
     [ELSE]      [ELSE]
Line 38  s" libcallback.so"   open-lib 0<> and [i Line 38  s" libcallback.so"   open-lib 0<> and [i
 [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]
                   library libc /lib64/libc.so.6
               [ELSE]
                   library libc /lib/libc.so.6
               [THEN]
         [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

Removed from v.1.26  
changed lines
  Added in v.1.28


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