summaryrefslogtreecommitdiffstats
path: root/pcap
diff options
context:
space:
mode:
authorlaforge <laforge>2003-08-11 19:46:36 +0000
committerlaforge <laforge>2003-08-11 19:46:36 +0000
commitc21b7fa0c01a99655d422bdc9503422c45c1ce2d (patch)
tree4a5857f1411177e3c07f83f81db0b85734a13f7f /pcap
parente16c44bbb01342e1cf2c42e727833c82668dcc94 (diff)
explicitly link against dynamic libs (Joerg Wendland)
Diffstat (limited to 'pcap')
-rw-r--r--pcap/Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/pcap/Makefile.in b/pcap/Makefile.in
index edbdbdf..76d4caa 100644
--- a/pcap/Makefile.in
+++ b/pcap/Makefile.in
@@ -14,7 +14,7 @@ all: $(SHARED_LIBS)
distrib:
$(SHARED_LIBS): %.so: %_sh.o
- ld -shared -o $@ $<
+ ld -shared -o $@ $< -lc -lpcap
%_sh.o: %.c
$(CC) $(SH_CFLAGS) -o $@ -c $<