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:
parent
85bba08193
commit
beb92a43a7
2
CHANGES
2
CHANGES
@ -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.
|
||||
|
||||
|
13
ltmain.sh
13
ltmain.sh
@ -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
|
||||
;;
|
||||
|
Loading…
x
Reference in New Issue
Block a user