python-texttable: update to 1.3.1
[void-packages.git] / srcpkgs / newlisp / patches / build-fixes.patch
blob17a8e34c5870c35b30b620269521f5806608d002
1 --- makefile_linuxLP64_utf8_ffi.orig 2016-04-10 20:27:16.244225061 +0200
2 +++ makefile_linuxLP64_utf8_ffi 2016-04-10 20:27:57.323104312 +0200
3 @@ -6,19 +6,19 @@
4 OBJS = newlisp.o nl-symbol.o nl-math.o nl-list.o nl-liststr.o nl-string.o nl-filesys.o \
5 nl-sock.o nl-import.o nl-xml-json.o nl-web.o nl-matrix.o nl-debug.o nl-utf8.o pcre.o
7 -CFLAGS = -fPIC -m64 -Wall -Wno-uninitialized -Wno-strict-aliasing -Wno-long-long -c -O2 -g -DREADLINE -DSUPPORT_UTF8 -DNEWLISP64 -DLINUX -DFFI -I/usr/local/lib/libffi-3.0.13/include
8 +CFLAGS += -fPIC -Wall -Wno-uninitialized -Wno-strict-aliasing -Wno-long-long -c -g -DREADLINE -DSUPPORT_UTF8 -DNEWLISP64 -DLINUX -DFFI
10 # replace -O2 with -Oz when using clang/llvm
11 #CC = clang
13 -CC = gcc
14 +CC ?= gcc
16 default: $(OBJS)
17 $(CC) $(OBJS) -m64 -g -lm -ldl -lreadline -lffi -o newlisp # for UBUNTU Debian
18 # $(CC) $(OBJS) -m64 -g -lm -ldl -lreadline -ltermcap -o newlisp # slackware
19 # $(CC) $(OBJS) -m64 -g -lm -ldl -lreadline -lncurses -o newlisp # other Linux Dist
20 # $(CC) $(OBJS) -m64 -g -lm -ldl -o newlisp # without readline support
21 - strip newlisp
22 +# strip newlisp
24 .c.o:
25 $(CC) $(CFLAGS) $<
26 --- makefile_linuxLP64_utf8_ffi.orig 2016-04-10 20:30:01.588730930 +0200
27 +++ makefile_linuxLP64_utf8_ffi 2016-04-10 20:30:33.211641988 +0200
28 @@ -14,7 +14,7 @@ CFLAGS += -fPIC -Wall -Wno-uninitialized
29 CC ?= gcc
31 default: $(OBJS)
32 - $(CC) $(OBJS) -m64 -g -lm -ldl -lreadline -lffi -o newlisp # for UBUNTU Debian
33 + $(CC) $(OBJS) $(LDFLAGS) -lm -ldl -lreadline -lffi -o newlisp # for UBUNTU Debian
34 # $(CC) $(OBJS) -m64 -g -lm -ldl -lreadline -ltermcap -o newlisp # slackware
35 # $(CC) $(OBJS) -m64 -g -lm -ldl -lreadline -lncurses -o newlisp # other Linux Dist
36 # $(CC) $(OBJS) -m64 -g -lm -ldl -o newlisp # without readline support