Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
pike
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pikelang
pike
Commits
6cb70dfd
Commit
6cb70dfd
authored
Feb 21, 2001
by
Henrik (Grubba) Grubbström
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/acconfig.h
+4
-1
4 additions, 1 deletion
src/acconfig.h
src/configure.in
+15
-1
15 additions, 1 deletion
src/configure.in
with
19 additions
and
2 deletions
src/acconfig.h
+
4
−
1
View file @
6cb70dfd
/*
/*
* $Id: acconfig.h,v 1.7
8
2001/02/
17 15:49
:2
0
grubba Exp $
* $Id: acconfig.h,v 1.7
9
2001/02/
21 00:54
:2
6
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 */
...
...
This diff is collapsed.
Click to expand it.
src/configure.in
+
15
−
1
View file @
6cb70dfd
AC_REVISION("$Id: configure.in,v 1.49
1
2001/02/2
0 16:07
:2
8
grubba Exp $")
AC_REVISION("$Id: configure.in,v 1.49
2
2001/02/2
1 00:54
:2
6
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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment