Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Spot
Spot
Commits
e6c113f9
Commit
e6c113f9
authored
Nov 24, 2003
by
Alexandre Duret-Lutz
Browse files
* m4/devel.m4: Fix quoting and simplify default setting of
enable_devel.
parent
ea8a5782
Changes
2
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
e6c113f9
2003-11-24 Alexandre Duret-Lutz <adl@src.lip6.fr>
* m4/devel.m4: Fix quoting and simplify default setting of
enable_devel.
2003-11-21 Alexandre Duret-Lutz <adl@src.lip6.fr>
* AUTHORS: New file.
...
...
m4/devel.m4
View file @
e6c113f9
...
...
@@ -5,12 +5,10 @@ AC_DEFUN([adl_ENABLE_DEVEL],
# Turn on devel options for development version, unless
# explicitely turned off.
if test -z "$enable_devel"; then
case $VERSION in
*[abcdefghijklmnopqrstuvwxyz])
enable_devel=yes ;;
esac
fi
case $VERSION in
*[[abcdefghijklmnopqrstuvwxyz]])
enable_devel=${enable_devel-yes} ;;
esac
if test x"$enable_devel" = xyes; then
enable_debug=${enable_debug-yes}
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment