summaryrefslogtreecommitdiff
path: root/m4/ace.m4
diff options
context:
space:
mode:
Diffstat (limited to 'm4/ace.m4')
-rw-r--r--m4/ace.m462
1 files changed, 61 insertions, 1 deletions
diff --git a/m4/ace.m4 b/m4/ace.m4
index 602c1335650..b731ee793e3 100644
--- a/m4/ace.m4
+++ b/m4/ace.m4
@@ -249,7 +249,67 @@ dnl line, then "no_x" is set to "yes."
AC_MSG_WARN([existing gperf may be overwritten during installation])
fi
])
-AM_CONDITIONAL([COMPILE_GPERF], [test X$ace_user_with_gperf = Xyes])
+ AM_CONDITIONAL([COMPILE_GPERF], [test X$ace_user_with_gperf = Xyes])
+
+ AC_ARG_WITH([rmcast],
+ AC_HELP_STRING([--with-rmcast],[compile the ACE_RMCast library [[yes]]]),
+ [
+ case "${withval}" in
+ yes)
+ ace_user_with_rmcast=yes
+ ;;
+ no)
+ ace_user_with_rmcast=no
+ ;;
+ *)
+ AC_MSG_ERROR([bad value ${withval} for --with-rmcast])
+ ;;
+ esac
+ ],
+ [
+ ace_user_with_rmcast=yes
+ ])
+ AM_CONDITIONAL([BUILD_RMCAST], [test X$ace_user_with_rmcast = Xyes])
+
+ AC_ARG_WITH([qos],
+ AC_HELP_STRING([--with-qos],[compile the ACE_QoS library [[no]]]),
+ [
+ case "${withval}" in
+ yes)
+ ace_user_with_qos=yes
+ ;;
+ no)
+ ace_user_with_qos=no
+ ;;
+ *)
+ AC_MSG_ERROR([bad value ${withval} for --with-qos])
+ ;;
+ esac
+ ],
+ [
+ ace_user_with_qos=no
+ ])
+ AM_CONDITIONAL([BUILD_QOS], [test X$ace_user_with_qos = Xyes])
+
+ AC_ARG_WITH([ssl],
+ AC_HELP_STRING([--with-ssl],[compile the ACE_SSL library [[no]]]),
+ [
+ case "${withval}" in
+ yes)
+ ace_user_with_ssl=yes
+ ;;
+ no)
+ ace_user_with_ssl=no
+ ;;
+ *)
+ AC_MSG_ERROR([bad value ${withval} for --with-ssl])
+ ;;
+ esac
+ ],
+ [
+ ace_user_with_ssl=no
+ ])
+ AM_CONDITIONAL([BUILD_SSL], [test X$ace_user_with_ssl = Xyes])
#AC_ARG_WITH([tao],
# AC_HELP_STRING([--with-tao],[build TAO (the ACE ORB) [[yes]]]),