From c4d817c9cab967c16a33e6dd225762f28f6c7a0e Mon Sep 17 00:00:00 2001 From: Ram Viswanadha Date: Wed, 31 Jul 2002 23:41:33 +0000 Subject: [PATCH] ICU-2035 shlib-c and shlib-cc for building shared libraries X-SVN-Rev: 9490 --- icu4c/source/config/icu-config-bottom | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/icu4c/source/config/icu-config-bottom b/icu4c/source/config/icu-config-bottom index b757916b250..3e147c74ac3 100644 --- a/icu4c/source/config/icu-config-bottom +++ b/icu4c/source/config/icu-config-bottom @@ -1,5 +1,5 @@ ## -*-sh-*- -## BEGIN of icu-config-bottom. $Revision: 1.4 $ +## BEGIN of icu-config-bottom. $Revision: 1.5 $ ## Copyright (c) 2002, International Business Machines Corporation and ## others. All Rights Reserved. @@ -46,6 +46,8 @@ allflags() echo " --prefix=XXX Set prefix to XXX for remainder of command" echo " --sbindir Print system binary path (sbin) " echo " --shared-datadir Print shared data (share) path. This is NOT the ICU data dir." + echo " --shlib-c Print the command to compile and build C shared libraries with ICU" + echo " --shlib-cc Print the command to compile and build C++ shared libraries with ICU" echo " --sysconfdir Print system config (etc) path" echo " --unicode-version Print version of Unicode data used in ICU ($UNICODE_VERSION)" echo " --version Print ICU version ($VERSION)" @@ -285,7 +287,15 @@ do echo $pkgdatadir ;; - --version) + --shlib-c) + echo $SHLIB_c + ;; + + --shlib-cc) + echo $SHLIB_cc + ;; + + --version) echo $VERSION ;;