ViewVC Help
View File
|
Revision Log
|
Show Annotations
|
View Changeset
|
Root Listing
root
/
svn
/
ircd-hybrid
/
trunk
/
m4
/
ax_arg_enable_debugging.m4
Revision:
4360
Committed:
Sat Aug 2 20:40:29 2014 UTC
(11 years ago) by
michael
File size:
239 byte(s)
Log Message:
- Got rid of acinclude.m4
File Contents
#
User
Rev
Content
1
michael
4360
AC_DEFUN
(
[
AX_ARG_ENABLE_DEBUGGING
]
,
[
2
AC_ARG_ENABLE([debugging
]
,
[
AS_HELP_STRING([--enable-debugging
]
,
[
Enable debugging.
]
)
]
,
[
debugging="$enableval"
]
,
[
debugging="no"
]
)
3
if
test
"$debugging"
=
"yes"
;
then
4
CFLAGS
=
"-Wall -g -O0"
5
fi
6
]
)