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

Now defaults to --without-cdebug on Solaris/cc, since it has problems

with some files (notably charsetmod.c).

Rev: src/configure.in:1.335
parent 63db197e
No related branches found
No related tags found
No related merge requests found
AC_REVISION("$Id: configure.in,v 1.334 1999/11/29 16:08:50 grubba Exp $")
AC_REVISION("$Id: configure.in,v 1.335 1999/11/29 22:27:54 grubba Exp $")
AC_INIT(interpret.c)
AC_CONFIG_HEADER(machine.h)
......@@ -421,8 +421,20 @@ AC_ARG_WITH(gdbm, [ --without-gdbm no GNU database manager suppo
AC_ARG_WITH(gmp, [ --without-gmp no Support bignums])
AC_ARG_WITH(debug, [ --without-debug disable run debugging],[],[with_debug=])
AC_ARG_WITH(rtldebug, [ --without-rtldebug disable run time self tests],[],[with_rtldebug=])
AC_ARG_WITH(cdebug, [ --without-cdebug disable -g],[],[with_cdebug=])
AC_ARG_WITH(cdebug, [ --without-copt disable -O2],[],[with_copt=])
AC_ARG_WITH(cdebug, [ --without-cdebug disable -g],[],[
case "$pike_cv_sys_os:$GCC" in
Solaris:no)
# Solaris/cc has problems with combining optimizations and debuginfo.
AC_MSG_WARN([Defaulting to --without-cdebug since the OS is Solaris,
and gcc isn't being used.])
with_cdebug=no
;;
*)
with_cdebug=
;;
esac
])
AC_ARG_WITH(copt, [ --without-copt disable -O2],[],[with_copt=])
AC_ARG_WITH(threads, [ --without-threads no threads support],[],[with_threads=yes])
AC_ARG_WITH(zlib, [ --without-zlib no gz compression support],[],[with_zlib=yes])
AC_ARG_WITH(ssleay, [ --without-ssleay no support for the secure socket protocol],[],[with_ssleay=yes])
......
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