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

Skip to content

Commit 8137680

Browse files
committed
For BeOS PowerPC. Chris Herborth.
1 parent 4f21d54 commit 8137680

4 files changed

Lines changed: 9 additions & 3 deletions

File tree

acconfig.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@
2020

2121
/* Used for BeOS configuration */
2222
#undef DL_EXPORT_HEADER
23+
#ifdef DL_EXPORT_HEADER
24+
#include DL_EXPORT_HEADER
25+
#endif
2326

2427
/* Define if getpgrp() must be called as getpgrp(0). */
2528
#undef GETPGRP_HAVE_ARG

config.h.in

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,9 @@
8181

8282
/* Used for BeOS configuration */
8383
#undef DL_EXPORT_HEADER
84+
#ifdef DL_EXPORT_HEADER
85+
#include DL_EXPORT_HEADER
86+
#endif
8487

8588
/* Define if getpgrp() must be called as getpgrp(0). */
8689
#undef GETPGRP_HAVE_ARG

configure

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /bin/sh
22

3-
# From configure.in Revision: 1.101
3+
# From configure.in Revision: 1.102
44

55
# Guess values for system-dependent variables and create Makefiles.
66
# Generated automatically using autoconf version 2.13
@@ -690,7 +690,7 @@ else
690690

691691
case $BE_HOST_CPU in
692692
ppc)
693-
CC="mwcc -I$PWD/BeOS"
693+
CC="mwcc -I$PWD/BeOS -nodup"
694694
without_gcc=yes
695695
case `uname -r` in
696696
4.0*) OPT="-DUSE_DL_EXPORT -O7 -opt schedule604 -export pragma" ;;

configure.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ AC_ARG_WITH(gcc, [--without-gcc never use gcc], [
118118

119119
case $BE_HOST_CPU in
120120
ppc)
121-
CC="mwcc -I$PWD/BeOS"
121+
CC="mwcc -I$PWD/BeOS -nodup"
122122
without_gcc=yes
123123
case `uname -r` in
124124
4.0*) OPT="-DUSE_DL_EXPORT -O7 -opt schedule604 -export pragma" ;;

0 commit comments

Comments
 (0)