[PATCH] (issue162) Change DO_RELEASE_BUILD to IS_TAG_BUILD to determine g_debug initializatation
Wald Commits
scm-commit at wald.intevation.org
Mon Oct 13 16:19:32 CEST 2014
# HG changeset patch
# User Andre Heinecke <andre.heinecke at intevation.de>
# Date 1413209968 -7200
# Node ID 12ed0b72e9f5f1fd8734f831d5f07ca8459bd2c9
# Parent 5f4e77acb2f33a95b3728b52de806b29b7dcc02d
(issue162) Change DO_RELEASE_BUILD to IS_TAG_BUILD to determine g_debug initializatation
diff -r 5f4e77acb2f3 -r 12ed0b72e9f5 cinst/certificate-installer.c
--- a/cinst/certificate-installer.c Mon Oct 13 16:10:18 2014 +0200
+++ b/cinst/certificate-installer.c Mon Oct 13 16:19:28 2014 +0200
@@ -202,7 +202,7 @@
return 0;
}
-#ifdef DO_RELEASE_BUILD
+#ifdef IS_TAG_BUILD
bool g_debug = false;
#else
bool g_debug = true;
diff -r 5f4e77acb2f3 -r 12ed0b72e9f5 cinst/nss-installer.c
--- a/cinst/nss-installer.c Mon Oct 13 16:10:18 2014 +0200
+++ b/cinst/nss-installer.c Mon Oct 13 16:19:28 2014 +0200
@@ -835,7 +835,7 @@
}
}
-#ifdef DO_RELEASE_BUILD
+#ifdef IS_TAG_BUILD
bool g_debug = false;
#else
bool g_debug = true;
diff -r 5f4e77acb2f3 -r 12ed0b72e9f5 packaging/desktopshellrun.cpp
--- a/packaging/desktopshellrun.cpp Mon Oct 13 16:10:18 2014 +0200
+++ b/packaging/desktopshellrun.cpp Mon Oct 13 16:19:28 2014 +0200
@@ -55,7 +55,7 @@
#undef INITGUID
-#ifdef DO_RELEASE_BUILD
+#ifdef IS_TAG_BUILD
bool g_debug = false;
#else
bool g_debug = true;
diff -r 5f4e77acb2f3 -r 12ed0b72e9f5 ui/administrator.cpp
--- a/ui/administrator.cpp Mon Oct 13 16:10:18 2014 +0200
+++ b/ui/administrator.cpp Mon Oct 13 16:19:28 2014 +0200
@@ -40,7 +40,7 @@
Q_IMPORT_PLUGIN(QXcbIntegrationPlugin)
#endif
-#ifdef DO_RELEASE_BUILD
+#ifdef IS_TAG_BUILD
bool g_debug = false;
#else
bool g_debug = true;
diff -r 5f4e77acb2f3 -r 12ed0b72e9f5 ui/main.cpp
--- a/ui/main.cpp Mon Oct 13 16:10:18 2014 +0200
+++ b/ui/main.cpp Mon Oct 13 16:19:28 2014 +0200
@@ -52,7 +52,7 @@
Q_IMPORT_PLUGIN(QXcbIntegrationPlugin)
#endif
-#ifdef DO_RELEASE_BUILD
+#ifdef IS_TAG_BUILD
bool g_debug = false;
#else
bool g_debug = true;
More information about the Trustbridge-commits
mailing list