Commit 1023fe30 authored by Warren Baird's avatar Warren Baird Committed by Alexandre Julliard

- added -fPIC to the LDDLLFLAGS line for HPUX; winegcc needs to pass

-fPIC to the link line to keep the hp linker happy - set DLLEXT to .sl on HPUX
parent bbde53fb
......@@ -14081,7 +14081,8 @@ echo "${ECHO_T}$ac_cv_c_dll_hpux" >&6
if test "$ac_cv_c_dll_hpux" = "yes"
then
LIBEXT="sl"
LDDLLFLAGS="-shared"
DLLEXT=".sl"
LDDLLFLAGS="-shared -fPIC"
LDSHARED="\$(CC) -shared"
fi
fi
......
......@@ -967,7 +967,8 @@ case $host_os in
if test "$ac_cv_c_dll_hpux" = "yes"
then
LIBEXT="sl"
LDDLLFLAGS="-shared"
DLLEXT=".sl"
LDDLLFLAGS="-shared -fPIC"
LDSHARED="\$(CC) -shared"
fi
fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment