summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1999-04-06 15:50:51 (GMT)
committerGuido van Rossum <guido@python.org>1999-04-06 15:50:51 (GMT)
commit8137680704e1d2b81a0b7fef84c5e954369b6231 (patch)
tree4f5aee7ecc43c5336183a2661f34f3e8af77fa0d
parent4f21d547641f5c7a8be3b06075a6067b75f5de9d (diff)
downloadcpython-8137680704e1d2b81a0b7fef84c5e954369b6231.zip
cpython-8137680704e1d2b81a0b7fef84c5e954369b6231.tar.gz
cpython-8137680704e1d2b81a0b7fef84c5e954369b6231.tar.bz2
For BeOS PowerPC. Chris Herborth.
-rw-r--r--acconfig.h3
-rw-r--r--config.h.in3
-rwxr-xr-xconfigure4
-rw-r--r--configure.in2
4 files changed, 9 insertions, 3 deletions
diff --git a/acconfig.h b/acconfig.h
index 4270574..feddb31 100644
--- a/acconfig.h
+++ b/acconfig.h
@@ -20,6 +20,9 @@
/* Used for BeOS configuration */
#undef DL_EXPORT_HEADER
+#ifdef DL_EXPORT_HEADER
+#include DL_EXPORT_HEADER
+#endif
/* Define if getpgrp() must be called as getpgrp(0). */
#undef GETPGRP_HAVE_ARG
diff --git a/config.h.in b/config.h.in
index 0dc3f47..de22507 100644
--- a/config.h.in
+++ b/config.h.in
@@ -81,6 +81,9 @@
/* Used for BeOS configuration */
#undef DL_EXPORT_HEADER
+#ifdef DL_EXPORT_HEADER
+#include DL_EXPORT_HEADER
+#endif
/* Define if getpgrp() must be called as getpgrp(0). */
#undef GETPGRP_HAVE_ARG
diff --git a/configure b/configure
index 7442e30..3928dcf 100755
--- a/configure
+++ b/configure
@@ -1,6 +1,6 @@
#! /bin/sh
-# From configure.in Revision: 1.101
+# From configure.in Revision: 1.102
# Guess values for system-dependent variables and create Makefiles.
# Generated automatically using autoconf version 2.13
@@ -690,7 +690,7 @@ else
case $BE_HOST_CPU in
ppc)
- CC="mwcc -I$PWD/BeOS"
+ CC="mwcc -I$PWD/BeOS -nodup"
without_gcc=yes
case `uname -r` in
4.0*) OPT="-DUSE_DL_EXPORT -O7 -opt schedule604 -export pragma" ;;
diff --git a/configure.in b/configure.in
index fbb7f02..2fc3d8e 100644
--- a/configure.in
+++ b/configure.in
@@ -118,7 +118,7 @@ AC_ARG_WITH(gcc, [--without-gcc never use gcc], [
case $BE_HOST_CPU in
ppc)
- CC="mwcc -I$PWD/BeOS"
+ CC="mwcc -I$PWD/BeOS -nodup"
without_gcc=yes
case `uname -r` in
4.0*) OPT="-DUSE_DL_EXPORT -O7 -opt schedule604 -export pragma" ;;