diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1999-11-17 05:22:46 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1999-11-17 05:22:46 +0000 |
commit | d0f5340a88a02e555eec4b10eb38fe1ca436467d (patch) | |
tree | 9ceeb78a1e95c4db66e1d998063dd8dda9479f31 | |
parent | 65e317faa1755553c19003a9789b12bfe4b2d7fc (diff) |
Add missing MLINKs
-rw-r--r-- | lib/libc/crypt/Makefile.inc | 6 | ||||
-rw-r--r-- | lib/libc/db/man/Makefile.inc | 5 | ||||
-rw-r--r-- | lib/libc/gen/Makefile.inc | 4 | ||||
-rw-r--r-- | lib/libc/hash/Makefile.inc | 10 | ||||
-rw-r--r-- | lib/libc/net/Makefile.inc | 3 | ||||
-rw-r--r-- | lib/libc/regex/Makefile.inc | 4 | ||||
-rw-r--r-- | lib/libc/stdlib/Makefile.inc | 3 | ||||
-rw-r--r-- | lib/libc/time/Makefile.inc | 3 |
8 files changed, 24 insertions, 14 deletions
diff --git a/lib/libc/crypt/Makefile.inc b/lib/libc/crypt/Makefile.inc index 068172d8ebb..e64117fbd71 100644 --- a/lib/libc/crypt/Makefile.inc +++ b/lib/libc/crypt/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.12 1999/02/26 00:54:00 deraadt Exp $ +# $OpenBSD: Makefile.inc,v 1.13 1999/11/17 05:22:36 millert Exp $ .PATH: ${LIBCSRCDIR}/arch/${MACHINE_ARCH}/crypt ${LIBCSRCDIR}/crypt @@ -8,5 +8,7 @@ SRCS+= bcrypt.c skipjack.c MAN+= crypt.3 blowfish.3 arc4random.3 MLINKS+=crypt.3 encrypt.3 crypt.3 setkey.3 crypt.3 des_cipher.3 MLINKS+=crypt.3 des_setkey.3 blowfish.3 blf_key.3 blowfish.3 blf_enc.3 -MLINKS+=blowfish.3 blf_dec.3 +MLINKS+=blowfish.3 blf_dec.3 blowfish.3 blf_ecb_encrypt.3 +MLINKS+=blowfish.3 blf_ecb_decrypt.3 blowfish.3 blf_cbc_encrypt.3 +MLINKS+=blowfish.3 blf_cbc_decrypt.3 MLINKS+=arc4random.3 arc4random_stir.3 arc4random.3 arc4random_addrandom.3 diff --git a/lib/libc/db/man/Makefile.inc b/lib/libc/db/man/Makefile.inc index ef58ed8fcce..1e74ea44bc6 100644 --- a/lib/libc/db/man/Makefile.inc +++ b/lib/libc/db/man/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.9 1999/04/18 17:08:10 millert Exp $ +# $OpenBSD: Makefile.inc,v 1.10 1999/11/17 05:22:37 millert Exp $ .PATH: ${LIBCSRCDIR}/db/man @@ -6,6 +6,9 @@ MAN+= btree.3 dbm.3 dbopen.3 hash.3 mpool.3 ndbm.3 recno.3 MLINKS+= dbopen.3 db.3 MLINKS+= dbm.3 dbminit.3 dbm.3 dbmclose.3 dbm.3 fetch.3 dbm.3 store.3 MLINKS+= dbm.3 delete.3 dbm.3 firstkey.3 dbm.3 nextkey.3 +MLINKS+= mpool.3 mpool_open.3 mpool.3 mpool_filter.3 mpool.3 mpool_new.3 +MLINKS+= mpool.3 mpool_delete.3 mpool.3 mpool_get.3 mpool.3 mpool_put.3 +MLINKS+= mpool.3 mpool_sync.3 mpool.3 mpool_close.3 MLINKS+= ndbm.3 dbm_clearerr.3 ndbm.3 dbm_close.3 ndbm.3 dbm_delete.3 MLINKS+= ndbm.3 dbm_dirfno.3 ndbm.3 dbm_error.3 ndbm.3 dbm_fetch.3 MLINKS+= ndbm.3 dbm_firstkey.3 ndbm.3 dbm_nextkey.3 ndbm.3 dbm_open.3 diff --git a/lib/libc/gen/Makefile.inc b/lib/libc/gen/Makefile.inc index 45388bd6d83..3c7937a222b 100644 --- a/lib/libc/gen/Makefile.inc +++ b/lib/libc/gen/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.20 1999/08/16 23:24:00 deraadt Exp $ +# $OpenBSD: Makefile.inc,v 1.21 1999/11/17 05:22:38 millert Exp $ # gen sources .PATH: ${LIBCSRCDIR}/arch/${MACHINE_ARCH}/gen ${LIBCSRCDIR}/gen @@ -100,5 +100,5 @@ MLINKS+=syslog.3 closelog.3 syslog.3 openlog.3 syslog.3 setlogmask.3 \ syslog.3 vsyslog.3 MLINKS+=tolower.3 _tolower.3 MLINKS+=toupper.3 _toupper.3 -MLINKS+=ttyname.3 isatty.3 ttyname.3 ttyslot.3 +MLINKS+=ttyname.3 ttyname_r.3 ttyname.3 isatty.3 ttyname.3 ttyslot.3 MLINKS+=vis.3 strvis.3 vis.3 strvisx.3 unvis.3 strunvis.3 diff --git a/lib/libc/hash/Makefile.inc b/lib/libc/hash/Makefile.inc index e40edc01b8d..699ebb0d008 100644 --- a/lib/libc/hash/Makefile.inc +++ b/lib/libc/hash/Makefile.inc @@ -1,11 +1,13 @@ -# $OpenBSD: Makefile.inc,v 1.6 1998/11/20 11:18:41 d Exp $ +# $OpenBSD: Makefile.inc,v 1.7 1999/11/17 05:22:40 millert Exp $ # hash functions .PATH: ${LIBCSRCDIR}/hash SRCS+= sha1.c sha1hl.c rmd160.c rmd160hl.c MAN+= sha1.3 rmd160.3 -MLINKS+=sha1.3 SHA1Init.3 -MLINKS+=sha1.3 SHA1Update.3 -MLINKS+=sha1.3 SHA1Final.3 +MLINKS+=sha1.3 SHA1Init.3 sha1.3 SHA1Update.3 sha1.3 SHA1Final.3 +MLINKS+=sha1.3 SHA1End.3 sha1.3 SHA1File.3 sha1.3 SHA1Data.3 MLINKS+=sha1.3 SHA1Transform.3 +MLINKS+=rmd160.3 RMD160Init.3 rmd160.3 RMD160Update.3 rmd160.3 RMD160Final.3 +MLINKS+=rmd160.3 RMD160End.3 rmd160.3 RMD160File.3 rmd160.3 RMD160Data.3 +MLINKS+=rmd160.3 RMD160Transform.3 diff --git a/lib/libc/net/Makefile.inc b/lib/libc/net/Makefile.inc index 22270bc24ee..95f937a3207 100644 --- a/lib/libc/net/Makefile.inc +++ b/lib/libc/net/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.24 1999/07/03 21:43:12 deraadt Exp $ +# $OpenBSD: Makefile.inc,v 1.25 1999/11/17 05:22:41 millert Exp $ # net sources .PATH: ${LIBCSRCDIR}/arch/${MACHINE_ARCH}/net ${LIBCSRCDIR}/net @@ -55,6 +55,7 @@ MLINKS+=inet.3 addr.3 inet.3 inet_addr.3 inet.3 inet_aton.3 \ inet.3 inet_lnaof.3 inet.3 inet_makeaddr.3 inet.3 inet_netof.3 \ inet.3 inet_network.3 inet.3 inet_ntoa.3 inet.3 network.3 \ inet.3 ntoa.3 inet.3 inet_ntop.3 inet.3 inet_pton.3 +MLINKS+=inet_net.3 inet_net_ntop.3 inet_net.3 inet_net_pton.3 MLINKS+=iso_addr.3 iso_ntoa.3 MLINKS+=link_addr.3 link_ntoa.3 MLINKS+=ipx.3 ipx_addr.3 ipx.3 ipx_ntoa.3 diff --git a/lib/libc/regex/Makefile.inc b/lib/libc/regex/Makefile.inc index 4a786818f42..0676e384190 100644 --- a/lib/libc/regex/Makefile.inc +++ b/lib/libc/regex/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.4 1998/11/20 11:18:46 d Exp $ +# $OpenBSD: Makefile.inc,v 1.5 1999/11/17 05:22:43 millert Exp $ # @(#)Makefile.inc 8.1 (Berkeley) 6/4/93 # regex sources @@ -11,4 +11,4 @@ SRCS+= regcomp.c regerror.c regexec.c regfree.c MAN+= regex.3 re_format.7 MLINKS+=regex.3 regcomp.3 regex.3 regexec.3 regex.3 regerror.3 -MLINKS+=regexec.3 regfree.3 +MLINKS+=regex.3 regsub.3 regexec.3 regfree.3 diff --git a/lib/libc/stdlib/Makefile.inc b/lib/libc/stdlib/Makefile.inc index aa811dd9e34..20c2e394e87 100644 --- a/lib/libc/stdlib/Makefile.inc +++ b/lib/libc/stdlib/Makefile.inc @@ -41,7 +41,8 @@ MLINKS+=getenv.3 setenv.3 getenv.3 unsetenv.3 getenv.3 putenv.3 MLINKS+=malloc.3 free.3 malloc.3 realloc.3 malloc.3 calloc.3 MLINKS+=malloc.3 cfree.3 malloc.3 malloc.conf.5 MLINKS+=qsort.3 heapsort.3 qsort.3 mergesort.3 -MLINKS+=rand.3 srand.3 +MLINKS+=radixsort.3 sradixsort.3 +MLINKS+=rand.3 srand.3 rand.3 rand_r.3 MLINKS+=random.3 initstate.3 random.3 setstate.3 random.3 srandom.3 MLINKS+=rand48.3 drand48.3 rand48.3 erand48.3 rand48.3 lrand48.3 MLINKS+=rand48.3 mrand48.3 rand48.3 nrand48.3 rand48.3 jrand48.3 diff --git a/lib/libc/time/Makefile.inc b/lib/libc/time/Makefile.inc index 58ca1bf782a..e744992734f 100644 --- a/lib/libc/time/Makefile.inc +++ b/lib/libc/time/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.5 1998/11/20 11:18:55 d Exp $ +# $OpenBSD: Makefile.inc,v 1.6 1999/11/17 05:22:45 millert Exp $ .PATH: ${LIBCSRCDIR}/time @@ -9,3 +9,4 @@ MAN+= ctime.3 strftime.3 time2posix.3 tzfile.5 tzset.3 strptime.3 MLINKS+=ctime.3 asctime.3 ctime.3 difftime.3 ctime.3 gmtime.3 \ ctime.3 localtime.3 ctime.3 mktime.3 MLINKS+=tzset.3 tzsetwall.3 +MLINKS+=time2posix.3 posix2time.3 |