aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.org
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2000-10-22 21:37:39 +0000
committerRichard Levitte <levitte@openssl.org>2000-10-22 21:37:39 +0000
commit9dd0463852fadb335078e4670563e2555411bb31 (patch)
tree53adb6061ac283f2d7a904082558ca07d5e6a542 /Makefile.org
parent5cb5715f97d265e41c9e82550d2c327a2921bd2f (diff)
downloadopenssl-9dd0463852fadb335078e4670563e2555411bb31.tar.gz
When building shared libraries on HP-UX 10.20 and HP-UX 11.00 (32bit),
ld warns that -Fl "may not be supported in future releases". We know that, and are doing things in HP-UX 11 (64bit), so turn off that warning with +vnocompatwarnings.
Diffstat (limited to 'Makefile.org')
-rw-r--r--Makefile.org3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.org b/Makefile.org
index 3af3971554..7d938396d1 100644
--- a/Makefile.org
+++ b/Makefile.org
@@ -281,7 +281,8 @@ do_solaris-shared:
# This assumes that GNU utilities are *not* used
do_hpux-shared:
libs='${SHLIBDEPS}'; for i in ${SHLIBDIRS}; do \
- ( set -x; /usr/ccs/bin/ld -b -z -o lib$$i.sl.${SHLIB_MAJOR}.${SHLIB_MINOR} \
+ ( set -x; /usr/ccs/bin/ld +vnocompatwarnings \
+ -b -z -o lib$$i.sl.${SHLIB_MAJOR}.${SHLIB_MINOR} \
+h lib$$i.sl.${SHLIB_MAJOR}.${SHLIB_MINOR} \
-Fl lib$$i.a $$libs ${EX_LIBS} -lc ) || exit 1; \
libs="$$libs -L. -l$$i"; \