This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
NetWare diff from C Aditya.
authorJarkko Hietaniemi <jhi@iki.fi>
Thu, 21 Mar 2002 14:37:56 +0000 (14:37 +0000)
committerJarkko Hietaniemi <jhi@iki.fi>
Thu, 21 Mar 2002 14:37:56 +0000 (14:37 +0000)
p4raw-id: //depot/perl@15387

perl.h

diff --git a/perl.h b/perl.h
index 02e3f9c..e34ace3 100644 (file)
--- a/perl.h
+++ b/perl.h
@@ -79,7 +79,7 @@
 
 /* Use the reentrant APIs like localtime_r and getpwent_r */
 /* Win32 has naturally threadsafe libraries, no need to use any _r variants. */
-#if defined(USE_ITHREADS) && !defined(USE_REENTRANT_API) && !defined(WIN32) && !defined(__APPLE__)
+#if defined(USE_ITHREADS) && !defined(USE_REENTRANT_API) && !defined(NETWARE) && !defined(WIN32) && !defined(__APPLE__)
 #   define USE_REENTRANT_API
 #endif