summaryrefslogtreecommitdiff
path: root/zwgc
diff options
context:
space:
mode:
authorGravatar Greg Hudson <ghudson@mit.edu>1994-11-12 13:13:11 +0000
committerGravatar Greg Hudson <ghudson@mit.edu>1994-11-12 13:13:11 +0000
commiteb33f9a720864863a7ba06be4f3cf9f285b680d0 (patch)
tree6daae042fd3f83531acda6a53d9011877bf30210 /zwgc
parentce829e7200cce7792244d5c688a83c06fee6a704 (diff)
NetBSD needs -lcompat for regexp routines.
Diffstat (limited to 'zwgc')
-rw-r--r--zwgc/Imakefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/zwgc/Imakefile b/zwgc/Imakefile
index 9b51a0e..e9bb77a 100644
--- a/zwgc/Imakefile
+++ b/zwgc/Imakefile
@@ -18,7 +18,11 @@ LIBS2= -lc -lPW
LIBS2 = -lgen
#endif
-LIBS = $(ZLIB) $(LIB_X) $(TERMCAP) $(LIBS2)
+#ifdef __NetBSD__
+OSLIBS=-lcompat
+#endif
+
+LIBS = $(ZLIB) $(LIB_X) $(TERMCAP) $(LIBS2) $(OSLIBS)
SRCS = port_dictionary.c pointer_dictionary.c ulong_dictionary.c \
parser.y lexer.c node.c exec.c buffer.c main.c zephyr.c X_driver.c\