summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfuankg <fuankg@13f79535-47bb-0310-9956-ffa450edef68>2013-06-05 02:39:07 +0000
committerfuankg <fuankg@13f79535-47bb-0310-9956-ffa450edef68>2013-06-05 02:39:07 +0000
commit9033930c4e88eda2eab148683352a2afc4108bdf (patch)
tree7ba1b8f5bf8c403e7cac142c1c42c1160f03e455
parente5891db75b0657652857be370ee2a8fa83515856 (diff)
downloadlibapr-9033930c4e88eda2eab148683352a2afc4108bdf.tar.gz
Make AP[R|U]_IS_DEV_STRING define-able from CFLAGS.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/0.9.x@1489687 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--include/apr_version.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/apr_version.h b/include/apr_version.h
index 18b774186..3cb61f09b 100644
--- a/include/apr_version.h
+++ b/include/apr_version.h
@@ -106,7 +106,9 @@ APR_DECLARE(const char *) apr_version_string(void);
/** Internal: string form of the "is dev" flag */
#ifdef APR_IS_DEV_VERSION
+#ifndef APR_IS_DEV_STRING
#define APR_IS_DEV_STRING "-dev"
+#endif
#else
#define APR_IS_DEV_STRING ""
#endif