diff options
| author | Paul Eggert | 2014-05-29 16:13:32 -0700 |
|---|---|---|
| committer | Paul Eggert | 2014-05-29 16:13:32 -0700 |
| commit | acc16b66ffe8e3b0f3568c5ae2e3bf0dff2bc2fa (patch) | |
| tree | 40531c397e4cb16ec513b183470b834d0fda58f3 | |
| parent | b4c1ce8a95e03cb306c31ffc4beb70476cb8f575 (diff) | |
| download | emacs-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-- | ChangeLog | 5 | ||||
| -rw-r--r-- | configure.ac | 4 |
2 files changed, 7 insertions, 2 deletions
| @@ -1,3 +1,8 @@ | |||
| 1 | 2014-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 | |||
| 1 | 2014-05-29 Eli Zaretskii <eliz@gnu.org> | 6 | 2014-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 | |||
| 3470 | AC_SUBST(BLESSMAIL_TARGET) | 3470 | AC_SUBST(BLESSMAIL_TARGET) |
| 3471 | 3471 | ||
| 3472 | OLD_LIBS=$LIBS | 3472 | OLD_LIBS=$LIBS |
| 3473 | LIBS="$LIB_MATH $LIBS" | 3473 | LIBS="$LIB_PTHREAD $LIB_MATH $LIBS" |
| 3474 | AC_CHECK_FUNCS(accept4 gethostname \ | 3474 | AC_CHECK_FUNCS(accept4 gethostname \ |
| 3475 | getrusage get_current_dir_name \ | 3475 | getrusage get_current_dir_name \ |
| 3476 | lrand48 random rint \ | 3476 | lrand48 random rint \ |
| 3477 | select getpagesize setlocale \ | 3477 | select getpagesize setlocale \ |
| 3478 | getrlimit setrlimit shutdown getaddrinfo \ | 3478 | getrlimit setrlimit shutdown getaddrinfo \ |
| 3479 | strsignal setitimer \ | 3479 | pthread_sigmask strsignal setitimer \ |
| 3480 | sendto recvfrom getsockname getpeername getifaddrs freeifaddrs \ | 3480 | sendto recvfrom getsockname getpeername getifaddrs freeifaddrs \ |
| 3481 | gai_strerror sync \ | 3481 | gai_strerror sync \ |
| 3482 | getpwent endpwent getgrent endgrent \ | 3482 | getpwent endpwent getgrent endgrent \ |