From 1ac121292590a0678bf3d23f99e4ec8f4f96a477 Mon Sep 17 00:00:00 2001 From: Yang Tse Date: Sun, 27 Jul 2008 03:16:37 +0000 Subject: setup.h handles definition of _REENTRANT based on NEED_REENTRANT definition which might be defined in config.h or config-*.h files --- src/setup.h | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) (limited to 'src/setup.h') diff --git a/src/setup.h b/src/setup.h index b6a30b957..4d2e2d106 100644 --- a/src/setup.h +++ b/src/setup.h @@ -72,11 +72,16 @@ #endif /* HAVE_CONFIG_H */ -#if defined(CURLDEBUG) && defined(CURLTOOLDEBUG) -/* This is an ugly hack for CURLDEBUG conditions only. We need to include - the file here, since it might set the _FILE_OFFSET_BITS define, which must - be set BEFORE all normal system headers. */ -#include "../lib/setup.h" +/* + * HP-UX needs _REENTRANT set for a few function prototypes and + * things to appear in the system header files. Unixware needs it + * to build proper reentrant code. Others may also need it. + */ + +#ifdef NEED_REENTRANT +# ifndef _REENTRANT +# define _REENTRANT +# endif #endif /* -- cgit v1.2.3