[Python-checkins] r46744 - in python/branches/release24-maint: Makefile.pre.in Misc/NEWS

georg.brandl python-checkins at python.org
Thu Jun 8 14:54:17 CEST 2006


Author: georg.brandl
Date: Thu Jun  8 14:54:16 2006
New Revision: 46744

Modified:
   python/branches/release24-maint/Makefile.pre.in
   python/branches/release24-maint/Misc/NEWS
Log:
Bug #1502728: Correctly link against librt library on HP-UX.
 (backport from rev. 46743)

Modified: python/branches/release24-maint/Makefile.pre.in
==============================================================================
--- python/branches/release24-maint/Makefile.pre.in	(original)
+++ python/branches/release24-maint/Makefile.pre.in	Thu Jun  8 14:54:16 2006
@@ -358,7 +358,7 @@
 	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

Modified: python/branches/release24-maint/Misc/NEWS
==============================================================================
--- python/branches/release24-maint/Misc/NEWS	(original)
+++ python/branches/release24-maint/Misc/NEWS	Thu Jun  8 14:54:16 2006
@@ -72,6 +72,8 @@
 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


More information about the Python-checkins mailing list