Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit d50966a

Browse files
committed
Move forgotten comment closer to where it matters.
1 parent 79d306c commit d50966a

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

configure

+3-2
Original file line numberDiff line numberDiff line change
@@ -19187,8 +19187,9 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
1918719187

1918819188
# set thread flags
1918919189

19190-
# Some platforms use these, so just defineed them. They can't hurt if they
19191-
# are not supported.
19190+
# Some platforms use these, so just define them. They can't hurt if they
19191+
# are not supported. For example, on Solaris -D_POSIX_PTHREAD_SEMANTICS
19192+
# enables 5-arg getpwuid_r, among other things.
1919219193
PTHREAD_CFLAGS="$PTHREAD_CFLAGS -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS"
1919319194

1919419195

configure.in

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
dnl Process this file with autoconf to produce a configure script.
2-
dnl $PostgreSQL: pgsql/configure.in,v 1.569 2008/10/29 16:06:46 petere Exp $
2+
dnl $PostgreSQL: pgsql/configure.in,v 1.570 2008/10/29 16:23:07 petere Exp $
33
dnl
44
dnl Developers, please strive to achieve this order:
55
dnl
@@ -1334,8 +1334,9 @@ esac
13341334
if test "$enable_thread_safety" = yes -a "$PORTNAME" != "win32"; then
13351335
ACX_PTHREAD # set thread flags
13361336

1337-
# Some platforms use these, so just defineed them. They can't hurt if they
1338-
# are not supported.
1337+
# Some platforms use these, so just define them. They can't hurt if they
1338+
# are not supported. For example, on Solaris -D_POSIX_PTHREAD_SEMANTICS
1339+
# enables 5-arg getpwuid_r, among other things.
13391340
PTHREAD_CFLAGS="$PTHREAD_CFLAGS -D_REENTRANT -D_THREAD_SAFE -D_POSIX_PTHREAD_SEMANTICS"
13401341

13411342

src/template/solaris

-2
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,3 @@ if test "$SUN_STUDIO_CC" = yes ; then
2020
;;
2121
esac
2222
fi
23-
24-
# -D_POSIX_PTHREAD_SEMANTICS enables 5-arg getpwuid_r, among other things

0 commit comments

Comments
 (0)