Date: Fri, 18 Feb 2000 02:56:28 -0800 From: Jeremy Lea <reg@freebsd.org> To: unfurl@freebsd.org, jkh@freebsd.org, current@freebsd.org Subject: Fix for -CURRENT breakage in libc_r Message-ID: <20000218025627.A21724@shale.csir.co.za>
next in thread | raw e-mail | index | archive | help
Please people. If you think you don't need a make world during a code freeze, then please at least read the patched files... Index: Makefile.inc =================================================================== RCS file: /usr/home/ncvs/src/lib/libc_r/man/Makefile.inc,v retrieving revision 1.10 diff -u -r1.10 Makefile.inc --- Makefile.inc 2000/02/18 05:31:26 1.10 +++ Makefile.inc 2000/02/18 10:49:38 @@ -37,9 +37,6 @@ pthread_rwlockattr_init.3 \ pthread_rwlockattr_setpshared.3 \ pthread_self.3 \ - -MLINKS+=pthread_rwlock_wrlock.3 pthread_rwlock_trywrlock.3 -MLINKS+=pthread_rwlock_rdlock.3 pthread_rwlock_tryrdlock.3 \ pthread_setspecific.3 \ pthread_testcancel.3 \ sem_destroy.3 \ @@ -49,8 +46,10 @@ sem_post.3 \ sem_wait.3 -MLINKS+= pthread_cancel.3 pthread_setcancelstate.3 \ - pthread_cancel.3 pthread_getcancelstate.3 \ +MLINKS+= pthread_cancel.3 pthread_getcancelstate.3 \ + pthread_cancel.3 pthread_setcancelstate.3 \ + pthread_rwlock_rdlock.3 pthread_rwlock_tryrdlock.3 \ + pthread_rwlock_wrlock.3 pthread_rwlock_trywrlock.3 \ sem_open.3 sem_close.3 \ sem_open.3 sem_unlink.3 \ sem_wait.3 sem_trywait.3 -Jeremy -- FreeBSD - Because the best things in life are free... http://www.freebsd.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20000218025627.A21724>