[Python-checkins] r46743 - in python/trunk: Makefile.pre.in Misc/NEWS
georg.brandl
python-checkins at python.org
Thu Jun 8 14:54:13 CEST 2006
Author: georg.brandl
Date: Thu Jun 8 14:54:13 2006
New Revision: 46743
Modified:
python/trunk/Makefile.pre.in
python/trunk/Misc/NEWS
Log:
Bug #1502728: Correctly link against librt library on HP-UX.
Modified: python/trunk/Makefile.pre.in
==============================================================================
--- python/trunk/Makefile.pre.in (original)
+++ python/trunk/Makefile.pre.in Thu Jun 8 14:54:13 2006
@@ -369,7 +369,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/trunk/Misc/NEWS
==============================================================================
--- python/trunk/Misc/NEWS (original)
+++ python/trunk/Misc/NEWS Thu Jun 8 14:54:13 2006
@@ -181,6 +181,8 @@
Build
-----
+- Bug #1502728: Correctly link against librt library on HP-UX.
+
- OpenBSD 3.9 is supported now.
- Patch #1492356: Port to Windows CE.
More information about the Python-checkins
mailing list