From: Georg Brandl Date: Thu, 8 Jun 2006 12:54:13 +0000 (+0000) Subject: Bug #1502728: Correctly link against librt library on HP-UX. X-Git-Tag: v2.5b1~196 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=66a0dbb57662b1fa28b632f3cc0203e886c8a9ac;p=thirdparty%2FPython%2Fcpython.git Bug #1502728: Correctly link against librt library on HP-UX. --- diff --git a/Makefile.pre.in b/Makefile.pre.in index e63066ce4431..cbc88b6ae91d 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -369,7 +369,7 @@ libpython$(VERSION).so: $(LIBRARY_OBJS) fi libpython$(VERSION).sl: $(LIBRARY_OBJS) - $(LDSHARED) -o $@ $(LIBRARY_OBJS) $(LIBC) $(LIBM) + $(LDSHARED) -o $@ $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM) # This rule is here for OPENSTEP/Rhapsody/MacOSX. It builds a temporary # minimal framework (not including the Lib directory and such) in the current diff --git a/Misc/NEWS b/Misc/NEWS index 370a18e4b719..d54806a9afd1 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -181,6 +181,8 @@ Library Build ----- +- Bug #1502728: Correctly link against librt library on HP-UX. + - OpenBSD 3.9 is supported now. - Patch #1492356: Port to Windows CE.