You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
if test "$GCC" = yes; then
|
|
|
|
|
THREAD_CPPFLAGS="-pthread"
|
|
|
|
|
else
|
|
|
|
|
# The -Kno_host is for a bug in the compiler. See -hackers
|
|
|
|
|
# discussion on 7-8/Aug/2003.
|
|
|
|
|
cat >conftest.c <<__EOF__
|
|
|
|
|
extern char *strcpy(char *, const char *);
|
|
|
|
|
|
|
|
|
|
static void f(char *p, int n){
|
|
|
|
|
strcpy(p+n,"");
|
|
|
|
|
}
|
|
|
|
|
void g(void){
|
|
|
|
|
f(0, 0);
|
|
|
|
|
}
|
|
|
|
|
__EOF__
|
|
|
|
|
|
|
|
|
|
if $CC -c -O -Kinline conftest.c >conftest.err 2>&1; then
|
|
|
|
|
CFLAGS="-O -Kinline"
|
|
|
|
|
else
|
|
|
|
|
CFLAGS="-O -Kinline,no_host"
|
|
|
|
|
fi
|
|
|
|
|
rm -f conftest.*
|
|
|
|
|
|
|
|
|
|
THREAD_CPPFLAGS="-K pthread"
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
# tools/thread/thread_test must be run
|
|
|
|
|
THREAD_CPPFLAGS="$THREAD_CPPFLAGS -D_REENTRANT"
|
|
|
|
|
|
|
|
|
|
# Disabled because flags are required for all apps using libpq.
|
|
|
|
|
# Waiting to see if other platforms need this too. 2004-03-22
|
|
|
|
|
#THREAD_SUPPORT=yes
|
|
|
|
|
# verified UnixWare 7.1.4 2004-03-18
|
|
|
|
|
STRERROR_THREADSAFE=yes
|
|
|
|
|
GETPWUID_THREADSAFE=yes
|
|
|
|
|
GETHOSTBYNAME_THREADSAFE=yes
|
|
|
|
|
|