diff --git a/apache2/build/apxs-wrapper.in b/apache2/build/apxs-wrapper.in index aa53e7d8..7e032731 100755 --- a/apache2/build/apxs-wrapper.in +++ b/apache2/build/apxs-wrapper.in @@ -5,6 +5,9 @@ for opt in "$@"; do case "$opt" in # Fix for -R not working w/apxs -R*) WRAPPED_OPTS="$WRAPPED_OPTS -Wl,$opt" ;; + # OSF1 compiler option + -pthread) WRAPPED_OPTS="$WRAPPED_OPTS -Wc,$opt" ;; + # Unwrapped *) WRAPPED_OPTS="$WRAPPED_OPTS $opt" ;; esac done