1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-15 03:14:23 +00:00
freebsd-ports/x11/xstroke/files/patch-Imakefile
Baptiste Daroussin 9548120fa7 revert r412141
On FreeBSD 9 the dependency syntax used here will use the "old yacc" which is in
in base and not byacc from ports which does not support %pure_parser.

Dropping bison as a build dependency is not worth a more complex syntax
2016-03-30 06:48:08 +00:00

16 lines
665 B
Plaintext

--- Imakefile.orig Tue Dec 11 06:17:11 2001
+++ Imakefile Wed Nov 10 22:08:24 2004
@@ -1,9 +1,10 @@
#define IHaveSubdirs
SUBDIRS=etc
-CDEBUGFLAGS=-g -ansi -ansi-error -Wall -pedantic
+EXTRA_DEFINES=$(CPPFLAGS) $(XFTINCLUDES)
YFLAGS=-d
-LOCAL_LIBRARIES=$(XTESTLIB) $(XLIB) $(XRENDERLIB) $(XFTLIB) -lm -ldl -lpthread
+LOCAL_LIBRARIES=$(XTESTLIB) $(XLIB) $(XRENDERLIB) $(XFTLIB) -lm $(LDFLAGS)
FLEX=flex
+YACC=bison -y
OBJS=xstroke.o args.o backing.o bresenham.o brush.o control_win.o stroke.o matrix.o \
action.o action_item.o feature.o gesture.o log.o option.o sprintf_alloc.o \
rec.o rec_callback.o rec_history.o rec_lex.o rec_mode.o rec_parse.o \