summaryrefslogtreecommitdiff
path: root/ace-config.in
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>1999-10-30 00:59:04 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>1999-10-30 00:59:04 +0000
commit845b23defb0b4362bc3fad3eb8c2efbf7672bc2c (patch)
tree59178ead6930b52aafa0b62f68b27b84e3bb2ee8 /ace-config.in
parentce98ffea2b35f9f92ce115b6d85a910771e4c031 (diff)
downloadATCD-845b23defb0b4362bc3fad3eb8c2efbf7672bc2c.tar.gz
ChangeLogTag:Fri Oct 29 19:53:59 1999 Ossama Othman <othman@cs.wustl.edu>
Diffstat (limited to 'ace-config.in')
-rw-r--r--ace-config.in20
1 files changed, 13 insertions, 7 deletions
diff --git a/ace-config.in b/ace-config.in
index 25e92e47fef..38b755857d2 100644
--- a/ace-config.in
+++ b/ace-config.in
@@ -26,20 +26,20 @@ pkgincludedir=${includedir}/@PACKAGE@
usage()
{
cat <<EOF
-Usage: ace-config [OPTIONS]... [LIBRARY]...
+Usage: ace-config OPTION [OPTIONS...] [LIBRARY]
-Generic options
+Generic options:
--version output ACE 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 ACE 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 ACE.
+the_compiler="@CXX@"
+the_libs="$the_libs @ACE_LIBDIR@ @ACE_LIBS@"
+the_flags="$the_flags @ACE_INCLUDEDIR@ @CXXFLAGS@"
+
while test $# -gt 0; do
case "$1" in
-*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
@@ -118,9 +123,10 @@ while test $# -gt 0; do
usage 1
;;
ace)
- the_compiler="@CXX@"
- the_libs="$the_libs @ACE_LIBDIR@ @ACE_LIBS@"
- the_flags="$the_flags @ACE_INCLUDEDIR@ @CXXFLAGS@"
+# These are set before this option parsing loop begins.
+# the_compiler="@CXX@"
+# the_libs="$the_libs @ACE_LIBDIR@ @ACE_LIBS@"
+# the_flags="$the_flags @ACE_INCLUDEDIR@ @CXXFLAGS@"
;;
netsvcs)
echo "Currently unsupported."