diff options
author | jtb <jtb> | 2001-02-20 20:03:53 +0000 |
---|---|---|
committer | jtb <jtb> | 2001-02-20 20:03:53 +0000 |
commit | cae3d6f619aa796bde7ba66d3bda02ad5a0f9886 (patch) | |
tree | 4114ade79f38f85d3ef8fc0dc118d447870a57b6 /lang/swi-prolog/patches | |
parent | e1f8d00aaa41b54a0cde666bb92b4dcd77e95b3c (diff) | |
download | pkgsrc-cae3d6f619aa796bde7ba66d3bda02ad5a0f9886.tar.gz |
Initial import of swi-prolog:
ISO/Edinburgh-style Prolog compiler. Compliant with Part 1 of the ISO
standard for Prolog. Covers all traditional Edinburgh Prolog features
and shares many features with Quintus and SICStus Prolog, including a
compatible module system. Very fast compiler, garbage collection (also
on atoms), fast and powerful C/C++ interface, autoloading,
GNU-readline interface. SWI-Prolog supports architectures with 32-bit
or greater (64-bit) word-length. Packages for process management,
TCP/IP, XML/SGML, RDF, and the GUI toolkit XPCE, are also available.
Diffstat (limited to 'lang/swi-prolog/patches')
-rw-r--r-- | lang/swi-prolog/patches/patch-aa | 30 | ||||
-rw-r--r-- | lang/swi-prolog/patches/patch-ab | 13 |
2 files changed, 43 insertions, 0 deletions
diff --git a/lang/swi-prolog/patches/patch-aa b/lang/swi-prolog/patches/patch-aa new file mode 100644 index 00000000000..daf170c221e --- /dev/null +++ b/lang/swi-prolog/patches/patch-aa @@ -0,0 +1,30 @@ +$NetBSD: patch-aa,v 1.1.1.1 2001/02/20 20:03:53 jtb Exp $ + +--- src/Makefile.in.orig Thu Feb 15 08:05:34 2001 ++++ src/Makefile.in +@@ -70,6 +70,7 @@ + CMFLAGS=@CMFLAGS@ + CFLAGS= $(CWFLAGS) $(COFLAGS) $(CIFLAGS) $(CMFLAGS) + LDFLAGS=@LDFLAGS@ ++CPPFLAGS=@CPPFLAGS@ + + PLFOREIGN=@PLFOREIGN@ + +@@ -132,7 +133,7 @@ + swipl swiplbin + + .c.o: +- $(CC) -c -I. -I$(srcdir) -I$(srcdir)/rc $(CFLAGS) $< @COUTOPT@ ++ $(CC) -c -I. -I$(srcdir) -I$(srcdir)/rc $(CPPFLAGS) $(CFLAGS) $< @COUTOPT@ + + system: $(PL) + startup: $(STARTUPPATH) +@@ -222,7 +223,7 @@ + ar x `$(CC) -print-libgcc-file-name` $@ + + plld: $(srcdir)/plld.c +- $(CC) -I. -I$(srcdir) $(CFLAGS) -o $@ $(srcdir)/plld.c ++ $(CC) -I. -I$(srcdir) $(CPPFLAGS) $(CFLAGS) -o $@ $(srcdir)/plld.c + + tags: $(srcdir)/TAGS + diff --git a/lang/swi-prolog/patches/patch-ab b/lang/swi-prolog/patches/patch-ab new file mode 100644 index 00000000000..5c35cacaa92 --- /dev/null +++ b/lang/swi-prolog/patches/patch-ab @@ -0,0 +1,13 @@ +$NetBSD: patch-ab,v 1.1.1.1 2001/02/20 20:03:53 jtb Exp $ + +--- src/configure.in.orig Thu Feb 15 12:42:14 2001 ++++ src/configure.in +@@ -30,7 +30,7 @@ + + EXTRAOBJ="" + INSTALLTARGET=dv-install +-PL=pl ++dnl PL=pl + RT="" + PLVERSION=`cat ../VERSION` + |