summaryrefslogtreecommitdiff
path: root/cpp/configure.ac
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2013-03-15 20:27:37 +0000
committerAlan Conway <aconway@apache.org>2013-03-15 20:27:37 +0000
commit021836b659be167b93f00bd76043a3fff53819eb (patch)
tree52e19f97f967568a7de304fb867e2a5288c6e47a /cpp/configure.ac
parent9bdb24353d5eaf69ebf2c741ef6160d09fd90597 (diff)
downloadqpid-python-021836b659be167b93f00bd76043a3fff53819eb.tar.gz
QPID-4640: Deprecate autotools build system.
This patch does the following: - Update INSTALL and README files to refer to the cmake build. - configure script prints a deprecation notice. The autotools instructions are still available in INSTALL-AUTOTOOLS, which also has a deprecation notice. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1457098 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/configure.ac')
-rw-r--r--cpp/configure.ac17
1 files changed, 17 insertions, 0 deletions
diff --git a/cpp/configure.ac b/cpp/configure.ac
index e876dd66af..1523af81af 100644
--- a/cpp/configure.ac
+++ b/cpp/configure.ac
@@ -33,6 +33,7 @@ AC_LANG([C++])
# doesn't exist)
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],[])],[],[AC_MSG_ERROR([No C++ compiler found])])
+
# Check for optional use of help2man
AC_CHECK_PROG([HELP2MAN], [help2man], [help2man])
AC_ARG_WITH([help2man],
@@ -550,3 +551,19 @@ AC_CONFIG_FILES([
])
AC_OUTPUT
+cat <<EOF
+
+
+ ============================== DEPRECATED ==============================
+
+ The autotools build system is deprecated, use the cmake build system
+ instead as described in the INSTALL file.
+
+ You can continue to use the autotools system for now, but it will be
+ removed in a future release. If you encounter any problems with the
+ cmake system send email to dev@qpid.apache.org.
+
+ ========================================================================
+
+
+EOF