Diff for /gforth/lib.fs between versions 1.27 and 1.35

version 1.27, 2008/07/26 20:57:05 version 1.35, 2008/08/14 09:53:13
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 [if]      require ./libffi.fs
     .( including fflib.fs [ffcall] )  [else]
     include fflib.fs      ffcall-present [if]
 [ELSE]          require ./fflib.fs
     s" libffi.so" open-lib [if]      [else]
         .( including libffi.fs )          .( Neither libffi nor ffcall are configured ) cr
         include libffi.fs          .( If you have installed one of them, you can use libffi.fs or fflib.fs directly ) cr
     [ELSE]          .( Or you can just use the new, documented and better, but different, libcc.fs ) cr
         .( Neither libffi nor ffcall are available ) cr          abort
         abort      [then]
         .( Using oldlib.fs; incompatible with fflib.fs and libffi.fs) cr  [then]
         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  0 [if]
   
 library libc libc.so.6  library libc libc.so.6
                                   

Removed from v.1.27  
changed lines
  Added in v.1.35


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