aboutsummaryrefslogtreecommitdiff
path: root/m4/ac_espik_debug.m4
blob: d0e37953d4dab67b7cd64447baf3e1f362fb3fb6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
dnl Debug mode
AC_DEFUN([AC_ESPIK_DEBUG]),
[
  AC_ARG_ENABLE(
    [debug],
    AC_HELP_STRING(
      [--enable-debug], [Enable debug mode (default=yes)]),
    [if test "$enable_debug" = "yes" ; then
      DEBUG_CFLAGS="-g -D_ESPIK_DEBUG_"
     else
      DEBUG_LDFLAGS="-s"
     fi],
    [debug="yes"])

  AC_SUBST(DEBUG_CFLAGS)
  AC_SUBST(DEBUG_LDFLAGS)
])