diff options
author | jtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2005-12-21 21:16:47 +0000 |
---|---|---|
committer | jtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2005-12-21 21:16:47 +0000 |
commit | 43694b8671ac7fe5247593f3ee2759b7347640e5 (patch) | |
tree | 040b9c6a658c1e62770f1054e1fa86f58b9701a8 /TAO/m4 | |
parent | fe5ece124674667d0758236f41b3421399f70cb0 (diff) | |
download | ATCD-43694b8671ac7fe5247593f3ee2759b7347640e5.tar.gz |
ChangeLogTag: Wed Dec 21 13:06:53 2005 J.T. Conklin <jtc@acorntoolworks.com>
Diffstat (limited to 'TAO/m4')
-rw-r--r-- | TAO/m4/tao.m4 | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/TAO/m4/tao.m4 b/TAO/m4/tao.m4 new file mode 100644 index 00000000000..3faa51981fd --- /dev/null +++ b/TAO/m4/tao.m4 @@ -0,0 +1,44 @@ +dnl ------------------------------------------------------------------------- +dnl $Id$ +dnl +dnl tao.m4 +dnl +dnl ACE M4 include file which contains TAO specific M4 macros +dnl for enabling/disabling certain TAO features. +dnl +dnl ------------------------------------------------------------------------- + +dnl Copyright (C) 1998, 1999, 2000, 2002 Ossama Othman +dnl +dnl All Rights Reserved +dnl +dnl This library is free software; you can redistribute it and/or +dnl modify it under the current ACE distribution terms. +dnl +dnl This library is distributed in the hope that it will be useful, +dnl but WITHOUT ANY WARRANTY; without even the implied warranty of +dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + + +AC_DEFUN([TAO_ENABLE_MINIMUM_CORBA], +[AC_ARG_ENABLE([minimum-corba], + AS_HELP_STRING([--enable-minimum-corba], + [build TAO with minimum corba support [[[no]]]]), +[ +case "${enableval}" in + yes) + tao_user_enable_minimum_corba=yes + ;; + no) + tao_user_enable_minimum_corba=no + ;; + *) + AC_MSG_ERROR([bad value ${enableval} for --enable-minimum-corba]) + ;; +esac +],[ +tao_user_enable_minimum_corba=no +]) +AM_CONDITIONAL([BUILD_MINIMUM_CORBA], + [test X$tao_user_enable_minimum_corba = Xyes]) +]) |