Bug #1502728: Correctly link against librt library on HP-UX.

This commit is contained in:
Georg Brandl 2006-06-08 12:54:13 +00:00
parent 22ccbbc4ec
commit 66a0dbb576
2 changed files with 3 additions and 1 deletions

View 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

View File

@ -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.