aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggert2014-05-29 16:13:32 -0700
committerPaul Eggert2014-05-29 16:13:32 -0700
commitacc16b66ffe8e3b0f3568c5ae2e3bf0dff2bc2fa (patch)
tree40531c397e4cb16ec513b183470b834d0fda58f3
parentb4c1ce8a95e03cb306c31ffc4beb70476cb8f575 (diff)
downloademacs-acc16b66ffe8e3b0f3568c5ae2e3bf0dff2bc2fa.tar.gz
emacs-acc16b66ffe8e3b0f3568c5ae2e3bf0dff2bc2fa.zip
* configure.ac (pthread_sigmask): Look in LIB_PTHREAD too.
Fixes configuration glitch found in <http://bugs.gnu.org/17561#59>.
-rw-r--r--ChangeLog5
-rw-r--r--configure.ac4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 0a3f5ffde16..b6af29d19c1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
12014-05-29 Paul Eggert <eggert@cs.ucla.edu>
2
3 * configure.ac (pthread_sigmask): Look in LIB_PTHREAD too (Bug#17561).
4 Fixes configuration glitch found in <http://bugs.gnu.org/17561#59>.
5
12014-05-29 Eli Zaretskii <eliz@gnu.org> 62014-05-29 Eli Zaretskii <eliz@gnu.org>
2 7
3 * configure.ac (ADDSECTION, TEMACS_POST_LINK): Don't compute, 8 * configure.ac (ADDSECTION, TEMACS_POST_LINK): Don't compute,
diff --git a/configure.ac b/configure.ac
index c9c9363cad2..e9f5099becd 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3470,13 +3470,13 @@ esac
3470AC_SUBST(BLESSMAIL_TARGET) 3470AC_SUBST(BLESSMAIL_TARGET)
3471 3471
3472OLD_LIBS=$LIBS 3472OLD_LIBS=$LIBS
3473LIBS="$LIB_MATH $LIBS" 3473LIBS="$LIB_PTHREAD $LIB_MATH $LIBS"
3474AC_CHECK_FUNCS(accept4 gethostname \ 3474AC_CHECK_FUNCS(accept4 gethostname \
3475getrusage get_current_dir_name \ 3475getrusage get_current_dir_name \
3476lrand48 random rint \ 3476lrand48 random rint \
3477select getpagesize setlocale \ 3477select getpagesize setlocale \
3478getrlimit setrlimit shutdown getaddrinfo \ 3478getrlimit setrlimit shutdown getaddrinfo \
3479strsignal setitimer \ 3479pthread_sigmask strsignal setitimer \
3480sendto recvfrom getsockname getpeername getifaddrs freeifaddrs \ 3480sendto recvfrom getsockname getpeername getifaddrs freeifaddrs \
3481gai_strerror sync \ 3481gai_strerror sync \
3482getpwent endpwent getgrent endgrent \ 3482getpwent endpwent getgrent endgrent \