mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-30 22:15:20 +00:00
1779. [port] OSF 5.1: libtool didn't handle -pthread correctly.
This commit is contained in:
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
|
1778. [port] HUX 11.11: fix broken IN6ADDR_ANY_INIT and
|
||||||
IN6ADDR_LOOPBACK_INIT macros.
|
IN6ADDR_LOOPBACK_INIT macros.
|
||||||
|
|
||||||
|
13
ltmain.sh
13
ltmain.sh
@@ -1356,7 +1356,18 @@ EOF
|
|||||||
continue
|
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"
|
deplibs="$deplibs $arg"
|
||||||
continue
|
continue
|
||||||
;;
|
;;
|
||||||
|
Reference in New Issue
Block a user