[smuxi: 23/26] configure.ac: disable release build profile
- From: Mirco M. M. Bauer <mmmbauer src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [smuxi: 23/26] configure.ac: disable release build profile
- Date: Wed, 14 Oct 2015 16:51:21 +0000 (UTC)
commit 283c30f10ab1b35c54310a98e09552a96e361986
Author: Mirco Bauer <meebey meebey net>
Date: Fri Oct 9 22:10:09 2015 +0200
configure.ac: disable release build profile
Release builds, that is without log4net and without debug symbol files (.mdb)
are not supported at this point, as they have no advantage at runtime but
disadvantages to analyze bugs.
configure.ac | 17 ++++++++++-------
1 files changed, 10 insertions(+), 7 deletions(-)
---
diff --git a/configure.ac b/configure.ac
index d70659e..3a8162d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -167,14 +167,17 @@ SHAMROCK_CHECK_MONO_2_0_GAC_ASSEMBLIES([
])
PROFILE=debug
-AC_ARG_ENABLE(release,
- AC_HELP_STRING([--enable-release],
- [Use 'RELEASE' Configuration [default=NO]]),
- enable_release=yes, enable_release=no)
+# Release builds, that is without log4net and without debug symbol files (.mdb)
+# are not supported at this point, as they have no advantage at runtime but
+# disadvantages to analyze bugs.
+#AC_ARG_ENABLE(release,
+# AC_HELP_STRING([--enable-release],
+# [Use 'RELEASE' Configuration [default=NO]]),
+# enable_release=yes, enable_release=no)
AM_CONDITIONAL(ENABLE_RELEASE, test x$enable_release = xyes)
-if test "x$enable_release" = "xyes" ; then
- PROFILE=release
-fi
+#if test "x$enable_release" = "xyes" ; then
+# PROFILE=release
+#fi
AC_ARG_ENABLE(debug,
AC_HELP_STRING([--enable-debug],
[Use 'DEBUG' Configuration [default=YES]]),
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]