summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/libc/string/Makefile.inc3
-rw-r--r--lib/libevent/Makefile4
-rw-r--r--lib/libpcap/Makefile5
-rw-r--r--share/man/man3/Makefile7
4 files changed, 11 insertions, 8 deletions
diff --git a/lib/libc/string/Makefile.inc b/lib/libc/string/Makefile.inc
index 3cd172287b7..26e2bc10f2a 100644
--- a/lib/libc/string/Makefile.inc
+++ b/lib/libc/string/Makefile.inc
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.inc,v 1.11 2002/11/21 20:45:05 marc Exp $
+# $OpenBSD: Makefile.inc,v 1.12 2003/02/20 03:20:09 deraadt Exp $
# string sources
.PATH: ${LIBCSRCDIR}/arch/${MACHINE_ARCH}/string ${LIBCSRCDIR}/string
@@ -149,3 +149,4 @@ MLINKS+=strcmp.3 strncmp.3
MLINKS+=strcpy.3 strncpy.3
MLINKS+=strlcpy.3 strlcat.3
MLINKS+=strtok.3 strtok_r.3
+MLINKS+=strerror.3 strerror_r.3
diff --git a/lib/libevent/Makefile b/lib/libevent/Makefile
index 37d1063adf3..4e5eedc77cd 100644
--- a/lib/libevent/Makefile
+++ b/lib/libevent/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.3 2002/07/21 19:31:32 ericj Exp $
+# $OpenBSD: Makefile,v 1.4 2003/02/20 03:20:09 deraadt Exp $
LIB= event
SRCS= event.c select.c kqueue.c
@@ -10,7 +10,7 @@ MLINKS= event.3 event_init.3 event.3 event_dispatch.3 event.3 event_loop.3 \
event.3 evtimer_set.3 event.3 evtimer_add.3 event.3 \
evtimer_del.3 event.3 evtimer_pending.3 event.3 evtimer_initialized.3 \
event.3 signal_set.3 event.3 signal_add.3 event.3 signal_del.3 \
- event.3 signal_pending.3 event.3 signal_initalized.3
+ event.3 signal_pending.3 event.3 signal_initialized.3
CFLAGS+= -I${.CURDIR}
NOPIC=
diff --git a/lib/libpcap/Makefile b/lib/libpcap/Makefile
index 9555377895f..12d178175ac 100644
--- a/lib/libpcap/Makefile
+++ b/lib/libpcap/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.14 2001/11/22 12:44:29 espie Exp $
+# $OpenBSD: Makefile,v 1.15 2003/02/20 03:20:09 deraadt Exp $
# $NetBSD: Makefile,v 1.3 1996/05/10 21:54:24 cgd Exp $
LIB= pcap
@@ -12,7 +12,8 @@ MLINKS= pcap.3 pcap_open_live.3 pcap.3 pcap_open_offline.3 \
pcap_major_version.3 pcap.3 pcap_minor_version.3 pcap.3 \
pcap_stats.3 pcap.3 pcap_file.3 pcap.3 pcap_fileno.3 pcap.3 \
pcap_perror.3 pcap.3 pcap_geterr.3 pcap.3 pcap_strerror.3 \
- pcap.3 pcap_close.3 pcap.3 pcap_dump_close.3
+ pcap.3 pcap_close.3 pcap.3 pcap_dump_close.3 \
+ pcap.3 pcap_freecode.3
DEFS= -DHAVE_SYS_IOCCOM_H -DHAVE_SYS_SOCKIO_H -DHAVE_ETHER_HOSTTON \
-DHAVE_STRERROR -DHAVE_SOCKADDR_SA_LEN -DLBL_ALIGN -DHAVE_IFADDRS_H \
diff --git a/share/man/man3/Makefile b/share/man/man3/Makefile
index 13496b47a5a..a3d683c4e42 100644
--- a/share/man/man3/Makefile
+++ b/share/man/man3/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.13 2002/03/25 21:53:39 frantzen Exp $
+# $OpenBSD: Makefile,v 1.14 2003/02/20 03:20:09 deraadt Exp $
# @(#)Makefile 8.2 (Berkeley) 12/13/93
MAN= assert.3 bitstring.3 dlfcn.3 end.3 intro.3 queue.3 stdarg.3 \
@@ -43,9 +43,10 @@ MLINKS+=queue.3 SLIST_ENTRY.3 queue.3 SLIST_HEAD.3 \
queue.3 SLIST_NEXT.3 queue.3 SLIST_END.3 \
queue.3 SLIST_EMPTY.3 queue.3 SLIST_FOREACH.3 \
queue.3 SLIST_INIT.3 queue.3 SLIST_INSERT_AFTER.3 \
- queue.3 SLIST_INSERT_HEAD.3 queue.3 SLIST_REMOVE_HEAD.3
+ queue.3 SLIST_INSERT_HEAD.3 queue.3 SLIST_REMOVE_HEAD.3 \
+ queue.3 SLIST_REMOVE.3
MLINKS+=stdarg.3 varargs.3 stdarg.3 va_arg.3 stdarg.3 va_end.3
-MLINKS+=stdarg.3 va_start.3
+MLINKS+=stdarg.3 va_start.3 stdarg.3 va_copy.3
MLINKS+=dlfcn.3 dlopen.3 dlfcn.3 dlclose.3 dlfcn.3 dlsym.3 dlfcn.3 dlctl.3 \
dlfcn.3 dlerror.3
MLINKS+=tree.3 SPLAY_PROTOTYPE.3 tree.3 SPLAY_GENERATE.3 \