summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2004-10-10 06:13:41 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2004-10-10 06:13:41 +0000
commitaa5e07728303817a017f4e3ad3f70e0a294ee237 (patch)
tree665073346ee22a22ff93b94022b67ec81e32ba4e /m4
parentff0121f4f1eb23b1d18fac75577ff48d564c3275 (diff)
downloadATCD-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.m424
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],