[Python-checkins] python/dist/src Makefile.pre.in,1.147,1.148

loewis at users.sourceforge.net loewis at users.sourceforge.net
Sun Sep 26 19:26:58 CEST 2004


Update of /cvsroot/python/python/dist/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8928

Modified Files:
	Makefile.pre.in 
Log Message:
Replace -soname with -h for Solaris compatibility. Fixes #1034496.
Backported to 2.3.


Index: Makefile.pre.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/Makefile.pre.in,v
retrieving revision 1.147
retrieving revision 1.148
diff -u -d -r1.147 -r1.148
--- Makefile.pre.in	16 Jul 2004 08:42:35 -0000	1.147
+++ Makefile.pre.in	26 Sep 2004 17:26:55 -0000	1.148
@@ -351,7 +351,7 @@
 
 libpython$(VERSION).so: $(LIBRARY_OBJS)
 	if test $(INSTSONAME) != $(LDLIBRARY); then \
-		$(LDSHARED) -Wl,-soname=$(INSTSONAME) -o $(INSTSONAME) $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM); \
+		$(LDSHARED) -Wl,-h$(INSTSONAME) -o $(INSTSONAME) $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM); \
 		$(LN) -f $(INSTSONAME) $@; \
 	else\
 		$(LDSHARED) -o $@ $(LIBRARY_OBJS) $(SHLIBS) $(LIBC) $(LIBM); \



More information about the Python-checkins mailing list