summaryrefslogtreecommitdiffstats
path: root/Makefile.pre.in
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2001-07-19 11:00:41 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2001-07-19 11:00:41 (GMT)
commit130fb175781ca6902ab8f711e2175206ecb74fcc (patch)
treefa69505e988fa8e104d5132fa5af3fb47d44f39c /Makefile.pre.in
parentd0cd95ce7febd97683d6e113e1b486b93bcf88eb (diff)
downloadcpython-130fb175781ca6902ab8f711e2175206ecb74fcc.zip
cpython-130fb175781ca6902ab8f711e2175206ecb74fcc.tar.gz
cpython-130fb175781ca6902ab8f711e2175206ecb74fcc.tar.bz2
Patch #418659: Fixes for UnixWare and ReliantUnix.
back-out 1.215 of configure.in and 1.34 of Makefile.pre.in Check for -Kpthread compiler support, and use this as the sole option for MT if available.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r--Makefile.pre.in5
1 files changed, 1 insertions, 4 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in
index d073c01..a6448a9 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -314,7 +314,7 @@ $(LIBRARY): $(LIBRARY_OBJS)
$(AR) cr $@ $(MODOBJS)
$(RANLIB) $@
-# This rule is only here for DG/UX, UnixWare, and BeOS!!!
+# This rule is only here for DG/UX and BeOS!!!
libpython$(VERSION).so: $(LIBRARY)
case `uname -s | tr -d '/ ' | tr '[A-Z]' '[a-z]'` in \
*dgux*) \
@@ -322,9 +322,6 @@ libpython$(VERSION).so: $(LIBRARY)
(cd dgux;ar x ../$^;ld -G -o ../$@ * ); \
/bin/rm -rf ./dgux \
;; \
- unixware*) \
- $(LDSHARED) -o $@ $(LIBRARY_OBJS) \
- ;; \
beos) \
$(AR) so $(LIBRARY) $@ \
;; \