summaryrefslogtreecommitdiff
path: root/TAO/tao-config.in
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>1999-11-07 01:10:43 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>1999-11-07 01:10:43 +0000
commit0c8b708e3501b933ce9571a1a6791349957b8478 (patch)
treecb31db78baa4fd82acd840f9f675512b259683d1 /TAO/tao-config.in
parentaa883b1b9f2e1147968af71f65064ba73a4c1e2d (diff)
downloadATCD-0c8b708e3501b933ce9571a1a6791349957b8478.tar.gz
ChangeLogTag:Sat Nov 6 19:07:18 1999 Ossama Othman <othman@cs.wustl.edu>
Diffstat (limited to 'TAO/tao-config.in')
-rw-r--r--TAO/tao-config.in20
1 files changed, 13 insertions, 7 deletions
diff --git a/TAO/tao-config.in b/TAO/tao-config.in
index 53c654e8565..19535df11c0 100644
--- a/TAO/tao-config.in
+++ b/TAO/tao-config.in
@@ -26,20 +26,20 @@ pkgincludedir=${includedir}/@PACKAGE@
usage()
{
cat <<EOF
-Usage: tao-config [OPTIONS]... [LIBRARY]...
+Usage: tao-config OPTION [OPTIONS...] [LIBRARY]
-Generic options
+Generic options:
--version output TAO version information
--help display this help and exit
-Compilation support options
+Compilation support options:
--cxx print C++ compiler used for compiling
--cxxflags print C++ pre-processor and compiler flags
--libs print library linking information
--libs-only-L only print the -L/-R part of --libs
--libs-only-l only print the -l part of --libs
-Install directories ace-libs was configured to
+Install directories TAO was configured with:
--prefix --exec-prefix --bindir --sbindir --libexecdir --datadir
--sysconfdir --sharedstatedir --localstatedir --libdir --infodir
--mandir --includedir
@@ -69,6 +69,11 @@ cxxflags=false
libs_L=false
libs_l=false
+# These values are only valid for TAO.
+the_compiler="@CXX@"
+the_libs="$the_libs @TAO_LIBDIR@ @TAO_LIBS@"
+the_flags="$the_flags @TAO_INCLUDEDIR@ @CXXFLAGS@"
+
while test $# -gt 0; do
case "$1" in
-*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
@@ -124,9 +129,10 @@ while test $# -gt 0; do
the_flags="$the_flags `ace-config --cxxflags ace`"
;;
tao)
- the_compiler="@CXX@"
- the_libs="$the_libs @TAO_LIBDIR@ @TAO_LIBS@"
- the_flags="$the_flags @TAO_INCLUDEDIR@ @CXXFLAGS@"
+# These are set before this option parsing loop begins.
+# the_compiler="@CXX@"
+# the_libs="$the_libs @TAO_LIBDIR@ @TAO_LIBS@"
+# the_flags="$the_flags @TAO_INCLUDEDIR@ @CXXFLAGS@"
;;
orbsvcs)
echo "Currently unsupported."