summaryrefslogtreecommitdiff
path: root/lang/newlisp-devel/files/patch-makefile_bsd_utf8
diff options
context:
space:
mode:
Diffstat (limited to 'lang/newlisp-devel/files/patch-makefile_bsd_utf8')
-rw-r--r--lang/newlisp-devel/files/patch-makefile_bsd_utf822
1 files changed, 22 insertions, 0 deletions
diff --git a/lang/newlisp-devel/files/patch-makefile_bsd_utf8 b/lang/newlisp-devel/files/patch-makefile_bsd_utf8
new file mode 100644
index 000000000000..73a27ac4b7b0
--- /dev/null
+++ b/lang/newlisp-devel/files/patch-makefile_bsd_utf8
@@ -0,0 +1,22 @@
+
+$FreeBSD$
+
+--- makefile_bsd_utf8.orig
++++ makefile_bsd_utf8
+@@ -4,14 +4,12 @@
+ OBJS = newlisp.o nl-symbol.o nl-math.o nl-list.o nl-liststr.o nl-string.o nl-filesys.o \
+ nl-sock.o nl-import.o nl-xml.o nl-web.o nl-matrix.o nl-debug.o nl-utf8.o pcre.o
+
+-CFLAGS = -m32 -Wall -Wno-uninitialized -fno-strict-aliasing -O2 -c -g -DREADLINE -D_BSD -DSUPPORT_UTF8
++CFLAGS += -m32 -c -DREADLINE -D_BSD -DSUPPORT_UTF8 -DFFI
+ # or without readline lib
+ #CFLAGS = -m32 -Wall -Wno-uninitialized -fno-strict-aliasing -O2 -c -g -D_BSD -DSUPPORT_UTF8
+
+-CC = gcc
+-
+ default: $(OBJS)
+- $(CC) $(OBJS) -m32 -g -lm -lreadline -lncurses -o newlisp
++ $(CC) $(LDFLAGS) $(OBJS) -m32 -lm -lreadline -lncurses -lffi -o newlisp
+ # or without readline lib
+ # $(CC) $(OBJS) -m32 -g -lm -o newlisp
+ strip newlisp