This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author rpetrov
Recipients akitada, ronaldoussoren, rpetrov, skip.montanaro
Date 2009-01-02.14:58:41
SpamBayes Score 3.973098e-09
Marked as misclassified No
Message-id <1230908322.86.0.25576388115.issue4472@psf.upfronthosting.co.za>
In-reply-to
Content
Ronald,
cygwin is a special case too.
LDLIBRARY is so called import library !

So the make target can be (as I propose in py-issue-4472-makefile.patch)
+		if test -n "$(DLLLIBRARY)"; then \
+			$(INSTALL_SHARED) $(DLLLIBRARY) $(DESTDIR)$(BINDIR); \

or if new check is not ok then we has to restore old code .
-		if test "$(SO)" = .dll; then \
-			$(INSTALL_SHARED) libpython$(VERSION)$(SO) $(DESTDIR)$(BINDIR); \

More info for cygwin:
- SO = .dll
- DLLLIBRARY is set only for cygwin
- libpython$(VERSION)$(SO) = $(DLLLIBRARY)
- but $(LDLIBRARY) = libpython$(VERSION).dll.a !!!
History
Date User Action Args
2009-01-02 14:58:42rpetrovsetrecipients: + rpetrov, skip.montanaro, ronaldoussoren, akitada
2009-01-02 14:58:42rpetrovsetmessageid: <1230908322.86.0.25576388115.issue4472@psf.upfronthosting.co.za>
2009-01-02 14:58:42rpetrovlinkissue4472 messages
2009-01-02 14:58:41rpetrovcreate