Skip to content
Snippets Groups Projects
Commit 2b4903ac authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

Added kluge for gcc/SunOS.

Rev: src/configure.in:1.164
parent 4e882a27
No related branches found
No related tags found
No related merge requests found
AC_REVISION("$Id: configure.in,v 1.163 1998/02/27 17:59:11 marcus Exp $") AC_REVISION("$Id: configure.in,v 1.164 1998/03/05 14:06:46 grubba Exp $")
AC_INIT(interpret.c) AC_INIT(interpret.c)
AC_CONFIG_HEADER(machine.h) AC_CONFIG_HEADER(machine.h)
...@@ -175,6 +175,11 @@ case "$pike_cv_sys_os" in ...@@ -175,6 +175,11 @@ case "$pike_cv_sys_os" in
;; ;;
esac esac
;; ;;
SunOS*)
# gcc on SunOS 4 forgets to define this:
echo "SunOS. Adding -D__USE_FIXED_PROTOTYPES__"
CFLAGS="$CFLAGS -D__USE_FIXED_PROTOTYPES__"
;;
BSD/OS*) BSD/OS*)
LD="$BINDIR/smartlink shlicc" LD="$BINDIR/smartlink shlicc"
;; ;;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment