]> granicus.if.org Git - python/commitdiff
Bug #1502728: Correctly link against librt library on HP-UX.
authorGeorg Brandl <georg@python.org>
Thu, 8 Jun 2006 12:54:13 +0000 (12:54 +0000)
committerGeorg Brandl <georg@python.org>
Thu, 8 Jun 2006 12:54:13 +0000 (12:54 +0000)
Makefile.pre.in
Misc/NEWS

index e63066ce4431462b8a9012dfe049e920877b5b97..cbc88b6ae91d7983e44438df60a7b0f90eb4d4c2 100644 (file)
@@ -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
index 370a18e4b7192f1e050efcbbe70ac9b3de862a21..d54806a9afd1e5ab0399a4275293ef6728ed12f4 100644 (file)
--- 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.