[Python-checkins] Move comments in configure.ac to more appropriate place. (#4371)

Serhiy Storchaka webhook-mailer at python.org
Sat Nov 11 12:18:31 EST 2017


https://github.com/python/cpython/commit/9e78dc25179a492550dc602e47e7f4d24e3c89a3
commit: 9e78dc25179a492550dc602e47e7f4d24e3c89a3
branch: master
author: Serhiy Storchaka <storchaka at gmail.com>
committer: GitHub <noreply at github.com>
date: 2017-11-11T19:18:28+02:00
summary:

Move comments in configure.ac to more appropriate place. (#4371)

files:
M configure
M configure.ac

diff --git a/configure b/configure
index 0e74828a408..5e0522476e7 100755
--- a/configure
+++ b/configure
@@ -9542,6 +9542,9 @@ $as_echo "no" >&6; }
 fi
 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 
+# 'Real Time' functions on Solaris
+# posix4 on Solaris 2.6
+# pthread (first!) on Linux
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing sem_init" >&5
 $as_echo_n "checking for library containing sem_init... " >&6; }
 if ${ac_cv_search_sem_init+:} false; then :
@@ -9597,9 +9600,7 @@ if test "$ac_res" != no; then :
   test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
 
 fi
- # 'Real Time' functions on Solaris
-						# posix4 on Solaris 2.6
-						# pthread (first!) on Linux
+
 
 # check if we need libintl for locale functions
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for textdomain in -lintl" >&5
diff --git a/configure.ac b/configure.ac
index 1a309c813ad..3464212eddc 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2688,9 +2688,10 @@ void *x = uuid_generate_time_safe
   [AC_MSG_RESULT(no)]
 )
 
-AC_SEARCH_LIBS(sem_init, pthread rt posix4) 	# 'Real Time' functions on Solaris
-						# posix4 on Solaris 2.6
-						# pthread (first!) on Linux
+# 'Real Time' functions on Solaris
+# posix4 on Solaris 2.6
+# pthread (first!) on Linux
+AC_SEARCH_LIBS(sem_init, pthread rt posix4)
 
 # check if we need libintl for locale functions
 AC_CHECK_LIB(intl, textdomain,



More information about the Python-checkins mailing list