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

Added --with-pike-type, with suitable disclaimer. EXPERIMENTAL

Rev: src/acconfig.h:1.79
Rev: src/configure.in:1.492
parent 3699403e
No related branches found
No related tags found
No related merge requests found
/* /*
* $Id: acconfig.h,v 1.78 2001/02/17 15:49:20 grubba Exp $ * $Id: acconfig.h,v 1.79 2001/02/21 00:54:26 grubba Exp $
*/ */
#ifndef MACHINE_H #ifndef MACHINE_H
#define MACHINE_H #define MACHINE_H
...@@ -389,6 +389,9 @@ ...@@ -389,6 +389,9 @@
/* Define if you have the <sys/resource.h> header file. */ /* Define if you have the <sys/resource.h> header file. */
#undef HAVE_SYS_RESOURCE_H #undef HAVE_SYS_RESOURCE_H
/* Define if you want to enable use of the struct pike_type (EXPERIMENTAL) */
#undef USE_PIKE_TYPE
@BOTTOM@ @BOTTOM@
/* NT stuff */ /* NT stuff */
......
AC_REVISION("$Id: configure.in,v 1.491 2001/02/20 16:07:28 grubba Exp $") AC_REVISION("$Id: configure.in,v 1.492 2001/02/21 00:54:26 grubba Exp $")
AC_INIT(interpret.c) AC_INIT(interpret.c)
AC_CONFIG_HEADER(machine.h) AC_CONFIG_HEADER(machine.h)
...@@ -870,6 +870,20 @@ AC_ARG_WITH(perl, [ --with-perl enable the embedded Perl modu ...@@ -870,6 +870,20 @@ AC_ARG_WITH(perl, [ --with-perl enable the embedded Perl modu
] ]
) )
AC_ARG_WITH(pike-type, [ --with-pike-type enable struct pike_type (EXPERIMENTAL)], [
if test "x$with_pike_type" = "xyes"; then
AC_MSG_WARN([
WARNING: Enabling struct pike_type.
WARNING: Are you sure you know what you are doing?
WARNING: This is highly experimental, and most likely will not compile.
])
AC_DEFINE(USE_PIKE_TYPE)
else :; fi
],[])
if test "x$with_oob" = xyes; then if test "x$with_oob" = xyes; then
AC_DEFINE(WITH_OOB) AC_DEFINE(WITH_OOB)
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment