diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 2004-10-10 06:13:41 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 2004-10-10 06:13:41 +0000 |
commit | aa5e07728303817a017f4e3ad3f70e0a294ee237 (patch) | |
tree | 665073346ee22a22ff93b94022b67ec81e32ba4e /m4 | |
parent | ff0121f4f1eb23b1d18fac75577ff48d564c3275 (diff) | |
download | ATCD-aa5e07728303817a017f4e3ad3f70e0a294ee237.tar.gz |
ChangeLogTag:Sat Oct 9 23:08:04 2004 Ossama Othman <ossama@dre.vanderbilt.edu>
Diffstat (limited to 'm4')
-rw-r--r-- | m4/ace.m4 | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/m4/ace.m4 b/m4/ace.m4 index e893198d8a9..534d01ba929 100644 --- a/m4/ace.m4 +++ b/m4/ace.m4 @@ -563,6 +563,7 @@ AC_DEFUN([ACE_COMPILATION_OPTIONS], ;; no) AC_DEFINE([ACE_NDEBUG]) + AC_DEFINE([ACE_USE_RCSID],[0]) ;; *) AC_MSG_ERROR([bad value ${enableval} for --enable-debug]) @@ -891,6 +892,29 @@ AC_CACHE_CHECK([whether to compile/use the ACE_SSL library], AM_CONDITIONAL([BUILD_SSL], [test X$ace_user_with_ssl = Xyes]) ]) +AC_DEFUN([ACE_WITH_ACEXML], +[AC_ARG_WITH([acexml], + AS_HELP_STRING([--with-acexml], + [compile/use the ACEXML library [[yes]]]), + [case "${withval}" in + yes) + ace_user_with_acexml=yes + ;; + no) + ace_user_with_acexml=no + ;; + *) + AC_MSG_ERROR(bad value ${withval} for --with-acexml) + ;; + esac], + [ + ace_user_with_acexml=yes + ]) +AC_CACHE_CHECK([whether to compile/use the ACEXML library], + [ace_user_with_acexml], [ace_user_with_acexml=yes]) +AM_CONDITIONAL([BUILD_ACEXML], [test X$ace_user_with_acexml = Xyes]) +]) + AC_DEFUN([ACE_WITH_USES_WCHAR], [AC_ARG_WITH([uses-wchar], AS_HELP_STRING([--with-uses-wchar], |