ViewVC Help
View File
|
Revision Log
|
Show Annotations
|
View Changeset
|
Root Listing
root
/
svn
/
ircd-hybrid
/
trunk
/
m4
/
ax_arg_enable_debugging.m4
Revision:
6137
Committed:
Thu Jun 11 19:45:40 2015 UTC
(10 years, 2 months ago) by
michael
File size:
241 byte(s)
Log Message:
- ax_arg_enable_debugging.m4: use AS_IF
File Contents
#
Content
1
AC_DEFUN
(
[
AX_ARG_ENABLE_DEBUGGING
]
,
[
2
AC_ARG_ENABLE([debugging
]
,
[
AS_HELP_STRING([--enable-debugging
]
,
[
Enable debugging.
]
)
]
,
[
debugging="$enableval"
]
,
[
debugging="no"
]
)
3
4
AS_IF
(
[
test "$debugging" = "yes"
]
,
[
5
CFLAGS="-Wall -g -O0"
6
]
)
7
]
)