Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | #!/bin/sh |
michael@0 | 2 | ## -*-sh-*- |
michael@0 | 3 | ## Copyright (c) 2002, International Business Machines Corporation and |
michael@0 | 4 | ## others. All Rights Reserved. |
michael@0 | 5 | # |
michael@0 | 6 | # Just a script to test out icu-config. |
michael@0 | 7 | # |
michael@0 | 8 | |
michael@0 | 9 | set -x |
michael@0 | 10 | which icu-config |
michael@0 | 11 | icu-config |
michael@0 | 12 | icu-config -? |
michael@0 | 13 | icu-config --BAD ARGUMENT |
michael@0 | 14 | icu-config --bindir |
michael@0 | 15 | icu-config --cflags |
michael@0 | 16 | icu-config --cxx |
michael@0 | 17 | icu-config --cc |
michael@0 | 18 | icu-config --cxxflags |
michael@0 | 19 | icu-config --cppflags |
michael@0 | 20 | icu-config --cppflags-searchpath |
michael@0 | 21 | icu-config --incpath |
michael@0 | 22 | icu-config --invoke |
michael@0 | 23 | icu-config --invoke=genrb |
michael@0 | 24 | icu-config --invoke=./myapp |
michael@0 | 25 | icu-config --invoke=/path/to/myapp |
michael@0 | 26 | icu-config --ldflags |
michael@0 | 27 | icu-config --ldflags-layout |
michael@0 | 28 | icu-config --ldflags-searchpath |
michael@0 | 29 | icu-config --ldflags-libsonly |
michael@0 | 30 | icu-config --ldflags-system |
michael@0 | 31 | icu-config --ldflags-ustdio |
michael@0 | 32 | icu-config --exec-prefix |
michael@0 | 33 | icu-config --prefix |
michael@0 | 34 | icu-config --sbindir |
michael@0 | 35 | icu-config --sysconfdir |
michael@0 | 36 | icu-config --mandir |
michael@0 | 37 | icu-config --icudata |
michael@0 | 38 | icu-config --icudatadir |
michael@0 | 39 | icu-config --icudata-mode |
michael@0 | 40 | icu-config --icudata-install-dir |
michael@0 | 41 | icu-config --shared-datadir |
michael@0 | 42 | icu-config --unicode-version |
michael@0 | 43 | icu-config --version |
michael@0 | 44 | # should fail |
michael@0 | 45 | icu-config --prefix=/tmp --bindir |
michael@0 | 46 | # following needs to point to an alternate path that will work |
michael@0 | 47 | icu-config --prefix=/Users/srl/II --cflags |
michael@0 | 48 | icu-config --detect-prefix --ldflags --ldflags-layout |
michael@0 | 49 |