diff options
author | Volker Lendecke <vlendec@samba.org> | 2007-05-18 08:35:01 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:22:13 -0500 |
commit | 1e845a983ade07bfb9a49292af58da4cc1ba90c2 (patch) | |
tree | 553875fe1181f3884c1bfc519db1ed89da7f03ee /source3/configure.in | |
parent | c6b283666451eb920dd25f78c06dc4689d04c498 (diff) | |
download | samba-1e845a983ade07bfb9a49292af58da4cc1ba90c2.tar.gz samba-1e845a983ade07bfb9a49292af58da4cc1ba90c2.tar.xz samba-1e845a983ade07bfb9a49292af58da4cc1ba90c2.zip |
r22994: Fix HP/UX compiler flags by Don McCall. Lets see how the other HP/UX
boxes like this. Thanks, Don!
(This used to be commit c53cf972cf35fc344eb40078a1a778260a3de07f)
Diffstat (limited to 'source3/configure.in')
-rw-r--r-- | source3/configure.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/configure.in b/source3/configure.in index db67596f662..c940c8c3d9e 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -1908,10 +1908,11 @@ case "$host_os" in if test "${GCC}" = "yes"; then PICFLAG="-fPIC" else - PICFLAG="+z" + PICFLAG="+z +ESnolit" fi if test "$host_cpu" = "ia64"; then SHLIBEXT="so" + PICFLAG="+z" DYNEXP="-Wl,-E,+b/usr/local/lib/hpux32:/usr/lib/hpux32" else SHLIBEXT="sl" |