pike.git/
src/
configure.in
Branch:
Tag:
Non-build tags
All tags
No tags
2002-08-19
2002-08-19 15:32:06 by Henrik Grubbström (Grubba) <grubba@grubba.org>
0d53c579f332020b68c32edfc37b4f149e0240e3 (
11
lines) (+
10
/-
1
)
[
Show
|
Annotate
]
Branch:
7.9
Workaround for bug in cc/HP-UX: compile without cdebug by default.
Rev: src/configure.in:1.602
1:
-
AC_REVISION("$Id: configure.in,v 1.
601
2002/08/19
13
:
48
:
25
grubba Exp $")
+
AC_REVISION("$Id: configure.in,v 1.
602
2002/08/19
15
:
32
:
06
grubba Exp $")
AC_INIT(interpret.c) AC_CONFIG_HEADER(machine.h)
1043:
and gcc is not being used.]) with_cdebug=no ;;
+
HP-UX:no|HPUX:no)
+
# HP-UX/cc has problems with combining optimizations and debuginfo.
+
#
+
# cc: internal panic 7815: Malloc: underflow detected in free(). (7815)
+
AC_MSG_WARN([Defaulting to --without-cdebug since the OS is HP-UX,
+
and gcc is not being used.])
+
with_cdebug=no
+
;;
*) with_cdebug= ;;