Lines Matching refs:config
23 # 1) "-i <path>" .. the <path> will be searched for either a direct path to icu-config,
25 # In other words, if icu-config is /opt/local/bin/icu-config, any of the following will work:
28 # -i /opt/local/bin/icu-config
40 # directly to the icu-config file.
43 # ICU_CONFIG=/home/srl/E/II/bin/icu-config
45 # 3) ICU_CONFIG can be set in the environment to point to icu-config ( it's overridden by the .icurunrc script )
47 # 4) if "icu-config" is on the PATH, it will be used.
54 # * should support pkg-config, which is preferred over icu-config, although icu-config makes this usage
67 echo "Usage: $0 [ -i /path/to/icu | -i /path/to/icu-config ] file.c{pp} [ program args ...]"
99 ICU_CONFIG=`which icu-config 2>/dev/null || echo`
117 elif [ -x "${ICU_OVERRIDE}/icu-config" ];
119 ICU_CONFIG="${ICU_OVERRIDE}/icu-config"
120 elif [ -x "${ICU_OVERRIDE}/bin/icu-config" ];
122 ICU_CONFIG="${ICU_OVERRIDE}/bin/icu-config"
123 elif [ -x "${ICU_OVERRIDE}/source/config/icu-config" ];
125 ICU_CONFIG="${ICU_OVERRIDE}/source/config/icu-config"
127 elif [ -x "${ICU_OVERRIDE}/config/icu-config" ];
129 ICU_CONFIG="${ICU_OVERRIDE}/config/icu-config"
139 echo "$0: Error: \"${ICU_CONFIG}\" is not an icu-config script. Goodbye." >&2