Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
7df24305
Commit
7df24305
authored
Jul 04, 2009
by
Andreas Schwab
Browse files
(--enable-checking, --enable-profiling): Use
AS_HELP_STRING.
parent
0a3472c7
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
18 deletions
+21
-18
ChangeLog
ChangeLog
+5
-0
configure
configure
+7
-9
configure.in
configure.in
+9
-9
No files found.
ChangeLog
View file @
7df24305
2009-07-04 Andreas Schwab <schwab@linux-m68k.org>
* configure.in (--enable-checking, --enable-profiling): Use
AS_HELP_STRING.
2009-07-03 Dan Nicolaescu <dann@ics.uci.edu>
* configure.in (--enable-profiling): New option.
...
...
configure
View file @
7df24305
...
...
@@ -1346,15 +1346,13 @@ Optional Features:
--enable-locallisppath=PATH
directories Emacs should search for lisp files
specific to this site
--enable-checking=LIST
enable expensive run-time checks. With LIST,
enable only specific categories of checks.
Categories are: all,yes,no.
Flags are: stringbytes, stringoverrun, stringfreelist,
xmallocoverrun, conslist
--enable-profiling
Build emacs with profiling support.
This might not work on all platforms.
--enable-checking[=LIST]
enable expensive run-time checks. With LIST, enable
only specific categories of checks. Categories are:
all,yes,no. Flags are: stringbytes, stringoverrun,
stringfreelist, xmallocoverrun, conslist
--enable-profiling build emacs with profiling support. This might not
work on all platforms
--disable-largefile omit support for large files
Optional Packages:
...
...
configure.in
View file @
7df24305
...
...
@@ -210,12 +210,12 @@ elif test "${enableval}" != "yes"; then
fi)
AC_ARG_ENABLE(checking,
[
--enable-checking
[
=LIST
]
enable expensive run-time checks. With LIST,
enable only specific categories of checks.
Categories are: all,yes,no.
Flags are: stringbytes, stringoverrun, stringfreelist,
xmallocoverrun, conslist],
[
AS_HELP_STRING([
--enable-checking
@<:@
=LIST
@:>@],
[
enable expensive run-time checks. With LIST,
enable only specific categories of checks.
Categories are: all,yes,no.
Flags are: stringbytes, stringoverrun, stringfreelist,
xmallocoverrun, conslist]
)]
,
[ac_checking_flags="${enableval}"],[])
IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS="$IFS,"
for check in $ac_checking_flags
...
...
@@ -274,9 +274,9 @@ if test x$ac_gc_check_cons_list != x ; then
fi
AC_ARG_ENABLE(profiling,
[
--enable-profiling
B
uild emacs with profiling support.
This might not work on all platforms
.
],
[
AS_HELP_STRING([
--enable-profiling
],
[b
uild emacs with profiling support.
This might not work on all platforms
])
],
[ac_enable_profiling="${enableval}"],[])
if test x$ac_enable_profiling != x ; then
PROFILING_CFLAGS="-DPROFILING=1 -pg"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment