mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
e453411939
of the math/gsl interface. Also, cleanup Makefile patches.
23 lines
638 B
Plaintext
23 lines
638 B
Plaintext
|
|
$FreeBSD$
|
|
|
|
--- makefile_bsd.orig
|
|
+++ makefile_bsd
|
|
@@ -6,14 +6,12 @@
|
|
|
|
# the option -fno-strict-aliasing may not be available on some BSD versions
|
|
|
|
-CFLAGS = -m32 -Wall -Wno-uninitialized -fno-strict-aliasing -O2 -c -g -DREADLINE -D_BSD
|
|
+CFLAGS += -m32 -c -DREADLINE -D_BSD -DFFI
|
|
# or without readline lib
|
|
#CFLAGS = -m32 -Wall -Wno-uninitialized -Wno-strict-aliasing -O2 -c -g -D_BSD
|
|
|
|
-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
|