diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /intl/icu/source/config/test-icu-config.sh | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'intl/icu/source/config/test-icu-config.sh')
-rwxr-xr-x | intl/icu/source/config/test-icu-config.sh | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/intl/icu/source/config/test-icu-config.sh b/intl/icu/source/config/test-icu-config.sh new file mode 100755 index 000000000..0f22484e1 --- /dev/null +++ b/intl/icu/source/config/test-icu-config.sh @@ -0,0 +1,50 @@ +#!/bin/sh +## -*-sh-*- +## Copyright (C) 2016 and later: Unicode, Inc. and others. +## License & terms of use: http://www.unicode.org/copyright.html +## Copyright (c) 2002, International Business Machines Corporation and +## others. All Rights Reserved. +# +# Just a script to test out icu-config. +# + +set -x +which icu-config +icu-config +icu-config -? +icu-config --BAD ARGUMENT +icu-config --bindir +icu-config --cflags +icu-config --cxx +icu-config --cc +icu-config --cxxflags +icu-config --cppflags +icu-config --cppflags-searchpath +icu-config --incpath +icu-config --invoke +icu-config --invoke=genrb +icu-config --invoke=./myapp +icu-config --invoke=/path/to/myapp +icu-config --ldflags +icu-config --ldflags-searchpath +icu-config --ldflags-libsonly +icu-config --ldflags-system +icu-config --ldflags-ustdio +icu-config --exec-prefix +icu-config --prefix +icu-config --sbindir +icu-config --sysconfdir +icu-config --mandir +icu-config --icudata +icu-config --icudatadir +icu-config --icudata-mode +icu-config --icudata-install-dir +icu-config --shared-datadir +icu-config --unicode-version +icu-config --version +# should fail +icu-config --prefix=/tmp --bindir +# following needs to point to an alternate path that will work +icu-config --prefix=/Users/srl/II --cflags +icu-config --detect-prefix --ldflags + |