diff options
author | 2001-11-12 00:58:57 +0000 | |
---|---|---|
committer | 2001-11-12 00:58:57 +0000 | |
commit | 7c7f9d68b14db96a5bc510b115404a16d47e7ea7 (patch) | |
tree | 0989f1a63c18701d691a931e8577aa006c6f9dcc | |
parent | signal race fixes (diff) | |
download | wireguard-openbsd-7c7f9d68b14db96a5bc510b115404a16d47e7ea7.tar.xz wireguard-openbsd-7c7f9d68b14db96a5bc510b115404a16d47e7ea7.zip |
add missing -lpcap, lost in resurection of the file
-rw-r--r-- | regress/lib/libc_r/pcap/Makefile | 4 | ||||
-rw-r--r-- | regress/lib/libpthread/pcap/Makefile | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/regress/lib/libc_r/pcap/Makefile b/regress/lib/libc_r/pcap/Makefile index 4178e00d368..05adefc51d9 100644 --- a/regress/lib/libc_r/pcap/Makefile +++ b/regress/lib/libc_r/pcap/Makefile @@ -1,6 +1,8 @@ -# $OpenBSD: Makefile,v 1.3 2001/11/11 20:20:53 marc Exp $ +# $OpenBSD: Makefile,v 1.4 2001/11/12 00:58:57 marc Exp $ PROG= pcap SRCS= pcap.c +LDADD+= -lpcap + .include <bsd.prog.mk> diff --git a/regress/lib/libpthread/pcap/Makefile b/regress/lib/libpthread/pcap/Makefile index 4178e00d368..05adefc51d9 100644 --- a/regress/lib/libpthread/pcap/Makefile +++ b/regress/lib/libpthread/pcap/Makefile @@ -1,6 +1,8 @@ -# $OpenBSD: Makefile,v 1.3 2001/11/11 20:20:53 marc Exp $ +# $OpenBSD: Makefile,v 1.4 2001/11/12 00:58:57 marc Exp $ PROG= pcap SRCS= pcap.c +LDADD+= -lpcap + .include <bsd.prog.mk> |