summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorMichael Steinert <mike.steinert@gmail.com>2012-06-27 12:39:21 -0600
committerAlan Antonuk <alan.antonuk@gmail.com>2013-04-09 15:49:19 -0700
commita75d5273bc143f62f4806537ccaa26078cefec36 (patch)
treed5426a23699e76a8c663458f7101d43ecb225882 /configure.ac
parent42a448739d5787cde02574632cd4d58c6242c279 (diff)
downloadrabbitmq-c-github-ask-a75d5273bc143f62f4806537ccaa26078cefec36.tar.gz
Update to 0.2.1 for release
- Fixed a couple small MIPS-related alignment warnings - Updated version & created a dist tarball - Added a configure option to disable examples Signed-off-by: Michael Steinert <mike.steinert@gmail.com>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac8
1 files changed, 8 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 7737adc..dce2d1b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -183,6 +183,13 @@ AS_IF([test "x$enable_docs" != "xno"],
[enable_docs=no])])
AM_CONDITIONAL([DOCS], [test "x$enable_docs" = "xyes"])
+# Configure examples
+AC_ARG_ENABLE([examples],
+ [AS_HELP_STRING([--enable-examples],
+ [build example code @<:@auto@:>@])],,
+ [enable_examples=yes])
+AM_CONDITIONAL([EXAMPLES], [test "x$enable_examples" = "xyes"])
+
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_FILES([
librabbitmq.pc
@@ -196,4 +203,5 @@ $PACKAGE_NAME build options:
SSL/TLS: $with_ssl
Tools: $enable_tools
Documentation: $enable_docs
+ Examples: $enable_examples
])