~brazabr/dockmanager/exaile-helper

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Michal Hruby
  • Date: 2011-03-09 12:20:34 UTC
  • Revision ID: michal.mhr@gmail.com-20110309122034-6ga21uefw9zq3ri2
More configure cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
95
95
                [Use 'DEBUG' Configuration [default=YES]]),
96
96
                enable_debug=yes, enable_debug=no)
97
97
AM_CONDITIONAL(ENABLE_DEBUG, test "x$enable_debug" = "xyes")
98
 
if test "x$enable_debug" = "xyes" ; then
99
 
        CONFIG_REQUESTED="yes"
100
 
fi
101
 
dnl }}}
102
 
 
103
 
dnl {{{ enable release build configuration
104
 
AC_ARG_ENABLE(release,
105
 
        AC_HELP_STRING([--enable-release],
106
 
                [Use 'RELEASE' Configuration [default=NO]]),
107
 
                enable_release=yes, enable_release=no)
108
 
AM_CONDITIONAL(ENABLE_RELEASE, test x$enable_release = xyes)
109
 
if test "x$enable_release" = "xyes" ; then
110
 
        CONFIG_REQUESTED="yes"
111
 
fi
112
 
if test -z "$CONFIG_REQUESTED" ; then
113
 
        AM_CONDITIONAL(ENABLE_DEBUG, true)
114
 
fi
115
98
dnl }}}
116
99
 
117
100
AC_CONFIG_FILES([
138
121
    Install Prefix:     ${prefix}
139
122
 
140
123
  Build/Development
141
 
    Release Build:      ${enable_release}
 
124
     Debug enabled:     ${enable_debug}
142
125
 
143
126
EOF