From: Georg Brandl Date: Thu, 8 Jun 2006 12:54:16 +0000 (+0000) Subject: Bug #1502728: Correctly link against librt library on HP-UX. X-Git-Tag: v2.4.4c1~196 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d404beb5029fc381b1e0be157e8bdf0f907205cf;p=thirdparty%2FPython%2Fcpython.git Bug #1502728: Correctly link against librt library on HP-UX. (backport from rev. 46743) --- diff --git a/Makefile.pre.in b/Makefile.pre.in index 1e2c9728ea6c..f03e17afebaf 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -358,7 +358,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 6cc0ced70f0f..19a4750acc19 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -72,6 +72,8 @@ Tools/Demos Build ----- +- Bug #1502728: Correctly link against librt library on HP-UX. + - OpenBSD 3.9 is now supported. - Test for sys/statvfs.h before including it, as statvfs is present