Changeset 287 for trunk/pdns/pdns/pdns_recursor.cc
- Timestamp:
- 02/03/05 22:12:25 (8 years ago)
- Files:
-
- 1 modified
-
trunk/pdns/pdns/pdns_recursor.cc (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/pdns/pdns/pdns_recursor.cc
r267 r287 40 40 #include "recursor_cache.hh" 41 41 42 #ifdef FreeBSD// see cvstrac ticket #2642 #ifdef __FreeBSD__ // see cvstrac ticket #26 43 43 #include <pthread.h> 44 44 #include <semaphore.h> … … 49 49 string s_programname="pdns_recursor"; 50 50 51 #if !WIN32 && !FreeBSD 51 #ifndef WIN32 52 #ifndef __FreeBSD__ 52 53 extern "C" { 53 54 int sem_init(sem_t*, int, unsigned int){return 0;} … … 62 63 63 64 } 65 #endif // __FreeBSD__ 64 66 #endif // WIN32 65 67