summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorstorri <storri@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-01-30 21:48:03 +0000
committerstorri <storri@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-01-30 21:48:03 +0000
commit65b30cbe5ab41146a110f6963dca773f2347602a (patch)
tree03b29bb1f687d4d1248a562b3497339fc6c8a93c /m4
parent1b8c14b013899f1142875beb49903232661e285c (diff)
downloadATCD-65b30cbe5ab41146a110f6963dca773f2347602a.tar.gz
Updating for autoconfig project
Diffstat (limited to 'm4')
-rw-r--r--m4/subsets.m440
1 files changed, 38 insertions, 2 deletions
diff --git a/m4/subsets.m4 b/m4/subsets.m4
index 95f6c517d3c..0b241612f7c 100644
--- a/m4/subsets.m4
+++ b/m4/subsets.m4
@@ -8,7 +8,7 @@ dnl that set/determine which ACE subsets to build.
dnl
dnl -------------------------------------------------------------------------
-dnl Copyright (C) 1998, 1999 Ossama Othman
+dnl Copyright (C) 1998, 1999, 2001 Ossama Othman
dnl
dnl All Rights Reserved
dnl
@@ -278,6 +278,26 @@ AC_ARG_ENABLE(lib-memory,
ace_user_enable_lib_full=no
],)
+
+AC_ARG_ENABLE(lib-timer,
+ [ --enable-lib-timer build libACE_Timer library ],
+ [
+ case "${enableval}" in
+ yes)
+ ACE_CREATE_LIBACE_TIMER
+ ;;
+ no)
+ ace_user_enable_lib_timer=no
+ ;;
+ *)
+ AC_MSG_ERROR(bad value ${enableval} for --enable-lib-timer)
+ ;;
+ esac
+
+ dnl Disable full ACE library build
+ ace_user_enable_lib_full=no
+ ],)
+
AC_ARG_ENABLE(lib-token,
[ --enable-lib-token build libACE_Token library ],
[
@@ -343,11 +363,12 @@ if test $ace_user_enable_lib_full = no &&
test $ace_user_enable_lib_svcconf = no &&
test $ace_user_enable_lib_streams = no &&
test $ace_user_enable_lib_memory = no &&
+ test $ace_user_enable_lib_timer = no &&
test $ace_user_enable_lib_token = no &&
test $ace_user_enable_lib_other = no; then
dnl If we get here then no ACE libraries will be built!
- AC_MSG_ERROR(no ACE components will be built. Specify which components to build)
+ AC_MSG_ERROR(No ACE components will be built. Specify which components to build)
fi dnl No components will be built!
@@ -385,6 +406,9 @@ AM_CONDITIONAL(BUILD_STREAMS_FILES,
AM_CONDITIONAL(BUILD_MEMORY_FILES,
test X$ace_user_enable_lib_memory = Xyes)
+AM_CONDITIONAL(BUILD_TIMER_FILES,
+ test X$ace_user_enable_lib_timer = Xyes)
+
AM_CONDITIONAL(BUILD_TOKEN_FILES,
test X$ace_user_enable_lib_token = Xyes)
@@ -513,6 +537,16 @@ AC_DEFUN(ACE_CREATE_LIBACE_MEMORY,
ACE_CREATE_LIBACE_OS
])
+dnl Set the component dependencies for the libACE_Timer library
+dnl Usage: ACE_CREATE_LIBACE_TIMER
+AC_DEFUN(ACE_CREATE_LIBACE_TIMER,
+[
+ ace_user_enable_lib_timer=yes
+
+ dnl Be careful not to go into a circular/recursive loop with these macros!
+ ACE_CREATE_LIBACE_OS
+])
+
dnl Set the component dependencies for the libACE_Token library
dnl Usage: ACE_CREATE_LIBACE_TOKEN
AC_DEFUN(ACE_CREATE_LIBACE_TOKEN,
@@ -570,6 +604,7 @@ AC_DEFUN(ACE_CREATE_ALL_COMPONENTS,
ace_user_enable_lib_svcconf=yes
ace_user_enable_lib_streams=yes
ace_user_enable_lib_memory=yes
+ ace_user_enable_lib_timer=yes
ace_user_enable_lib_token=yes
ace_user_enable_lib_other=yes
])
@@ -589,6 +624,7 @@ AC_DEFUN(ACE_DISABLE_ALL_COMPONENTS,
ace_user_enable_lib_svcconf=no
ace_user_enable_lib_streams=no
ace_user_enable_lib_memory=no
+ ace_user_enable_lib_timer=no
ace_user_enable_lib_token=no
ace_user_enable_lib_other=no
])