diff --git a/CHANGES b/CHANGES index bb2412b0ace3cc9703bb637aea6a72892d2c5c46..f9a245ce82f776645bd44857b09b9f0e7ce5ddc8 100644 --- a/CHANGES +++ b/CHANGES @@ -1,7 +1,8 @@ 1783. [cleanup] We only need one copy of libtool.m4, ltmain.sh in the source tree. -1782. [placeholder] rt13219 +1782. [port] OSX: --with-libtool + --enable-libbind broke on + __evOptMonoTime. [RT #13219] 1781. [port] FreeBSD 5.3: set PTHREAD_SCOPE_SYSTEM. [RT #12810] diff --git a/lib/bind/isc/eventlib.c b/lib/bind/isc/eventlib.c index 6a6ae959d8f8306bc9f259bc87b29c4966035b9a..388f030bd13daaa92217dfadf85b0470372f047a 100644 --- a/lib/bind/isc/eventlib.c +++ b/lib/bind/isc/eventlib.c @@ -20,7 +20,7 @@ */ #if !defined(LINT) && !defined(CODECENTER) -static const char rcsid[] = "$Id: eventlib.c,v 1.5 2004/03/18 02:58:00 marka Exp $"; +static const char rcsid[] = "$Id: eventlib.c,v 1.6 2004/12/05 22:41:16 marka Exp $"; #endif #include "port_before.h" @@ -42,6 +42,8 @@ static const char rcsid[] = "$Id: eventlib.c,v 1.5 2004/03/18 02:58:00 marka Exp #include "port_after.h" +int __evOptMonoTime; + /* Forward. */ #ifdef NEED_PSELECT diff --git a/lib/bind/isc/eventlib_p.h b/lib/bind/isc/eventlib_p.h index 649582c403edc3ce14578aad45fdb19b83a02de0..f56cb5ada13a3fa06dc4cb0479f87daa18554e07 100644 --- a/lib/bind/isc/eventlib_p.h +++ b/lib/bind/isc/eventlib_p.h @@ -18,7 +18,7 @@ /* eventlib_p.h - private interfaces for eventlib * vix 09sep95 [initial] * - * $Id: eventlib_p.h,v 1.5 2004/03/09 06:30:08 marka Exp $ + * $Id: eventlib_p.h,v 1.6 2004/12/05 22:41:16 marka Exp $ */ #ifndef _EVENTLIB_P_H @@ -214,6 +214,6 @@ void evDestroyTimers(const evContext_p *); evWait *evFreeWait(evContext_p *ctx, evWait *old); /* Global options */ -int __evOptMonoTime; +extern int __evOptMonoTime; #endif /*_EVENTLIB_P_H*/