Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 130fb17

Browse files
committed
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.
1 parent d0cd95c commit 130fb17

3 files changed

Lines changed: 598 additions & 575 deletions

File tree

Makefile.pre.in

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -314,17 +314,14 @@ $(LIBRARY): $(LIBRARY_OBJS)
314314
$(AR) cr $@ $(MODOBJS)
315315
$(RANLIB) $@
316316

317-
# This rule is only here for DG/UX, UnixWare, and BeOS!!!
317+
# This rule is only here for DG/UX and BeOS!!!
318318
libpython$(VERSION).so: $(LIBRARY)
319319
case `uname -s | tr -d '/ ' | tr '[A-Z]' '[a-z]'` in \
320320
*dgux*) \
321321
test -d dgux || mkdir dgux; \
322322
(cd dgux;ar x ../$^;ld -G -o ../$@ * ); \
323323
/bin/rm -rf ./dgux \
324324
;; \
325-
unixware*) \
326-
$(LDSHARED) -o $@ $(LIBRARY_OBJS) \
327-
;; \
328325
beos) \
329326
$(AR) so $(LIBRARY) $@ \
330327
;; \

0 commit comments

Comments
 (0)