summaryrefslogtreecommitdiff
path: root/lang/newlisp/files/patch-makefile_bsd_utf8
diff options
context:
space:
mode:
Diffstat (limited to 'lang/newlisp/files/patch-makefile_bsd_utf8')
-rw-r--r--lang/newlisp/files/patch-makefile_bsd_utf824
1 files changed, 10 insertions, 14 deletions
diff --git a/lang/newlisp/files/patch-makefile_bsd_utf8 b/lang/newlisp/files/patch-makefile_bsd_utf8
index d6d77d394122..b8de5757737b 100644
--- a/lang/newlisp/files/patch-makefile_bsd_utf8
+++ b/lang/newlisp/files/patch-makefile_bsd_utf8
@@ -1,23 +1,19 @@
---- makefile_bsd_utf8.orig Wed Sep 13 17:33:18 2006
-+++ makefile_bsd_utf8 Wed Sep 13 17:33:47 2006
-@@ -4,16 +4,16 @@
+--- makefile_bsd_utf8.orig 2009-06-22 04:48:53.000000000 +0400
++++ makefile_bsd_utf8 2009-07-03 14:32:08.000000000 +0400
+@@ -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 = -Wall -Wno-uninitialized -O2 -c -g -DREADLINE -D_BSD -DSUPPORT_UTF8
+-CFLAGS = -m32 -Wall -Wno-uninitialized -fno-strict-aliasing -O2 -c -g -DREADLINE -D_BSD -DSUPPORT_UTF8
+CFLAGS += -c -DREADLINE -D_BSD -DSUPPORT_UTF8
- # for netBSD use following line
- #CFLAGS = -Wall -Wno-uninitialized -O2 -c -g -D_BSD
+ # or without readline lib
+ #CFLAGS = -m32 -Wall -Wno-uninitialized -fno-strict-aliasing -O2 -c -g -D_BSD -DSUPPORT_UTF8
-CC = gcc
-+#CC = gcc
-
+-
default: $(OBJS)
-- $(CC) $(OBJS) -g -lm -lreadline -lncurses -o newlisp
+- $(CC) $(OBJS) -m32 -g -lm -lreadline -lncurses -o newlisp
+ $(CC) $(OBJS) -lm -lreadline -lncurses -o newlisp
- # for netBSD use following line
--# $(CC) $(OBJS) -g -lm -o newlisp
-+# $(CC) $(OBJS) -lm -o newlisp
+ # or without readline lib
+ # $(CC) $(OBJS) -m32 -g -lm -o newlisp
strip newlisp
-
- .c.o: