remove some extraneous semicolons
[wxWidgets.git] / acinclude.m4
1 dnl ---------------------------------------------------------------------------
2 dnl
3 dnl Macros for configure.in for wxWindows by Robert Roebling, Phil Blecker,
4 dnl Vadim Zeitlin and Ron Lee
5 dnl
6 dnl This script is under the wxWindows licence.
7 dnl
8 dnl Version: $Id$
9 dnl ---------------------------------------------------------------------------
10
11
12 dnl ===========================================================================
13 dnl Objective-C(++) related macros
14 dnl ===========================================================================
15 m4_define([AC_WX_LANG_OBJECTIVEC],
16 [AC_LANG(C)
17 ac_ext=m
18 ])
19
20 m4_define([AC_WX_LANG_OBJECTIVECPLUSPLUS],
21 [AC_LANG(C++)
22 ac_ext=mm
23 ])
24
25 dnl ===========================================================================
26 dnl macros to find the a file in the list of include/lib paths
27 dnl ===========================================================================
28
29 dnl ---------------------------------------------------------------------------
30 dnl call WX_PATH_FIND_INCLUDES(search path, header name), sets ac_find_includes
31 dnl to the full name of the file that was found or leaves it empty if not found
32 dnl ---------------------------------------------------------------------------
33 AC_DEFUN([WX_PATH_FIND_INCLUDES],
34 [
35 ac_find_includes=
36 for ac_dir in $1 /usr/include
37   do
38     if test -f "$ac_dir/$2"; then
39       ac_find_includes=$ac_dir
40       break
41     fi
42   done
43 ])
44
45 dnl ---------------------------------------------------------------------------
46 dnl call WX_PATH_FIND_LIBRARIES(search path, lib name), sets ac_find_libraries
47 dnl to the full name of the file that was found or leaves it empty if not found
48 dnl ---------------------------------------------------------------------------
49 AC_DEFUN([WX_PATH_FIND_LIBRARIES],
50 [
51   ac_find_libraries=
52   for ac_dir in $1
53   do
54     for ac_extension in a so sl dylib dll.a; do
55       if test -f "$ac_dir/lib$2.$ac_extension"; then
56         ac_find_libraries=$ac_dir
57         break 2
58       fi
59     done
60   done
61 ])
62
63 dnl ---------------------------------------------------------------------------
64 dnl return list of standard library paths
65 dnl ---------------------------------------------------------------------------
66 dnl return all default locations:
67 dnl   - /usr/lib: standard
68 dnl   - /usr/lib32: n32 ABI on IRIX
69 dnl   - /usr/lib64: n64 ABI on IRIX
70 dnl   - /usr/lib/64: 64 bit ABI on Solaris and Linux x86-64
71 dnl
72 dnl NB: if any of directories in the list is not a subdir of /usr, code setting
73 dnl     wx_cv_std_libpath needs to be updated
74 AC_DEFUN([WX_STD_LIBPATH], [/usr/lib /usr/lib32 /usr/lib/64 /usr/lib64])
75
76 dnl ---------------------------------------------------------------------------
77 dnl Path to include, already defined
78 dnl ---------------------------------------------------------------------------
79 AC_DEFUN([WX_INCLUDE_PATH_EXIST],
80 [
81   dnl never add -I/usr/include to the CPPFLAGS
82   if test "x$1" = "x/usr/include"; then
83     ac_path_to_include=""
84   else
85     echo "$2" | grep "\-I$1" > /dev/null
86     result=$?
87     if test $result = 0; then
88       ac_path_to_include=""
89     else
90       ac_path_to_include=" -I$1"
91     fi
92   fi
93 ])
94
95 dnl ---------------------------------------------------------------------------
96 dnl Usage: WX_LINK_PATH_EXIST(path, libpath)
97 dnl
98 dnl Set ac_path_to_link to nothing if path is already in libpath of to -Lpath
99 dnl if it is not, so that libpath can be set to "$libpath$ac_path_to_link"
100 dnl after calling this function
101 dnl ---------------------------------------------------------------------------
102 AC_DEFUN([WX_LINK_PATH_EXIST],
103 [
104   dnl never add -L/usr/libXXX explicitely to libpath
105   if test "$1" = "default location"; then
106     ac_path_to_link=""
107   else
108     echo "$2" | grep "\-L$1" > /dev/null
109     result=$?
110     if test $result = 0; then
111       ac_path_to_link=""
112     else
113       ac_path_to_link=" -L$1"
114     fi
115   fi
116 ])
117
118 dnl ===========================================================================
119 dnl C++ features test
120 dnl ===========================================================================
121
122 dnl ---------------------------------------------------------------------------
123 dnl WX_CPP_NEW_HEADERS checks whether the compiler has "new" <iostream> header
124 dnl or only the old <iostream.h> one - it may be generally assumed that if
125 dnl <iostream> exists, the other "new" headers (without .h) exist too.
126 dnl
127 dnl call WX_CPP_NEW_HEADERS(actiof-if-true, action-if-false)
128 dnl ---------------------------------------------------------------------------
129
130 AC_DEFUN([WX_CPP_NEW_HEADERS],
131 [
132     AC_LANG_SAVE
133     AC_LANG_CPLUSPLUS
134
135     AC_CHECK_HEADERS([iostream],,, [ ])
136
137     if test "$ac_cv_header_iostream" = "yes" ; then
138       ifelse([$1], , :, [$1])
139     else
140       ifelse([$2], , :, [$2])
141     fi
142
143     AC_LANG_RESTORE
144 ])
145
146 dnl ---------------------------------------------------------------------------
147 dnl WX_CPP_EXPLICIT checks whether the C++ compiler support the explicit
148 dnl keyword and defines HAVE_EXPLICIT if this is the case
149 dnl ---------------------------------------------------------------------------
150
151 AC_DEFUN([WX_CPP_EXPLICIT],
152 [
153   AC_CACHE_CHECK([if C++ compiler supports the explicit keyword],
154                  wx_cv_explicit,
155   [
156     AC_LANG_SAVE
157     AC_LANG_CPLUSPLUS
158
159     dnl do the test in 2 steps: first check that the compiler knows about the
160     dnl explicit keyword at all and then verify that it really honours it
161     AC_TRY_COMPILE(
162       [
163         class Foo { public: explicit Foo(int) {} };
164       ],
165       [
166         return 0;
167       ],
168       [
169         AC_TRY_COMPILE(
170             [
171                 class Foo { public: explicit Foo(int) {} };
172                 static void TakeFoo(const Foo& foo) { }
173             ],
174             [
175                 TakeFoo(17);
176                 return 0;
177             ],
178             wx_cv_explicit=no,
179             wx_cv_explicit=yes
180         )
181       ],
182       wx_cv_explicit=no
183     )
184
185     AC_LANG_RESTORE
186   ])
187
188   if test "$wx_cv_explicit" = "yes"; then
189     AC_DEFINE(HAVE_EXPLICIT)
190   fi
191 ])
192
193 dnl ---------------------------------------------------------------------------
194 dnl WX_CHECK_FUNCS(FUNCTIONS...,
195 dnl                [ACTION-IF-FOUND],
196 dnl                [ACTION-IF-NOT-FOUND],
197 dnl                [EXTRA-DEFINES-AND-INCLUDES],
198 dnl                [EXTRA-TEST-CODE])
199 dnl
200 dnl Checks that the functions listed in FUNCTIONS exist in the headers and the
201 dnl libs. For each function, if it is found then defines 'HAVE_FUNCTION' and
202 dnl executes ACTION-IF-FOUND, otherwise executes ACTION-IF-NOT-FOUND.
203 dnl
204 dnl The code from EXTRA-DEFINES-AND-INCLUDES is inserted into the test before
205 dnl the default headers are included, and EXTRA-TEST-CODE is inserted into
206 dnl the main() function after the default test for existence.
207 dnl
208 dnl Examples:
209 dnl   # the simple case
210 dnl   WX_CHECK_FUNCS(stat)
211 dnl   # use break to finish the loop early
212 dnl   WX_CHECK_FUNCS(mkstemp mktemp, break)
213 dnl   # extra defines
214 dnl   WX_CHECK_FUNCS(strtok_r, [], [], [#define _RREENTRANT])
215 dnl   # extra includes
216 dnl   WX_CHECK_FUNCS(swprintf, [], [], [#include <wchar.h>])
217 dnl   # checking the signature with extra test code
218 dnl   WX_CHECK_FUNCS(gettimeofday, [], [], [#include <sys/time.h>]
219 dnl     [struct timeval tv; struct timezone tz; gettimeofday(&tv, &tz)])
220 dnl ---------------------------------------------------------------------------
221
222 AC_DEFUN([WX_CHECK_FUNCS],
223 [
224   for wx_func in $1
225   do
226     AC_CACHE_CHECK(
227       [for $wx_func],
228       [wx_cv_func_$wx_func],
229       [
230         AC_LINK_IFELSE(
231           [
232             AC_LANG_PROGRAM(
233               [
234                 $4
235                 AC_INCLUDES_DEFAULT
236               ],
237               [
238                 #ifndef $wx_func
239                   &$wx_func;
240                 #endif
241                 $5
242               ])
243           ],
244           [eval wx_cv_func_$wx_func=yes],
245           [eval wx_cv_func_$wx_func=no])
246       ])
247
248     if eval test \$wx_cv_func_$wx_func = yes
249     then
250       AC_DEFINE_UNQUOTED(AS_TR_CPP([HAVE_$wx_func]))
251       $2
252     else
253       :
254       $3
255     fi
256   done
257 ])
258
259 dnl ---------------------------------------------------------------------------
260 dnl a slightly better AC_C_BIGENDIAN macro which allows cross-compiling
261 dnl ---------------------------------------------------------------------------
262
263 AC_DEFUN([WX_C_BIGENDIAN],
264 [AC_CACHE_CHECK([whether byte ordering is bigendian], ac_cv_c_bigendian,
265 [ac_cv_c_bigendian=unknown
266 # See if sys/param.h defines the BYTE_ORDER macro.
267 AC_TRY_COMPILE([#include <sys/types.h>
268 #include <sys/param.h>], [
269 #if !BYTE_ORDER || !BIG_ENDIAN || !LITTLE_ENDIAN
270  bogus endian macros
271 #endif], [# It does; now see whether it defined to BIG_ENDIAN or not.
272 AC_TRY_COMPILE([#include <sys/types.h>
273 #include <sys/param.h>], [
274 #if BYTE_ORDER != BIG_ENDIAN
275  not big endian
276 #endif], ac_cv_c_bigendian=yes, ac_cv_c_bigendian=no)])
277 if test $ac_cv_c_bigendian = unknown; then
278 AC_TRY_RUN([main () {
279   /* Are we little or big endian?  From Harbison&Steele.  */
280   union
281   {
282     long l;
283     char c[sizeof (long)];
284   } u;
285   u.l = 1;
286   exit (u.c[sizeof (long) - 1] == 1);
287 }], [ac_cv_c_bigendian=no], [ac_cv_c_bigendian=yes], [ac_cv_c_bigendian=unknown])
288 fi])
289 if test $ac_cv_c_bigendian = unknown; then
290   AC_MSG_WARN([Assuming little-endian target machine - this may be overriden by adding the line "ac_cv_c_bigendian=${ac_cv_c_bigendian='yes'}" to config.cache file])
291 fi
292 if test $ac_cv_c_bigendian = yes; then
293   AC_DEFINE(WORDS_BIGENDIAN)
294 fi
295 ])
296
297 dnl ---------------------------------------------------------------------------
298 dnl override AC_ARG_ENABLE/WITH to handle options defaults
299 dnl ---------------------------------------------------------------------------
300
301 dnl this macro checks for a three-valued command line --with argument:
302 dnl   possible arguments are 'yes', 'no', 'sys', or 'builtin'
303 dnl usage: WX_ARG_SYS_WITH(option, helpmessage, variable-name)
304 dnl
305 dnl the default value (used if the option is not specified at all) is the value
306 dnl of wxUSE_ALL_FEATURES (which is "yes" by default but can be changed by
307 dnl giving configure --disable-all-features option)
308 AC_DEFUN([WX_ARG_SYS_WITH],
309         [
310           AC_MSG_CHECKING([for --with-$1])
311           AC_ARG_WITH($1, [$2],
312                       [
313                         if test "$withval" = yes; then
314                           AS_TR_SH(wx_cv_use_$1)='$3=yes'
315                         elif test "$withval" = no; then
316                           AS_TR_SH(wx_cv_use_$1)='$3=no'
317                         elif test "$withval" = sys; then
318                           AS_TR_SH(wx_cv_use_$1)='$3=sys'
319                         elif test "$withval" = builtin; then
320                           AS_TR_SH(wx_cv_use_$1)='$3=builtin'
321                         else
322                           AC_MSG_ERROR([Invalid value for --with-$1: should be yes, no, sys, or builtin])
323                         fi
324                       ],
325                       [
326                         AS_TR_SH(wx_cv_use_$1)='$3=${'DEFAULT_$3":-$wxUSE_ALL_FEATURES}"
327                       ])
328
329           eval "$AS_TR_SH(wx_cv_use_$1)"
330
331           if test "$$3" = yes; then
332             AC_MSG_RESULT(yes)
333           elif test "$$3" = no; then
334             AC_MSG_RESULT(no)
335           elif test "$$3" = sys; then
336             AC_MSG_RESULT([system version])
337           elif test "$$3" = builtin; then
338             AC_MSG_RESULT([builtin version])
339           else
340             AC_MSG_ERROR([Invalid value for --with-$1: should be yes, no, sys, or builtin])
341           fi
342         ])
343
344 dnl this macro simply checks for a command line argument
345 dnl usage: WX_ARG_WITH(option, helpmessage, variable-name, [withstring])
346 AC_DEFUN([WX_ARG_WITH],
347         [
348           withstring=$4
349           defaultval=$wxUSE_ALL_FEATURES
350           if test -z "$defaultval"; then
351               if test x"$withstring" = xwithout; then
352                   defaultval=yes
353               else
354                   defaultval=no
355               fi
356           fi
357           AC_MSG_CHECKING([for --${withstring:-with}-$1])
358           AC_ARG_WITH($1, [$2],
359                       [
360                         if test "$withval" = yes; then
361                           AS_TR_SH(wx_cv_use_$1)='$3=yes'
362                         else
363                           AS_TR_SH(wx_cv_use_$1)='$3=no'
364                         fi
365                       ],
366                       [
367                         AS_TR_SH(wx_cv_use_$1)='$3=${'DEFAULT_$3":-$defaultval}"
368                       ])
369
370           eval "$AS_TR_SH(wx_cv_use_$1)"
371
372           if test x"$withstring" = xwithout; then
373             if test $$3 = yes; then
374               result=no
375             else
376               result=yes
377             fi
378           else
379             result=$$3
380           fi
381
382           AC_MSG_RESULT($result)
383         ])
384
385 dnl same as WX_ARG_WITH but makes it clear that the option is enabled by default
386 AC_DEFUN([WX_ARG_WITHOUT], [WX_ARG_WITH($1, [$2], $3, without)])
387
388 dnl like WX_ARG_WITH but uses AC_ARG_ENABLE instead of AC_ARG_WITH
389 dnl usage: WX_ARG_ENABLE(option, helpmessage, var, [enablestring], [default])
390 dnl
391 dnl enablestring can be omitted or a literal string "disable" and allows to
392 dnl show "checking for --disable-foo" message when running configure instead of
393 dnl the default "checking for --enable-foo" one whih is useful for the options
394 dnl enabled by default
395 dnl
396 dnl the "default" argument can be omitted or contain the default value to use
397 dnl for the option if it's unspecified
398 AC_DEFUN([WX_ARG_ENABLE],
399         [
400           enablestring=$4
401           defaultval=$5
402           if test -z "$defaultval"; then
403               if test x"$enablestring" = xdisable; then
404                   defaultval=yes
405               else
406                   defaultval=no
407               fi
408           fi
409
410           AC_MSG_CHECKING([for --${enablestring:-enable}-$1])
411           AC_ARG_ENABLE($1, [$2],
412                         [
413                           if test "$enableval" = yes; then
414                             AS_TR_SH(wx_cv_use_$1)='$3=yes'
415                           else
416                             AS_TR_SH(wx_cv_use_$1)='$3=no'
417                           fi
418                         ],
419                         [
420                           AS_TR_SH(wx_cv_use_$1)='$3=${'DEFAULT_$3":-$defaultval}"
421                         ])
422
423           eval "$AS_TR_SH(wx_cv_use_$1)"
424
425           if test x"$enablestring" = xdisable; then
426             if test $$3 = no; then
427               result=yes
428             else
429               result=no
430             fi
431           else
432             result=$$3
433           fi
434
435           AC_MSG_RESULT($result)
436         ])
437
438 dnl the same as WX_ARG_ENABLE but makes it more clear that the option is
439 dnl enabled by default
440 AC_DEFUN([WX_ARG_DISABLE], [WX_ARG_ENABLE($1, [$2], $3, disable)])
441
442 dnl same as WX_ARG_ENABLE but defaults to wxUSE_ALL_FEATURES instead of "yes"
443 AC_DEFUN([WX_ARG_FEATURE], [WX_ARG_ENABLE($1, [$2], $3,, $wxUSE_ALL_FEATURES)])
444
445 dnl Like WX_ARG_ENABLE but accepts a parameter.
446 dnl
447 dnl Usage:
448 dnl   WX_ARG_ENABLE_PARAM(option, helpmessage, variable-name, enablestring)
449 dnl
450 dnl Example:
451 dnl   WX_ARG_ENABLE_PARAM(foo, [[  --enable-foo[=bar] use foo]], wxUSE_FOO)
452 dnl
453 dnl  --enable-foo       wxUSE_FOO=yes
454 dnl  --disable-foo      wxUSE_FOO=no
455 dnl  --enable-foo=bar   wxUSE_FOO=bar
456 dnl  <not given>        wxUSE_FOO=$DEFAULT_wxUSE_FOO
457 dnl
458 AC_DEFUN([WX_ARG_ENABLE_PARAM],
459         [
460           enablestring=$4
461           AC_MSG_CHECKING([for --${enablestring:-enable}-$1])
462           AC_ARG_ENABLE($1, [$2],
463                         [
464                           wx_cv_use_$1="$3='$enableval'"
465                         ],
466                         [
467                           wx_cv_use_$1='$3='$DEFAULT_$3
468                         ])
469
470           eval "$wx_cv_use_$1"
471
472           AC_MSG_RESULT([$$3])
473         ])
474
475 dnl ===========================================================================
476 dnl Linker features test
477 dnl ===========================================================================
478
479 dnl ---------------------------------------------------------------------------
480 dnl WX_VERSIONED_SYMBOLS checks whether the linker can create versioned
481 dnl symbols. If it can, sets LDFLAGS_VERSIONING to $CXX flags needed to use
482 dnl version script file named versionfile
483 dnl
484 dnl call WX_VERSIONED_SYMBOLS(versionfile)
485 dnl ---------------------------------------------------------------------------
486 AC_DEFUN([WX_VERSIONED_SYMBOLS],
487 [
488     case "${host}" in
489         *-*-cygwin* | *-*-mingw* )
490             dnl although ld does support version script option on these
491             dnl platforms, it doesn't make much sense to use it under Win32
492             dnl and, moreover, this breaks linking because of a bug in handling
493             dnl paths in -Wl,--version-script,path option (if we ever do need
494             dnl to use it for cygwin/mingw32, keep in mind that replacing last
495             dnl comma with the equal sign works) so
496             dnl simply disable it
497             wx_cv_version_script=no
498             ;;
499
500         *)
501             AC_CACHE_CHECK([if the linker accepts --version-script], wx_cv_version_script,
502             [
503                 echo "VER_1 { *; };" >conftest.sym
504                 echo "int main() { return 0; }" >conftest.cpp
505
506                 if AC_TRY_COMMAND([
507                         $CXX -o conftest.output $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.cpp
508                         -Wl,--version-script,conftest.sym >/dev/null 2>conftest.stderr]) ; then
509                   if test -s conftest.stderr ; then
510                       wx_cv_version_script=no
511                   else
512                       wx_cv_version_script=yes
513                   fi
514                 else
515                   wx_cv_version_script=no
516                 fi
517
518                 dnl There's a problem in some old linkers with --version-script that
519                 dnl can cause linking to fail when you have objects with vtables in
520                 dnl libs 3 deep.  This is known to happen in netbsd and openbsd with
521                 dnl ld 2.11.2.
522                 dnl
523                 dnl To test for this we need to make some shared libs and
524                 dnl unfortunately we can't be sure of the right way to do that. If the
525                 dnl first two compiles don't succeed then it looks like the test isn't
526                 dnl working and the result is ignored, but if OTOH the first two
527                 dnl succeed but the third does not then the bug has been detected and
528                 dnl the --version-script flag is dropped.
529                 if test $wx_cv_version_script = yes
530                 then
531                   echo "struct B { virtual ~B() { } }; \
532                         struct D : public B { }; \
533                         void F() { D d; }" > conftest.cpp
534
535                   if AC_TRY_COMMAND([
536                         $CXX -shared -fPIC -o conftest1.output $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.cpp
537                         -Wl,--version-script,conftest.sym >/dev/null 2>/dev/null]) &&
538                      AC_TRY_COMMAND([
539                         $CXX -shared -fPIC -o conftest2.output $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.cpp
540                         -Wl,--version-script,conftest.sym conftest1.output >/dev/null 2>/dev/null])
541                   then
542                     if AC_TRY_COMMAND([
543                           $CXX -shared -fPIC -o conftest3.output $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.cpp
544                           -Wl,--version-script,conftest.sym conftest2.output conftest1.output >/dev/null 2>/dev/null])
545                     then
546                       wx_cv_version_script=yes
547                     else
548                       wx_cv_version_script=no
549                     fi
550                   fi
551                 fi
552
553                 rm -f conftest.output conftest.stderr conftest.sym conftest.cpp
554                 rm -f conftest1.output conftest2.output conftest3.output
555             ])
556
557             if test $wx_cv_version_script = yes ; then
558                 LDFLAGS_VERSIONING="-Wl,--version-script,$1"
559             fi
560             ;;
561     esac
562 ])
563
564
565 dnl ===========================================================================
566 dnl "3rd party" macros included here because they are not widely available
567 dnl ===========================================================================
568
569 dnl ---------------------------------------------------------------------------
570 dnl test for availability of iconv()
571 dnl ---------------------------------------------------------------------------
572
573 dnl From Bruno Haible.
574
575 AC_DEFUN([AM_ICONV],
576 [
577   dnl Some systems have iconv in libc, some have it in libiconv (OSF/1 and
578   dnl those with the standalone portable GNU libiconv installed).
579
580   AC_ARG_WITH([libiconv-prefix],
581 [  --with-libiconv-prefix=DIR  search for libiconv in DIR/include and DIR/lib], [
582     for dir in `echo "$withval" | tr : ' '`; do
583       if test -d $dir/include; then CPPFLAGS="$CPPFLAGS -I$dir/include"; fi
584       if test -d $dir/lib; then LDFLAGS="$LDFLAGS -L$dir/lib"; fi
585     done
586    ])
587
588   AC_CACHE_CHECK(for iconv, am_cv_func_iconv, [
589     am_cv_func_iconv="no, consider installing GNU libiconv"
590     am_cv_lib_iconv=no
591     AC_TRY_LINK([#include <stdlib.h>
592 #include <iconv.h>],
593       [iconv_t cd = iconv_open("","");
594        iconv(cd,NULL,NULL,NULL,NULL);
595        iconv_close(cd);],
596       am_cv_func_iconv=yes)
597     if test "$am_cv_func_iconv" != yes; then
598       am_save_LIBS="$LIBS"
599       LIBS="$LIBS -liconv"
600       AC_TRY_LINK([#include <stdlib.h>
601 #include <iconv.h>],
602         [iconv_t cd = iconv_open("","");
603          iconv(cd,NULL,NULL,NULL,NULL);
604          iconv_close(cd);],
605         am_cv_lib_iconv=yes
606         am_cv_func_iconv=yes)
607       LIBS="$am_save_LIBS"
608     fi
609   ])
610   if test "$am_cv_func_iconv" = yes; then
611     AC_DEFINE(HAVE_ICONV, 1, [Define if you have the iconv() function.])
612     AC_CACHE_CHECK([if iconv needs const], wx_cv_func_iconv_const,
613       AC_TRY_COMPILE([
614 #include <stdlib.h>
615 #include <iconv.h>
616 extern
617 #ifdef __cplusplus
618 "C"
619 #endif
620 #if defined(__STDC__) || defined(__cplusplus)
621 size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
622 #else
623 size_t iconv();
624 #endif
625         ],
626         [],
627         wx_cv_func_iconv_const="no",
628         wx_cv_func_iconv_const="yes"
629       )
630     )
631
632     iconv_const=
633     if test "x$wx_cv_func_iconv_const" = "xyes"; then
634         iconv_const="const"
635     fi
636
637     AC_DEFINE_UNQUOTED(ICONV_CONST, $iconv_const,
638       [Define as const if the declaration of iconv() needs const.])
639   fi
640   LIBICONV=
641   if test "$am_cv_lib_iconv" = yes; then
642     LIBICONV="-liconv"
643   fi
644   AC_SUBST(LIBICONV)
645 ])
646
647 dnl ---------------------------------------------------------------------------
648 dnl AC_SYS_LARGEFILE (partly based on the code from autoconf 2.5x)
649 dnl ---------------------------------------------------------------------------
650
651 dnl WX_SYS_LARGEFILE_TEST
652 dnl
653 dnl NB: original autoconf test was checking if compiler supported 6 bit off_t
654 dnl     arithmetic properly but this failed miserably with gcc under Linux
655 dnl     whereas the system still supports 64 bit files, so now simply check
656 dnl     that off_t is big enough
657 define(WX_SYS_LARGEFILE_TEST,
658 [typedef struct {
659     unsigned int field: sizeof(off_t) == 8;
660 } wxlf;
661 ])
662
663
664 dnl WX_SYS_LARGEFILE_MACRO_VALUE(C-MACRO, VALUE, CACHE-VAR)
665 define(WX_SYS_LARGEFILE_MACRO_VALUE,
666 [
667     AC_CACHE_CHECK([for $1 value needed for large files], [$3],
668         [
669           AC_TRY_COMPILE([#define $1 $2
670                           #include <sys/types.h>],
671                          WX_SYS_LARGEFILE_TEST,
672                          [$3=$2],
673                          [$3=no])
674         ]
675     )
676
677     if test "$$3" != no; then
678         wx_largefile=yes
679         AC_DEFINE_UNQUOTED([$1], [$$3])
680     fi
681 ])
682
683
684 dnl AC_SYS_LARGEFILE
685 dnl ----------------
686 dnl By default, many hosts won't let programs access large files;
687 dnl one must use special compiler options to get large-file access to work.
688 dnl For more details about this brain damage please see:
689 dnl http://www.sas.com/standards/large.file/x_open.20Mar96.html
690 AC_DEFUN([AC_SYS_LARGEFILE],
691 [AC_ARG_ENABLE(largefile,
692                [  --disable-largefile     omit support for large files])
693 if test "$enable_largefile" != no; then
694     dnl _FILE_OFFSET_BITS==64 is needed for Linux, Solaris, ...
695     dnl _LARGE_FILES -- for AIX
696     wx_largefile=no
697     WX_SYS_LARGEFILE_MACRO_VALUE(_FILE_OFFSET_BITS, 64, ac_cv_sys_file_offset_bits)
698     if test "x$wx_largefile" != "xyes"; then
699         WX_SYS_LARGEFILE_MACRO_VALUE(_LARGE_FILES, 1, ac_cv_sys_large_files)
700     fi
701
702     AC_MSG_CHECKING(if large file support is available)
703     if test "x$wx_largefile" = "xyes"; then
704         AC_DEFINE(HAVE_LARGEFILE_SUPPORT)
705     fi
706     AC_MSG_RESULT($wx_largefile)
707 fi
708 ])
709