]>
Commit | Line | Data |
---|---|---|
729e4ab9 | 1 | # -*-autoconf-*- |
f3c0d7a5 A |
2 | AC_COPYRIGHT([ Copyright (C) 2016 and later: Unicode, Inc. and others. License & terms of use: http://www.unicode.org/copyright.html ]) |
3 | # AC_COPYRIGHT([ Copyright (c) 1999-2015, International Business Machines Corporation and others. All Rights Reserved. ]) | |
729e4ab9 A |
4 | # configure.in for ICU |
5 | # Stephen F. Booth, heavily modified by Yves and others | |
b75a7d8f | 6 | |
2ca993e8 A |
7 | # NOTE: please use 'autoreconf' to rebuild, otherwise 'aclocal && autoconf'. |
8 | ||
729e4ab9 | 9 | # Check for autoconf version |
2ca993e8 | 10 | AC_PREREQ(2.69) |
729e4ab9 | 11 | |
2ca993e8 | 12 | # Process this file with autoreconf to produce a configure script |
b331163b A |
13 | AC_INIT([ICU], |
14 | m4_esyscmd_s([sed -n 's/^[ ]*#[ ]*define[ ]*U_ICU_VERSION[ ]*"\([^"]*\)".*/\1/p' "./common/unicode/uvernum.h]"), | |
15 | [http://icu-project.org/bugs], | |
16 | [International Components for Unicode], | |
17 | [http://icu-project.org]) | |
4388f060 | 18 | |
3d1f044b A |
19 | # Instruct Python to never write any byte code to the ICU source tree. |
20 | PYTHONDONTWRITEBYTECODE=1 | |
21 | export PYTHONDONTWRITEBYTECODE | |
22 | ||
b331163b | 23 | AC_CONFIG_MACRO_DIR([config/m4]) |
729e4ab9 A |
24 | AC_CONFIG_SRCDIR([common/unicode/utypes.h]) |
25 | ||
b75a7d8f A |
26 | PACKAGE="icu" |
27 | AC_SUBST(PACKAGE) | |
28 | ||
729e4ab9 A |
29 | # Use custom echo test for newline option |
30 | # Current autoconf (2.65) gives incorrect echo newline option | |
31 | # for icu-config | |
32 | # This may be removed later - mow (June 17, 2010) | |
33 | ICU_ECHO_C= ICU_ECHO_N= ICU_ECHO_T= | |
34 | case `/bin/sh -c "echo -n x"` in | |
35 | -n*) | |
36 | case `/bin/sh -c "echo 'x\c'"` in | |
37 | *c*) ICU_ECHO_T=' ';; # ECHO_T is single tab character. | |
38 | *) ICU_ECHO_C='\c';; | |
39 | esac;; | |
40 | *) | |
41 | ICU_ECHO_N='-n';; | |
42 | esac | |
43 | AC_SUBST(ICU_ECHO_N) | |
44 | AC_SUBST(ICU_ECHO_C) | |
45 | AC_SUBST(ICU_ECHO_T) | |
46 | ||
b75a7d8f A |
47 | AC_MSG_CHECKING(for ICU version numbers) |
48 | ||
729e4ab9 | 49 | # Get the ICU version from uversion.h or other headers |
b75a7d8f A |
50 | geticuversion() { |
51 | [sed -n 's/^[ ]*#[ ]*define[ ]*U_ICU_VERSION[ ]*"\([^"]*\)".*/\1/p' "$@"] | |
52 | } | |
729e4ab9 A |
53 | getuversion() { |
54 | [sed -n 's/^[ ]*#[ ]*define[ ]*U_UNICODE_VERSION[ ]*"\([^"]*\)".*/\1/p' "$@"] | |
55 | } | |
56 | VERSION=`geticuversion $srcdir/common/unicode/uvernum.h` | |
b75a7d8f | 57 | if test x"$VERSION" = x; then |
4388f060 | 58 | as_fn_error $? "Cannot determine ICU version number from uvernum.h header file" "$LINENO" 5 |
729e4ab9 A |
59 | fi |
60 | ||
4388f060 A |
61 | #TODO: IcuBug:8502 |
62 | #if test "$VERSION" != "$PACKAGE_VERSION"; then | |
63 | # AC_MSG_ERROR([configure was generated for $PACKAGE_VERSION but uvernum.h has $VERSION - please rerun autoconf]) | |
64 | #fi | |
65 | ||
729e4ab9 A |
66 | UNICODE_VERSION=`getuversion $srcdir/common/unicode/uchar.h` |
67 | if test x"$UNICODE_VERSION" = x; then | |
4388f060 | 68 | AC_MSG_ERROR([Cannot determine Unicode version number from uchar.h header file]) |
b75a7d8f | 69 | fi |
729e4ab9 A |
70 | # Compute a reasonable library version from the release version. This is |
71 | # very bad, but that's wanted... We want to make sure that the LIB_VERSION | |
72 | # has at least a dot in it, so we'll add a .0 if needed. | |
4388f060 A |
73 | #[LIB_VERSION=`echo $VERSION | sed -e 's/\.//' -e 's/^\([^.]*\)$/\1.0/'`] |
74 | LIB_VERSION=$VERSION | |
b75a7d8f A |
75 | LIB_VERSION_MAJOR=`echo $LIB_VERSION | sed 's/\..*//'` |
76 | AC_SUBST(VERSION) | |
77 | AC_SUBST(LIB_VERSION) | |
78 | AC_SUBST(LIB_VERSION_MAJOR) | |
729e4ab9 | 79 | AC_MSG_RESULT([release $VERSION, library $LIB_VERSION, unicode version $UNICODE_VERSION]) |
b75a7d8f | 80 | |
b75a7d8f A |
81 | AC_SUBST(UNICODE_VERSION) |
82 | ||
729e4ab9 | 83 | # Determine the host system |
4388f060 | 84 | AC_CANONICAL_HOST |
73c04bcf | 85 | |
b75a7d8f A |
86 | AC_SUBST(CPPFLAGS) |
87 | ||
729e4ab9 A |
88 | # This variable is needed on z/OS because the C++ compiler only recognizes .C |
89 | _CXX_CXXSUFFIX=cpp | |
73c04bcf | 90 | export _CXX_CXXSUFFIX |
729e4ab9 | 91 | |
4388f060 | 92 | # Accumulate #defines |
57a6839d A |
93 | |
94 | # CONFIG_CPPFLAGS: These are defines that are set for ICU Build time only. | |
95 | # They are only needed for building ICU itself. Example: platform stuff | |
4388f060 | 96 | CONFIG_CPPFLAGS="" |
57a6839d A |
97 | # UCONFIG_CPPFLAGS: These are defines which are set for ICU build time, |
98 | # and also a notice is output that they need to be set | |
99 | # for end-users of ICU also. uconfig.h.prepend is generated | |
100 | # with, for example, "#define U_DISABLE_RENAMING 1" | |
101 | # Example: ICU configuration stuff | |
4388f060 | 102 | UCONFIG_CPPFLAGS="" |
57a6839d A |
103 | # UCONFIG_CFLAGS: contains a copy of anything that needs to be set by end users |
104 | # such as -std | |
105 | UCONFIG_CFLAGS="" | |
4388f060 | 106 | |
3d1f044b A |
107 | # Check whether to install icu-config |
108 | AC_ARG_ENABLE([icu-config], | |
109 | AS_HELP_STRING([--enable-icu-config], [install icu-config]), | |
110 | [case "${enableval}" in | |
111 | yes) enable_icu_config=true ;; | |
112 | no) enable_icu_config=false ;; | |
113 | *) AC_MSG_ERROR([bad value '${enableval}' for --enable-icu-config]) ;; | |
114 | esac], [enable_icu_config=true]) | |
115 | AC_SUBST(INSTALL_ICU_CONFIG, [$enable_icu_config]) | |
116 | ||
729e4ab9 A |
117 | # Check whether to build debug libraries |
118 | AC_MSG_CHECKING([whether to build debug libraries]) | |
119 | enabled=no | |
120 | ENABLE_DEBUG=0 | |
121 | AC_ARG_ENABLE(debug, | |
4388f060 | 122 | [ --enable-debug build debug libraries and enable the U_DEBUG define [default=no]], |
729e4ab9 | 123 | [ case "${enableval}" in |
4388f060 | 124 | yes|"") enabled=yes; ENABLE_DEBUG=1; CONFIG_CPPFLAGS="$CONFIG_CPPFLAGS -DU_DEBUG=1" ;; |
57a6839d A |
125 | *) ;; |
126 | esac], | |
729e4ab9 A |
127 | ) |
128 | AC_MSG_RESULT($enabled) | |
129 | AC_SUBST(ENABLE_DEBUG) | |
130 | ||
131 | # Check whether to build release libraries | |
132 | AC_MSG_CHECKING([whether to build release libraries]) | |
133 | enabled=yes | |
134 | ENABLE_RELEASE=1 | |
135 | AC_ARG_ENABLE(release, | |
136 | [ --enable-release build release libraries [default=yes]], | |
137 | [ case "${enableval}" in | |
138 | no) enabled=no; ENABLE_RELEASE=0 ;; | |
57a6839d A |
139 | *) ;; |
140 | esac], | |
729e4ab9 A |
141 | ) |
142 | AC_MSG_RESULT($enabled) | |
143 | AC_SUBST(ENABLE_RELEASE) | |
144 | ||
145 | # Don't use the default C/CXXFLags | |
146 | : ${CFLAGS=""} | |
147 | : ${CXXFLAGS=""} | |
148 | ||
51004dcb A |
149 | # Checks for compilers |
150 | AC_PROG_CC([clang gcc cc c99 c89 xlc_r xlc cl.exe icc]) | |
151 | # Make sure that we try clang++ first, which provides C++11 support. | |
152 | # The g++ compiler is less likely to support C++11. | |
153 | AC_PROG_CXX([clang++ g++ c++ gpp xlC_r xlC aCC CC cxx cc++ cl.exe icc FCC KCC RCC]) | |
729e4ab9 | 154 | |
b331163b A |
155 | # pkg-config is needed for harfbuzz support |
156 | PKG_PROG_PKG_CONFIG([0.20]) | |
157 | PKG_CHECK_MODULES(ICULEHB, icu-le-hb, have_icu_le_hb=true, :) | |
158 | ||
729e4ab9 A |
159 | # Ensure that if CXXFLAGS/CFLAGS were not set when calling configure, set it correctly based on (enable/disable) debug or release option |
160 | # The release mode use is the default one for autoconf | |
161 | if test "$GCC" = yes; then | |
162 | if test "$CFLAGS" = ""; then | |
163 | if test "$ENABLE_DEBUG" = 1; then | |
164 | CFLAGS=-g | |
165 | fi | |
166 | if test "$ENABLE_RELEASE" = 1; then | |
167 | CFLAGS="$CFLAGS -O2" | |
168 | fi | |
169 | fi | |
170 | if test "$CXXFLAGS" = ""; then | |
171 | if test "$ENABLE_DEBUG" = 1; then | |
172 | CXXFLAGS=-g | |
173 | fi | |
174 | if test "$ENABLE_RELEASE" = 1; then | |
175 | CXXFLAGS="$CXXFLAGS -O2" | |
176 | fi | |
177 | fi | |
178 | fi | |
179 | ||
180 | AC_PROG_CPP | |
181 | ||
b75a7d8f A |
182 | AC_PROG_INSTALL |
183 | ||
729e4ab9 A |
184 | AC_SUBST(cross_compiling) |
185 | ||
186 | dnl use the pld hack to get ac_fn_cxx_try_link defined globally and not local | |
187 | AC_LANG_PUSH([C++]) | |
188 | AC_LINK_IFELSE([AC_LANG_PROGRAM()]) | |
189 | AC_LANG_POP([C++]) | |
190 | ||
b75a7d8f A |
191 | # make sure install is relative to srcdir - if a script |
192 | if test "$srcdir" = "."; then | |
193 | # If srcdir isn't just ., then (srcdir) is already prepended. | |
194 | if test "${ac_install_sh}" = "${INSTALL}"; then | |
195 | INSTALL="\\\$(top_srcdir)/${ac_install_sh}" | |
196 | fi | |
197 | fi | |
198 | ||
374ca955 | 199 | #AC_CHECK_PROG(AUTOCONF, autoconf, autoconf, true) |
73c04bcf | 200 | #AC_CHECK_PROG(STRIP, strip, strip, true) |
b75a7d8f | 201 | |
3d1f044b A |
202 | # TODO(ICU-20301): Remove fallback to Python 2. |
203 | AC_CHECK_PROGS(PYTHON, python3 "py -3" python "py") | |
204 | AC_SUBST(PYTHON) | |
205 | ||
729e4ab9 | 206 | # Check for the platform make |
b75a7d8f A |
207 | AC_PATH_PROGS(U_MAKE, gmake gnumake, make) |
208 | AC_SUBST(U_MAKE) | |
209 | ||
729e4ab9 A |
210 | |
211 | AC_ARG_WITH(cross-build, | |
212 | [ --with-cross-build=dir specify an absolute path to the build directory of an ICU built for the current platform [default=no cross dir]], | |
57a6839d | 213 | [cross_buildroot="${withval}"], |
729e4ab9 A |
214 | [cross_buildroot=""]) |
215 | ||
216 | if test "X$cross_buildroot" = "X"; then | |
217 | if test "$cross_compiling" = "yes"; then | |
218 | AC_MSG_ERROR([Error! Cross compiling but no --with-cross-build option specified - please supply the path to an executable ICU's build root]) | |
219 | dnl ' | |
220 | fi | |
221 | else | |
222 | if test -f "${cross_buildroot}/config/icucross.mk"; then | |
223 | AC_MSG_RESULT([Using cross buildroot: $cross_buildroot]) | |
224 | else | |
225 | if test -d "${cross_buildroot}"; then | |
226 | AC_MSG_ERROR([${cross_buildroot}/config/icucross.mk not found. Please build ICU in ${cross_buildroot} first.]) | |
227 | else | |
228 | AC_MSG_ERROR([No such directory ${cross_buildroot} supplied as the argument to --with-cross-build. Use an absolute path.]) | |
229 | fi | |
230 | fi | |
231 | fi | |
232 | AC_SUBST(cross_buildroot) | |
233 | ||
234 | # Check for doxygen to generate documentation | |
b75a7d8f A |
235 | AC_PATH_PROG(DOXYGEN,doxygen,,$PATH:/usr/local/bin:/usr/bin) |
236 | ||
729e4ab9 | 237 | # Check that the linker is usable |
73c04bcf A |
238 | ICU_PROG_LINK |
239 | ||
729e4ab9 A |
240 | # Determine the executable suffix |
241 | # We don't use AC_EXEEXT because some compilers output separate debugging | |
242 | # files, which confuses the AC_EXEEXT macro. | |
73c04bcf A |
243 | AC_MSG_CHECKING(checking for executable suffix) |
244 | case "${host}" in | |
245 | *-*-cygwin*|*-*-mingw*) EXEEXT=.exe ;; | |
246 | *) EXEEXT="" ;; | |
247 | esac | |
248 | ac_exeext=$EXEEXT | |
249 | AC_MSG_RESULT($EXEEXT) | |
250 | AC_SUBST(EXEEXT) | |
b75a7d8f | 251 | |
729e4ab9 | 252 | # Determine how strict we want to be when compiling |
b75a7d8f A |
253 | AC_CHECK_STRICT_COMPILE |
254 | ||
729e4ab9 | 255 | # Check if we can build and use 64-bit libraries |
b75a7d8f A |
256 | AC_CHECK_64BIT_LIBS |
257 | AC_SUBST(ARFLAGS) | |
258 | AC_SUBST(COMPILE_LINK_ENVVAR) | |
259 | ||
729e4ab9 | 260 | # Determine the Makefile fragment |
b75a7d8f A |
261 | ICU_CHECK_MH_FRAG |
262 | ||
729e4ab9 A |
263 | # Checks for libraries and other host specific stuff |
264 | # On HP/UX, don't link to -lm from a shared lib because it isn't | |
265 | # PIC (at least on 10.2) | |
b75a7d8f | 266 | case "${host}" in |
b75a7d8f | 267 | *-*-hpux*) AC_CHECK_LIB(m, floor, LIB_M="-lm") ;; |
57a6839d A |
268 | |
269 | *) AC_CHECK_LIB(m, floor) | |
b75a7d8f A |
270 | LIB_M="" ;; |
271 | esac | |
272 | AC_SUBST(LIB_M) | |
273 | ||
729e4ab9 | 274 | # Check whether to build shared libraries |
b75a7d8f A |
275 | AC_MSG_CHECKING([whether to build shared libraries]) |
276 | enabled=no | |
277 | AC_ARG_ENABLE(shared, | |
374ca955 | 278 | [ --enable-shared build shared libraries [default=yes]], |
b75a7d8f A |
279 | [ case "${enableval}" in |
280 | yes|"") enabled=yes; ENABLE_SHARED=YES ;; | |
281 | no);; | |
282 | *) ;; | |
283 | esac], | |
284 | [enabled=yes; ENABLE_SHARED=YES] | |
285 | ) | |
286 | AC_MSG_RESULT($enabled) | |
287 | AC_SUBST(ENABLE_SHARED) | |
288 | ||
729e4ab9 | 289 | # Check whether to build static libraries |
b75a7d8f A |
290 | AC_MSG_CHECKING([whether to build static libraries]) |
291 | enabled=no | |
292 | AC_ARG_ENABLE(static, | |
374ca955 | 293 | [ --enable-static build static libraries [default=no]], |
b75a7d8f A |
294 | [ case "${enableval}" in |
295 | yes|"") enabled=yes; ENABLE_STATIC=YES ;; | |
296 | no) ;; | |
297 | *) ;; | |
298 | esac], | |
299 | ) | |
300 | AC_MSG_RESULT($enabled) | |
301 | AC_SUBST(ENABLE_STATIC) | |
302 | ||
4388f060 A |
303 | # When building release static library, there might be some optimization flags we can use |
304 | if test "$ENABLE_STATIC" = "YES"; then | |
305 | if test "$ENABLE_SHARED" != "YES"; then | |
306 | if test "$ENABLE_RELEASE" = 1; then | |
307 | AC_MSG_CHECKING([whether we can use static library optimization option]) | |
308 | CHECK_STATIC_OPT_FLAG=no | |
57a6839d | 309 | |
4388f060 A |
310 | OLD_CPPFLAGS="${CPPFLAGS}" |
311 | OLD_LDFLAGS="${LDFLAGS}" | |
57a6839d | 312 | |
4388f060 A |
313 | case "${host}" in |
314 | *-linux*|i*86-*-*bsd*|i*86-pc-gnu) | |
51004dcb | 315 | if test "$GCC" = yes; then |
4388f060 A |
316 | CPPFLAGS="${CPPFLAGS} -ffunction-sections -fdata-sections" |
317 | LDFLAGS="${LDFLAGS} -Wl,--gc-sections" | |
318 | fi | |
319 | ;; | |
320 | *) | |
321 | ;; | |
322 | esac | |
57a6839d | 323 | |
4388f060 A |
324 | AC_LINK_IFELSE([AC_LANG_PROGRAM([], [])], [CHECK_STATIC_OPT_FLAG=yes], [CHECK_STATIC_OPT_FLAG=no]) |
325 | AC_MSG_RESULT($CHECK_STATIC_OPT_FLAG) | |
326 | if test "$CHECK_STATIC_OPT_FLAG" = no; then | |
327 | CPPFLAGS="${OLD_CPPFLAGS}" | |
328 | LDFLAGS="${OLD_LDFLAGS}" | |
329 | fi | |
330 | fi | |
331 | fi | |
332 | fi | |
333 | ||
334 | ||
729e4ab9 A |
335 | # Check whether to enable auto cleanup of libraries |
336 | AC_MSG_CHECKING([whether to enable auto cleanup of libraries]) | |
374ca955 | 337 | enabled=no |
729e4ab9 A |
338 | UCLN_NO_AUTO_CLEANUP=1 |
339 | AC_ARG_ENABLE(auto-cleanup, | |
340 | [ --enable-auto-cleanup enable auto cleanup of libraries [default=no]], | |
374ca955 | 341 | [ case "${enableval}" in |
57a6839d | 342 | yes) enabled=yes; |
4388f060 A |
343 | CONFIG_CPPFLAGS="$CONFIG_CPPFLAGS -DUCLN_NO_AUTO_CLEANUP=0"; |
344 | UCLN_NO_AUTO_CLEANUP=0 | |
345 | ;; | |
374ca955 A |
346 | *) ;; |
347 | esac], | |
348 | ) | |
349 | AC_MSG_RESULT($enabled) | |
729e4ab9 | 350 | AC_SUBST(UCLN_NO_AUTO_CLEANUP) |
374ca955 | 351 | |
729e4ab9 A |
352 | # MSVC floating-point option |
353 | MSVC_RELEASE_FLAG="" | |
354 | if test $enabled = yes | |
57a6839d | 355 | then |
b331163b | 356 | if test $icu_cv_host_frag = mh-cygwin-msvc -o $icu_cv_host_frag = mh-msys-msvc |
729e4ab9 A |
357 | then |
358 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ | |
359 | #if defined _MSC_VER && _MSC_VER >= 1400 | |
360 | #else | |
361 | Microsoft Visual C++ < 2005 | |
362 | #endif | |
363 | ]], [[]])],[MSVC_RELEASE_FLAG="/fp:precise"],[MSVC_RELEASE_FLAG="/Op"]) | |
57a6839d | 364 | |
729e4ab9 A |
365 | CFLAGS="${CFLAGS} ${MSVC_RELEASE_FLAG}" |
366 | CXXFLAGS="${CXXFLAGS} ${MSVC_RELEASE_FLAG}" | |
367 | fi | |
368 | fi | |
374ca955 | 369 | |
729e4ab9 | 370 | # Check whether to enabled draft APIs |
73c04bcf A |
371 | AC_MSG_CHECKING([whether to enable draft APIs]) |
372 | enabled=yes | |
373 | U_DEFAULT_SHOW_DRAFT=1 | |
374 | AC_ARG_ENABLE(draft, | |
729e4ab9 | 375 | [ --enable-draft enable draft APIs (and internal APIs) [default=yes]], |
73c04bcf | 376 | [ case "${enableval}" in |
4388f060 A |
377 | no) enabled=no; U_DEFAULT_SHOW_DRAFT=0; |
378 | CONFIG_CPPFLAGS="$CONFIG_CPPFLAGS -DU_DEFAULT_SHOW_DRAFT=0" | |
379 | ;; | |
73c04bcf A |
380 | *) ;; |
381 | esac], | |
382 | ) | |
383 | AC_MSG_RESULT($enabled) | |
729e4ab9 | 384 | # Make sure that we can use draft API in ICU. |
73c04bcf | 385 | if test "$U_DEFAULT_SHOW_DRAFT" = 0; then |
0f5d89e8 | 386 | CONFIG_CPPFLAGS="$CONFIG_CPPFLAGS -DU_SHOW_DRAFT_API -DU_SHOW_INTERNAL_API" |
73c04bcf A |
387 | fi |
388 | AC_SUBST(U_DEFAULT_SHOW_DRAFT) | |
389 | ||
b75a7d8f | 390 | AC_PROG_RANLIB |
729e4ab9 | 391 | |
f3c0d7a5 A |
392 | # need sed |
393 | AC_PROG_SED | |
394 | ||
729e4ab9 | 395 | # look for 'ar' the proper way |
4388f060 | 396 | AC_CHECK_TOOL(AR, ar, false) |
b75a7d8f A |
397 | |
398 | AC_MSG_CHECKING([whether to enable renaming of symbols]) | |
399 | enabled=yes | |
400 | U_DISABLE_RENAMING=0 | |
401 | AC_ARG_ENABLE(renaming, | |
402 | [ --enable-renaming add a version suffix to symbols [default=yes]], | |
403 | [ case "${enableval}" in | |
404 | yes|"") enabled=yes ;; | |
4388f060 A |
405 | no) enabled=no; U_DISABLE_RENAMING=1; |
406 | UCONFIG_CPPFLAGS="${UCONFIG_CPPFLAGS} -DU_DISABLE_RENAMING=1" | |
407 | ;; | |
b75a7d8f A |
408 | *) ;; |
409 | esac], | |
410 | ) | |
411 | AC_MSG_RESULT($enabled) | |
412 | AC_SUBST(U_DISABLE_RENAMING) | |
413 | ||
374ca955 | 414 | AC_MSG_CHECKING([whether to enable function and data tracing]) |
729e4ab9 | 415 | enabled=no |
46f4442e | 416 | U_ENABLE_TRACING=0 |
374ca955 | 417 | AC_ARG_ENABLE(tracing, |
46f4442e | 418 | [ --enable-tracing enable function and data tracing [default=no]], |
374ca955 | 419 | [ case "${enableval}" in |
57a6839d | 420 | yes|"") enabled=yes; |
4388f060 A |
421 | CONFIG_CPPFLAGS="$CONFIG_CPPFLAGS -DU_ENABLE_TRACING=1"; |
422 | U_ENABLE_TRACING=1 ;; | |
374ca955 A |
423 | no) enabled=no; U_ENABLE_TRACING=0 ;; |
424 | *) ;; | |
425 | esac], | |
426 | ) | |
427 | AC_MSG_RESULT($enabled) | |
428 | AC_SUBST(U_ENABLE_TRACING) | |
429 | ||
57a6839d A |
430 | # check if elf.h is present. |
431 | AC_CHECK_HEADERS([elf.h]) | |
432 | if test "x$ac_cv_header_elf_h" = "xyes"; then | |
433 | CONFIG_CPPFLAGS="$CONFIG_CPPFLAGS -DU_HAVE_ELF_H=1"; | |
434 | fi | |
729e4ab9 | 435 | |
2ca993e8 A |
436 | # Enable/disable plugins |
437 | AC_ARG_ENABLE(plugins, | |
438 | [ --enable-plugins enable plugins [default=no]], | |
439 | [case "${enableval}" in | |
440 | yes) plugins=true ;; | |
441 | no) plugins=false ;; | |
442 | *) AC_MSG_ERROR(bad value ${enableval} for --enable-plugins) ;; | |
443 | esac], | |
444 | plugins=false) | |
445 | ICU_CONDITIONAL(PLUGINS, test "$plugins" = true) | |
446 | ||
447 | if test "x$plugins" = "xtrue"; then | |
448 | UCONFIG_CPPFLAGS="$UCONFIG_CPPFLAGS -DUCONFIG_ENABLE_PLUGINS=1" | |
449 | fi | |
450 | ||
451 | ||
729e4ab9 | 452 | U_ENABLE_DYLOAD=1 |
4388f060 | 453 | enable=yes |
2ca993e8 | 454 | AC_MSG_CHECKING([whether to enable dynamic loading of plugins. Ignored if plugins disabled.]) |
729e4ab9 A |
455 | AC_ARG_ENABLE(dyload, |
456 | [ --disable-dyload disable dynamic loading [default=no]], | |
457 | [ case "${enableval}" in | |
57a6839d | 458 | yes|"") |
729e4ab9 | 459 | U_ENABLE_DYLOAD=1 |
4388f060 A |
460 | enable=yes |
461 | ;; | |
57a6839d | 462 | no) |
729e4ab9 | 463 | U_ENABLE_DYLOAD=0; |
4388f060 A |
464 | enable=no; |
465 | CONFIG_CPPFLAGS="$CONFIG_CPPFLAGS -DU_ENABLE_DYLOAD=0"; | |
466 | ;; | |
729e4ab9 A |
467 | *) ;; |
468 | esac], | |
469 | ) | |
4388f060 | 470 | AC_MSG_RESULT($enable) |
729e4ab9 A |
471 | AC_SUBST(U_ENABLE_DYLOAD) |
472 | ||
4388f060 A |
473 | if test "$enable" = "yes"; then |
474 | AC_CHECK_HEADERS([dlfcn.h]) | |
475 | #AC_MSG_RESULT($enabled) | |
476 | AC_SEARCH_LIBS([dlopen], [dl]) | |
477 | AC_CHECK_FUNCS([dlopen]) | |
478 | ||
479 | if test "x$ac_cv_func_dlopen" != xyes; then | |
480 | CONFIG_CPPFLAGS="$CONFIG_CPPFLAGS -DHAVE_DLOPEN=0" | |
481 | fi | |
729e4ab9 | 482 | fi |
729e4ab9 A |
483 | |
484 | # Check for miscellanous functions. | |
729e4ab9 A |
485 | # So, use for putil / tools only. |
486 | # Note that this will generate HAVE_GETTIMEOFDAY, not U_HAVE_GETTIMEOFDAY | |
729e4ab9 A |
487 | AC_CHECK_FUNCS([gettimeofday]) |
488 | ||
4388f060 | 489 | |
729e4ab9 | 490 | # Check whether to use the evil rpath or not |
b75a7d8f A |
491 | AC_ARG_ENABLE(rpath, |
492 | [ --enable-rpath use rpath when linking [default is only if necessary]], | |
493 | [ case "${enableval}" in | |
494 | yes|"") ENABLE_RPATH=YES ;; | |
495 | no) ;; | |
496 | *) ;; | |
497 | esac], | |
498 | [ENABLE_RPATH=NO] | |
499 | ) | |
500 | AC_SUBST(ENABLE_RPATH) | |
501 | ||
502 | ||
b75a7d8f | 503 | |
729e4ab9 A |
504 | AC_LANG_PUSH([C++]) |
505 | AC_MSG_CHECKING([[if we have a C++ compiler]]) | |
506 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[cxx_okay=yes],[cxx_okay=no]) | |
507 | if test $cxx_okay = yes | |
508 | then | |
4388f060 | 509 | AC_MSG_RESULT([[Good]]) |
729e4ab9 A |
510 | else |
511 | AC_MSG_RESULT([[no]]) | |
512 | AC_MSG_ERROR([[C++ compiler $CXX does not work or no compiler found]]) | |
513 | fi | |
514 | ||
57a6839d | 515 | if [[ "$GXX" = yes ]]; then |
f3c0d7a5 | 516 | # if CXXFLAGS does not have a "-std=" setting, set it now to -std=c++11, |
57a6839d A |
517 | # and check that the compiler still works. |
518 | if ! echo "$CXXFLAGS" | grep '\-std=' >/dev/null 2>&1; then | |
519 | OLD_CXXFLAGS="${CXXFLAGS}" | |
f3c0d7a5 | 520 | CXXFLAGS="$CXXFLAGS -std=c++11" |
57a6839d A |
521 | AC_MSG_CHECKING([[if we have a C++11 compiler]]) |
522 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[cxx11_okay=yes],[cxx11_okay=no]) | |
523 | AC_MSG_RESULT($cxx11_okay) | |
524 | if [[ $cxx11_okay = yes ]]; then | |
f3c0d7a5 A |
525 | AC_MSG_NOTICE([Adding CXXFLAGS option -std=c++11]) |
526 | UCONFIG_CXXFLAGS="${UCONFIG_CXXFLAGS} -std=c++11" | |
57a6839d A |
527 | else |
528 | CXXFLAGS="$OLD_CXXFLAGS" | |
529 | fi | |
f3c0d7a5 A |
530 | case "${host}" in |
531 | *-*-solaris*) | |
532 | CXXFLAGS="$OLD_CXXFLAGS" | |
533 | ;; | |
534 | esac | |
57a6839d A |
535 | fi |
536 | fi | |
537 | ||
729e4ab9 A |
538 | AC_LANG_POP([C++]) |
539 | ||
51004dcb | 540 | # Always build ICU with multi-threading support. |
46f4442e | 541 | OLD_LIBS=${LIBS} |
b75a7d8f | 542 | |
2ca993e8 A |
543 | # For Compaq Tru64 (OSF1), we must look for pthread_attr_init |
544 | # and must do this before seaching for pthread_mutex_destroy, or | |
545 | # we will pick up libpthreads.so not libpthread.so | |
546 | # If this fails, then we must test for HPUX specials, before | |
547 | # moving on to a more generic test | |
57a6839d | 548 | |
2ca993e8 A |
549 | AC_CHECK_LIB(pthread, pthread_attr_init) |
550 | if test $ac_cv_lib_pthread_pthread_attr_init = yes; then | |
551 | : | |
552 | else | |
553 | # Locate the right library for POSIX threads. We look for the | |
554 | # symbols in the libraries first, because on Solaris libc provides | |
555 | # pthread_create but libpthread has the real code :( | |
556 | # AIX uses libpthreads instead of libpthread, and HP/UX uses libpthread | |
557 | # FreeBSD users may need libpthread if they do not have libc_r. | |
b75a7d8f | 558 | |
2ca993e8 | 559 | AC_SEARCH_LIBS_FIRST(pthread_mutex_destroy, pthread pthreads c_r ) |
b75a7d8f | 560 | |
2ca993e8 A |
561 | if test "$ac_cv_search_pthread_mutex_destroy" != no; then |
562 | : | |
563 | else | |
564 | # For HP 11 | |
565 | AC_CHECK_LIB(pthread, pthread_mutex_init) | |
566 | if test $ac_cv_lib_pthread_pthread_mutex_init = yes; then | |
567 | : | |
73c04bcf | 568 | fi |
2ca993e8 | 569 | fi |
73c04bcf | 570 | |
2ca993e8 | 571 | AC_CHECK_FUNC(pthread_mutex_lock) |
73c04bcf | 572 | |
2ca993e8 A |
573 | if test $ac_cv_func_pthread_mutex_lock = yes; then |
574 | : | |
b75a7d8f | 575 | fi |
2ca993e8 A |
576 | fi |
577 | # Check to see if we are using CygWin with MSVC | |
578 | case "${host}" in | |
579 | *-pc-cygwin*|*-pc-mingw*) | |
580 | # For gcc, the thread options are set by mh-mingw/mh-cygwin | |
581 | # For msvc, the thread options are set by runConfigureICU | |
582 | : | |
583 | ;; | |
584 | *-*-hpux*) | |
585 | # Add -mt because it does several nice things on newer compilers. | |
586 | case "${icu_cv_host_frag}" in | |
587 | mh-hpux-acc) | |
588 | OLD_CXXFLAGS="${CXXFLAGS}" | |
589 | CXXFLAGS="${CXXFLAGS} -mt" | |
590 | if test x"`${CXX} ${CXXFLAGS} 2>&1`" != x""; then | |
591 | CXXFLAGS="${OLD_CXXFLAGS}" | |
592 | else | |
593 | UCONFIG_CXXFLAGS="${UCONFIG_CXXFLAGS} -mt" | |
594 | fi | |
73c04bcf | 595 | ;; |
2ca993e8 A |
596 | esac |
597 | ;; | |
598 | *-*-solaris*) | |
599 | case "${icu_cv_host_frag}" in | |
600 | mh-solaris) | |
601 | LIBS="${LIBS} -mt" | |
729e4ab9 | 602 | ;; |
73c04bcf | 603 | esac |
2ca993e8 A |
604 | ;; |
605 | esac | |
b75a7d8f | 606 | |
46f4442e A |
607 | AC_ARG_ENABLE(weak-threads, |
608 | [ --enable-weak-threads weakly reference the threading library [default=no]], | |
609 | [case "${enableval}" in | |
610 | yes) | |
611 | LIB_THREAD="${LIBS%${OLD_LIBS}}" | |
612 | LIBS=${OLD_LIBS} | |
613 | ;; | |
614 | no) ;; | |
615 | *) AC_MSG_ERROR(bad value ${enableval} for --enable-weak-threads) ;; | |
616 | esac]) | |
617 | AC_SUBST(LIB_THREAD) | |
618 | ||
729e4ab9 | 619 | # Check for mmap() |
b75a7d8f A |
620 | |
621 | # The AC_FUNC_MMAP macro doesn't work properly. It seems to be too specific. | |
622 | # Do this check instead. | |
623 | HAVE_MMAP=0 | |
624 | AC_MSG_CHECKING([for mmap]) | |
625 | AC_CACHE_VAL(ac_cv_func_mmap_ok, | |
729e4ab9 | 626 | [AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <unistd.h> |
b75a7d8f A |
627 | #include <sys/mman.h> |
628 | #include <sys/stat.h> | |
729e4ab9 | 629 | #include <fcntl.h>], [mmap((void *)0, 0, PROT_READ, 0, 0, 0);])],[ac_cv_func_mmap_ok=yes],[ac_cv_func_mmap_ok=no])] ) |
b75a7d8f A |
630 | AC_MSG_RESULT($ac_cv_func_mmap_ok) |
631 | if test $ac_cv_func_mmap_ok = yes | |
632 | then | |
633 | HAVE_MMAP=1 | |
4388f060 A |
634 | else |
635 | CONFIG_CPPFLAGS="${CONFIG_CPPFLAGS} -DU_HAVE_MMAP=0" | |
b75a7d8f A |
636 | fi |
637 | AC_SUBST(HAVE_MMAP) | |
638 | ||
729e4ab9 A |
639 | AC_MSG_CHECKING([for genccode assembly]) |
640 | ||
641 | # Check to see if genccode can generate simple assembly. | |
374ca955 A |
642 | GENCCODE_ASSEMBLY= |
643 | case "${host}" in | |
4388f060 | 644 | *-linux*|*-kfreebsd*-gnu*|i*86-*-*bsd*|i*86-pc-gnu) |
374ca955 | 645 | if test "$GCC" = yes; then |
729e4ab9 | 646 | # We're using gcc, and the simple -a gcc command line works for genccode |
374ca955 A |
647 | GENCCODE_ASSEMBLY="-a gcc" |
648 | fi ;; | |
46f4442e A |
649 | i*86-*-solaris*) |
650 | if test "$GCC" = yes; then | |
729e4ab9 A |
651 | # When using gcc, look if we're also using GNU as. |
652 | # When using GNU as, the simple -a gcc command line works for genccode. | |
46f4442e A |
653 | asv=`"${CC}" -print-prog-name=as 2>/dev/null` |
654 | asv=`"${asv}" --version 2>/dev/null` | |
655 | case "X${asv}" in | |
656 | X*GNU*) GENCCODE_ASSEMBLY="-a gcc" ;; | |
657 | X*) GENCCODE_ASSEMBLY="-a sun-x86" ;; | |
658 | esac | |
659 | unset asv | |
660 | else | |
661 | GENCCODE_ASSEMBLY="-a sun-x86" | |
662 | fi ;; | |
73c04bcf A |
663 | sparc-*-solaris*) |
664 | GENCCODE_ASSEMBLY="-a sun" | |
665 | ;; | |
46f4442e | 666 | ia64-*-hpux*) |
2ca993e8 A |
667 | # There has been some issues with building ICU data on HPUX ia64 aCC |
668 | # when using the assemble code setting below. For now, build without | |
669 | # assemble code for this platform. This will increase the build time. | |
670 | # GENCCODE_ASSEMBLY="-a aCC-ia64" | |
46f4442e | 671 | ;; |
374ca955 A |
672 | esac |
673 | AC_SUBST(GENCCODE_ASSEMBLY) | |
674 | ||
729e4ab9 | 675 | AC_MSG_RESULT($GENCCODE_ASSEMBLY) |
374ca955 | 676 | |
729e4ab9 | 677 | # Checks for header files |
b75a7d8f A |
678 | AC_CHECK_HEADERS(inttypes.h) |
679 | if test $ac_cv_header_inttypes_h = no; then | |
680 | U_HAVE_INTTYPES_H=0 | |
57a6839d | 681 | CONFIG_CPPFLAGS="${CONFIG_CPPFLAGS} -DU_HAVE_INTTYPES_H=0" |
b75a7d8f A |
682 | else |
683 | U_HAVE_INTTYPES_H=1 | |
684 | fi | |
685 | if test "$CC" = ccc; then | |
686 | AC_MSG_RESULT("C compiler set to CCC ${CC}" ) | |
687 | case "${host}" in | |
688 | alpha*-*-*) U_HAVE_INTTYPES_H=0; | |
4388f060 | 689 | CONFIG_CPPFLAGS="${CONFIG_CPPFLAGS} -DU_HAVE_INTTYPES_H=0" |
b75a7d8f A |
690 | esac |
691 | fi | |
692 | ||
693 | AC_SUBST(U_HAVE_INTTYPES_H) | |
694 | ||
729e4ab9 A |
695 | AC_CHECK_HEADERS(dirent.h) |
696 | if test $ac_cv_header_dirent_h = no; then | |
57a6839d A |
697 | U_HAVE_DIRENT_H=0 |
698 | CONFIG_CPPFLAGS="${CONFIG_CPPFLAGS} -DU_HAVE_DIRENT_H=0" | |
729e4ab9 A |
699 | else |
700 | U_HAVE_DIRENT_H=1 | |
701 | fi | |
702 | ||
703 | AC_SUBST(U_HAVE_DIRENT_H) | |
704 | ||
729e4ab9 | 705 | # Check for endianness |
b75a7d8f A |
706 | AC_C_BIGENDIAN() |
707 | if test $ac_cv_c_bigendian = no; then | |
708 | U_IS_BIG_ENDIAN=0 | |
709 | U_ENDIAN_CHAR="l" | |
710 | else | |
711 | U_IS_BIG_ENDIAN=1 | |
712 | U_ENDIAN_CHAR="b" | |
713 | fi | |
714 | AC_SUBST(U_IS_BIG_ENDIAN) | |
715 | ||
729e4ab9 | 716 | # Do various POSIX related checks |
b75a7d8f A |
717 | U_HAVE_NL_LANGINFO_CODESET=0 |
718 | U_NL_LANGINFO_CODESET=-1 | |
719 | AC_CHECK_FUNC(nl_langinfo,[U_HAVE_NL_LANGINFO=1],[U_HAVE_NL_LANGINFO=0]) | |
46f4442e | 720 | dnl AC_SUBST(U_HAVE_NL_LANGINFO) |
b75a7d8f A |
721 | if test $U_HAVE_NL_LANGINFO -eq 1; then |
722 | AC_CACHE_CHECK([for nl_langinfo's argument to obtain the codeset], | |
723 | ac_cv_nl_langinfo_codeset, | |
724 | [ac_cv_nl_langinfo_codeset="unknown" | |
725 | for a in CODESET _NL_CTYPE_CODESET_NAME; do | |
729e4ab9 | 726 | AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <langinfo.h>]], [[nl_langinfo($a);]])],[ac_cv_nl_langinfo_codeset="$a"; break],[])] |
b75a7d8f A |
727 | done) |
728 | if test x$ac_cv_nl_langinfo_codeset != xunknown | |
729 | then | |
730 | U_HAVE_NL_LANGINFO_CODESET=1 | |
731 | U_NL_LANGINFO_CODESET=$ac_cv_nl_langinfo_codeset | |
4388f060 A |
732 | if test "x${ac_cv_nl_langinfo_codeset}" != "xCODESET" |
733 | then | |
734 | CONFIG_CPPFLAGS="${CONFIG_CPPFLAGS} -DNL_LANGINFO_CODESET=${ac_cv_nl_langinfo_codeset}" | |
735 | fi | |
736 | else | |
737 | CONFIG_CPPFLAGS="${CONFIG_CPPFLAGS} -DU_HAVE_NL_LANGINFO_CODESET=0" | |
b75a7d8f A |
738 | fi |
739 | fi | |
740 | AC_SUBST(U_HAVE_NL_LANGINFO_CODESET) | |
741 | AC_SUBST(U_NL_LANGINFO_CODESET) | |
742 | ||
729e4ab9 A |
743 | # Namespace support checks |
744 | AC_LANG(C++) | |
b75a7d8f A |
745 | AC_MSG_CHECKING([for namespace support]) |
746 | AC_CACHE_VAL(ac_cv_namespace_ok, | |
729e4ab9 | 747 | [AC_LINK_IFELSE([AC_LANG_PROGRAM([namespace x_version {void f(){}} |
b75a7d8f A |
748 | namespace x = x_version; |
749 | using namespace x_version; | |
729e4ab9 | 750 | ], [f();])],[ac_cv_namespace_ok=yes],[ac_cv_namespace_ok=no])] ) |
b75a7d8f | 751 | AC_MSG_RESULT($ac_cv_namespace_ok) |
b75a7d8f A |
752 | if test $ac_cv_namespace_ok = no |
753 | then | |
4388f060 | 754 | AC_MSG_ERROR(Namespace support is required to build ICU.) |
b75a7d8f | 755 | fi |
b75a7d8f A |
756 | |
757 | AC_MSG_CHECKING([for properly overriding new and delete]) | |
758 | U_OVERRIDE_CXX_ALLOCATION=0 | |
759 | U_HAVE_PLACEMENT_NEW=0 | |
760 | AC_CACHE_VAL(ac_cv_override_cxx_allocation_ok, | |
729e4ab9 | 761 | [AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <stdlib.h> |
374ca955 A |
762 | class UMemory { |
763 | public: | |
b75a7d8f A |
764 | void *operator new(size_t size) {return malloc(size);} |
765 | void *operator new[](size_t size) {return malloc(size);} | |
766 | void operator delete(void *p) {free(p);} | |
767 | void operator delete[](void *p) {free(p);} | |
768 | }; | |
729e4ab9 | 769 | ]], [])],[ac_cv_override_cxx_allocation_ok=yes],[ac_cv_override_cxx_allocation_ok=no])] ) |
b75a7d8f A |
770 | AC_MSG_RESULT($ac_cv_override_cxx_allocation_ok) |
771 | if test $ac_cv_override_cxx_allocation_ok = yes | |
772 | then | |
773 | U_OVERRIDE_CXX_ALLOCATION=1 | |
774 | AC_MSG_CHECKING([for placement new and delete]) | |
775 | AC_CACHE_VAL(ac_cv_override_placement_new_ok, | |
729e4ab9 | 776 | [AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <stdlib.h> |
374ca955 A |
777 | class UMemory { |
778 | public: | |
b75a7d8f A |
779 | void *operator new(size_t size) {return malloc(size);} |
780 | void *operator new[](size_t size) {return malloc(size);} | |
781 | void operator delete(void *p) {free(p);} | |
782 | void operator delete[](void *p) {free(p);} | |
783 | void * operator new(size_t, void *ptr) { return ptr; } | |
784 | void operator delete(void *, void *) {} | |
785 | }; | |
729e4ab9 | 786 | ]], [])],[ac_cv_override_placement_new_ok=yes],[ac_cv_override_placement_new_ok=no])] ) |
b75a7d8f A |
787 | AC_MSG_RESULT($ac_cv_override_placement_new_ok) |
788 | if test $ac_cv_override_placement_new_ok = yes | |
789 | then | |
790 | U_HAVE_PLACEMENT_NEW=1 | |
4388f060 A |
791 | else |
792 | CONFIG_CPPFLAGS="${CONFIG_CPPFLAGS} -DU_HAVE_PLACEMENT_NEW=0" | |
b75a7d8f | 793 | fi |
4388f060 A |
794 | else |
795 | CONFIG_CPPFLAGS="${CONFIG_CPPFLAGS} -DU_OVERRIDE_CXX_ALLOCATION=0" | |
b75a7d8f A |
796 | fi |
797 | AC_SUBST(U_OVERRIDE_CXX_ALLOCATION) | |
798 | AC_SUBST(U_HAVE_PLACEMENT_NEW) | |
799 | ||
729e4ab9 | 800 | AC_LANG(C) |
b75a7d8f A |
801 | AC_CHECK_FUNC(popen) |
802 | if test x$ac_cv_func_popen = xyes | |
803 | then | |
804 | U_HAVE_POPEN=1 | |
805 | else | |
4388f060 | 806 | CONFIG_CPPFLAGS="${CONFIG_CPPFLAGS} -DU_HAVE_POPEN=0" |
b75a7d8f A |
807 | U_HAVE_POPEN=0 |
808 | fi | |
809 | AC_SUBST(U_HAVE_POPEN) | |
810 | ||
811 | AC_CHECK_FUNC(tzset) | |
374ca955 | 812 | U_HAVE_TZSET=0 |
b75a7d8f A |
813 | if test x$ac_cv_func_tzset = xyes |
814 | then | |
815 | U_TZSET=tzset | |
374ca955 | 816 | U_HAVE_TZSET=1 |
b75a7d8f A |
817 | else |
818 | AC_CHECK_FUNC(_tzset) | |
819 | if test x$ac_cv_func__tzset = xyes | |
820 | then | |
374ca955 A |
821 | U_TZSET=_tzset |
822 | U_HAVE_TZSET=1 | |
4388f060 A |
823 | else |
824 | CONFIG_CPPFLAGS="${CONFIG_CPPFLAGS} -DU_HAVE_TZSET=0" | |
b75a7d8f A |
825 | fi |
826 | fi | |
374ca955 | 827 | AC_SUBST(U_HAVE_TZSET) |
b75a7d8f | 828 | AC_SUBST(U_TZSET) |
374ca955 A |
829 | |
830 | U_HAVE_TZNAME=0 | |
b75a7d8f | 831 | AC_CACHE_CHECK(for tzname,ac_cv_var_tzname, |
f3c0d7a5 A |
832 | [AC_LINK_IFELSE([AC_LANG_PROGRAM([[#ifndef _XOPEN_SOURCE |
833 | #define _XOPEN_SOURCE | |
b75a7d8f | 834 | #endif |
374ca955 | 835 | #include <stdlib.h> |
b75a7d8f A |
836 | #include <time.h> |
837 | #ifndef tzname /* For SGI. */ | |
838 | extern char *tzname[]; /* RS6000 and others reject char **tzname. */ | |
729e4ab9 | 839 | #endif]], [atoi(*tzname);])],[ac_cv_var_tzname=yes],[ac_cv_var_tzname=no])]) |
b75a7d8f A |
840 | if test $ac_cv_var_tzname = yes; then |
841 | U_TZNAME=tzname | |
374ca955 | 842 | U_HAVE_TZNAME=1 |
b75a7d8f A |
843 | else |
844 | AC_CACHE_CHECK(for _tzname,ac_cv_var__tzname, | |
729e4ab9 | 845 | [AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <stdlib.h> |
374ca955 | 846 | #include <time.h> |
729e4ab9 | 847 | extern char *_tzname[];]], [atoi(*_tzname);])],[ac_cv_var__tzname=yes],[ac_cv_var__tzname=no])]) |
b75a7d8f A |
848 | if test $ac_cv_var__tzname = yes; then |
849 | U_TZNAME=_tzname | |
374ca955 | 850 | U_HAVE_TZNAME=1 |
4388f060 A |
851 | else |
852 | CONFIG_CPPFLAGS="${CONFIG_CPPFLAGS} -DU_HAVE_TZNAME=0" | |
b75a7d8f A |
853 | fi |
854 | fi | |
374ca955 | 855 | AC_SUBST(U_HAVE_TZNAME) |
b75a7d8f A |
856 | AC_SUBST(U_TZNAME) |
857 | ||
858 | AC_CACHE_CHECK(for timezone,ac_cv_var_timezone, | |
f3c0d7a5 A |
859 | [AC_LINK_IFELSE([AC_LANG_PROGRAM([#ifndef _XOPEN_SOURCE |
860 | #define _XOPEN_SOURCE | |
b75a7d8f A |
861 | #endif |
862 | #include <time.h> | |
729e4ab9 | 863 | ], [[timezone = 1;]])],[ac_cv_var_timezone=yes],[ac_cv_var_timezone=no])]) |
b75a7d8f A |
864 | U_HAVE_TIMEZONE=0 |
865 | if test $ac_cv_var_timezone = yes; then | |
866 | U_TIMEZONE=timezone | |
867 | U_HAVE_TIMEZONE=1 | |
868 | else | |
869 | AC_CACHE_CHECK(for __timezone,ac_cv_var___timezone, | |
729e4ab9 | 870 | [AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <time.h>]], [[__timezone = 1;]])],[ac_cv_var___timezone=yes],[ac_cv_var___timezone=no])]) |
b75a7d8f A |
871 | if test $ac_cv_var___timezone = yes; then |
872 | U_TIMEZONE=__timezone | |
873 | U_HAVE_TIMEZONE=1 | |
874 | else | |
875 | AC_CACHE_CHECK(for _timezone,ac_cv_var__timezone, | |
729e4ab9 | 876 | [AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <time.h>]], [[_timezone = 1;]])],[ac_cv_var__timezone=yes],[ac_cv_var__timezone=no])]) |
b75a7d8f A |
877 | if test $ac_cv_var__timezone = yes; then |
878 | U_TIMEZONE=_timezone | |
879 | U_HAVE_TIMEZONE=1 | |
4388f060 A |
880 | else |
881 | CONFIG_CPPFLAGS="${CONFIG_CPPFLAGS} -DU_HAVE_TIMEZONE=0" | |
b75a7d8f A |
882 | fi |
883 | fi | |
884 | fi | |
885 | AC_SUBST(U_HAVE_TIMEZONE) | |
886 | AC_SUBST(U_TIMEZONE) | |
887 | ||
f3c0d7a5 A |
888 | AC_CHECK_FUNC(strtod_l) |
889 | if test x$ac_cv_func_strtod_l = xyes | |
890 | then | |
0f5d89e8 A |
891 | U_HAVE_STRTOD_L=1 |
892 | AC_CHECK_HEADER(xlocale.h) | |
893 | if test "$ac_cv_header_xlocale_h" = yes; then | |
894 | U_HAVE_XLOCALE_H=1 | |
895 | CONFIG_CPPFLAGS="${CONFIG_CPPFLAGS} -DU_HAVE_STRTOD_L=1 -DU_HAVE_XLOCALE_H=1" | |
896 | else | |
897 | U_HAVE_XLOCALE_H=0 | |
898 | CONFIG_CPPFLAGS="${CONFIG_CPPFLAGS} -DU_HAVE_STRTOD_L=1 -DU_HAVE_XLOCALE_H=0" | |
899 | fi | |
f3c0d7a5 | 900 | else |
0f5d89e8 A |
901 | CONFIG_CPPFLAGS="${CONFIG_CPPFLAGS} -DU_HAVE_STRTOD_L=0" |
902 | U_HAVE_STRTOD_L=0 | |
f3c0d7a5 A |
903 | fi |
904 | AC_SUBST(U_HAVE_STRTOD_L) | |
905 | ||
729e4ab9 | 906 | # Checks for typedefs |
b75a7d8f A |
907 | AC_CHECK_TYPE(int8_t,signed char) |
908 | AC_CHECK_TYPE(uint8_t,unsigned char) | |
909 | AC_CHECK_TYPE(int16_t,signed short) | |
910 | AC_CHECK_TYPE(uint16_t,unsigned short) | |
911 | AC_CHECK_TYPE(int32_t,signed long) | |
912 | AC_CHECK_TYPE(uint32_t,unsigned long) | |
913 | AC_CHECK_TYPE(int64_t,signed long long) | |
914 | AC_CHECK_TYPE(uint64_t,unsigned long long) | |
915 | ||
916 | if test $ac_cv_type_int8_t = no; then | |
4388f060 | 917 | CONFIG_CPPFLAGS="${CONFIG_CPPFLAGS} -DU_HAVE_INT8_T=0" |
b75a7d8f | 918 | fi |
b75a7d8f A |
919 | |
920 | if test $ac_cv_type_uint8_t = no; then | |
4388f060 | 921 | CONFIG_CPPFLAGS="${CONFIG_CPPFLAGS} -DU_HAVE_UINT8_T=0" |
b75a7d8f | 922 | fi |
b75a7d8f A |
923 | |
924 | if test $ac_cv_type_int16_t = no; then | |
4388f060 | 925 | CONFIG_CPPFLAGS="${CONFIG_CPPFLAGS} -DU_HAVE_INT16_T=0" |
b75a7d8f | 926 | fi |
b75a7d8f A |
927 | |
928 | if test $ac_cv_type_uint16_t = no; then | |
4388f060 | 929 | CONFIG_CPPFLAGS="${CONFIG_CPPFLAGS} -DU_HAVE_UINT16_T=0" |
b75a7d8f | 930 | fi |
b75a7d8f A |
931 | |
932 | if test $ac_cv_type_int32_t = no; then | |
4388f060 | 933 | CONFIG_CPPFLAGS="${CONFIG_CPPFLAGS} -DU_HAVE_INT32_T=0" |
b75a7d8f | 934 | fi |
b75a7d8f A |
935 | |
936 | if test $ac_cv_type_uint32_t = no; then | |
4388f060 | 937 | CONFIG_CPPFLAGS="${CONFIG_CPPFLAGS} -DU_HAVE_UINT32_T=0" |
b75a7d8f | 938 | fi |
b75a7d8f A |
939 | |
940 | if test $ac_cv_type_int64_t = no; then | |
4388f060 | 941 | CONFIG_CPPFLAGS="${CONFIG_CPPFLAGS} -DU_HAVE_INT64_T=0" |
b75a7d8f | 942 | fi |
b75a7d8f A |
943 | |
944 | if test $ac_cv_type_uint64_t = no; then | |
4388f060 | 945 | CONFIG_CPPFLAGS="${CONFIG_CPPFLAGS} -DU_HAVE_UINT64_T=0" |
b75a7d8f | 946 | fi |
b75a7d8f | 947 | |
729e4ab9 | 948 | # Do various wchar_t related checks |
b75a7d8f A |
949 | AC_CHECK_HEADER(wchar.h) |
950 | if test "$ac_cv_header_wchar_h" = no | |
951 | then | |
952 | U_HAVE_WCHAR_H=0 | |
953 | U_HAVE_WCSCPY=0 | |
4388f060 | 954 | CONFIG_CPPFLAGS="${CONFIG_CPPFLAGS} -DU_HAVE_WCHAR_H=0 -DU_HAVE_WCSCPY=0" |
b75a7d8f | 955 | else |
729e4ab9 | 956 | AC_DEFINE([HAVE_WCHAR_H], [1], [wchar.h was found.]) |
b75a7d8f | 957 | U_HAVE_WCHAR_H=1 |
729e4ab9 | 958 | # Some broken systems have wchar.h but not some of its functions... |
b75a7d8f A |
959 | AC_SEARCH_LIBS(wcscpy, wcs w) |
960 | if test "$ac_cv_search_wcscpy" != no; then | |
961 | U_HAVE_WCSCPY=1 | |
962 | else | |
963 | U_HAVE_WCSCPY=0 | |
4388f060 | 964 | CONFIG_CPPFLAGS="${CONFIG_CPPFLAGS} -DU_HAVE_WCSCPY=0" |
b75a7d8f A |
965 | fi |
966 | fi | |
967 | AC_SUBST(U_HAVE_WCHAR_H) | |
968 | AC_SUBST(U_HAVE_WCSCPY) | |
969 | ||
46f4442e | 970 | AC_CHECK_SIZEOF([wchar_t], 0, [ |
b75a7d8f A |
971 | #if STDC_HEADERS |
972 | #include <stddef.h> | |
973 | #endif | |
73c04bcf | 974 | #include <stdlib.h> |
b75a7d8f A |
975 | #if HAVE_WCHAR_H |
976 | #include <string.h> | |
977 | #include <wchar.h> | |
978 | #endif]) | |
b75a7d8f | 979 | U_SIZEOF_WCHAR_T=$ac_cv_sizeof_wchar_t |
46f4442e | 980 | # We do this check to verify that everything is okay. |
b75a7d8f | 981 | if test $U_SIZEOF_WCHAR_T = 0; then |
46f4442e A |
982 | if test $U_HAVE_WCHAR_H=1; then |
983 | AC_MSG_ERROR(There is wchar.h but the size of wchar_t is 0) | |
984 | fi | |
b75a7d8f | 985 | fi |
b75a7d8f | 986 | |
46f4442e A |
987 | AC_MSG_CHECKING([for UTF-16 string literal support]) |
988 | U_CHECK_UTF16_STRING=1 | |
989 | CHECK_UTF16_STRING_RESULT="unknown" | |
729e4ab9 | 990 | |
46f4442e A |
991 | case "${host}" in |
992 | *-*-aix*|powerpc64-*-linux*) | |
51004dcb | 993 | if test "$GCC" = no; then |
46f4442e A |
994 | OLD_CFLAGS="${CFLAGS}" |
995 | OLD_CXXFLAGS="${CXXFLAGS}" | |
996 | CFLAGS="${CFLAGS} -qutf" | |
997 | CXXFLAGS="${CXXFLAGS} -qutf" | |
729e4ab9 | 998 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[const unsigned short hello[] = u"hello";]], [[]])],[U_CHECK_UTF16_STRING=1],[U_CHECK_UTF16_STRING=0]) |
46f4442e A |
999 | if test "$U_CHECK_UTF16_STRING" = 0; then |
1000 | CFLAGS="${OLD_CFLAGS}" | |
1001 | CXXFLAGS="${OLD_CXXFLAGS}" | |
1002 | else | |
57a6839d | 1003 | UCONFIG_CXXFLAGS="${UCONFIG_CXXFLAGS} -qutf" |
46f4442e A |
1004 | CHECK_UTF16_STRING_RESULT="-qutf" |
1005 | fi | |
1006 | fi | |
1007 | ;; | |
1008 | *-*-solaris*) | |
51004dcb | 1009 | if test "$GCC" = no; then |
46f4442e A |
1010 | OLD_CFLAGS="${CFLAGS}" |
1011 | OLD_CXXFLAGS="${CXXFLAGS}" | |
1012 | CFLAGS="${CFLAGS} -xustr=ascii_utf16_ushort" | |
1013 | CXXFLAGS="${CXXFLAGS} -xustr=ascii_utf16_ushort" | |
729e4ab9 | 1014 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[const unsigned short hello[] = U"hello";]], [[]])],[U_CHECK_UTF16_STRING=1],[U_CHECK_UTF16_STRING=0]) |
46f4442e A |
1015 | if test "$U_CHECK_UTF16_STRING" = 0; then |
1016 | CFLAGS="${OLD_CFLAGS}" | |
1017 | CXXFLAGS="${OLD_CXXFLAGS}" | |
1018 | else | |
1019 | CHECK_UTF16_STRING_RESULT="-xustr=ascii_utf16_ushort" | |
57a6839d A |
1020 | UCONFIG_CXXFLAGS="${UCONFIG_CXXFLAGS} -xustr=ascii_utf16_ushort" |
1021 | UCONFIG_CFLAGS="${UCONFIG_CFLAGS} -xustr=ascii_utf16_ushort" | |
46f4442e A |
1022 | # Since we can't detect the availability of this UTF-16 syntax at compile time, |
1023 | # we depend on configure telling us that we can use it. | |
1024 | # Since we can't ensure ICU users use -xustr=ascii_utf16_ushort, | |
1025 | # we only use this macro within ICU. | |
1026 | # If an ICU user uses icu-config, this feature will be enabled. | |
4388f060 | 1027 | CONFIG_CPPFLAGS="${CONFIG_CPPFLAGS} -DU_CHECK_UTF16_STRING=1" |
46f4442e A |
1028 | U_CHECK_UTF16_STRING=0 |
1029 | fi | |
1030 | fi | |
1031 | ;; | |
1032 | *-*-hpux*) | |
51004dcb | 1033 | if test "$GCC" = no; then |
729e4ab9 | 1034 | # The option will be detected at compile time without additional compiler options. |
46f4442e A |
1035 | CHECK_UTF16_STRING_RESULT="available" |
1036 | fi | |
1037 | ;; | |
1038 | *-*-cygwin) | |
729e4ab9 | 1039 | # wchar_t can be used |
46f4442e A |
1040 | CHECK_UTF16_STRING_RESULT="available" |
1041 | ;; | |
1042 | *) | |
1043 | ;; | |
1044 | esac | |
729e4ab9 | 1045 | |
0f5d89e8 | 1046 | # GCC >= 4.4 supports UTF16 string literals. As of ICU 62, both C and C++ files require them. |
51004dcb A |
1047 | if test "$CHECK_UTF16_STRING_RESULT" = "unknown"; then |
1048 | if test "$GCC" = yes; then | |
729e4ab9 | 1049 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ |
0f5d89e8 | 1050 | static const unsigned short test[] = u"This is a UTF16 literal string."; |
51004dcb A |
1051 | ]], [[]])],[CC_UTF16_STRING=1],[CC_UTF16_STRING=0]) |
1052 | if test "$CC_UTF16_STRING" = 1; then | |
1053 | CHECK_UTF16_STRING_RESULT="C only"; | |
51004dcb A |
1054 | fi |
1055 | fi | |
1056 | if test "$GXX" = yes; then | |
51004dcb | 1057 | # -Wno-return-type-c-linkage is desired so that stable ICU API is not warned about. |
51004dcb A |
1058 | AC_LANG_PUSH([C++]) |
1059 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ | |
1060 | static const char16_t test[] = u"This is a UTF16 literal string."; | |
1061 | ]], [[]])],[CXX_UTF16_STRING=1],[CXX_UTF16_STRING=0]) | |
1062 | AC_LANG_POP([C++]) | |
1063 | if test "$CXX_UTF16_STRING" = 1; then | |
1064 | if test "$CC_UTF16_STRING" = 1; then | |
1065 | CHECK_UTF16_STRING_RESULT="available"; | |
1066 | else | |
1067 | CHECK_UTF16_STRING_RESULT="C++ only"; | |
1068 | fi | |
729e4ab9 A |
1069 | fi |
1070 | fi | |
1071 | fi | |
46f4442e | 1072 | AC_MSG_RESULT($CHECK_UTF16_STRING_RESULT) |
b75a7d8f | 1073 | |
729e4ab9 | 1074 | # Enable/disable extras |
b75a7d8f A |
1075 | AC_ARG_ENABLE(extras, |
1076 | [ --enable-extras build ICU extras [default=yes]], | |
1077 | [case "${enableval}" in | |
1078 | yes) extras=true ;; | |
1079 | no) extras=false ;; | |
1080 | *) AC_MSG_ERROR(bad value ${enableval} for --enable-extras) ;; | |
57a6839d | 1081 | esac], |
b75a7d8f A |
1082 | extras=true) |
1083 | ICU_CONDITIONAL(EXTRAS, test "$extras" = true) | |
73c04bcf | 1084 | AC_ARG_ENABLE(icuio, |
374ca955 | 1085 | [ --enable-icuio build ICU's icuio library [default=yes]], |
b75a7d8f | 1086 | [case "${enableval}" in |
374ca955 A |
1087 | yes) icuio=true ;; |
1088 | no) icuio=false ;; | |
1089 | *) AC_MSG_ERROR(bad value ${enableval} for --enable-icuio) ;; | |
57a6839d | 1090 | esac], |
374ca955 A |
1091 | icuio=true) |
1092 | ICU_CONDITIONAL(ICUIO, test "$icuio" = true) | |
b75a7d8f | 1093 | |
b331163b A |
1094 | # Enable/disable layoutex |
1095 | AC_ARG_ENABLE(layoutex, | |
f3c0d7a5 A |
1096 | [ --enable-layoutex build ICU's Paragraph Layout library [default=yes]. |
1097 | icu-le-hb must be installed via pkg-config. See http://harfbuzz.org], | |
b331163b | 1098 | [case "${enableval}" in |
f3c0d7a5 | 1099 | yes) layoutex=$have_icu_le_hb ;; |
b331163b A |
1100 | no) layoutex=false ;; |
1101 | *) AC_MSG_ERROR(bad value ${enableval} for --enable-layoutex) ;; | |
1102 | esac], | |
f3c0d7a5 | 1103 | layoutex=$have_icu_le_hb) |
b331163b A |
1104 | ICU_CONDITIONAL(LAYOUTEX, test "$layoutex" = true) |
1105 | ||
f3c0d7a5 A |
1106 | # Enable/disable layout |
1107 | AC_ARG_ENABLE(layout, | |
1108 | [], | |
1109 | [case "${enableval}" in | |
1110 | yes) AC_MSG_ERROR(The ICU Layout Engine has been removed.) ;; | |
1111 | no) ;; | |
1112 | *) ;; | |
1113 | esac], | |
1114 | ) | |
1115 | ||
57a6839d A |
1116 | # Enable/disable tools |
1117 | AC_ARG_ENABLE(tools, | |
1118 | [ --enable-tools build ICU's tools [default=yes]], | |
1119 | [case "${enableval}" in | |
1120 | yes) tools=true ;; | |
1121 | no) tools=false ;; | |
1122 | *) AC_MSG_ERROR(bad value ${enableval} for --enable-tools) ;; | |
1123 | esac], | |
1124 | tools=true) | |
1125 | ICU_CONDITIONAL(TOOLS, test "$tools" = true) | |
1126 | ||
b75a7d8f | 1127 | AC_ARG_WITH(data-packaging, |
b331163b A |
1128 | [ --with-data-packaging specify how to package ICU data. Possible values: |
1129 | files raw files (.res, etc) | |
1130 | archive build a single icudtXX.dat file | |
1131 | library shared library (.dll/.so/etc.) | |
1132 | static static library (.a/.lib/etc.) | |
1133 | auto build shared if possible (default) | |
1134 | See http://userguide.icu-project.org/icudata for more info.], | |
b75a7d8f A |
1135 | [case "${withval}" in |
1136 | files|archive|library) datapackaging=$withval ;; | |
1137 | auto) datapackaging=$withval ;; | |
1138 | common) datapackaging=archive ;; | |
1139 | dll) datapackaging=library ;; | |
374ca955 A |
1140 | static) datapackaging=static ;; |
1141 | *) AC_MSG_ERROR(bad value ${withval} for --with-data-packaging) ;; | |
57a6839d | 1142 | esac], |
b75a7d8f A |
1143 | [datapackaging=]) |
1144 | ||
57a6839d | 1145 | # Note: 'thesysconfdir' is an evaluated version, for Man pages, so also for thedatadir, thelibdir, etc.. |
729e4ab9 A |
1146 | # thesysconfdir=`eval echo $sysconfdir` |
1147 | dnl# AC_SUBST(thesysconfdir) | |
1148 | dnl# thelibdir=`test "x$exec_prefix" = xNONE && exec_prefix="$prefix"; eval echo $libdir` | |
1149 | dnl# AC_SUBST(thelibdir) | |
b75a7d8f | 1150 | thedatadir=`eval echo $datadir` |
729e4ab9 | 1151 | dnl# AC_SUBST(thedatadir) |
57a6839d | 1152 | # Always put raw data files in share/icu/{version}, etc. Never use lib/icu/{version} for data files.. Actual shared libraries will go in {libdir}. |
374ca955 A |
1153 | pkgicudatadir=$datadir |
1154 | thepkgicudatadir=$thedatadir | |
b75a7d8f A |
1155 | AC_SUBST(pkgicudatadir) |
1156 | AC_SUBST(thepkgicudatadir) | |
1157 | ||
729e4ab9 | 1158 | dnl# Shouldn't need the AC_SUBST |
b75a7d8f A |
1159 | |
1160 | if test x"$datapackaging" = x -o x"$datapackaging" = xauto; then | |
729e4ab9 | 1161 | # default to library |
b75a7d8f | 1162 | datapackaging=library |
729e4ab9 A |
1163 | if test "$ENABLE_STATIC" = "YES"; then |
1164 | if test "$ENABLE_SHARED" != "YES"; then | |
1165 | datapackaging=static | |
1166 | fi | |
1167 | fi | |
b75a7d8f A |
1168 | fi |
1169 | ||
729e4ab9 A |
1170 | datapackaging_dir=`eval echo $thedatadir`"/icu/${VERSION}" |
1171 | ||
1172 | datapackaging_msg="(No explaination for mode $datapackaging.)" | |
1173 | ||
1174 | datapackaging_msg_path="ICU will look in $datapackaging_dir which is the installation location. Call u_setDataDirectory() or use the ICU_DATA environment variable to override." | |
57a6839d | 1175 | datapackaging_msg_set="ICU will use the linked data library. If linked with the stub library located in stubdata/, the application can use udata_setCommonData() or set a data path to override." |
729e4ab9 A |
1176 | datapackaging_howfound="(unknown)" |
1177 | ||
b75a7d8f A |
1178 | case "$datapackaging" in |
1179 | files) | |
729e4ab9 A |
1180 | DATA_PACKAGING_MODE=files |
1181 | datapackaging_msg="ICU data will be stored in individual files." | |
1182 | datapackaging_howfound="$datapackaging_msg_path" | |
1183 | ;; | |
b75a7d8f | 1184 | archive) |
729e4ab9 A |
1185 | DATA_PACKAGING_MODE=common |
1186 | datapackaging_msg="ICU data will be stored in a single .dat file." | |
1187 | datapackaging_howfound="$datapackaging_msg_path" | |
1188 | ;; | |
b75a7d8f | 1189 | library) |
729e4ab9 A |
1190 | DATA_PACKAGING_MODE=dll |
1191 | datapackaging_msg="ICU data will be linked with ICU." | |
1192 | if test "$ENABLE_STATIC" = "YES"; then | |
1193 | datapackaging_msg="$datapackaging_msg A static data library will be built. " | |
1194 | fi | |
1195 | if test "$ENABLE_SHARED" = "YES"; then | |
1196 | datapackaging_msg="$datapackaging_msg A shared data library will be built. " | |
1197 | fi | |
1198 | datapackaging_howfound="$datapackaging_msg_set" | |
1199 | ;; | |
1200 | static) | |
1201 | DATA_PACKAGING_MODE=static | |
1202 | datapackaging_msg="ICU data will be stored in a static library." | |
1203 | datapackaging_howfound="$datapackaging_msg_set" | |
1204 | ;; | |
b75a7d8f | 1205 | esac |
b75a7d8f A |
1206 | AC_SUBST(DATA_PACKAGING_MODE) |
1207 | ||
729e4ab9 | 1208 | # Sets a library suffix |
b75a7d8f A |
1209 | AC_MSG_CHECKING([for a library suffix to use]) |
1210 | AC_ARG_WITH(library-suffix, | |
1211 | [ --with-library-suffix=suffix tag a suffix to the library names [default=]], | |
1212 | [ICULIBSUFFIX="${withval}"], | |
1213 | [ICULIBSUFFIX=]) | |
1214 | msg=$ICULIBSUFFIX | |
1215 | if test "$msg" = ""; then | |
1216 | msg=none | |
1217 | fi | |
1218 | AC_MSG_RESULT($msg) | |
1219 | AC_SUBST(ICULIBSUFFIX) | |
b75a7d8f A |
1220 | if test "$ICULIBSUFFIX" != "" |
1221 | then | |
1222 | U_HAVE_LIB_SUFFIX=1 | |
1223 | ICULIBSUFFIXCNAME=`echo _$ICULIBSUFFIX | sed 's/[^A-Za-z0-9_]/_/g'` | |
4388f060 | 1224 | UCONFIG_CPPFLAGS="${UCONFIG_CPPFLAGS} -DU_HAVE_LIB_SUFFIX=1 -DU_LIB_SUFFIX_C_NAME=${ICULIBSUFFIXCNAME} " |
b75a7d8f A |
1225 | else |
1226 | U_HAVE_LIB_SUFFIX=0 | |
1227 | fi | |
b75a7d8f A |
1228 | AC_SUBST(U_HAVE_LIB_SUFFIX) |
1229 | AC_SUBST(ICULIBSUFFIXCNAME) | |
1230 | ||
729e4ab9 | 1231 | # Enable/disable tests |
b75a7d8f A |
1232 | AC_ARG_ENABLE(tests, |
1233 | [ --enable-tests build ICU tests [default=yes]], | |
1234 | [case "${enableval}" in | |
1235 | yes) tests=true ;; | |
1236 | no) tests=false ;; | |
1237 | *) AC_MSG_ERROR(bad value ${enableval} for --enable-tests) ;; | |
57a6839d | 1238 | esac], |
b75a7d8f A |
1239 | tests=true) |
1240 | ICU_CONDITIONAL(TESTS, test "$tests" = true) | |
1241 | ||
729e4ab9 | 1242 | # Enable/disable samples |
b75a7d8f | 1243 | AC_ARG_ENABLE(samples, |
57a6839d | 1244 | [ --enable-samples build ICU samples [default=yes] |
46f4442e A |
1245 | |
1246 | Additionally, the variable FORCE_LIBS may be set before calling configure. | |
1247 | If set, it will REPLACE any automatic list of libraries.], | |
b75a7d8f A |
1248 | [case "${enableval}" in |
1249 | yes) samples=true ;; | |
1250 | no) samples=false ;; | |
1251 | *) AC_MSG_ERROR(bad value ${enableval} for --enable-samples) ;; | |
57a6839d | 1252 | esac], |
b75a7d8f A |
1253 | samples=true) |
1254 | ICU_CONDITIONAL(SAMPLES, test "$samples" = true) | |
1255 | ||
1256 | ICUDATA_CHAR=$U_ENDIAN_CHAR | |
1257 | ||
729e4ab9 A |
1258 | # Platform-specific Makefile setup |
1259 | # set ICUDATA_CHAR to 'e' for any EBCDIC (which should be big endian) platform. | |
b75a7d8f A |
1260 | case "${host}" in |
1261 | *-*-solaris*) platform=U_SOLARIS ;; | |
729e4ab9 | 1262 | *-*-linux*|*-*-gnu|*-*-k*bsd*-gnu|*-*-kopensolaris*-gnu) platform=U_LINUX ;; |
73c04bcf | 1263 | *-*-*bsd*|*-*-dragonfly*) platform=U_BSD ;; |
374ca955 A |
1264 | *-*-aix*) platform=U_AIX ;; |
1265 | *-*-hpux*) platform=U_HPUX ;; | |
b75a7d8f | 1266 | *-apple-darwin*|*-apple-rhapsody*) platform=U_DARWIN ;; |
4388f060 A |
1267 | *-*-cygwin*) platform=U_CYGWIN ;; |
1268 | *-*-mingw*) platform=U_MINGW ;; | |
b75a7d8f | 1269 | *-*ibm-openedition*|*-*-os390*) platform=OS390 |
73c04bcf A |
1270 | if test "${ICU_ENABLE_ASCII_STRINGS}" != "1"; then |
1271 | ICUDATA_CHAR="e" | |
1272 | fi ;; | |
b75a7d8f | 1273 | *-*-os400*) platform=OS400 |
73c04bcf A |
1274 | if test "${ICU_ENABLE_ASCII_STRINGS}" != "1"; then |
1275 | ICUDATA_CHAR="e" | |
1276 | fi ;; | |
b75a7d8f A |
1277 | *-*-nto*) platform=U_QNX ;; |
1278 | *-dec-osf*) platform=U_OSF ;; | |
374ca955 A |
1279 | *-*-beos) platform=U_BEOS ;; |
1280 | *-*-irix*) platform=U_IRIX ;; | |
1281 | *-ncr-*) platform=U_MPRAS ;; | |
b75a7d8f A |
1282 | *) platform=U_UNKNOWN_PLATFORM ;; |
1283 | esac | |
1284 | AC_SUBST(ICUDATA_CHAR) | |
1285 | AC_SUBST(platform) | |
1286 | platform_make_fragment_name="$icu_cv_host_frag" | |
1287 | platform_make_fragment='$(top_srcdir)/config/'"$platform_make_fragment_name" | |
1288 | AC_SUBST(platform_make_fragment_name) | |
1289 | AC_SUBST(platform_make_fragment) | |
1290 | ||
b75a7d8f A |
1291 | if test "${FORCE_LIBS}" != ""; then |
1292 | echo " *** Overriding automatically chosen [LIBS=$LIBS], using instead [FORCE_LIBS=${FORCE_LIBS}]" 1>&6 | |
1293 | LIBS=${FORCE_LIBS} | |
1294 | fi | |
1295 | ||
729e4ab9 A |
1296 | # Now that we're done using CPPFLAGS etc. for tests, we can change it |
1297 | # for build. | |
b75a7d8f | 1298 | |
3d1f044b | 1299 | if test "${CC}" = "clang"; then |
57a6839d A |
1300 | CLANGCFLAGS="-Qunused-arguments -Wno-parentheses-equality" |
1301 | else | |
1302 | CLANGCFLAGS="" | |
1303 | fi | |
1304 | ||
3d1f044b | 1305 | if test "${CXX}" = "clang++"; then |
57a6839d A |
1306 | CLANGCXXFLAGS="-Qunused-arguments -Wno-parentheses-equality" |
1307 | else | |
1308 | CLANGCXXFLAGS="" | |
1309 | fi | |
1310 | ||
51004dcb | 1311 | CPPFLAGS="$CPPFLAGS \$(THREADSCPPFLAGS)" |
57a6839d A |
1312 | CFLAGS="$CFLAGS \$(THREADSCFLAGS) $CLANGCFLAGS" |
1313 | CXXFLAGS="$CXXFLAGS \$(THREADSCXXFLAGS) $CLANGCXXFLAGS" | |
b75a7d8f | 1314 | |
4388f060 A |
1315 | AC_SUBST(LIBCFLAGS) |
1316 | AC_SUBST(LIBCXXFLAGS) | |
1317 | ||
1318 | # append all config cppflags | |
1319 | CPPFLAGS="$CPPFLAGS $CONFIG_CPPFLAGS $UCONFIG_CPPFLAGS" | |
1320 | ||
1321 | echo "CPPFLAGS=$CPPFLAGS" | |
1322 | echo "CFLAGS=$CFLAGS" | |
1323 | echo "CXXFLAGS=$CXXFLAGS" | |
1324 | ||
1325 | ||
729e4ab9 A |
1326 | # output the Makefiles |
1327 | AC_CONFIG_FILES([icudefs.mk \ | |
b75a7d8f | 1328 | Makefile \ |
729e4ab9 | 1329 | data/pkgdataMakefile \ |
374ca955 | 1330 | config/Makefile.inc \ |
729e4ab9 A |
1331 | config/icu.pc \ |
1332 | config/pkgdataMakefile \ | |
374ca955 A |
1333 | data/Makefile \ |
1334 | stubdata/Makefile \ | |
1335 | common/Makefile \ | |
1336 | i18n/Makefile \ | |
b75a7d8f | 1337 | layoutex/Makefile \ |
374ca955 A |
1338 | io/Makefile \ |
1339 | extra/Makefile \ | |
73c04bcf | 1340 | extra/uconv/Makefile \ |
729e4ab9 | 1341 | extra/uconv/pkgdataMakefile \ |
73c04bcf A |
1342 | extra/scrptrun/Makefile \ |
1343 | tools/Makefile \ | |
1344 | tools/ctestfw/Makefile \ | |
1345 | tools/toolutil/Makefile \ | |
374ca955 A |
1346 | tools/makeconv/Makefile \ |
1347 | tools/genrb/Makefile \ | |
374ca955 A |
1348 | tools/genccode/Makefile \ |
1349 | tools/gencmn/Makefile \ | |
1350 | tools/gencnval/Makefile \ | |
51004dcb | 1351 | tools/gendict/Makefile \ |
b75a7d8f | 1352 | tools/gentest/Makefile \ |
729e4ab9 | 1353 | tools/gennorm2/Makefile \ |
b75a7d8f | 1354 | tools/genbrk/Makefile \ |
374ca955 | 1355 | tools/gensprep/Makefile \ |
729e4ab9 | 1356 | tools/icuinfo/Makefile \ |
73c04bcf | 1357 | tools/icupkg/Makefile \ |
374ca955 A |
1358 | tools/icuswap/Makefile \ |
1359 | tools/pkgdata/Makefile \ | |
73c04bcf | 1360 | tools/tzcode/Makefile \ |
729e4ab9 | 1361 | tools/gencfu/Makefile \ |
f3c0d7a5 | 1362 | tools/escapesrc/Makefile \ |
374ca955 | 1363 | test/Makefile \ |
46f4442e | 1364 | test/compat/Makefile \ |
374ca955 | 1365 | test/testdata/Makefile \ |
729e4ab9 | 1366 | test/testdata/pkgdataMakefile \ |
374ca955 | 1367 | test/hdrtst/Makefile \ |
b75a7d8f A |
1368 | test/intltest/Makefile \ |
1369 | test/cintltst/Makefile \ | |
1370 | test/iotest/Makefile \ | |
b75a7d8f | 1371 | test/letest/Makefile \ |
46f4442e A |
1372 | test/perf/Makefile \ |
1373 | test/perf/collationperf/Makefile \ | |
51004dcb | 1374 | test/perf/collperf/Makefile \ |
57a6839d | 1375 | test/perf/collperf2/Makefile \ |
4388f060 | 1376 | test/perf/dicttrieperf/Makefile \ |
46f4442e A |
1377 | test/perf/ubrkperf/Makefile \ |
1378 | test/perf/charperf/Makefile \ | |
1379 | test/perf/convperf/Makefile \ | |
1380 | test/perf/normperf/Makefile \ | |
729e4ab9 | 1381 | test/perf/DateFmtPerf/Makefile \ |
4388f060 | 1382 | test/perf/howExpensiveIs/Makefile \ |
46f4442e A |
1383 | test/perf/strsrchperf/Makefile \ |
1384 | test/perf/unisetperf/Makefile \ | |
1385 | test/perf/usetperf/Makefile \ | |
1386 | test/perf/ustrperf/Makefile \ | |
1387 | test/perf/utfperf/Makefile \ | |
729e4ab9 | 1388 | test/perf/utrie2perf/Makefile \ |
57a6839d | 1389 | test/perf/leperf/Makefile \ |
b75a7d8f | 1390 | samples/Makefile samples/date/Makefile \ |
4388f060 | 1391 | samples/cal/Makefile samples/layout/Makefile]) |
729e4ab9 A |
1392 | AC_OUTPUT |
1393 | ||
3d1f044b A |
1394 | if test -z "$PYTHON"; |
1395 | then | |
1396 | echo "" > data/rules.mk | |
1397 | echo "" > test/testdata/rules.mk | |
1398 | else | |
1399 | if test -f "$srcdir/data/locales/root.txt"; | |
1400 | then | |
1401 | echo "Spawning Python to generate data/rules.mk..." | |
1402 | PYTHONPATH="$srcdir/data" $PYTHON -m buildtool \ | |
1403 | --mode gnumake \ | |
1404 | --seqmode parallel \ | |
1405 | --src_dir "$srcdir/data" \ | |
1406 | --filter_file "$ICU_DATA_FILTER_FILE" \ | |
1407 | $ICU_DATA_BUILDTOOL_OPTS \ | |
1408 | > data/rules.mk | |
1409 | if test "$?" != "0"; then | |
1410 | AC_MSG_ERROR(Python failed to run; see above error.) | |
1411 | fi | |
1412 | else | |
1413 | echo "Not rebuilding data/rules.mk, assuming prebuilt data in data/in" | |
1414 | touch data/rules.mk | |
1415 | fi | |
1416 | echo "Spawning Python to generate test/testdata/rules.mk..." | |
1417 | PYTHONPATH="$srcdir/test/testdata:$srcdir/data" $PYTHON -m buildtool \ | |
1418 | --mode gnumake \ | |
1419 | --seqmode parallel \ | |
1420 | --src_dir "$srcdir/test/testdata" \ | |
1421 | > test/testdata/rules.mk | |
1422 | if test "$?" != "0"; then | |
1423 | AC_MSG_ERROR(Python failed to run; see above error.) | |
1424 | fi | |
1425 | fi | |
1426 | ||
57a6839d | 1427 | echo |
729e4ab9 A |
1428 | echo "ICU for C/C++ $VERSION is ready to be built." |
1429 | echo "=== Important Notes: ===" | |
b75a7d8f | 1430 | |
729e4ab9 A |
1431 | echo "Data Packaging: $datapackaging" |
1432 | echo " This means: $datapackaging_msg" | |
1433 | echo " To locate data: $datapackaging_howfound" | |
1434 | ||
73c04bcf | 1435 | if test -n "`$U_MAKE -v 2>&1 | grep '^GNU Make'`"; then |
729e4ab9 | 1436 | echo "Building ICU: Use a GNU make such as $U_MAKE to build ICU." |
73c04bcf | 1437 | else |
729e4ab9 | 1438 | echo "** WARNING: $U_MAKE may not be GNU make." |
73c04bcf | 1439 | echo "This may cause ICU to fail to build. Please make sure that GNU make" |
729e4ab9 A |
1440 | echo "is in your PATH so that the configure script can detect its location." |
1441 | fi | |
4388f060 A |
1442 | if test "x$AR" = "xfalse"; then |
1443 | echo "*** WARNING: Archiver ar not found. Set AR= or fix PATH. Some builds (such as static) may fail." | |
1444 | fi | |
729e4ab9 A |
1445 | |
1446 | AC_MSG_CHECKING([the version of "$U_MAKE"]) | |
1447 | if "$U_MAKE" -f "$srcdir/config/gmakever.mk" PLATFORM="$platform"; then | |
1448 | AC_MSG_RESULT([ok]) | |
1449 | else | |
1450 | AC_MSG_RESULT([too old or test failed - try upgrading GNU Make]) | |
73c04bcf A |
1451 | fi |
1452 | ||
57a6839d | 1453 | AC_SUBST(UCONFIG_CPPFLAGS) |
4388f060 A |
1454 | if test -n "$UCONFIG_CPPFLAGS"; then |
1455 | HDRFILE="uconfig.h.prepend" | |
1456 | echo "*** WARNING: You must set the following flags before code compiled against this ICU will function properly:" | |
57a6839d | 1457 | echo |
4388f060 A |
1458 | echo " ${UCONFIG_CPPFLAGS}" |
1459 | echo | |
1460 | echo 'The recommended way to do this is to prepend the following lines to source/common/unicode/uconfig.h or #include them near the top of that file.' | |
1461 | echo "Creating the file ${HDRFILE}" | |
1462 | echo | |
1463 | echo '--------------- ' "${HDRFILE}" | |
1464 | echo > "${HDRFILE}" | |
1465 | echo '/* ICU customizations: put these lines at the top of uconfig.h */' >> "${HDRFILE}" | |
1466 | echo >> "${HDRFILE}" | |
1467 | for flag in ${UCONFIG_CPPFLAGS}; | |
1468 | do | |
1469 | echo " /* $flag */" >> "${HDRFILE}" | |
1470 | case "${flag}" in | |
1471 | -D*=*) | |
1472 | [ \echo "${flag}" | sed -n 's%-D\([^=]*\)=%#define \1 %p' >> "${HDRFILE}" ] | |
1473 | \echo >> "${HDRFILE}" | |
1474 | ;; | |
1475 | -D*) | |
1476 | [ \echo "${flag}" | sed -n 's%-D\([^=]*\)%#define \1 %p' >> "${HDRFILE}" ] | |
1477 | \echo >> "${HDRFILE}" | |
1478 | ;; | |
1479 | *) | |
1480 | \echo "/* Not sure how to handle this argument: ${flag} */" >> "${HDRFILE}" | |
1481 | \echo >> "${HDRFILE}" | |
1482 | ;; | |
1483 | esac | |
1484 | done | |
1485 | cat "${HDRFILE}" | |
1486 | \echo "/* End of ${HDRFILE} ------------ */" >> "${HDRFILE}" | |
1487 | echo >> "${HDRFILE}" | |
1488 | echo '--------------- end ' "${HDRFILE}" | |
1489 | fi | |
1490 | ||
57a6839d A |
1491 | AC_SUBST(UCONFIG_CFLAGS) |
1492 | if test -n "$UCONFIG_CFLAGS"; then | |
1493 | echo "C apps may want to build with CFLAGS = ${UCONFIG_CFLAGS}" | |
1494 | fi | |
1495 | AC_SUBST(UCONFIG_CXXFLAGS) | |
1496 | if test -n "$UCONFIG_CXXFLAGS"; then | |
1497 | echo "C++ apps may want to build with CXXFLAGS = ${UCONFIG_CXXFLAGS}" | |
1498 | fi | |
1499 | ||
1500 | if test "$tools" = false; | |
1501 | then | |
1502 | echo "## Note: you have disabled ICU's tools. This ICU cannot build its own data or tests." | |
1503 | echo "## Expect build failures in the 'data', 'test', and other directories." | |
1504 | fi | |
1505 | ||
3d1f044b A |
1506 | if test -z "$PYTHON"; |
1507 | then | |
1508 | echo "** Note: Python not found. You will not be able to build data from source or run tests." | |
1509 | fi | |
1510 | ||
73c04bcf | 1511 | $as_unset _CXX_CXXSUFFIX |