2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 14:07:59 +00:00

1779. [port] OSF 5.1: libtool didn't handle -pthread correctly.

This commit is contained in:
Mark Andrews 2004-12-01 04:52:27 +00:00
parent 85bba08193
commit beb92a43a7
2 changed files with 14 additions and 1 deletions

View File

@ -1,3 +1,5 @@
1779. [port] OSF 5.1: libtool didn't handle -pthread correctly.
1778. [port] HUX 11.11: fix broken IN6ADDR_ANY_INIT and
IN6ADDR_LOOPBACK_INIT macros.

View File

@ -1356,7 +1356,18 @@ EOF
continue
;;
-mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe)
-mt|-mthreads|-kthread|-Kthread|-pthreads|--thread-safe)
deplibs="$deplibs $arg"
continue
;;
-pthread)
case $host in
*-*-osf5.1)
# -pthread is a compiler only option
continue
;;
esac
deplibs="$deplibs $arg"
continue
;;