1 m4trace:/usr/share/aclocal/ax_check_compile_flag.m4:60: -1- AC_DEFUN([AX_CHECK_COMPILE_FLAG], [AC_PREREQ(2.64)dnl for _AC_LANG_PREFIX and AS_VAR_IF
2 AS_VAR_PUSHDEF([CACHEVAR],[ax_cv_check_[]_AC_LANG_ABBREV[]flags_$4_$1])dnl
3 AC_CACHE_CHECK([whether _AC_LANG compiler accepts $1], CACHEVAR, [
4 ax_check_save_flags=$[]_AC_LANG_PREFIX[]FLAGS
5 _AC_LANG_PREFIX[]FLAGS="$[]_AC_LANG_PREFIX[]FLAGS $4 $1"
6 AC_COMPILE_IFELSE([m4_default([$5],[AC_LANG_PROGRAM()])],
7 [AS_VAR_SET(CACHEVAR,[yes])],
8 [AS_VAR_SET(CACHEVAR,[no])])
9 _AC_LANG_PREFIX[]FLAGS=$ax_check_save_flags])
10 AS_VAR_IF(CACHEVAR,yes,
11 [m4_default([$2], :)],
12 [m4_default([$3], :)])
13 AS_VAR_POPDEF([CACHEVAR])dnl
15 m4trace:/usr/share/aclocal/ax_ext.m4:48: -1- AC_DEFUN([AX_EXT], [
16 AC_REQUIRE([AC_CANONICAL_HOST])
17 AC_REQUIRE([AC_PROG_CC])
24 AC_CACHE_CHECK([whether altivec is supported], [ax_cv_have_altivec_ext],
26 if test `/usr/sbin/sysctl -a 2>/dev/null| grep -c hw.optional.altivec` != 0; then
27 if test `/usr/sbin/sysctl -n hw.optional.altivec` = 1; then
28 ax_cv_have_altivec_ext=yes
33 if test "$ax_cv_have_altivec_ext" = yes; then
34 AC_DEFINE(HAVE_ALTIVEC,,[Support Altivec instructions])
35 AX_CHECK_COMPILE_FLAG(-faltivec, SIMD_FLAGS="$SIMD_FLAGS -faltivec", [])
39 i[[3456]]86*|x86_64*|amd64*)
41 AC_REQUIRE([AX_GCC_X86_CPUID])
42 AC_REQUIRE([AX_GCC_X86_CPUID_COUNT])
43 AC_REQUIRE([AX_GCC_X86_AVX_XGETBV])
46 AX_GCC_X86_CPUID(0x00000000)
47 if test "$ax_cv_gcc_x86_cpuid_0x00000000" != "unknown";
49 eax_cpuid0=`echo $ax_cv_gcc_x86_cpuid_0x00000000 | cut -d ":" -f 1`
53 AX_GCC_X86_CPUID(0x80000000)
54 if test "$ax_cv_gcc_x86_cpuid_0x80000000" != "unknown";
56 eax_cpuid80000000=`echo $ax_cv_gcc_x86_cpuid_0x80000000 | cut -d ":" -f 1`
61 if test "$((0x$eax_cpuid0))" -ge 1 ; then
62 AX_GCC_X86_CPUID(0x00000001)
63 if test "$ax_cv_gcc_x86_cpuid_0x00000001" != "unknown";
65 ecx_cpuid1=`echo $ax_cv_gcc_x86_cpuid_0x00000001 | cut -d ":" -f 3`
66 edx_cpuid1=`echo $ax_cv_gcc_x86_cpuid_0x00000001 | cut -d ":" -f 4`
72 if test "$((0x$eax_cpuid0))" -ge 7 ; then
73 AX_GCC_X86_CPUID_COUNT(0x00000007, 0x00)
74 if test "$ax_cv_gcc_x86_cpuid_0x00000007" != "unknown";
76 ebx_cpuid7=`echo $ax_cv_gcc_x86_cpuid_0x00000007 | cut -d ":" -f 2`
77 ecx_cpuid7=`echo $ax_cv_gcc_x86_cpuid_0x00000007 | cut -d ":" -f 3`
83 if test "$((0x$eax_cpuid80000000))" -ge "$((0x80000001))" ; then
84 AX_GCC_X86_CPUID(0x80000001)
85 if test "$ax_cv_gcc_x86_cpuid_0x80000001" != "unknown";
87 ecx_cpuid80000001=`echo $ax_cv_gcc_x86_cpuid_0x80000001 | cut -d ":" -f 3`
88 edx_cpuid80000001=`echo $ax_cv_gcc_x86_cpuid_0x80000001 | cut -d ":" -f 4`
92 AC_CACHE_VAL([ax_cv_have_mmx_os_support_ext],
94 ax_cv_have_mmx_os_support_ext=yes
97 ax_cv_have_none_os_support_ext=yes
99 AC_CACHE_VAL([ax_cv_have_sse_os_support_ext],
101 ax_cv_have_sse_os_support_ext=no,
102 if test "$((0x$edx_cpuid1>>25&0x01))" = 1; then
107 /* No way at ring1 to ring3 in protected mode to check the CR0 and CR4
108 control registers directly. Execute an SSE instruction.
109 If it raises SIGILL then OS doesn't support SSE based instructions */
110 void sig_handler(int signum){ exit(1); }
112 signal(SIGILL, sig_handler);
113 /* SSE instruction xorps %xmm0,%xmm0 */
114 __asm__ __volatile__ (".byte 0x0f, 0x57, 0xc0");
117 ax_cv_have_sse_os_support_ext=yes,
118 ax_cv_have_sse_os_support_ext=no,
119 ax_cv_have_sse_os_support_ext=no)
125 if test "$((0x$ecx_cpuid1>>28&0x01))" = 1; then
126 AX_GCC_X86_AVX_XGETBV(0x00000000)
128 if test x"$ax_cv_gcc_x86_avx_xgetbv_0x00000000" != x"unknown"; then
129 xgetbv_eax=`echo $ax_cv_gcc_x86_avx_xgetbv_0x00000000 | cut -d ":" -f 1`
132 AC_CACHE_VAL([ax_cv_have_avx_os_support_ext],
134 ax_cv_have_avx_os_support_ext=no
135 if test "$((0x$ecx_cpuid1>>27&0x01))" = 1; then
136 if test "$((0x$xgetbv_eax&0x6))" = 6; then
137 ax_cv_have_avx_os_support_ext=yes
143 AC_CACHE_VAL([ax_cv_have_avx512_os_support_ext],
145 ax_cv_have_avx512_os_support_ext=no
146 if test "$ax_cv_have_avx_os_support_ext" = yes; then
147 if test "$((0x$xgetbv_eax&0xe6))" = "$((0xe6))"; then
148 ax_cv_have_avx512_os_support_ext=yes
153 for ac_instr_info dnl
154 in "none;rdrnd;RDRND;ecx_cpuid1,30;-mrdrnd;HAVE_RDRND;CPUEXT_FLAGS" dnl
155 "none;bmi1;BMI1;ebx_cpuid7,3;-mbmi;HAVE_BMI1;CPUEXT_FLAGS" dnl
156 "none;bmi2;BMI2;ebx_cpuid7,8;-mbmi2;HAVE_BMI2;CPUEXT_FLAGS" dnl
157 "none;adx;ADX;ebx_cpuid7,19;-madx;HAVE_ADX;CPUEXT_FLAGS" dnl
158 "none;mpx;MPX;ebx_cpuid7,14;-mmpx;HAVE_MPX;CPUEXT_FLAGS" dnl
159 "none;prefetchwt1;PREFETCHWT1;ecx_cpuid7,0;-mprefetchwt1;HAVE_PREFETCHWT1;CPUEXT_FLAGS" dnl
160 "none;abm;ABM;ecx_cpuid80000001,5;-mabm;HAVE_ABM;CPUEXT_FLAGS" dnl
161 "mmx;mmx;MMX;edx_cpuid1,23;-mmmx;HAVE_MMX;SIMD_FLAGS" dnl
162 "sse;sse;SSE;edx_cpuid1,25;-msse;HAVE_SSE;SIMD_FLAGS" dnl
163 "sse;sse2;SSE2;edx_cpuid1,26;-msse2;HAVE_SSE2;SIMD_FLAGS" dnl
164 "sse;sse3;SSE3;ecx_cpuid1,1;-msse3;HAVE_SSE3;SIMD_FLAGS" dnl
165 "sse;ssse3;SSSE3;ecx_cpuid1,9;-mssse3;HAVE_SSSE3;SIMD_FLAGS" dnl
166 "sse;sse41;SSE4.1;ecx_cpuid1,19;-msse4.1;HAVE_SSE4_1;SIMD_FLAGS" dnl
167 "sse;sse42;SSE4.2;ecx_cpuid1,20;-msse4.2;HAVE_SSE4_2;SIMD_FLAGS" dnl
168 "sse;sse4a;SSE4a;ecx_cpuid80000001,6;-msse4a;HAVE_SSE4a;SIMD_FLAGS" dnl
169 "sse;sha;SHA;ebx_cpuid7,29;-msha;HAVE_SHA;SIMD_FLAGS" dnl
170 "sse;aes;AES;ecx_cpuid1,25;-maes;HAVE_AES;SIMD_FLAGS" dnl
171 "avx;avx;AVX;ecx_cpuid1,28;-mavx;HAVE_AVX;SIMD_FLAGS" dnl
172 "avx;fma3;FMA3;ecx_cpuid1,12;-mfma;HAVE_FMA3;SIMD_FLAGS" dnl
173 "avx;fma4;FMA4;ecx_cpuid80000001,16;-mfma4;HAVE_FMA4;SIMD_FLAGS" dnl
174 "avx;xop;XOP;ecx_cpuid80000001,11;-mxop;HAVE_XOP;SIMD_FLAGS" dnl
175 "avx;avx2;AVX2;ebx_cpuid7,5;-mavx2;HAVE_AVX2;SIMD_FLAGS" dnl
176 "avx512;avx512f;AVX512-F;ebx_cpuid7,16;-mavx512f;HAVE_AVX512_F;SIMD_FLAGS" dnl
177 "avx512;avx512cd;AVX512-CD;ebx_cpuid7,28;-mavx512cd;HAVE_AVX512_CD;SIMD_FLAGS" dnl
178 "avx512;avx512pf;AVX512-PF;ebx_cpuid7,26;-mavx512pf;HAVE_AVX512_PF;SIMD_FLAGS" dnl
179 "avx512;avx512er;AVX512-ER;ebx_cpuid7,27;-mavx512er;HAVE_AVX512_ER;SIMD_FLAGS" dnl
180 "avx512;avx512vl;AVX512-VL;ebx_cpuid7,31;-mavx512vl;HAVE_AVX512_VL;SIMD_FLAGS" dnl
181 "avx512;avx512bw;AVX512-BW;ebx_cpuid7,30;-mavx512bw;HAVE_AVX512_BW;SIMD_FLAGS" dnl
182 "avx512;avx512dq;AVX512-DQ;ebx_cpuid7,17;-mavx512dq;HAVE_AVX512_DQ;SIMD_FLAGS" dnl
183 "avx512;avx512ifma;AVX512-IFMA;ebx_cpuid7,21;-mavx512ifma;HAVE_AVX512_IFMA;SIMD_FLAGS" dnl
184 "avx512;avx512vbmi;AVX512-VBMI;ecx_cpuid7,1;-mavx512vbmi;HAVE_AVX512_VBMI;SIMD_FLAGS" dnl
186 do ac_instr_os_support=$(eval echo \$ax_cv_have_$(echo $ac_instr_info | cut -d ";" -f 1)_os_support_ext)
187 ac_instr_acvar=$(echo $ac_instr_info | cut -d ";" -f 2)
188 ac_instr_shortname=$(echo $ac_instr_info | cut -d ";" -f 3)
189 ac_instr_chk_loc=$(echo $ac_instr_info | cut -d ";" -f 4)
190 ac_instr_chk_reg=0x$(eval echo \$$(echo $ac_instr_chk_loc | cut -d "," -f 1))
191 ac_instr_chk_bit=$(echo $ac_instr_chk_loc | cut -d "," -f 2)
192 ac_instr_compiler_flags=$(echo $ac_instr_info | cut -d ";" -f 5)
193 ac_instr_have_define=$(echo $ac_instr_info | cut -d ";" -f 6)
194 ac_instr_flag_type=$(echo $ac_instr_info | cut -d ";" -f 7)
196 AC_CACHE_CHECK([whether ${ac_instr_shortname} is supported by the processor], [ax_cv_have_${ac_instr_acvar}_cpu_ext],
198 eval ax_cv_have_${ac_instr_acvar}_cpu_ext=no
199 if test "$((${ac_instr_chk_reg}>>${ac_instr_chk_bit}&0x01))" = 1 ; then
200 eval ax_cv_have_${ac_instr_acvar}_cpu_ext=yes
204 if test x"$(eval echo \$ax_cv_have_${ac_instr_acvar}_cpu_ext)" = x"yes"; then
205 AC_CACHE_CHECK([whether ${ac_instr_shortname} is supported by the processor and OS], [ax_cv_have_${ac_instr_acvar}_ext],
207 eval ax_cv_have_${ac_instr_acvar}_ext=no
208 if test x"${ac_instr_os_support}" = x"yes"; then
209 eval ax_cv_have_${ac_instr_acvar}_ext=yes
213 if test "$(eval echo \$ax_cv_have_${ac_instr_acvar}_ext)" = yes; then
214 AX_CHECK_COMPILE_FLAG(${ac_instr_compiler_flags}, eval ax_cv_support_${ac_instr_acvar}_ext=yes,
215 eval ax_cv_support_${ac_instr_acvar}_ext=no)
216 if test x"$(eval echo \$ax_cv_support_${ac_instr_acvar}_ext)" = x"yes"; then
217 eval ${ac_instr_flag_type}=\"\$${ac_instr_flag_type} ${ac_instr_compiler_flags}\"
218 AC_DEFINE_UNQUOTED([${ac_instr_have_define}])
220 AC_MSG_WARN([Your processor and OS supports ${ac_instr_shortname} instructions but not your compiler, can you try another compiler?])
223 if test x"${ac_instr_os_support}" = x"no"; then
224 AC_CACHE_VAL(ax_cv_support_${ac_instr_acvar}_ext, eval ax_cv_support_${ac_instr_acvar}_ext=no)
225 AC_MSG_WARN([Your processor supports ${ac_instr_shortname}, but your OS doesn't])
229 AC_CACHE_VAL(ax_cv_have_${ac_instr_acvar}_ext, eval ax_cv_have_${ac_instr_acvar}_ext=no)
230 AC_CACHE_VAL(ax_cv_support_${ac_instr_acvar}_ext, eval ax_cv_support_${ac_instr_acvar}_ext=no)
236 AH_TEMPLATE([HAVE_RDRND],[Define to 1 to support Digital Random Number Generator])
237 AH_TEMPLATE([HAVE_BMI1],[Define to 1 to support Bit Manipulation Instruction Set 1])
238 AH_TEMPLATE([HAVE_BMI2],[Define to 1 to support Bit Manipulation Instruction Set 2])
239 AH_TEMPLATE([HAVE_ADX],[Define to 1 to support Multi-Precision Add-Carry Instruction Extensions])
240 AH_TEMPLATE([HAVE_MPX],[Define to 1 to support Memory Protection Extensions])
241 AH_TEMPLATE([HAVE_PREFETCHWT1],[Define to 1 to support Prefetch Vector Data Into Caches WT1])
242 AH_TEMPLATE([HAVE_ABM],[Define to 1 to support Advanced Bit Manipulation])
243 AH_TEMPLATE([HAVE_MMX],[Define to 1 to support Multimedia Extensions])
244 AH_TEMPLATE([HAVE_SSE],[Define to 1 to support Streaming SIMD Extensions])
245 AH_TEMPLATE([HAVE_SSE2],[Define to 1 to support Streaming SIMD Extensions])
246 AH_TEMPLATE([HAVE_SSE3],[Define to 1 to support Streaming SIMD Extensions 3])
247 AH_TEMPLATE([HAVE_SSSE3],[Define to 1 to support Supplemental Streaming SIMD Extensions 3])
248 AH_TEMPLATE([HAVE_SSE4_1],[Define to 1 to support Streaming SIMD Extensions 4.1])
249 AH_TEMPLATE([HAVE_SSE4_2],[Define to 1 to support Streaming SIMD Extensions 4.2])
250 AH_TEMPLATE([HAVE_SSE4a],[Define to 1 to support AMD Streaming SIMD Extensions 4a])
251 AH_TEMPLATE([HAVE_SHA],[Define to 1 to support Secure Hash Algorithm Extension])
252 AH_TEMPLATE([HAVE_AES],[Define to 1 to support Advanced Encryption Standard New Instruction Set (AES-NI)])
253 AH_TEMPLATE([HAVE_AVX],[Define to 1 to support Advanced Vector Extensions])
254 AH_TEMPLATE([HAVE_FMA3],[Define to 1 to support Fused Multiply-Add Extensions 3])
255 AH_TEMPLATE([HAVE_FMA4],[Define to 1 to support Fused Multiply-Add Extensions 4])
256 AH_TEMPLATE([HAVE_XOP],[Define to 1 to support eXtended Operations Extensions])
257 AH_TEMPLATE([HAVE_AVX2],[Define to 1 to support Advanced Vector Extensions 2])
258 AH_TEMPLATE([HAVE_AVX512_F],[Define to 1 to support AVX-512 Foundation Extensions])
259 AH_TEMPLATE([HAVE_AVX512_CD],[Define to 1 to support AVX-512 Conflict Detection Instructions])
260 AH_TEMPLATE([HAVE_AVX512_PF],[Define to 1 to support AVX-512 Conflict Prefetch Instructions])
261 AH_TEMPLATE([HAVE_AVX512_ER],[Define to 1 to support AVX-512 Exponential & Reciprocal Instructions])
262 AH_TEMPLATE([HAVE_AVX512_VL],[Define to 1 to support AVX-512 Vector Length Extensions])
263 AH_TEMPLATE([HAVE_AVX512_BW],[Define to 1 to support AVX-512 Byte and Word Instructions])
264 AH_TEMPLATE([HAVE_AVX512_DQ],[Define to 1 to support AVX-512 Doubleword and Quadword Instructions])
265 AH_TEMPLATE([HAVE_AVX512_IFMA],[Define to 1 to support AVX-512 Integer Fused Multiply Add Instructions])
266 AH_TEMPLATE([HAVE_AVX512_VBMI],[Define to 1 to support AVX-512 Vector Byte Manipulation Instructions])
268 AC_SUBST(CPUEXT_FLAGS)
270 m4trace:/usr/share/aclocal/ax_gcc_x86_avx_xgetbv.m4:59: -1- AC_DEFUN([AX_GCC_X86_AVX_XGETBV], [AC_REQUIRE([AC_PROG_CC])
272 AC_CACHE_CHECK(for x86-AVX xgetbv $1 output, ax_cv_gcc_x86_avx_xgetbv_$1,
273 [AC_RUN_IFELSE([AC_LANG_PROGRAM([#include <stdio.h>], [
274 int op = $1, eax, edx;
276 /* Opcodes for xgetbv */
277 __asm__ __volatile__ (".byte 0x0f, 0x01, 0xd0"
278 : "=a" (eax), "=d" (edx)
280 f = fopen("conftest_xgetbv", "w"); if (!f) return 1;
281 fprintf(f, "%x:%x\n", eax, edx);
285 [ax_cv_gcc_x86_avx_xgetbv_$1=`cat conftest_xgetbv`; rm -f conftest_xgetbv],
286 [ax_cv_gcc_x86_avx_xgetbv_$1=unknown; rm -f conftest_xgetbv],
287 [ax_cv_gcc_x86_avx_xgetbv_$1=unknown])])
290 m4trace:/usr/share/aclocal/ax_gcc_x86_cpuid.m4:63: -1- AC_DEFUN([AX_GCC_X86_CPUID], [AX_GCC_X86_CPUID_COUNT($1, 0)
292 m4trace:/usr/share/aclocal/ax_gcc_x86_cpuid.m4:67: -1- AC_DEFUN([AX_GCC_X86_CPUID_COUNT], [AC_REQUIRE([AC_PROG_CC])
294 AC_CACHE_CHECK(for x86 cpuid $1 output, ax_cv_gcc_x86_cpuid_$1,
295 [AC_RUN_IFELSE([AC_LANG_PROGRAM([#include <stdio.h>], [
296 int op = $1, level = $2, eax, ebx, ecx, edx;
298 __asm__ __volatile__ ("xchg %%ebx, %1\n"
301 : "=a" (eax), "=r" (ebx), "=c" (ecx), "=d" (edx)
302 : "a" (op), "2" (level));
304 f = fopen("conftest_cpuid", "w"); if (!f) return 1;
305 fprintf(f, "%x:%x:%x:%x\n", eax, ebx, ecx, edx);
309 [ax_cv_gcc_x86_cpuid_$1=`cat conftest_cpuid`; rm -f conftest_cpuid],
310 [ax_cv_gcc_x86_cpuid_$1=unknown; rm -f conftest_cpuid],
311 [ax_cv_gcc_x86_cpuid_$1=unknown])])
314 m4trace:/usr/share/aclocal/libtool.m4:61: -1- AC_DEFUN([LT_INIT], [AC_PREREQ([2.62])dnl We use AC_PATH_PROGS_FEATURE_CHECK
315 AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl
316 AC_BEFORE([$0], [LT_LANG])dnl
317 AC_BEFORE([$0], [LT_OUTPUT])dnl
318 AC_BEFORE([$0], [LTDL_INIT])dnl
319 m4_require([_LT_CHECK_BUILDDIR])dnl
321 dnl Autoconf doesn't catch unexpanded LT_ macros by default:
322 m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl
323 m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl
324 dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4
325 dnl unless we require an AC_DEFUNed macro:
326 AC_REQUIRE([LTOPTIONS_VERSION])dnl
327 AC_REQUIRE([LTSUGAR_VERSION])dnl
328 AC_REQUIRE([LTVERSION_VERSION])dnl
329 AC_REQUIRE([LTOBSOLETE_VERSION])dnl
330 m4_require([_LT_PROG_LTMAIN])dnl
332 _LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}])
335 _LT_SET_OPTIONS([$0], [$1])
337 # This can be used to rebuild libtool when needed
340 # Always use our own libtool.
341 LIBTOOL='$(SHELL) $(top_builddir)/libtool'
349 m4trace:/usr/share/aclocal/libtool.m4:99: -1- AU_DEFUN([AC_PROG_LIBTOOL], [m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
350 m4trace:/usr/share/aclocal/libtool.m4:99: -1- AC_DEFUN([AC_PROG_LIBTOOL], [AC_DIAGNOSE([obsolete], [The macro `AC_PROG_LIBTOOL' is obsolete.
351 You should run autoupdate.])dnl
352 m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
353 m4trace:/usr/share/aclocal/libtool.m4:100: -1- AU_DEFUN([AM_PROG_LIBTOOL], [m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
354 m4trace:/usr/share/aclocal/libtool.m4:100: -1- AC_DEFUN([AM_PROG_LIBTOOL], [AC_DIAGNOSE([obsolete], [The macro `AM_PROG_LIBTOOL' is obsolete.
355 You should run autoupdate.])dnl
356 m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
357 m4trace:/usr/share/aclocal/libtool.m4:619: -1- AC_DEFUN([LT_OUTPUT], [: ${CONFIG_LT=./config.lt}
358 AC_MSG_NOTICE([creating $CONFIG_LT])
359 _LT_GENERATED_FILE_INIT(["$CONFIG_LT"],
360 [# Run this file to recreate a libtool stub with the current configuration.])
362 cat >>"$CONFIG_LT" <<\_LTEOF
364 exec AS_MESSAGE_LOG_FD>>config.log
367 AS_BOX([Running $as_me.])
368 } >&AS_MESSAGE_LOG_FD
371 '$as_me' creates a local libtool stub from the current configuration,
372 for use in further configure time tests before the real libtool is
375 Usage: $[0] [[OPTIONS]]
377 -h, --help print this help, then exit
378 -V, --version print version number, then exit
379 -q, --quiet do not print progress messages
380 -d, --debug don't remove temporary files
382 Report bugs to <bug-libtool@gnu.org>."
385 m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl
386 m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION])
387 configured by $[0], generated by m4_PACKAGE_STRING.
389 Copyright (C) 2011 Free Software Foundation, Inc.
390 This config.lt script is free software; the Free Software Foundation
391 gives unlimited permision to copy, distribute and modify it."
396 --version | --v* | -V )
397 echo "$lt_cl_version"; exit 0 ;;
399 echo "$lt_cl_help"; exit 0 ;;
400 --debug | --d* | -d )
402 --quiet | --q* | --silent | --s* | -q )
405 -*) AC_MSG_ERROR([unrecognized option: $[1]
406 Try '$[0] --help' for more information.]) ;;
408 *) AC_MSG_ERROR([unrecognized argument: $[1]
409 Try '$[0] --help' for more information.]) ;;
414 if $lt_cl_silent; then
415 exec AS_MESSAGE_FD>/dev/null
419 cat >>"$CONFIG_LT" <<_LTEOF
420 _LT_OUTPUT_LIBTOOL_COMMANDS_INIT
423 cat >>"$CONFIG_LT" <<\_LTEOF
424 AC_MSG_NOTICE([creating $ofile])
425 _LT_OUTPUT_LIBTOOL_COMMANDS
428 chmod +x "$CONFIG_LT"
430 # configure is writing to config.log, but config.lt does its own redirection,
431 # appending to config.log, which fails on DOS, as config.log is still kept
432 # open by configure. Here we exec the FD to /dev/null, effectively closing
433 # config.log, so it can be properly (re)opened and appended to by config.lt.
435 test yes = "$silent" &&
436 lt_config_lt_args="$lt_config_lt_args --quiet"
437 exec AS_MESSAGE_LOG_FD>/dev/null
438 $SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false
439 exec AS_MESSAGE_LOG_FD>>config.log
440 $lt_cl_success || AS_EXIT(1)
442 m4trace:/usr/share/aclocal/libtool.m4:811: -1- AC_DEFUN([LT_SUPPORTED_TAG], [])
443 m4trace:/usr/share/aclocal/libtool.m4:822: -1- AC_DEFUN([LT_LANG], [AC_BEFORE([$0], [LT_OUTPUT])dnl
446 [C++], [_LT_LANG(CXX)],
447 [Go], [_LT_LANG(GO)],
448 [Java], [_LT_LANG(GCJ)],
449 [Fortran 77], [_LT_LANG(F77)],
450 [Fortran], [_LT_LANG(FC)],
451 [Windows Resource], [_LT_LANG(RC)],
452 [m4_ifdef([_LT_LANG_]$1[_CONFIG],
454 [m4_fatal([$0: unsupported language: "$1"])])])dnl
456 m4trace:/usr/share/aclocal/libtool.m4:914: -1- AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)])
457 m4trace:/usr/share/aclocal/libtool.m4:914: -1- AC_DEFUN([AC_LIBTOOL_CXX], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_CXX' is obsolete.
458 You should run autoupdate.])dnl
460 m4trace:/usr/share/aclocal/libtool.m4:915: -1- AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)])
461 m4trace:/usr/share/aclocal/libtool.m4:915: -1- AC_DEFUN([AC_LIBTOOL_F77], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_F77' is obsolete.
462 You should run autoupdate.])dnl
463 LT_LANG(Fortran 77)])
464 m4trace:/usr/share/aclocal/libtool.m4:916: -1- AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)])
465 m4trace:/usr/share/aclocal/libtool.m4:916: -1- AC_DEFUN([AC_LIBTOOL_FC], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_FC' is obsolete.
466 You should run autoupdate.])dnl
468 m4trace:/usr/share/aclocal/libtool.m4:917: -1- AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)])
469 m4trace:/usr/share/aclocal/libtool.m4:917: -1- AC_DEFUN([AC_LIBTOOL_GCJ], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_GCJ' is obsolete.
470 You should run autoupdate.])dnl
472 m4trace:/usr/share/aclocal/libtool.m4:918: -1- AU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)])
473 m4trace:/usr/share/aclocal/libtool.m4:918: -1- AC_DEFUN([AC_LIBTOOL_RC], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_RC' is obsolete.
474 You should run autoupdate.])dnl
475 LT_LANG(Windows Resource)])
476 m4trace:/usr/share/aclocal/libtool.m4:1246: -1- AC_DEFUN([_LT_WITH_SYSROOT], [AC_MSG_CHECKING([for sysroot])
477 AC_ARG_WITH([sysroot],
478 [AS_HELP_STRING([--with-sysroot@<:@=DIR@:>@],
479 [Search for dependent libraries within DIR (or the compiler's sysroot
480 if not specified).])],
481 [], [with_sysroot=no])
483 dnl lt_sysroot will always be passed unquoted. We quote it here
484 dnl in case the user passed a directory name.
486 case $with_sysroot in #(
488 if test yes = "$GCC"; then
489 lt_sysroot=`$CC --print-sysroot 2>/dev/null`
493 lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"`
498 AC_MSG_RESULT([$with_sysroot])
499 AC_MSG_ERROR([The sysroot must be an absolute path.])
503 AC_MSG_RESULT([${lt_sysroot:-no}])
504 _LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl
505 [dependent libraries, and where our libraries should be installed.])])
506 m4trace:/usr/share/aclocal/libtool.m4:1577: -1- AC_DEFUN([_LT_COMPILER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
507 m4_require([_LT_DECL_SED])dnl
508 AC_CACHE_CHECK([$1], [$2],
510 m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4])
511 echo "$lt_simple_compile_test_code" > conftest.$ac_ext
512 lt_compiler_flag="$3" ## exclude from sc_useless_quotes_in_assignment
513 # Insert the option either (1) after the last *FLAGS variable, or
514 # (2) before a word containing "conftest.", or (3) at the end.
515 # Note that $ac_compile itself does not contain backslashes and begins
516 # with a dollar sign (not a hyphen), so the echo should work correctly.
517 # The option is referenced via a variable to avoid confusing sed.
518 lt_compile=`echo "$ac_compile" | $SED \
519 -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
520 -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \
521 -e 's:$: $lt_compiler_flag:'`
522 (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD)
523 (eval "$lt_compile" 2>conftest.err)
525 cat conftest.err >&AS_MESSAGE_LOG_FD
526 echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
527 if (exit $ac_status) && test -s "$ac_outfile"; then
528 # The compiler can only warn and ignore the option if not recognized
529 # So say no if there are warnings other than the usual output.
530 $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp
531 $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
532 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then
539 if test yes = "[$]$2"; then
540 m4_if([$5], , :, [$5])
542 m4_if([$6], , :, [$6])
545 m4trace:/usr/share/aclocal/libtool.m4:1619: -1- AU_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [m4_if($#, 0, [_LT_COMPILER_OPTION], [_LT_COMPILER_OPTION($@)])])
546 m4trace:/usr/share/aclocal/libtool.m4:1619: -1- AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_COMPILER_OPTION' is obsolete.
547 You should run autoupdate.])dnl
548 m4_if($#, 0, [_LT_COMPILER_OPTION], [_LT_COMPILER_OPTION($@)])])
549 m4trace:/usr/share/aclocal/libtool.m4:1628: -1- AC_DEFUN([_LT_LINKER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
550 m4_require([_LT_DECL_SED])dnl
551 AC_CACHE_CHECK([$1], [$2],
553 save_LDFLAGS=$LDFLAGS
554 LDFLAGS="$LDFLAGS $3"
555 echo "$lt_simple_link_test_code" > conftest.$ac_ext
556 if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then
557 # The linker can only warn and ignore the option if not recognized
558 # So say no if there are warnings
559 if test -s conftest.err; then
560 # Append any errors to the config.log.
561 cat conftest.err 1>&AS_MESSAGE_LOG_FD
562 $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp
563 $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
564 if diff conftest.exp conftest.er2 >/dev/null; then
572 LDFLAGS=$save_LDFLAGS
575 if test yes = "[$]$2"; then
576 m4_if([$4], , :, [$4])
578 m4_if([$5], , :, [$5])
581 m4trace:/usr/share/aclocal/libtool.m4:1663: -1- AU_DEFUN([AC_LIBTOOL_LINKER_OPTION], [m4_if($#, 0, [_LT_LINKER_OPTION], [_LT_LINKER_OPTION($@)])])
582 m4trace:/usr/share/aclocal/libtool.m4:1663: -1- AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_LINKER_OPTION' is obsolete.
583 You should run autoupdate.])dnl
584 m4_if($#, 0, [_LT_LINKER_OPTION], [_LT_LINKER_OPTION($@)])])
585 m4trace:/usr/share/aclocal/libtool.m4:1670: -1- AC_DEFUN([LT_CMD_MAX_LEN], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
586 # find the maximum length of command line arguments
587 AC_MSG_CHECKING([the maximum length of command line arguments])
588 AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl
594 # On DJGPP, this test can blow up pretty badly due to problems in libc
595 # (any single argument exceeding 2000 bytes causes a buffer overrun
596 # during glob expansion). Even if it were fixed, the result of this
597 # check would be larger than it should be.
598 lt_cv_sys_max_cmd_len=12288; # 12K is about right
602 # Under GNU Hurd, this test is not required because there is
603 # no limit to the length of command line arguments.
604 # Libtool will interpret -1 as no limit whatsoever
605 lt_cv_sys_max_cmd_len=-1;
608 cygwin* | mingw* | cegcc*)
609 # On Win9x/ME, this test blows up -- it succeeds, but takes
610 # about 5 minutes as the teststring grows exponentially.
611 # Worse, since 9x/ME are not pre-emptively multitasking,
612 # you end up with a "frozen" computer, even though with patience
613 # the test eventually succeeds (with a max line length of 256k).
614 # Instead, let's just punt: use the minimum linelength reported by
615 # all of the supported platforms: 8192 (on NT/2K/XP).
616 lt_cv_sys_max_cmd_len=8192;
620 # On MiNT this can take a long time and run out of memory.
621 lt_cv_sys_max_cmd_len=8192;
625 # On AmigaOS with pdksh, this test takes hours, literally.
626 # So we just punt and use a minimum line length of 8192.
627 lt_cv_sys_max_cmd_len=8192;
630 bitrig* | darwin* | dragonfly* | freebsd* | netbsd* | openbsd*)
631 # This has been around since 386BSD, at least. Likely further.
632 if test -x /sbin/sysctl; then
633 lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax`
634 elif test -x /usr/sbin/sysctl; then
635 lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax`
637 lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs
639 # And add a safety zone
640 lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
641 lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
645 # We know the value 262144 and hardcode it with a safety zone (like BSD)
646 lt_cv_sys_max_cmd_len=196608
650 # The test takes a long time on OS/2.
651 lt_cv_sys_max_cmd_len=8192
655 # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure
656 # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not
657 # nice to cause kernel panics so lets avoid the loop below.
658 # First set a reasonable default.
659 lt_cv_sys_max_cmd_len=16384
661 if test -x /sbin/sysconfig; then
662 case `/sbin/sysconfig -q proc exec_disable_arg_limit` in
663 *1*) lt_cv_sys_max_cmd_len=-1 ;;
668 lt_cv_sys_max_cmd_len=102400
670 sysv5* | sco5v6* | sysv4.2uw2*)
671 kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null`
672 if test -n "$kargmax"; then
673 lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'`
675 lt_cv_sys_max_cmd_len=32768
679 lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null`
680 if test -n "$lt_cv_sys_max_cmd_len" && \
681 test undefined != "$lt_cv_sys_max_cmd_len"; then
682 lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
683 lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
685 # Make teststring a little bigger before we do anything with it.
686 # a 1K string should be a reasonable start.
687 for i in 1 2 3 4 5 6 7 8; do
688 teststring=$teststring$teststring
690 SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}}
691 # If test is not a shell built-in, we'll probably end up computing a
692 # maximum length that is only half of the actual maximum length, but
694 while { test X`env echo "$teststring$teststring" 2>/dev/null` \
695 = "X$teststring$teststring"; } >/dev/null 2>&1 &&
696 test 17 != "$i" # 1/2 MB should be enough
699 teststring=$teststring$teststring
701 # Only check the string length outside the loop.
702 lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1`
704 # Add a significant safety factor because C++ compilers can tack on
705 # massive amounts of additional arguments before passing them to the
706 # linker. It appears as though 1/2 is a usable value.
707 lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2`
712 if test -n "$lt_cv_sys_max_cmd_len"; then
713 AC_MSG_RESULT($lt_cv_sys_max_cmd_len)
717 max_cmd_len=$lt_cv_sys_max_cmd_len
718 _LT_DECL([], [max_cmd_len], [0],
719 [What is the maximum length of a command?])
721 m4trace:/usr/share/aclocal/libtool.m4:1809: -1- AU_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [m4_if($#, 0, [LT_CMD_MAX_LEN], [LT_CMD_MAX_LEN($@)])])
722 m4trace:/usr/share/aclocal/libtool.m4:1809: -1- AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_SYS_MAX_CMD_LEN' is obsolete.
723 You should run autoupdate.])dnl
724 m4_if($#, 0, [LT_CMD_MAX_LEN], [LT_CMD_MAX_LEN($@)])])
725 m4trace:/usr/share/aclocal/libtool.m4:1920: -1- AC_DEFUN([LT_SYS_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl
726 if test yes != "$enable_dlopen"; then
727 enable_dlopen=unknown
728 enable_dlopen_self=unknown
729 enable_dlopen_self_static=unknown
736 lt_cv_dlopen=load_add_on
738 lt_cv_dlopen_self=yes
741 mingw* | pw32* | cegcc*)
742 lt_cv_dlopen=LoadLibrary
752 # if libdl is installed we need to link against it
753 AC_CHECK_LIB([dl], [dlopen],
754 [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl],[
757 lt_cv_dlopen_self=yes
762 # Don't try to run any link tests for TPF. We know it's impossible
763 # because TPF is a cross-compiler, and we know how we open DSOs.
770 AC_CHECK_FUNC([shl_load],
771 [lt_cv_dlopen=shl_load],
772 [AC_CHECK_LIB([dld], [shl_load],
773 [lt_cv_dlopen=shl_load lt_cv_dlopen_libs=-ldld],
774 [AC_CHECK_FUNC([dlopen],
775 [lt_cv_dlopen=dlopen],
776 [AC_CHECK_LIB([dl], [dlopen],
777 [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl],
778 [AC_CHECK_LIB([svld], [dlopen],
779 [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-lsvld],
780 [AC_CHECK_LIB([dld], [dld_link],
781 [lt_cv_dlopen=dld_link lt_cv_dlopen_libs=-ldld])
790 if test no = "$lt_cv_dlopen"; then
796 case $lt_cv_dlopen in
798 save_CPPFLAGS=$CPPFLAGS
799 test yes = "$ac_cv_header_dlfcn_h" && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H"
801 save_LDFLAGS=$LDFLAGS
802 wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\"
805 LIBS="$lt_cv_dlopen_libs $LIBS"
807 AC_CACHE_CHECK([whether a program can dlopen itself],
808 lt_cv_dlopen_self, [dnl
810 lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes,
811 lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross)
814 if test yes = "$lt_cv_dlopen_self"; then
815 wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\"
816 AC_CACHE_CHECK([whether a statically linked program can dlopen itself],
817 lt_cv_dlopen_self_static, [dnl
819 lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes,
820 lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross)
824 CPPFLAGS=$save_CPPFLAGS
825 LDFLAGS=$save_LDFLAGS
830 case $lt_cv_dlopen_self in
831 yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;;
832 *) enable_dlopen_self=unknown ;;
835 case $lt_cv_dlopen_self_static in
836 yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;;
837 *) enable_dlopen_self_static=unknown ;;
840 _LT_DECL([dlopen_support], [enable_dlopen], [0],
841 [Whether dlopen is supported])
842 _LT_DECL([dlopen_self], [enable_dlopen_self], [0],
843 [Whether dlopen of programs is supported])
844 _LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0],
845 [Whether dlopen of statically linked programs is supported])
847 m4trace:/usr/share/aclocal/libtool.m4:2045: -1- AU_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [m4_if($#, 0, [LT_SYS_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF($@)])])
848 m4trace:/usr/share/aclocal/libtool.m4:2045: -1- AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_DLOPEN_SELF' is obsolete.
849 You should run autoupdate.])dnl
850 m4_if($#, 0, [LT_SYS_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF($@)])])
851 m4trace:/usr/share/aclocal/libtool.m4:3166: -1- AC_DEFUN([_LT_PATH_TOOL_PREFIX], [m4_require([_LT_DECL_EGREP])dnl
852 AC_MSG_CHECKING([for $1])
853 AC_CACHE_VAL(lt_cv_path_MAGIC_CMD,
856 lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path.
859 lt_save_MAGIC_CMD=$MAGIC_CMD
860 lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR
861 dnl $ac_dummy forces splitting on constant user-supplied paths.
862 dnl POSIX.2 word splitting is done only on the output of word expansions,
863 dnl not every word. This closes a longstanding sh security hole.
864 ac_dummy="m4_if([$2], , $PATH, [$2])"
865 for ac_dir in $ac_dummy; do
867 test -z "$ac_dir" && ac_dir=.
868 if test -f "$ac_dir/$1"; then
869 lt_cv_path_MAGIC_CMD=$ac_dir/"$1"
870 if test -n "$file_magic_test_file"; then
871 case $deplibs_check_method in
873 file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"`
874 MAGIC_CMD=$lt_cv_path_MAGIC_CMD
875 if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null |
876 $EGREP "$file_magic_regex" > /dev/null; then
881 *** Warning: the command libtool uses to detect shared libraries,
882 *** $file_magic_cmd, produces output that libtool cannot recognize.
883 *** The result is that libtool may fail to recognize shared libraries
884 *** as such. This will affect the creation of libtool libraries that
885 *** depend on shared libraries, but programs linked with such libtool
886 *** libraries will work regardless of this problem. Nevertheless, you
887 *** may want to report the problem to your system manager and/or to
888 *** bug-libtool@gnu.org
898 MAGIC_CMD=$lt_save_MAGIC_CMD
901 MAGIC_CMD=$lt_cv_path_MAGIC_CMD
902 if test -n "$MAGIC_CMD"; then
903 AC_MSG_RESULT($MAGIC_CMD)
907 _LT_DECL([], [MAGIC_CMD], [0],
908 [Used to examine libraries when file_magic_cmd begins with "file"])dnl
910 m4trace:/usr/share/aclocal/libtool.m4:3228: -1- AU_DEFUN([AC_PATH_TOOL_PREFIX], [m4_if($#, 0, [_LT_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX($@)])])
911 m4trace:/usr/share/aclocal/libtool.m4:3228: -1- AC_DEFUN([AC_PATH_TOOL_PREFIX], [AC_DIAGNOSE([obsolete], [The macro `AC_PATH_TOOL_PREFIX' is obsolete.
912 You should run autoupdate.])dnl
913 m4_if($#, 0, [_LT_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX($@)])])
914 m4trace:/usr/share/aclocal/libtool.m4:3251: -1- AC_DEFUN([LT_PATH_LD], [AC_REQUIRE([AC_PROG_CC])dnl
915 AC_REQUIRE([AC_CANONICAL_HOST])dnl
916 AC_REQUIRE([AC_CANONICAL_BUILD])dnl
917 m4_require([_LT_DECL_SED])dnl
918 m4_require([_LT_DECL_EGREP])dnl
919 m4_require([_LT_PROG_ECHO_BACKSLASH])dnl
921 AC_ARG_WITH([gnu-ld],
922 [AS_HELP_STRING([--with-gnu-ld],
923 [assume the C compiler uses GNU ld @<:@default=no@:>@])],
924 [test no = "$withval" || with_gnu_ld=yes],
928 if test yes = "$GCC"; then
929 # Check if gcc -print-prog-name=ld gives a path.
930 AC_MSG_CHECKING([for ld used by $CC])
933 # gcc leaves a trailing carriage return, which upsets mingw
934 ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
936 ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
939 # Accept absolute paths.
940 [[\\/]]* | ?:[[\\/]]*)
941 re_direlt='/[[^/]][[^/]]*/\.\./'
942 # Canonicalize the pathname of ld
943 ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'`
944 while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do
945 ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"`
947 test -z "$LD" && LD=$ac_prog
950 # If it fails, then pretend we aren't using GCC.
954 # If it is relative, then search for the first ld in PATH.
958 elif test yes = "$with_gnu_ld"; then
959 AC_MSG_CHECKING([for GNU ld])
961 AC_MSG_CHECKING([for non-GNU ld])
963 AC_CACHE_VAL(lt_cv_path_LD,
964 [if test -z "$LD"; then
965 lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR
966 for ac_dir in $PATH; do
968 test -z "$ac_dir" && ac_dir=.
969 if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
970 lt_cv_path_LD=$ac_dir/$ac_prog
971 # Check to see if the program is GNU ld. I'd rather use --version,
972 # but apparently some variants of GNU ld only accept -v.
973 # Break only if it was the GNU/non-GNU ld that we prefer.
974 case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in
975 *GNU* | *'with BFD'*)
976 test no != "$with_gnu_ld" && break
979 test yes != "$with_gnu_ld" && break
986 lt_cv_path_LD=$LD # Let the user override the test with a path.
989 if test -n "$LD"; then
994 test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH])
998 _LT_TAGDECL([], [LD], [1], [The linker used to build libraries])
1000 m4trace:/usr/share/aclocal/libtool.m4:3340: -1- AU_DEFUN([AM_PROG_LD], [m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
1001 m4trace:/usr/share/aclocal/libtool.m4:3340: -1- AC_DEFUN([AM_PROG_LD], [AC_DIAGNOSE([obsolete], [The macro `AM_PROG_LD' is obsolete.
1002 You should run autoupdate.])dnl
1003 m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
1004 m4trace:/usr/share/aclocal/libtool.m4:3341: -1- AU_DEFUN([AC_PROG_LD], [m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
1005 m4trace:/usr/share/aclocal/libtool.m4:3341: -1- AC_DEFUN([AC_PROG_LD], [AC_DIAGNOSE([obsolete], [The macro `AC_PROG_LD' is obsolete.
1006 You should run autoupdate.])dnl
1007 m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
1008 m4trace:/usr/share/aclocal/libtool.m4:3670: -1- AC_DEFUN([LT_PATH_NM], [AC_REQUIRE([AC_PROG_CC])dnl
1009 AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM,
1010 [if test -n "$NM"; then
1011 # Let the user override the test.
1014 lt_nm_to_check=${ac_tool_prefix}nm
1015 if test -n "$ac_tool_prefix" && test "$build" = "$host"; then
1016 lt_nm_to_check="$lt_nm_to_check nm"
1018 for lt_tmp_nm in $lt_nm_to_check; do
1019 lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR
1020 for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do
1022 test -z "$ac_dir" && ac_dir=.
1023 tmp_nm=$ac_dir/$lt_tmp_nm
1024 if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext"; then
1025 # Check to see if the nm accepts a BSD-compat flag.
1026 # Adding the 'sed 1q' prevents false positives on HP-UX, which says:
1027 # nm: unknown option "B" ignored
1028 # Tru64's nm complains that /dev/null is an invalid object file
1029 # MSYS converts /dev/null to NUL, MinGW nm treats NUL as empty
1031 mingw*) lt_bad_file=conftest.nm/nofile ;;
1032 *) lt_bad_file=/dev/null ;;
1034 case `"$tmp_nm" -B $lt_bad_file 2>&1 | sed '1q'` in
1035 *$lt_bad_file* | *'Invalid file or object type'*)
1036 lt_cv_path_NM="$tmp_nm -B"
1040 case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in
1042 lt_cv_path_NM="$tmp_nm -p"
1046 lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but
1047 continue # so that we can try to find one that supports BSD flags
1056 : ${lt_cv_path_NM=no}
1058 if test no != "$lt_cv_path_NM"; then
1061 # Didn't find any BSD compatible name lister, look for dumpbin.
1062 if test -n "$DUMPBIN"; then :
1063 # Let the user override the test.
1065 AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :)
1066 case `$DUMPBIN -symbols -headers /dev/null 2>&1 | sed '1q'` in
1068 DUMPBIN="$DUMPBIN -symbols -headers"
1076 if test : != "$DUMPBIN"; then
1080 test -z "$NM" && NM=nm
1082 _LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl
1084 AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface],
1085 [lt_cv_nm_interface="BSD nm"
1086 echo "int some_variable = 0;" > conftest.$ac_ext
1087 (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&AS_MESSAGE_LOG_FD)
1088 (eval "$ac_compile" 2>conftest.err)
1089 cat conftest.err >&AS_MESSAGE_LOG_FD
1090 (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD)
1091 (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out)
1092 cat conftest.err >&AS_MESSAGE_LOG_FD
1093 (eval echo "\"\$as_me:$LINENO: output\"" >&AS_MESSAGE_LOG_FD)
1094 cat conftest.out >&AS_MESSAGE_LOG_FD
1095 if $GREP 'External.*some_variable' conftest.out > /dev/null; then
1096 lt_cv_nm_interface="MS dumpbin"
1100 m4trace:/usr/share/aclocal/libtool.m4:3765: -1- AU_DEFUN([AM_PROG_NM], [m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
1101 m4trace:/usr/share/aclocal/libtool.m4:3765: -1- AC_DEFUN([AM_PROG_NM], [AC_DIAGNOSE([obsolete], [The macro `AM_PROG_NM' is obsolete.
1102 You should run autoupdate.])dnl
1103 m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
1104 m4trace:/usr/share/aclocal/libtool.m4:3766: -1- AU_DEFUN([AC_PROG_NM], [m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
1105 m4trace:/usr/share/aclocal/libtool.m4:3766: -1- AC_DEFUN([AC_PROG_NM], [AC_DIAGNOSE([obsolete], [The macro `AC_PROG_NM' is obsolete.
1106 You should run autoupdate.])dnl
1107 m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
1108 m4trace:/usr/share/aclocal/libtool.m4:3837: -1- AC_DEFUN([_LT_DLL_DEF_P], [dnl
1109 test DEF = "`$SED -n dnl
1110 -e '\''s/^[[ ]]*//'\'' dnl Strip leading whitespace
1111 -e '\''/^\(;.*\)*$/d'\'' dnl Delete empty lines and comments
1112 -e '\''s/^\(EXPORTS\|LIBRARY\)\([[ ]].*\)*$/DEF/p'\'' dnl
1113 -e q dnl Only consider the first "real" line
1116 m4trace:/usr/share/aclocal/libtool.m4:3851: -1- AC_DEFUN([LT_LIB_M], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
1119 *-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-pw32* | *-*-darwin*)
1120 # These system don't have libm, or don't need it
1123 AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM=-lmw)
1124 AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm")
1127 AC_CHECK_LIB(m, cos, LIBM=-lm)
1132 m4trace:/usr/share/aclocal/libtool.m4:3870: -1- AU_DEFUN([AC_CHECK_LIBM], [m4_if($#, 0, [LT_LIB_M], [LT_LIB_M($@)])])
1133 m4trace:/usr/share/aclocal/libtool.m4:3870: -1- AC_DEFUN([AC_CHECK_LIBM], [AC_DIAGNOSE([obsolete], [The macro `AC_CHECK_LIBM' is obsolete.
1134 You should run autoupdate.])dnl
1135 m4_if($#, 0, [LT_LIB_M], [LT_LIB_M($@)])])
1136 m4trace:/usr/share/aclocal/libtool.m4:8140: -1- AC_DEFUN([LT_PROG_GCJ], [m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ],
1137 [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ],
1138 [AC_CHECK_TOOL(GCJ, gcj,)
1139 test set = "${GCJFLAGS+set}" || GCJFLAGS="-g -O2"
1140 AC_SUBST(GCJFLAGS)])])[]dnl
1142 m4trace:/usr/share/aclocal/libtool.m4:8149: -1- AU_DEFUN([LT_AC_PROG_GCJ], [m4_if($#, 0, [LT_PROG_GCJ], [LT_PROG_GCJ($@)])])
1143 m4trace:/usr/share/aclocal/libtool.m4:8149: -1- AC_DEFUN([LT_AC_PROG_GCJ], [AC_DIAGNOSE([obsolete], [The macro `LT_AC_PROG_GCJ' is obsolete.
1144 You should run autoupdate.])dnl
1145 m4_if($#, 0, [LT_PROG_GCJ], [LT_PROG_GCJ($@)])])
1146 m4trace:/usr/share/aclocal/libtool.m4:8156: -1- AC_DEFUN([LT_PROG_GO], [AC_CHECK_TOOL(GOC, gccgo,)
1148 m4trace:/usr/share/aclocal/libtool.m4:8163: -1- AC_DEFUN([LT_PROG_RC], [AC_CHECK_TOOL(RC, windres,)
1150 m4trace:/usr/share/aclocal/libtool.m4:8168: -1- AU_DEFUN([LT_AC_PROG_RC], [m4_if($#, 0, [LT_PROG_RC], [LT_PROG_RC($@)])])
1151 m4trace:/usr/share/aclocal/libtool.m4:8168: -1- AC_DEFUN([LT_AC_PROG_RC], [AC_DIAGNOSE([obsolete], [The macro `LT_AC_PROG_RC' is obsolete.
1152 You should run autoupdate.])dnl
1153 m4_if($#, 0, [LT_PROG_RC], [LT_PROG_RC($@)])])
1154 m4trace:/usr/share/aclocal/libtool.m4:8288: -1- AU_DEFUN([LT_AC_PROG_SED], [m4_if($#, 0, [AC_PROG_SED], [AC_PROG_SED($@)])])
1155 m4trace:/usr/share/aclocal/libtool.m4:8288: -1- AC_DEFUN([LT_AC_PROG_SED], [AC_DIAGNOSE([obsolete], [The macro `LT_AC_PROG_SED' is obsolete.
1156 You should run autoupdate.])dnl
1157 m4_if($#, 0, [AC_PROG_SED], [AC_PROG_SED($@)])])
1158 m4trace:/usr/share/aclocal/ltargz.m4:12: -1- AC_DEFUN([LT_FUNC_ARGZ], [
1159 AC_CHECK_HEADERS([argz.h], [], [], [AC_INCLUDES_DEFAULT])
1161 AC_CHECK_TYPES([error_t],
1163 [AC_DEFINE([error_t], [int],
1164 [Define to a type to use for 'error_t' if it is not otherwise available.])
1165 AC_DEFINE([__error_t_defined], [1], [Define so that glibc/gnulib argp.h
1166 does not typedef error_t.])],
1167 [#if defined(HAVE_ARGZ_H)
1172 AC_CHECK_FUNCS([argz_add argz_append argz_count argz_create_sep argz_insert \
1173 argz_next argz_stringify], [], [LT_ARGZ_H=lt__argz.h; AC_LIBOBJ([lt__argz])])
1175 dnl if have system argz functions, allow forced use of
1176 dnl libltdl-supplied implementation (and default to do so
1177 dnl on "known bad" systems). Could use a runtime check, but
1178 dnl (a) detecting malloc issues is notoriously unreliable
1179 dnl (b) only known system that declares argz functions,
1180 dnl provides them, yet they are broken, is cygwin
1181 dnl releases prior to 16-Mar-2007 (1.5.24 and earlier)
1182 dnl So, it's more straightforward simply to special case
1183 dnl this for known bad systems.
1184 AS_IF([test -z "$LT_ARGZ_H"],
1186 [if argz actually works],
1187 [lt_cv_sys_argz_works],
1188 [[case $host_os in #(
1190 lt_cv_sys_argz_works=no
1191 if test no != "$cross_compiling"; then
1192 lt_cv_sys_argz_works="guessing no"
1194 lt_sed_extract_leading_digits='s/^\([0-9\.]*\).*/\1/'
1197 set x `uname -r | sed -e "$lt_sed_extract_leading_digits"`
1202 if test 1 -lt "$lt_os_major" \
1203 || { test 1 -eq "$lt_os_major" \
1204 && { test 5 -lt "$lt_os_minor" \
1205 || { test 5 -eq "$lt_os_minor" \
1206 && test 24 -lt "$lt_os_micro"; }; }; }; then
1207 lt_cv_sys_argz_works=yes
1211 *) lt_cv_sys_argz_works=yes ;;
1213 AS_IF([test yes = "$lt_cv_sys_argz_works"],
1214 [AC_DEFINE([HAVE_WORKING_ARGZ], 1,
1215 [This value is set to 1 to indicate that the system argz facility works])],
1216 [LT_ARGZ_H=lt__argz.h
1217 AC_LIBOBJ([lt__argz])])])
1219 AC_SUBST([LT_ARGZ_H])
1221 m4trace:/usr/share/aclocal/ltdl.m4:16: -1- AC_DEFUN([LT_CONFIG_LTDL_DIR], [AC_BEFORE([$0], [LTDL_INIT])
1224 m4trace:/usr/share/aclocal/ltdl.m4:68: -1- AC_DEFUN([LTDL_CONVENIENCE], [AC_BEFORE([$0], [LTDL_INIT])dnl
1225 dnl Although the argument is deprecated and no longer documented,
1226 dnl LTDL_CONVENIENCE used to take a DIRECTORY orgument, if we have one
1227 dnl here make sure it is the same as any other declaration of libltdl's
1228 dnl location! This also ensures lt_ltdl_dir is set when configure.ac is
1229 dnl not yet using an explicit LT_CONFIG_LTDL_DIR.
1230 m4_ifval([$1], [_LT_CONFIG_LTDL_DIR([$1])])dnl
1233 m4trace:/usr/share/aclocal/ltdl.m4:81: -1- AU_DEFUN([AC_LIBLTDL_CONVENIENCE], [_LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
1235 m4trace:/usr/share/aclocal/ltdl.m4:81: -1- AC_DEFUN([AC_LIBLTDL_CONVENIENCE], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBLTDL_CONVENIENCE' is obsolete.
1236 You should run autoupdate.])dnl
1237 _LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
1239 m4trace:/usr/share/aclocal/ltdl.m4:124: -1- AC_DEFUN([LTDL_INSTALLABLE], [AC_BEFORE([$0], [LTDL_INIT])dnl
1240 dnl Although the argument is deprecated and no longer documented,
1241 dnl LTDL_INSTALLABLE used to take a DIRECTORY orgument, if we have one
1242 dnl here make sure it is the same as any other declaration of libltdl's
1243 dnl location! This also ensures lt_ltdl_dir is set when configure.ac is
1244 dnl not yet using an explicit LT_CONFIG_LTDL_DIR.
1245 m4_ifval([$1], [_LT_CONFIG_LTDL_DIR([$1])])dnl
1248 m4trace:/usr/share/aclocal/ltdl.m4:137: -1- AU_DEFUN([AC_LIBLTDL_INSTALLABLE], [_LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
1250 m4trace:/usr/share/aclocal/ltdl.m4:137: -1- AC_DEFUN([AC_LIBLTDL_INSTALLABLE], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBLTDL_INSTALLABLE' is obsolete.
1251 You should run autoupdate.])dnl
1252 _LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
1254 m4trace:/usr/share/aclocal/ltdl.m4:213: -1- AC_DEFUN([_LT_LIBOBJ], [
1255 m4_pattern_allow([^_LT_LIBOBJS$])
1256 _LT_LIBOBJS="$_LT_LIBOBJS $1.$ac_objext"
1258 m4trace:/usr/share/aclocal/ltdl.m4:226: -1- AC_DEFUN([LTDL_INIT], [dnl Parse OPTIONS
1259 _LT_SET_OPTIONS([$0], [$1])
1261 dnl We need to keep our own list of libobjs separate from our parent project,
1262 dnl and the easiest way to do that is redefine the AC_LIBOBJs macro while
1263 dnl we look for our own LIBOBJs.
1264 m4_pushdef([AC_LIBOBJ], m4_defn([_LT_LIBOBJ]))
1265 m4_pushdef([AC_LIBSOURCES])
1267 dnl If not otherwise defined, default to the 1.5.x compatible subproject mode:
1268 m4_if(_LTDL_MODE, [],
1269 [m4_define([_LTDL_MODE], m4_default([$2], [subproject]))
1270 m4_if([-1], [m4_bregexp(_LTDL_MODE, [\(subproject\|\(non\)?recursive\)])],
1271 [m4_fatal([unknown libltdl mode: ]_LTDL_MODE)])])
1273 AC_ARG_WITH([included_ltdl],
1274 [AS_HELP_STRING([--with-included-ltdl],
1275 [use the GNU ltdl sources included here])])
1277 if test yes != "$with_included_ltdl"; then
1278 # We are not being forced to use the included libltdl sources, so
1279 # decide whether there is a useful installed version we can use.
1280 AC_CHECK_HEADER([ltdl.h],
1281 [AC_CHECK_DECL([lt_dlinterface_register],
1282 [AC_CHECK_LIB([ltdl], [lt_dladvise_preload],
1283 [with_included_ltdl=no],
1284 [with_included_ltdl=yes])],
1285 [with_included_ltdl=yes],
1286 [AC_INCLUDES_DEFAULT
1287 #include <ltdl.h>])],
1288 [with_included_ltdl=yes],
1289 [AC_INCLUDES_DEFAULT]
1293 dnl If neither LT_CONFIG_LTDL_DIR, LTDL_CONVENIENCE nor LTDL_INSTALLABLE
1294 dnl was called yet, then for old times' sake, we assume libltdl is in an
1295 dnl eponymous directory:
1296 AC_PROVIDE_IFELSE([LT_CONFIG_LTDL_DIR], [], [_LT_CONFIG_LTDL_DIR([libltdl])])
1298 AC_ARG_WITH([ltdl_include],
1299 [AS_HELP_STRING([--with-ltdl-include=DIR],
1300 [use the ltdl headers installed in DIR])])
1302 if test -n "$with_ltdl_include"; then
1303 if test -f "$with_ltdl_include/ltdl.h"; then :
1305 AC_MSG_ERROR([invalid ltdl include directory: '$with_ltdl_include'])
1308 with_ltdl_include=no
1311 AC_ARG_WITH([ltdl_lib],
1312 [AS_HELP_STRING([--with-ltdl-lib=DIR],
1313 [use the libltdl.la installed in DIR])])
1315 if test -n "$with_ltdl_lib"; then
1316 if test -f "$with_ltdl_lib/libltdl.la"; then :
1318 AC_MSG_ERROR([invalid ltdl library directory: '$with_ltdl_lib'])
1324 case ,$with_included_ltdl,$with_ltdl_include,$with_ltdl_lib, in
1326 m4_case(m4_default(_LTDL_TYPE, [convenience]),
1327 [convenience], [_LTDL_CONVENIENCE],
1328 [installable], [_LTDL_INSTALLABLE],
1329 [m4_fatal([unknown libltdl build type: ]_LTDL_TYPE)])
1332 # If the included ltdl is not to be used, then use the
1333 # preinstalled libltdl we found.
1334 AC_DEFINE([HAVE_LTDL], [1],
1335 [Define this if a modern libltdl is already installed])
1341 AC_MSG_ERROR(['--with-ltdl-include' and '--with-ltdl-lib' options must be used together])
1343 *) with_included_ltdl=no
1344 LIBLTDL="-L$with_ltdl_lib -lltdl"
1346 LTDLINCL=-I$with_ltdl_include
1351 # Report our decision...
1352 AC_MSG_CHECKING([where to find libltdl headers])
1353 AC_MSG_RESULT([$LTDLINCL])
1354 AC_MSG_CHECKING([where to find libltdl library])
1355 AC_MSG_RESULT([$LIBLTDL])
1359 dnl restore autoconf definition.
1360 m4_popdef([AC_LIBOBJ])
1361 m4_popdef([AC_LIBSOURCES])
1363 AC_CONFIG_COMMANDS_PRE([
1366 if test -n "$_LT_LIBOBJS"; then
1367 # Remove the extension.
1368 _lt_sed_drop_objext='s/\.o$//;s/\.obj$//'
1369 for i in `for i in $_LT_LIBOBJS; do echo "$i"; done | sed "$_lt_sed_drop_objext" | sort -u`; do
1370 _ltdl_libobjs="$_ltdl_libobjs $lt_libobj_prefix$i.$ac_objext"
1371 _ltdl_ltlibobjs="$_ltdl_ltlibobjs $lt_libobj_prefix$i.lo"
1374 AC_SUBST([ltdl_LIBOBJS], [$_ltdl_libobjs])
1375 AC_SUBST([ltdl_LTLIBOBJS], [$_ltdl_ltlibobjs])
1379 m4_define([LTDL_INIT])
1381 m4trace:/usr/share/aclocal/ltdl.m4:352: -1- AU_DEFUN([AC_LIB_LTDL], [LTDL_INIT($@)])
1382 m4trace:/usr/share/aclocal/ltdl.m4:352: -1- AC_DEFUN([AC_LIB_LTDL], [AC_DIAGNOSE([obsolete], [The macro `AC_LIB_LTDL' is obsolete.
1383 You should run autoupdate.])dnl
1385 m4trace:/usr/share/aclocal/ltdl.m4:353: -1- AU_DEFUN([AC_WITH_LTDL], [LTDL_INIT($@)])
1386 m4trace:/usr/share/aclocal/ltdl.m4:353: -1- AC_DEFUN([AC_WITH_LTDL], [AC_DIAGNOSE([obsolete], [The macro `AC_WITH_LTDL' is obsolete.
1387 You should run autoupdate.])dnl
1389 m4trace:/usr/share/aclocal/ltdl.m4:354: -1- AU_DEFUN([LT_WITH_LTDL], [LTDL_INIT($@)])
1390 m4trace:/usr/share/aclocal/ltdl.m4:354: -1- AC_DEFUN([LT_WITH_LTDL], [AC_DIAGNOSE([obsolete], [The macro `LT_WITH_LTDL' is obsolete.
1391 You should run autoupdate.])dnl
1393 m4trace:/usr/share/aclocal/ltdl.m4:367: -1- AC_DEFUN([_LTDL_SETUP], [AC_REQUIRE([AC_PROG_CC])dnl
1394 AC_REQUIRE([LT_SYS_MODULE_EXT])dnl
1395 AC_REQUIRE([LT_SYS_MODULE_PATH])dnl
1396 AC_REQUIRE([LT_SYS_DLSEARCH_PATH])dnl
1397 AC_REQUIRE([LT_LIB_DLLOAD])dnl
1398 AC_REQUIRE([LT_SYS_SYMBOL_USCORE])dnl
1399 AC_REQUIRE([LT_FUNC_DLSYM_USCORE])dnl
1400 AC_REQUIRE([LT_SYS_DLOPEN_DEPLIBS])dnl
1401 AC_REQUIRE([LT_FUNC_ARGZ])dnl
1403 m4_require([_LT_CHECK_OBJDIR])dnl
1404 m4_require([_LT_HEADER_DLFCN])dnl
1405 m4_require([_LT_CHECK_DLPREOPEN])dnl
1406 m4_require([_LT_DECL_SED])dnl
1408 dnl Don't require this, or it will be expanded earlier than the code
1409 dnl that sets the variables it relies on:
1412 dnl _LTDL_MODE specific code must be called at least once:
1415 # In order that ltdl.c can compile, find out the first AC_CONFIG_HEADERS
1416 # the user used. This is so that ltdl.h can pick up the parent projects
1417 # config.h file, The first file in AC_CONFIG_HEADERS must contain the
1418 # definitions required by ltdl.c.
1419 # FIXME: Remove use of undocumented AC_LIST_HEADERS (2.59 compatibility).
1420 AC_CONFIG_COMMANDS_PRE([dnl
1421 m4_pattern_allow([^LT_CONFIG_H$])dnl
1422 m4_ifset([AH_HEADER],
1423 [LT_CONFIG_H=AH_HEADER],
1424 [m4_ifset([AC_LIST_HEADERS],
1425 [LT_CONFIG_H=`echo "AC_LIST_HEADERS" | $SED 's|^[[ ]]*||;s|[[ :]].*$||'`],
1427 AC_SUBST([LT_CONFIG_H])
1429 AC_CHECK_HEADERS([unistd.h dl.h sys/dl.h dld.h mach-o/dyld.h dirent.h],
1430 [], [], [AC_INCLUDES_DEFAULT])
1432 AC_CHECK_FUNCS([closedir opendir readdir], [], [AC_LIBOBJ([lt__dirent])])
1433 AC_CHECK_FUNCS([strlcat strlcpy], [], [AC_LIBOBJ([lt__strl])])
1435 m4_pattern_allow([LT_LIBEXT])dnl
1436 AC_DEFINE_UNQUOTED([LT_LIBEXT],["$libext"],[The archive extension])
1439 eval "lt_libprefix=\"$libname_spec\""
1440 m4_pattern_allow([LT_LIBPREFIX])dnl
1441 AC_DEFINE_UNQUOTED([LT_LIBPREFIX],["$lt_libprefix"],[The archive prefix])
1444 eval "LTDLOPEN=\"$libname_spec\""
1445 AC_SUBST([LTDLOPEN])
1447 m4trace:/usr/share/aclocal/ltdl.m4:443: -1- AC_DEFUN([LT_SYS_DLOPEN_DEPLIBS], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
1448 AC_CACHE_CHECK([whether deplibs are loaded by dlopen],
1449 [lt_cv_sys_dlopen_deplibs],
1450 [# PORTME does your system automatically load deplibs for dlopen?
1451 # or its logical equivalent (e.g. shl_load for HP-UX < 11)
1452 # For now, we just catch OSes we know something about -- in the
1453 # future, we'll try test this programmatically.
1454 lt_cv_sys_dlopen_deplibs=unknown
1456 aix3*|aix4.1.*|aix4.2.*)
1457 # Unknown whether this is true for these versions of AIX, but
1458 # we want this 'case' here to explicitly catch those versions.
1459 lt_cv_sys_dlopen_deplibs=unknown
1462 lt_cv_sys_dlopen_deplibs=yes
1467 lt_cv_sys_dlopen_deplibs=no
1472 lt_cv_sys_dlopen_deplibs=yes
1475 # Assuming the user has installed a libdl from somewhere, this is true
1476 # If you are looking for one http://www.opendarwin.org/projects/dlcompat
1477 lt_cv_sys_dlopen_deplibs=yes
1479 freebsd* | dragonfly*)
1480 lt_cv_sys_dlopen_deplibs=yes
1482 gnu* | linux* | k*bsd*-gnu | kopensolaris*-gnu)
1483 # GNU and its variants, using gnu ld.so (Glibc)
1484 lt_cv_sys_dlopen_deplibs=yes
1487 lt_cv_sys_dlopen_deplibs=yes
1490 lt_cv_sys_dlopen_deplibs=yes
1492 irix[[12345]]*|irix6.[[01]]*)
1493 # Catch all versions of IRIX before 6.2, and indicate that we don't
1494 # know how it worked for any of those versions.
1495 lt_cv_sys_dlopen_deplibs=unknown
1498 # The case above catches anything before 6.2, and it's known that
1499 # at 6.2 and later dlopen does load deplibs.
1500 lt_cv_sys_dlopen_deplibs=yes
1502 netbsd* | netbsdelf*-gnu)
1503 lt_cv_sys_dlopen_deplibs=yes
1506 lt_cv_sys_dlopen_deplibs=yes
1509 # dlopen did load deplibs (at least at 4.x), but until the 5.x series,
1510 # it did *not* use an RPATH in a shared library to find objects the
1511 # library depends on, so we explicitly say 'no'.
1512 lt_cv_sys_dlopen_deplibs=no
1514 osf5.0|osf5.0a|osf5.1)
1515 # dlopen *does* load deplibs and with the right loader patch applied
1516 # it even uses RPATH in a shared library to search for shared objects
1517 # that the library depends on, but there's no easy way to know if that
1518 # patch is installed. Since this is the case, all we can really
1519 # say is unknown -- it depends on the patch being installed. If
1520 # it is, this changes to 'yes'. Without it, it would be 'no'.
1521 lt_cv_sys_dlopen_deplibs=unknown
1524 # the two cases above should catch all versions of osf <= 5.1. Read
1525 # the comments above for what we know about them.
1526 # At > 5.1, deplibs are loaded *and* any RPATH in a shared library
1527 # is used to find them so we can finally say 'yes'.
1528 lt_cv_sys_dlopen_deplibs=yes
1531 lt_cv_sys_dlopen_deplibs=yes
1534 lt_cv_sys_dlopen_deplibs=yes
1536 sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
1537 libltdl_cv_sys_dlopen_deplibs=yes
1541 if test yes != "$lt_cv_sys_dlopen_deplibs"; then
1542 AC_DEFINE([LTDL_DLOPEN_DEPLIBS], [1],
1543 [Define if the OS needs help to load dependent libraries for dlopen().])
1546 m4trace:/usr/share/aclocal/ltdl.m4:545: -1- AU_DEFUN([AC_LTDL_SYS_DLOPEN_DEPLIBS], [m4_if($#, 0, [LT_SYS_DLOPEN_DEPLIBS], [LT_SYS_DLOPEN_DEPLIBS($@)])])
1547 m4trace:/usr/share/aclocal/ltdl.m4:545: -1- AC_DEFUN([AC_LTDL_SYS_DLOPEN_DEPLIBS], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SYS_DLOPEN_DEPLIBS' is obsolete.
1548 You should run autoupdate.])dnl
1549 m4_if($#, 0, [LT_SYS_DLOPEN_DEPLIBS], [LT_SYS_DLOPEN_DEPLIBS($@)])])
1550 m4trace:/usr/share/aclocal/ltdl.m4:552: -1- AC_DEFUN([LT_SYS_MODULE_EXT], [m4_require([_LT_SYS_DYNAMIC_LINKER])dnl
1551 AC_CACHE_CHECK([what extension is used for runtime loadable modules],
1552 [libltdl_cv_shlibext],
1555 eval libltdl_cv_shlibext=$shrext_cmds
1557 eval libltdl_cv_shrext=$shrext_cmds
1559 if test -n "$libltdl_cv_shlibext"; then
1560 m4_pattern_allow([LT_MODULE_EXT])dnl
1561 AC_DEFINE_UNQUOTED([LT_MODULE_EXT], ["$libltdl_cv_shlibext"],
1562 [Define to the extension used for runtime loadable modules, say, ".so".])
1564 if test "$libltdl_cv_shrext" != "$libltdl_cv_shlibext"; then
1565 m4_pattern_allow([LT_SHARED_EXT])dnl
1566 AC_DEFINE_UNQUOTED([LT_SHARED_EXT], ["$libltdl_cv_shrext"],
1567 [Define to the shared library suffix, say, ".dylib".])
1569 if test -n "$shared_archive_member_spec"; then
1570 m4_pattern_allow([LT_SHARED_LIB_MEMBER])dnl
1571 AC_DEFINE_UNQUOTED([LT_SHARED_LIB_MEMBER], ["($shared_archive_member_spec.o)"],
1572 [Define to the shared archive member specification, say "(shr.o)".])
1575 m4trace:/usr/share/aclocal/ltdl.m4:580: -1- AU_DEFUN([AC_LTDL_SHLIBEXT], [m4_if($#, 0, [LT_SYS_MODULE_EXT], [LT_SYS_MODULE_EXT($@)])])
1576 m4trace:/usr/share/aclocal/ltdl.m4:580: -1- AC_DEFUN([AC_LTDL_SHLIBEXT], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SHLIBEXT' is obsolete.
1577 You should run autoupdate.])dnl
1578 m4_if($#, 0, [LT_SYS_MODULE_EXT], [LT_SYS_MODULE_EXT($@)])])
1579 m4trace:/usr/share/aclocal/ltdl.m4:587: -1- AC_DEFUN([LT_SYS_MODULE_PATH], [m4_require([_LT_SYS_DYNAMIC_LINKER])dnl
1580 AC_CACHE_CHECK([what variable specifies run-time module search path],
1581 [lt_cv_module_path_var], [lt_cv_module_path_var=$shlibpath_var])
1582 if test -n "$lt_cv_module_path_var"; then
1583 m4_pattern_allow([LT_MODULE_PATH_VAR])dnl
1584 AC_DEFINE_UNQUOTED([LT_MODULE_PATH_VAR], ["$lt_cv_module_path_var"],
1585 [Define to the name of the environment variable that determines the run-time module search path.])
1588 m4trace:/usr/share/aclocal/ltdl.m4:599: -1- AU_DEFUN([AC_LTDL_SHLIBPATH], [m4_if($#, 0, [LT_SYS_MODULE_PATH], [LT_SYS_MODULE_PATH($@)])])
1589 m4trace:/usr/share/aclocal/ltdl.m4:599: -1- AC_DEFUN([AC_LTDL_SHLIBPATH], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SHLIBPATH' is obsolete.
1590 You should run autoupdate.])dnl
1591 m4_if($#, 0, [LT_SYS_MODULE_PATH], [LT_SYS_MODULE_PATH($@)])])
1592 m4trace:/usr/share/aclocal/ltdl.m4:606: -1- AC_DEFUN([LT_SYS_DLSEARCH_PATH], [m4_require([_LT_SYS_DYNAMIC_LINKER])dnl
1593 AC_CACHE_CHECK([for the default library search path],
1594 [lt_cv_sys_dlsearch_path],
1595 [lt_cv_sys_dlsearch_path=$sys_lib_dlsearch_path_spec])
1596 if test -n "$lt_cv_sys_dlsearch_path"; then
1598 for dir in $lt_cv_sys_dlsearch_path; do
1599 if test -z "$sys_dlsearch_path"; then
1600 sys_dlsearch_path=$dir
1602 sys_dlsearch_path=$sys_dlsearch_path$PATH_SEPARATOR$dir
1605 m4_pattern_allow([LT_DLSEARCH_PATH])dnl
1606 AC_DEFINE_UNQUOTED([LT_DLSEARCH_PATH], ["$sys_dlsearch_path"],
1607 [Define to the system default library search path.])
1610 m4trace:/usr/share/aclocal/ltdl.m4:627: -1- AU_DEFUN([AC_LTDL_SYSSEARCHPATH], [m4_if($#, 0, [LT_SYS_DLSEARCH_PATH], [LT_SYS_DLSEARCH_PATH($@)])])
1611 m4trace:/usr/share/aclocal/ltdl.m4:627: -1- AC_DEFUN([AC_LTDL_SYSSEARCHPATH], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SYSSEARCHPATH' is obsolete.
1612 You should run autoupdate.])dnl
1613 m4_if($#, 0, [LT_SYS_DLSEARCH_PATH], [LT_SYS_DLSEARCH_PATH($@)])])
1614 m4trace:/usr/share/aclocal/ltdl.m4:653: -1- AC_DEFUN([LT_LIB_DLLOAD], [m4_pattern_allow([^LT_DLLOADERS$])
1616 AC_SUBST([LT_DLLOADERS])
1619 lt_dlload_save_LIBS=$LIBS
1622 AC_SEARCH_LIBS([dlopen], [dl],
1623 [AC_DEFINE([HAVE_LIBDL], [1],
1624 [Define if you have the libdl library or equivalent.])
1625 if test "$ac_cv_search_dlopen" != "none required"; then
1628 libltdl_cv_lib_dl_dlopen=yes
1629 LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"],
1630 [AC_LINK_IFELSE([AC_LANG_PROGRAM([[#if HAVE_DLFCN_H
1633 ]], [[dlopen(0, 0);]])],
1634 [AC_DEFINE([HAVE_LIBDL], [1],
1635 [Define if you have the libdl library or equivalent.])
1636 libltdl_cv_func_dlopen=yes
1637 LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"],
1638 [AC_CHECK_LIB([svld], [dlopen],
1639 [AC_DEFINE([HAVE_LIBDL], [1],
1640 [Define if you have the libdl library or equivalent.])
1641 LIBADD_DLOPEN=-lsvld libltdl_cv_func_dlopen=yes
1642 LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"])])])
1643 if test yes = "$libltdl_cv_func_dlopen" || test yes = "$libltdl_cv_lib_dl_dlopen"
1646 LIBS="$LIBS $LIBADD_DLOPEN"
1647 AC_CHECK_FUNCS([dlerror])
1650 AC_SUBST([LIBADD_DLOPEN])
1653 AC_CHECK_FUNC([shl_load],
1654 [AC_DEFINE([HAVE_SHL_LOAD], [1],
1655 [Define if you have the shl_load function.])
1656 LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}shl_load.la"],
1657 [AC_CHECK_LIB([dld], [shl_load],
1658 [AC_DEFINE([HAVE_SHL_LOAD], [1],
1659 [Define if you have the shl_load function.])
1660 LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}shl_load.la"
1661 LIBADD_SHL_LOAD=-ldld])])
1662 AC_SUBST([LIBADD_SHL_LOAD])
1666 # We only want this for pre-Mac OS X 10.4.
1667 AC_CHECK_FUNC([_dyld_func_lookup],
1668 [AC_DEFINE([HAVE_DYLD], [1],
1669 [Define if you have the _dyld_func_lookup function.])
1670 LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dyld.la"])
1673 LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}load_add_on.la"
1675 cygwin* | mingw* | pw32*)
1676 AC_CHECK_DECLS([cygwin_conv_path], [], [], [[#include <sys/cygwin.h>]])
1677 LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}loadlibrary.la"
1681 AC_CHECK_LIB([dld], [dld_link],
1682 [AC_DEFINE([HAVE_DLD], [1],
1683 [Define if you have the GNU dld library.])
1684 LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dld_link.la"])
1685 AC_SUBST([LIBADD_DLD_LINK])
1687 m4_pattern_allow([^LT_DLPREOPEN$])
1689 if test -n "$LT_DLLOADERS"
1691 for lt_loader in $LT_DLLOADERS; do
1692 LT_DLPREOPEN="$LT_DLPREOPEN-dlpreopen $lt_loader "
1694 AC_DEFINE([HAVE_LIBDLLOADER], [1],
1695 [Define if libdlloader will be built on this platform])
1697 AC_SUBST([LT_DLPREOPEN])
1699 dnl This isn't used anymore, but set it for backwards compatibility
1700 LIBADD_DL="$LIBADD_DLOPEN $LIBADD_SHL_LOAD"
1701 AC_SUBST([LIBADD_DL])
1703 LIBS=$lt_dlload_save_LIBS
1706 m4trace:/usr/share/aclocal/ltdl.m4:748: -1- AU_DEFUN([AC_LTDL_DLLIB], [m4_if($#, 0, [LT_LIB_DLLOAD], [LT_LIB_DLLOAD($@)])])
1707 m4trace:/usr/share/aclocal/ltdl.m4:748: -1- AC_DEFUN([AC_LTDL_DLLIB], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_DLLIB' is obsolete.
1708 You should run autoupdate.])dnl
1709 m4_if($#, 0, [LT_LIB_DLLOAD], [LT_LIB_DLLOAD($@)])])
1710 m4trace:/usr/share/aclocal/ltdl.m4:756: -1- AC_DEFUN([LT_SYS_SYMBOL_USCORE], [m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl
1711 AC_CACHE_CHECK([for _ prefix in compiled symbols],
1712 [lt_cv_sys_symbol_underscore],
1713 [lt_cv_sys_symbol_underscore=no
1714 cat > conftest.$ac_ext <<_LT_EOF
1715 void nm_test_func(){}
1716 int main(){nm_test_func;return 0;}
1718 if AC_TRY_EVAL(ac_compile); then
1719 # Now try to grab the symbols.
1720 ac_nlist=conftest.nm
1721 if AC_TRY_EVAL(NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $ac_nlist) && test -s "$ac_nlist"; then
1722 # See whether the symbols have a leading underscore.
1723 if grep '^. _nm_test_func' "$ac_nlist" >/dev/null; then
1724 lt_cv_sys_symbol_underscore=yes
1726 if grep '^. nm_test_func ' "$ac_nlist" >/dev/null; then
1729 echo "configure: cannot find nm_test_func in $ac_nlist" >&AS_MESSAGE_LOG_FD
1733 echo "configure: cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD
1736 echo "configure: failed program was:" >&AS_MESSAGE_LOG_FD
1737 cat conftest.c >&AS_MESSAGE_LOG_FD
1741 sys_symbol_underscore=$lt_cv_sys_symbol_underscore
1742 AC_SUBST([sys_symbol_underscore])
1744 m4trace:/usr/share/aclocal/ltdl.m4:793: -1- AU_DEFUN([AC_LTDL_SYMBOL_USCORE], [m4_if($#, 0, [LT_SYS_SYMBOL_USCORE], [LT_SYS_SYMBOL_USCORE($@)])])
1745 m4trace:/usr/share/aclocal/ltdl.m4:793: -1- AC_DEFUN([AC_LTDL_SYMBOL_USCORE], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SYMBOL_USCORE' is obsolete.
1746 You should run autoupdate.])dnl
1747 m4_if($#, 0, [LT_SYS_SYMBOL_USCORE], [LT_SYS_SYMBOL_USCORE($@)])])
1748 m4trace:/usr/share/aclocal/ltdl.m4:800: -1- AC_DEFUN([LT_FUNC_DLSYM_USCORE], [AC_REQUIRE([_LT_COMPILER_PIC])dnl for lt_prog_compiler_wl
1749 AC_REQUIRE([LT_SYS_SYMBOL_USCORE])dnl for lt_cv_sys_symbol_underscore
1750 AC_REQUIRE([LT_SYS_MODULE_EXT])dnl for libltdl_cv_shlibext
1751 if test yes = "$lt_cv_sys_symbol_underscore"; then
1752 if test yes = "$libltdl_cv_func_dlopen" || test yes = "$libltdl_cv_lib_dl_dlopen"; then
1753 AC_CACHE_CHECK([whether we have to add an underscore for dlsym],
1754 [libltdl_cv_need_uscore],
1755 [libltdl_cv_need_uscore=unknown
1756 dlsym_uscore_save_LIBS=$LIBS
1757 LIBS="$LIBS $LIBADD_DLOPEN"
1758 libname=conftmod # stay within 8.3 filename limits!
1759 cat >$libname.$ac_ext <<_LT_EOF
1760 [#line $LINENO "configure"
1761 #include "confdefs.h"
1762 /* When -fvisibility=hidden is used, assume the code has been annotated
1763 correspondingly for the symbols needed. */
1764 #if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3))
1765 int fnord () __attribute__((visibility("default")));
1767 int fnord () { return 42; }]
1770 # ltfn_module_cmds module_cmds
1771 # Execute tilde-delimited MODULE_CMDS with environment primed for
1772 # $module_cmds or $archive_cmds type content.
1774 {( # subshell avoids polluting parent global environment
1775 module_cmds_save_ifs=$IFS; IFS='~'
1776 for cmd in @S|@1; do
1777 IFS=$module_cmds_save_ifs
1778 libobjs=$libname.$ac_objext; lib=$libname$libltdl_cv_shlibext
1779 rpath=/not-exists; soname=$libname$libltdl_cv_shlibext; output_objdir=.
1780 major=; versuffix=; verstring=; deplibs=
1781 ECHO=echo; wl=$lt_prog_compiler_wl; allow_undefined_flag=
1784 IFS=$module_cmds_save_ifs
1787 # Compile a loadable module using libtool macro expansion results.
1788 $CC $pic_flag -c $libname.$ac_ext
1789 ltfn_module_cmds "${module_cmds:-$archive_cmds}"
1791 # Try to fetch fnord with dlsym().
1792 libltdl_dlunknown=0; libltdl_dlnouscore=1; libltdl_dluscore=2
1793 cat >conftest.$ac_ext <<_LT_EOF
1794 [#line $LINENO "configure"
1795 #include "confdefs.h"
1802 # define RTLD_GLOBAL DL_GLOBAL
1804 # define RTLD_GLOBAL 0
1809 # define RTLD_NOW DL_NOW
1815 void *handle = dlopen ("`pwd`/$libname$libltdl_cv_shlibext", RTLD_GLOBAL|RTLD_NOW);
1816 int status = $libltdl_dlunknown;
1818 if (dlsym (handle, "fnord"))
1819 status = $libltdl_dlnouscore;
1821 if (dlsym (handle, "_fnord"))
1822 status = $libltdl_dluscore;
1832 if AC_TRY_EVAL(ac_link) && test -s "conftest$ac_exeext" 2>/dev/null; then
1833 (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null
1835 case x$libltdl_status in
1836 x$libltdl_dlnouscore) libltdl_cv_need_uscore=no ;;
1837 x$libltdl_dluscore) libltdl_cv_need_uscore=yes ;;
1838 x*) libltdl_cv_need_uscore=unknown ;;
1841 rm -rf conftest* $libname*
1842 LIBS=$dlsym_uscore_save_LIBS
1847 if test yes = "$libltdl_cv_need_uscore"; then
1848 AC_DEFINE([NEED_USCORE], [1],
1849 [Define if dlsym() requires a leading underscore in symbol names.])
1852 m4trace:/usr/share/aclocal/ltdl.m4:907: -1- AU_DEFUN([AC_LTDL_DLSYM_USCORE], [m4_if($#, 0, [LT_FUNC_DLSYM_USCORE], [LT_FUNC_DLSYM_USCORE($@)])])
1853 m4trace:/usr/share/aclocal/ltdl.m4:907: -1- AC_DEFUN([AC_LTDL_DLSYM_USCORE], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_DLSYM_USCORE' is obsolete.
1854 You should run autoupdate.])dnl
1855 m4_if($#, 0, [LT_FUNC_DLSYM_USCORE], [LT_FUNC_DLSYM_USCORE($@)])])
1856 m4trace:/usr/share/aclocal/ltoptions.m4:14: -1- AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])])
1857 m4trace:/usr/share/aclocal/ltoptions.m4:113: -1- AU_DEFUN([AC_LIBTOOL_DLOPEN], [_LT_SET_OPTION([LT_INIT], [dlopen])
1858 AC_DIAGNOSE([obsolete],
1859 [$0: Remove this warning and the call to _LT_SET_OPTION when you
1860 put the 'dlopen' option into LT_INIT's first parameter.])
1862 m4trace:/usr/share/aclocal/ltoptions.m4:113: -1- AC_DEFUN([AC_LIBTOOL_DLOPEN], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_DLOPEN' is obsolete.
1863 You should run autoupdate.])dnl
1864 _LT_SET_OPTION([LT_INIT], [dlopen])
1865 AC_DIAGNOSE([obsolete],
1866 [$0: Remove this warning and the call to _LT_SET_OPTION when you
1867 put the 'dlopen' option into LT_INIT's first parameter.])
1869 m4trace:/usr/share/aclocal/ltoptions.m4:148: -1- AU_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
1870 _LT_SET_OPTION([LT_INIT], [win32-dll])
1871 AC_DIAGNOSE([obsolete],
1872 [$0: Remove this warning and the call to _LT_SET_OPTION when you
1873 put the 'win32-dll' option into LT_INIT's first parameter.])
1875 m4trace:/usr/share/aclocal/ltoptions.m4:148: -1- AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_WIN32_DLL' is obsolete.
1876 You should run autoupdate.])dnl
1877 AC_REQUIRE([AC_CANONICAL_HOST])dnl
1878 _LT_SET_OPTION([LT_INIT], [win32-dll])
1879 AC_DIAGNOSE([obsolete],
1880 [$0: Remove this warning and the call to _LT_SET_OPTION when you
1881 put the 'win32-dll' option into LT_INIT's first parameter.])
1883 m4trace:/usr/share/aclocal/ltoptions.m4:197: -1- AC_DEFUN([AC_ENABLE_SHARED], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared])
1885 m4trace:/usr/share/aclocal/ltoptions.m4:201: -1- AC_DEFUN([AC_DISABLE_SHARED], [_LT_SET_OPTION([LT_INIT], [disable-shared])
1887 m4trace:/usr/share/aclocal/ltoptions.m4:205: -1- AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)])
1888 m4trace:/usr/share/aclocal/ltoptions.m4:205: -1- AC_DEFUN([AM_ENABLE_SHARED], [AC_DIAGNOSE([obsolete], [The macro `AM_ENABLE_SHARED' is obsolete.
1889 You should run autoupdate.])dnl
1890 AC_ENABLE_SHARED($@)])
1891 m4trace:/usr/share/aclocal/ltoptions.m4:206: -1- AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)])
1892 m4trace:/usr/share/aclocal/ltoptions.m4:206: -1- AC_DEFUN([AM_DISABLE_SHARED], [AC_DIAGNOSE([obsolete], [The macro `AM_DISABLE_SHARED' is obsolete.
1893 You should run autoupdate.])dnl
1894 AC_DISABLE_SHARED($@)])
1895 m4trace:/usr/share/aclocal/ltoptions.m4:251: -1- AC_DEFUN([AC_ENABLE_STATIC], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static])
1897 m4trace:/usr/share/aclocal/ltoptions.m4:255: -1- AC_DEFUN([AC_DISABLE_STATIC], [_LT_SET_OPTION([LT_INIT], [disable-static])
1899 m4trace:/usr/share/aclocal/ltoptions.m4:259: -1- AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)])
1900 m4trace:/usr/share/aclocal/ltoptions.m4:259: -1- AC_DEFUN([AM_ENABLE_STATIC], [AC_DIAGNOSE([obsolete], [The macro `AM_ENABLE_STATIC' is obsolete.
1901 You should run autoupdate.])dnl
1902 AC_ENABLE_STATIC($@)])
1903 m4trace:/usr/share/aclocal/ltoptions.m4:260: -1- AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)])
1904 m4trace:/usr/share/aclocal/ltoptions.m4:260: -1- AC_DEFUN([AM_DISABLE_STATIC], [AC_DIAGNOSE([obsolete], [The macro `AM_DISABLE_STATIC' is obsolete.
1905 You should run autoupdate.])dnl
1906 AC_DISABLE_STATIC($@)])
1907 m4trace:/usr/share/aclocal/ltoptions.m4:305: -1- AU_DEFUN([AC_ENABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install])
1908 AC_DIAGNOSE([obsolete],
1909 [$0: Remove this warning and the call to _LT_SET_OPTION when you put
1910 the 'fast-install' option into LT_INIT's first parameter.])
1912 m4trace:/usr/share/aclocal/ltoptions.m4:305: -1- AC_DEFUN([AC_ENABLE_FAST_INSTALL], [AC_DIAGNOSE([obsolete], [The macro `AC_ENABLE_FAST_INSTALL' is obsolete.
1913 You should run autoupdate.])dnl
1914 _LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install])
1915 AC_DIAGNOSE([obsolete],
1916 [$0: Remove this warning and the call to _LT_SET_OPTION when you put
1917 the 'fast-install' option into LT_INIT's first parameter.])
1919 m4trace:/usr/share/aclocal/ltoptions.m4:312: -1- AU_DEFUN([AC_DISABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], [disable-fast-install])
1920 AC_DIAGNOSE([obsolete],
1921 [$0: Remove this warning and the call to _LT_SET_OPTION when you put
1922 the 'disable-fast-install' option into LT_INIT's first parameter.])
1924 m4trace:/usr/share/aclocal/ltoptions.m4:312: -1- AC_DEFUN([AC_DISABLE_FAST_INSTALL], [AC_DIAGNOSE([obsolete], [The macro `AC_DISABLE_FAST_INSTALL' is obsolete.
1925 You should run autoupdate.])dnl
1926 _LT_SET_OPTION([LT_INIT], [disable-fast-install])
1927 AC_DIAGNOSE([obsolete],
1928 [$0: Remove this warning and the call to _LT_SET_OPTION when you put
1929 the 'disable-fast-install' option into LT_INIT's first parameter.])
1931 m4trace:/usr/share/aclocal/ltoptions.m4:411: -1- AU_DEFUN([AC_LIBTOOL_PICMODE], [_LT_SET_OPTION([LT_INIT], [pic-only])
1932 AC_DIAGNOSE([obsolete],
1933 [$0: Remove this warning and the call to _LT_SET_OPTION when you
1934 put the 'pic-only' option into LT_INIT's first parameter.])
1936 m4trace:/usr/share/aclocal/ltoptions.m4:411: -1- AC_DEFUN([AC_LIBTOOL_PICMODE], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_PICMODE' is obsolete.
1937 You should run autoupdate.])dnl
1938 _LT_SET_OPTION([LT_INIT], [pic-only])
1939 AC_DIAGNOSE([obsolete],
1940 [$0: Remove this warning and the call to _LT_SET_OPTION when you
1941 put the 'pic-only' option into LT_INIT's first parameter.])
1943 m4trace:/usr/share/aclocal/ltsugar.m4:14: -1- AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])])
1944 m4trace:/usr/share/aclocal/ltversion.m4:18: -1- AC_DEFUN([LTVERSION_VERSION], [macro_version='2.4.6'
1945 macro_revision='2.4.6'
1946 _LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?])
1947 _LT_DECL(, macro_revision, 0)
1949 m4trace:/usr/share/aclocal/lt~obsolete.m4:37: -1- AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])])
1950 m4trace:/usr/share/aclocal/lt~obsolete.m4:41: -1- AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])
1951 m4trace:/usr/share/aclocal/lt~obsolete.m4:42: -1- AC_DEFUN([_LT_AC_SHELL_INIT])
1952 m4trace:/usr/share/aclocal/lt~obsolete.m4:43: -1- AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])
1953 m4trace:/usr/share/aclocal/lt~obsolete.m4:45: -1- AC_DEFUN([_LT_AC_TAGVAR])
1954 m4trace:/usr/share/aclocal/lt~obsolete.m4:46: -1- AC_DEFUN([AC_LTDL_ENABLE_INSTALL])
1955 m4trace:/usr/share/aclocal/lt~obsolete.m4:47: -1- AC_DEFUN([AC_LTDL_PREOPEN])
1956 m4trace:/usr/share/aclocal/lt~obsolete.m4:48: -1- AC_DEFUN([_LT_AC_SYS_COMPILER])
1957 m4trace:/usr/share/aclocal/lt~obsolete.m4:49: -1- AC_DEFUN([_LT_AC_LOCK])
1958 m4trace:/usr/share/aclocal/lt~obsolete.m4:50: -1- AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])
1959 m4trace:/usr/share/aclocal/lt~obsolete.m4:51: -1- AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])
1960 m4trace:/usr/share/aclocal/lt~obsolete.m4:52: -1- AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])
1961 m4trace:/usr/share/aclocal/lt~obsolete.m4:53: -1- AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])
1962 m4trace:/usr/share/aclocal/lt~obsolete.m4:54: -1- AC_DEFUN([AC_LIBTOOL_OBJDIR])
1963 m4trace:/usr/share/aclocal/lt~obsolete.m4:55: -1- AC_DEFUN([AC_LTDL_OBJDIR])
1964 m4trace:/usr/share/aclocal/lt~obsolete.m4:56: -1- AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])
1965 m4trace:/usr/share/aclocal/lt~obsolete.m4:57: -1- AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])
1966 m4trace:/usr/share/aclocal/lt~obsolete.m4:58: -1- AC_DEFUN([AC_PATH_MAGIC])
1967 m4trace:/usr/share/aclocal/lt~obsolete.m4:59: -1- AC_DEFUN([AC_PROG_LD_GNU])
1968 m4trace:/usr/share/aclocal/lt~obsolete.m4:60: -1- AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])
1969 m4trace:/usr/share/aclocal/lt~obsolete.m4:61: -1- AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])
1970 m4trace:/usr/share/aclocal/lt~obsolete.m4:62: -1- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])
1971 m4trace:/usr/share/aclocal/lt~obsolete.m4:63: -1- AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])
1972 m4trace:/usr/share/aclocal/lt~obsolete.m4:64: -1- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])
1973 m4trace:/usr/share/aclocal/lt~obsolete.m4:65: -1- AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])
1974 m4trace:/usr/share/aclocal/lt~obsolete.m4:66: -1- AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])
1975 m4trace:/usr/share/aclocal/lt~obsolete.m4:67: -1- AC_DEFUN([LT_AC_PROG_EGREP])
1976 m4trace:/usr/share/aclocal/lt~obsolete.m4:72: -1- AC_DEFUN([_AC_PROG_LIBTOOL])
1977 m4trace:/usr/share/aclocal/lt~obsolete.m4:73: -1- AC_DEFUN([AC_LIBTOOL_SETUP])
1978 m4trace:/usr/share/aclocal/lt~obsolete.m4:74: -1- AC_DEFUN([_LT_AC_CHECK_DLFCN])
1979 m4trace:/usr/share/aclocal/lt~obsolete.m4:75: -1- AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])
1980 m4trace:/usr/share/aclocal/lt~obsolete.m4:76: -1- AC_DEFUN([_LT_AC_TAGCONFIG])
1981 m4trace:/usr/share/aclocal/lt~obsolete.m4:78: -1- AC_DEFUN([_LT_AC_LANG_CXX])
1982 m4trace:/usr/share/aclocal/lt~obsolete.m4:79: -1- AC_DEFUN([_LT_AC_LANG_F77])
1983 m4trace:/usr/share/aclocal/lt~obsolete.m4:80: -1- AC_DEFUN([_LT_AC_LANG_GCJ])
1984 m4trace:/usr/share/aclocal/lt~obsolete.m4:81: -1- AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])
1985 m4trace:/usr/share/aclocal/lt~obsolete.m4:82: -1- AC_DEFUN([_LT_AC_LANG_C_CONFIG])
1986 m4trace:/usr/share/aclocal/lt~obsolete.m4:83: -1- AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])
1987 m4trace:/usr/share/aclocal/lt~obsolete.m4:84: -1- AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])
1988 m4trace:/usr/share/aclocal/lt~obsolete.m4:85: -1- AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])
1989 m4trace:/usr/share/aclocal/lt~obsolete.m4:86: -1- AC_DEFUN([_LT_AC_LANG_F77_CONFIG])
1990 m4trace:/usr/share/aclocal/lt~obsolete.m4:87: -1- AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])
1991 m4trace:/usr/share/aclocal/lt~obsolete.m4:88: -1- AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])
1992 m4trace:/usr/share/aclocal/lt~obsolete.m4:89: -1- AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])
1993 m4trace:/usr/share/aclocal/lt~obsolete.m4:90: -1- AC_DEFUN([_LT_AC_LANG_RC_CONFIG])
1994 m4trace:/usr/share/aclocal/lt~obsolete.m4:91: -1- AC_DEFUN([AC_LIBTOOL_CONFIG])
1995 m4trace:/usr/share/aclocal/lt~obsolete.m4:92: -1- AC_DEFUN([_LT_AC_FILE_LTDLL_C])
1996 m4trace:/usr/share/aclocal/lt~obsolete.m4:94: -1- AC_DEFUN([_LT_AC_PROG_CXXCPP])
1997 m4trace:/usr/share/aclocal/lt~obsolete.m4:97: -1- AC_DEFUN([_LT_PROG_F77])
1998 m4trace:/usr/share/aclocal/lt~obsolete.m4:98: -1- AC_DEFUN([_LT_PROG_FC])
1999 m4trace:/usr/share/aclocal/lt~obsolete.m4:99: -1- AC_DEFUN([_LT_PROG_CXX])
2000 m4trace:/usr/share/aclocal-1.15/amversion.m4:14: -1- AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.15'
2001 dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
2002 dnl require some minimum version. Point them to the right macro.
2003 m4_if([$1], [1.15], [],
2004 [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
2006 m4trace:/usr/share/aclocal-1.15/amversion.m4:33: -1- AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.15])dnl
2007 m4_ifndef([AC_AUTOCONF_VERSION],
2008 [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
2009 _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
2010 m4trace:/usr/share/aclocal-1.15/auxdir.m4:47: -1- AC_DEFUN([AM_AUX_DIR_EXPAND], [AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl
2011 # Expand $ac_aux_dir to an absolute path.
2012 am_aux_dir=`cd "$ac_aux_dir" && pwd`
2014 m4trace:/usr/share/aclocal-1.15/cond.m4:12: -1- AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ([2.52])dnl
2015 m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])],
2016 [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
2017 AC_SUBST([$1_TRUE])dnl
2018 AC_SUBST([$1_FALSE])dnl
2019 _AM_SUBST_NOTMAKE([$1_TRUE])dnl
2020 _AM_SUBST_NOTMAKE([$1_FALSE])dnl
2021 m4_define([_AM_COND_VALUE_$1], [$2])dnl
2029 AC_CONFIG_COMMANDS_PRE(
2030 [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
2031 AC_MSG_ERROR([[conditional "$1" was never defined.
2032 Usually this means the macro was only invoked conditionally.]])
2034 m4trace:/usr/share/aclocal-1.15/depend.m4:26: -1- AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl
2035 AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
2036 AC_REQUIRE([AM_MAKE_INCLUDE])dnl
2037 AC_REQUIRE([AM_DEP_TRACK])dnl
2039 m4_if([$1], [CC], [depcc="$CC" am_compiler_list=],
2040 [$1], [CXX], [depcc="$CXX" am_compiler_list=],
2041 [$1], [OBJC], [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
2042 [$1], [OBJCXX], [depcc="$OBJCXX" am_compiler_list='gcc3 gcc'],
2043 [$1], [UPC], [depcc="$UPC" am_compiler_list=],
2044 [$1], [GCJ], [depcc="$GCJ" am_compiler_list='gcc3 gcc'],
2045 [depcc="$$1" am_compiler_list=])
2047 AC_CACHE_CHECK([dependency style of $depcc],
2048 [am_cv_$1_dependencies_compiler_type],
2049 [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
2050 # We make a subdir and do the tests there. Otherwise we can end up
2051 # making bogus files that we don't know about and never remove. For
2052 # instance it was reported that on HP-UX the gcc test will end up
2053 # making a dummy file named 'D' -- because '-MD' means "put the output
2057 # Copy depcomp to subdir because otherwise we won't find it if we're
2058 # using a relative directory.
2059 cp "$am_depcomp" conftest.dir
2061 # We will build objects and dependencies in a subdirectory because
2062 # it helps to detect inapplicable dependency modes. For instance
2063 # both Tru64's cc and ICC support -MD to output dependencies as a
2064 # side effect of compilation, but ICC will put the dependencies in
2065 # the current directory while Tru64 will put them in the object
2069 am_cv_$1_dependencies_compiler_type=none
2070 if test "$am_compiler_list" = ""; then
2071 am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
2075 [case " $depcc " in #(
2076 *\ -arch\ *\ -arch\ *) am__universal=true ;;
2079 [case " $depcc " in #(
2080 *\ -arch\ *\ -arch\ *) am__universal=true ;;
2083 for depmode in $am_compiler_list; do
2084 # Setup a source with many dependencies, because some compilers
2085 # like to wrap large dependency lists on column 80 (with \), and
2086 # we should not choose a depcomp mode which is confused by this.
2088 # We need to recreate these files for each test, as the compiler may
2089 # overwrite some of them when testing with obscure command lines.
2090 # This happens at least with the AIX C compiler.
2092 for i in 1 2 3 4 5 6; do
2093 echo '#include "conftst'$i'.h"' >> sub/conftest.c
2094 # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with
2095 # Solaris 10 /bin/sh.
2096 echo '/* dummy */' > sub/conftst$i.h
2098 echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
2100 # We check with '-c' and '-o' for the sake of the "dashmstdout"
2101 # mode. It turns out that the SunPro C++ compiler does not properly
2102 # handle '-M -o', and we need to detect this. Also, some Intel
2103 # versions had trouble with output in subdirs.
2104 am__obj=sub/conftest.${OBJEXT-o}
2105 am__minus_obj="-o $am__obj"
2108 # This depmode causes a compiler race in universal mode.
2109 test "$am__universal" = false || continue
2112 # After this tag, mechanisms are not by side-effect, so they'll
2113 # only be used when explicitly requested.
2114 if test "x$enable_dependency_tracking" = xyes; then
2120 msvc7 | msvc7msys | msvisualcpp | msvcmsys)
2121 # This compiler won't grok '-c -o', but also, the minuso test has
2122 # not run yet. These depmodes are late enough in the game, and
2123 # so weak that their functioning should not be impacted.
2124 am__obj=conftest.${OBJEXT-o}
2129 if depmode=$depmode \
2130 source=sub/conftest.c object=$am__obj \
2131 depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
2132 $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
2133 >/dev/null 2>conftest.err &&
2134 grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
2135 grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
2136 grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
2137 ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
2138 # icc doesn't choke on unknown options, it will just issue warnings
2139 # or remarks (even with -Werror). So we grep stderr for any message
2140 # that says an option was ignored or not supported.
2141 # When given -MP, icc 7.0 and 7.1 complain thusly:
2142 # icc: Command line warning: ignoring option '-M'; no argument required
2143 # The diagnosis changed in icc 8.0:
2144 # icc: Command line remark: option '-MP' not supported
2145 if (grep 'ignoring option' conftest.err ||
2146 grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
2147 am_cv_$1_dependencies_compiler_type=$depmode
2156 am_cv_$1_dependencies_compiler_type=none
2159 AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])
2160 AM_CONDITIONAL([am__fastdep$1], [
2161 test "x$enable_dependency_tracking" != xno \
2162 && test "$am_cv_$1_dependencies_compiler_type" = gcc3])
2164 m4trace:/usr/share/aclocal-1.15/depend.m4:163: -1- AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl
2165 AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
2167 m4trace:/usr/share/aclocal-1.15/depend.m4:171: -1- AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE([dependency-tracking], [dnl
2169 [--enable-dependency-tracking],
2170 [do not reject slow dependency extractors])
2172 [--disable-dependency-tracking],
2173 [speeds up one-time build])])
2174 if test "x$enable_dependency_tracking" != xno; then
2175 am_depcomp="$ac_aux_dir/depcomp"
2179 AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
2180 AC_SUBST([AMDEPBACKSLASH])dnl
2181 _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
2182 AC_SUBST([am__nodep])dnl
2183 _AM_SUBST_NOTMAKE([am__nodep])dnl
2185 m4trace:/usr/share/aclocal-1.15/depout.m4:12: -1- AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{
2186 # Older Autoconf quotes --file arguments for eval, but not when files
2187 # are listed without --file. Let's play safe and only enable the eval
2188 # if we detect the quoting.
2189 case $CONFIG_FILES in
2190 *\'*) eval set x "$CONFIG_FILES" ;;
2191 *) set x $CONFIG_FILES ;;
2196 # Strip MF so we end up with the name of the file.
2197 mf=`echo "$mf" | sed -e 's/:.*$//'`
2198 # Check whether this is an Automake generated Makefile or not.
2199 # We used to match only the files named 'Makefile.in', but
2200 # some people rename them; so instead we look at the file content.
2201 # Grep'ing the first line is not enough: some people post-process
2202 # each Makefile.in and add a new line on top of each file to say so.
2203 # Grep'ing the whole file is not good either: AIX grep has a line
2204 # limit of 2048, but all sed's we know have understand at least 4000.
2205 if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
2206 dirpart=`AS_DIRNAME("$mf")`
2210 # Extract the definition of DEPDIR, am__include, and am__quote
2211 # from the Makefile without running 'make'.
2212 DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
2213 test -z "$DEPDIR" && continue
2214 am__include=`sed -n 's/^am__include = //p' < "$mf"`
2215 test -z "$am__include" && continue
2216 am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
2217 # Find all dependency output files, they are included files with
2218 # $(DEPDIR) in their names. We invoke sed twice because it is the
2219 # simplest approach to changing $(DEPDIR) to its actual value in the
2221 for file in `sed -n "
2222 s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
2223 sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do
2224 # Make sure the directory exists.
2225 test -f "$dirpart/$file" && continue
2226 fdir=`AS_DIRNAME(["$file"])`
2227 AS_MKDIR_P([$dirpart/$fdir])
2228 # echo "creating $dirpart/$file"
2229 echo '# dummy' > "$dirpart/$file"
2234 m4trace:/usr/share/aclocal-1.15/depout.m4:71: -1- AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles],
2235 [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
2236 [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
2238 m4trace:/usr/share/aclocal-1.15/init.m4:29: -1- AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.65])dnl
2239 dnl Autoconf wants to disallow AM_ names. We explicitly allow
2240 dnl the ones we care about.
2241 m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
2242 AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
2243 AC_REQUIRE([AC_PROG_INSTALL])dnl
2244 if test "`cd $srcdir && pwd`" != "`pwd`"; then
2245 # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
2246 # is not polluted with repeated "-I."
2247 AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl
2248 # test to see if srcdir already configured
2249 if test -f $srcdir/config.status; then
2250 AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
2254 # test whether we have cygpath
2255 if test -z "$CYGPATH_W"; then
2256 if (cygpath --version) >/dev/null 2>/dev/null; then
2257 CYGPATH_W='cygpath -w'
2262 AC_SUBST([CYGPATH_W])
2264 # Define the identity of the package.
2265 dnl Distinguish between old-style and new-style calls.
2267 [AC_DIAGNOSE([obsolete],
2268 [$0: two- and three-arguments forms are deprecated.])
2269 m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
2270 AC_SUBST([PACKAGE], [$1])dnl
2271 AC_SUBST([VERSION], [$2])],
2272 [_AM_SET_OPTIONS([$1])dnl
2273 dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
2275 m4_ifdef([AC_PACKAGE_NAME], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]),
2277 [m4_fatal([AC_INIT should be called with package and version arguments])])dnl
2278 AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
2279 AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
2281 _AM_IF_OPTION([no-define],,
2282 [AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package])
2283 AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl
2285 # Some tools Automake needs.
2286 AC_REQUIRE([AM_SANITY_CHECK])dnl
2287 AC_REQUIRE([AC_ARG_PROGRAM])dnl
2288 AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])
2289 AM_MISSING_PROG([AUTOCONF], [autoconf])
2290 AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])
2291 AM_MISSING_PROG([AUTOHEADER], [autoheader])
2292 AM_MISSING_PROG([MAKEINFO], [makeinfo])
2293 AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
2294 AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
2295 AC_REQUIRE([AC_PROG_MKDIR_P])dnl
2296 # For better backward compatibility. To be removed once Automake 1.9.x
2297 # dies out for good. For more background, see:
2298 # <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
2299 # <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
2300 AC_SUBST([mkdir_p], ['$(MKDIR_P)'])
2301 # We need awk for the "check" target (and possibly the TAP driver). The
2302 # system "awk" is bad on some platforms.
2303 AC_REQUIRE([AC_PROG_AWK])dnl
2304 AC_REQUIRE([AC_PROG_MAKE_SET])dnl
2305 AC_REQUIRE([AM_SET_LEADING_DOT])dnl
2306 _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
2307 [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
2308 [_AM_PROG_TAR([v7])])])
2309 _AM_IF_OPTION([no-dependencies],,
2310 [AC_PROVIDE_IFELSE([AC_PROG_CC],
2311 [_AM_DEPENDENCIES([CC])],
2312 [m4_define([AC_PROG_CC],
2313 m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl
2314 AC_PROVIDE_IFELSE([AC_PROG_CXX],
2315 [_AM_DEPENDENCIES([CXX])],
2316 [m4_define([AC_PROG_CXX],
2317 m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl
2318 AC_PROVIDE_IFELSE([AC_PROG_OBJC],
2319 [_AM_DEPENDENCIES([OBJC])],
2320 [m4_define([AC_PROG_OBJC],
2321 m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl
2322 AC_PROVIDE_IFELSE([AC_PROG_OBJCXX],
2323 [_AM_DEPENDENCIES([OBJCXX])],
2324 [m4_define([AC_PROG_OBJCXX],
2325 m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl
2327 AC_REQUIRE([AM_SILENT_RULES])dnl
2328 dnl The testsuite driver may need to know about EXEEXT, so add the
2329 dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This
2330 dnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below.
2331 AC_CONFIG_COMMANDS_PRE(dnl
2332 [m4_provide_if([_AM_COMPILER_EXEEXT],
2333 [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
2335 # POSIX will say in a future version that running "rm -f" with no argument
2336 # is OK; and we want to be able to make that assumption in our Makefile
2337 # recipes. So use an aggressive probe to check that the usage we want is
2338 # actually supported "in the wild" to an acceptable degree.
2339 # See automake bug#10828.
2340 # To make any issue more visible, cause the running configure to be aborted
2341 # by default if the 'rm' program in use doesn't match our expectations; the
2342 # user can still override this though.
2343 if rm -f && rm -fr && rm -rf; then : OK; else
2347 Your 'rm' program seems unable to run without file operands specified
2348 on the command line, even when the '-f' option is present. This is contrary
2349 to the behaviour of most rm programs out there, and not conforming with
2350 the upcoming POSIX standard: <http://austingroupbugs.net/view.php?id=542>
2352 Please tell bug-automake@gnu.org about your system, including the value
2353 of your $PATH and any error possibly output before this message. This
2354 can help us improve future automake versions.
2357 if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then
2358 echo 'Configuration will proceed anyway, since you have set the' >&2
2359 echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2
2363 Aborting the configuration process, to ensure you take notice of the issue.
2365 You can download and install GNU coreutils to get an 'rm' implementation
2366 that behaves properly: <http://www.gnu.org/software/coreutils/>.
2368 If you want to complete the configuration process using your problematic
2369 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
2370 to "yes", and re-run configure.
2373 AC_MSG_ERROR([Your 'rm' program is bad, sorry.])
2376 dnl The trailing newline in this macro's definition is deliberate, for
2377 dnl backward compatibility and to allow trailing 'dnl'-style comments
2378 dnl after the AM_INIT_AUTOMAKE invocation. See automake bug#16841.
2380 m4trace:/usr/share/aclocal-1.15/init.m4:186: -1- AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers.
2383 for _am_header in $config_headers :; do
2385 $_am_arg | $_am_arg:* )
2388 _am_stamp_count=`expr $_am_stamp_count + 1` ;;
2391 echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
2392 m4trace:/usr/share/aclocal-1.15/install-sh.m4:11: -1- AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
2393 if test x"${install_sh+set}" != xset; then
2396 install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
2398 install_sh="\${SHELL} $am_aux_dir/install-sh"
2401 AC_SUBST([install_sh])])
2402 m4trace:/usr/share/aclocal-1.15/lead-dot.m4:10: -1- AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null
2403 mkdir .tst 2>/dev/null
2404 if test -d .tst; then
2409 rmdir .tst 2>/dev/null
2410 AC_SUBST([am__leading_dot])])
2411 m4trace:/usr/share/aclocal-1.15/make.m4:12: -1- AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make}
2412 cat > confinc << 'END'
2414 @echo this is the am__doit target
2417 # If we don't find an include directive, just comment out the code.
2418 AC_MSG_CHECKING([for style of include used by $am_make])
2422 # First try GNU make style include.
2423 echo "include confinc" > confmf
2424 # Ignore all kinds of additional output from 'make'.
2425 case `$am_make -s -f confmf 2> /dev/null` in #(
2426 *the\ am__doit\ target*)
2432 # Now try BSD make style include.
2433 if test "$am__include" = "#"; then
2434 echo '.include "confinc"' > confmf
2435 case `$am_make -s -f confmf 2> /dev/null` in #(
2436 *the\ am__doit\ target*)
2437 am__include=.include
2443 AC_SUBST([am__include])
2444 AC_SUBST([am__quote])
2445 AC_MSG_RESULT([$_am_result])
2446 rm -f confinc confmf
2448 m4trace:/usr/share/aclocal-1.15/missing.m4:11: -1- AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN])
2449 $1=${$1-"${am_missing_run}$2"}
2451 m4trace:/usr/share/aclocal-1.15/missing.m4:20: -1- AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
2452 AC_REQUIRE_AUX_FILE([missing])dnl
2453 if test x"${MISSING+set}" != xset; then
2456 MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
2458 MISSING="\${SHELL} $am_aux_dir/missing" ;;
2461 # Use eval to expand $SHELL
2462 if eval "$MISSING --is-lightweight"; then
2463 am_missing_run="$MISSING "
2466 AC_MSG_WARN(['missing' script is too old or missing])
2469 m4trace:/usr/share/aclocal-1.15/options.m4:11: -1- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
2470 m4trace:/usr/share/aclocal-1.15/options.m4:17: -1- AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), [1])])
2471 m4trace:/usr/share/aclocal-1.15/options.m4:23: -1- AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
2472 m4trace:/usr/share/aclocal-1.15/options.m4:29: -1- AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
2473 m4trace:/usr/share/aclocal-1.15/prog-cc-c-o.m4:12: -1- AC_DEFUN([_AM_PROG_CC_C_O], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
2474 AC_REQUIRE_AUX_FILE([compile])dnl
2475 AC_LANG_PUSH([C])dnl
2477 [whether $CC understands -c and -o together],
2478 [am_cv_prog_cc_c_o],
2479 [AC_LANG_CONFTEST([AC_LANG_PROGRAM([])])
2480 # Make sure it works both with $CC and with simple cc.
2481 # Following AC_PROG_CC_C_O, we do the test twice because some
2482 # compilers refuse to overwrite an existing .o file with -o,
2483 # though they will create one.
2484 am_cv_prog_cc_c_o=yes
2486 if AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext]) \
2487 && test -f conftest2.$ac_objext; then
2490 am_cv_prog_cc_c_o=no
2494 rm -f core conftest*
2496 if test "$am_cv_prog_cc_c_o" != yes; then
2497 # Losing compiler, so override with the script.
2498 # FIXME: It is wrong to rewrite CC.
2499 # But if we don't then we get into trouble of one sort or another.
2500 # A longer-term fix would be to have automake use am__CC in this case,
2501 # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
2502 CC="$am_aux_dir/compile $CC"
2505 m4trace:/usr/share/aclocal-1.15/prog-cc-c-o.m4:47: -1- AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])])
2506 m4trace:/usr/share/aclocal-1.15/runlog.m4:12: -1- AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD
2507 ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD
2509 echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
2510 (exit $ac_status); }])
2511 m4trace:/usr/share/aclocal-1.15/sanity.m4:11: -1- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane])
2512 # Reject unsafe characters in $srcdir or the absolute working directory
2513 # name. Accept space and tab only in the latter.
2517 *[[\\\"\#\$\&\'\`$am_lf]]*)
2518 AC_MSG_ERROR([unsafe absolute working directory name]);;
2521 *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*)
2522 AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);;
2525 # Do 'set' in a subshell so we don't clobber the current shell's
2526 # arguments. Must try -L first in case configure is actually a
2527 # symlink; some systems play weird games with the mod time of symlinks
2528 # (eg FreeBSD returns the mod time of the symlink's containing
2532 for am_try in 1 2; do
2533 echo "timestamp, slept: $am_has_slept" > conftest.file
2534 set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
2535 if test "$[*]" = "X"; then
2537 set X `ls -t "$srcdir/configure" conftest.file`
2539 if test "$[*]" != "X $srcdir/configure conftest.file" \
2540 && test "$[*]" != "X conftest.file $srcdir/configure"; then
2542 # If neither matched, then we have a broken ls. This can happen
2543 # if, for instance, CONFIG_SHELL is bash and it inherits a
2544 # broken ls alias from the environment. This has actually
2545 # happened. Such a system could not be considered "sane".
2546 AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken
2547 alias in your environment])
2549 if test "$[2]" = conftest.file || test $am_try -eq 2; then
2556 test "$[2]" = conftest.file
2562 AC_MSG_ERROR([newly created file is older than distributed files!
2563 Check your system clock])
2565 AC_MSG_RESULT([yes])
2566 # If we didn't sleep, we still need to ensure time stamps of config.status and
2567 # generated files are strictly newer.
2569 if grep 'slept: no' conftest.file >/dev/null 2>&1; then
2573 AC_CONFIG_COMMANDS_PRE(
2574 [AC_MSG_CHECKING([that generated files are newer than configure])
2575 if test -n "$am_sleep_pid"; then
2576 # Hide warnings about reused PIDs.
2577 wait $am_sleep_pid 2>/dev/null
2579 AC_MSG_RESULT([done])])
2582 m4trace:/usr/share/aclocal-1.15/silent.m4:12: -1- AC_DEFUN([AM_SILENT_RULES], [AC_ARG_ENABLE([silent-rules], [dnl
2584 [--enable-silent-rules],
2585 [less verbose build output (undo: "make V=1")])
2587 [--disable-silent-rules],
2588 [verbose build output (undo: "make V=0")])dnl
2590 case $enable_silent_rules in @%:@ (((
2591 yes) AM_DEFAULT_VERBOSITY=0;;
2592 no) AM_DEFAULT_VERBOSITY=1;;
2593 *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);;
2596 dnl A few 'make' implementations (e.g., NonStop OS and NextStep)
2597 dnl do not support nested variable expansions.
2598 dnl See automake bug#9928 and bug#10237.
2599 am_make=${MAKE-make}
2600 AC_CACHE_CHECK([whether $am_make supports nested variables],
2601 [am_cv_make_support_nested_variables],
2602 [if AS_ECHO([['TRUE=$(BAR$(V))
2608 .PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then
2609 am_cv_make_support_nested_variables=yes
2611 am_cv_make_support_nested_variables=no
2613 if test $am_cv_make_support_nested_variables = yes; then
2614 dnl Using '$V' instead of '$(V)' breaks IRIX make.
2616 AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
2618 AM_V=$AM_DEFAULT_VERBOSITY
2619 AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
2622 AM_SUBST_NOTMAKE([AM_V])dnl
2623 AC_SUBST([AM_DEFAULT_V])dnl
2624 AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl
2625 AC_SUBST([AM_DEFAULT_VERBOSITY])dnl
2627 AC_SUBST([AM_BACKSLASH])dnl
2628 _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
2630 m4trace:/usr/share/aclocal-1.15/strip.m4:17: -1- AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
2631 # Installed binaries are usually stripped using 'strip' when the user
2632 # run "make install-strip". However 'strip' might not be the right
2633 # tool to use in cross-compilation environments, therefore Automake
2634 # will honor the 'STRIP' environment variable to overrule this program.
2635 dnl Don't test for $cross_compiling = yes, because it might be 'maybe'.
2636 if test "$cross_compiling" != no; then
2637 AC_CHECK_TOOL([STRIP], [strip], :)
2639 INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
2640 AC_SUBST([INSTALL_STRIP_PROGRAM])])
2641 m4trace:/usr/share/aclocal-1.15/substnot.m4:12: -1- AC_DEFUN([_AM_SUBST_NOTMAKE])
2642 m4trace:/usr/share/aclocal-1.15/substnot.m4:17: -1- AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
2643 m4trace:/usr/share/aclocal-1.15/tar.m4:23: -1- AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. Yes, it's still used
2644 # in the wild :-( We should find a proper way to deprecate it ...
2645 AC_SUBST([AMTAR], ['$${TAR-tar}'])
2647 # We'll loop over all known methods to create a tar archive until one works.
2648 _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
2651 [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'],
2655 [# The POSIX 1988 'ustar' format is defined with fixed-size fields.
2656 # There is notably a 21 bits limit for the UID and the GID. In fact,
2657 # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343
2659 am_max_uid=2097151 # 2^21 - 1
2660 am_max_gid=$am_max_uid
2661 # The $UID and $GID variables are not portable, so we need to resort
2662 # to the POSIX-mandated id(1) utility. Errors in the 'id' calls
2663 # below are definitely unexpected, so allow the users to see them
2664 # (that is, avoid stderr redirection).
2665 am_uid=`id -u || echo unknown`
2666 am_gid=`id -g || echo unknown`
2667 AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format])
2668 if test $am_uid -le $am_max_uid; then
2669 AC_MSG_RESULT([yes])
2674 AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format])
2675 if test $am_gid -le $am_max_gid; then
2676 AC_MSG_RESULT([yes])
2685 [m4_fatal([Unknown tar format])])
2687 AC_MSG_CHECKING([how to create a $1 tar archive])
2689 # Go ahead even if we have the value already cached. We do so because we
2690 # need to set the values for the 'am__tar' and 'am__untar' variables.
2691 _am_tools=${am_cv_prog_tar_$1-$_am_tools}
2693 for _am_tool in $_am_tools; do
2696 for _am_tar in tar gnutar gtar; do
2697 AM_RUN_LOG([$_am_tar --version]) && break
2699 am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
2700 am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
2701 am__untar="$_am_tar -xf -"
2704 # Must skip GNU tar: if it does not support --format= it doesn't create
2705 # ustar tarball either.
2706 (tar --version) >/dev/null 2>&1 && continue
2707 am__tar='tar chf - "$$tardir"'
2708 am__tar_='tar chf - "$tardir"'
2709 am__untar='tar xf -'
2712 am__tar='pax -L -x $1 -w "$$tardir"'
2713 am__tar_='pax -L -x $1 -w "$tardir"'
2717 am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
2718 am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
2719 am__untar='cpio -i -H $1 -d'
2728 # If the value was cached, stop now. We just wanted to have am__tar
2729 # and am__untar set.
2730 test -n "${am_cv_prog_tar_$1}" && break
2732 # tar/untar a dummy directory, and stop if the command works.
2735 echo GrepMe > conftest.dir/file
2736 AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
2738 if test -s conftest.tar; then
2739 AM_RUN_LOG([$am__untar <conftest.tar])
2740 AM_RUN_LOG([cat conftest.dir/file])
2741 grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
2746 AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
2747 AC_MSG_RESULT([$am_cv_prog_tar_$1])])
2750 AC_SUBST([am__untar])
2752 m4trace:configure.ac:4: -1- m4_pattern_forbid([^_?A[CHUM]_])
2753 m4trace:configure.ac:4: -1- m4_pattern_forbid([_AC_])
2754 m4trace:configure.ac:4: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS'])
2755 m4trace:configure.ac:4: -1- m4_pattern_allow([^AS_FLAGS$])
2756 m4trace:configure.ac:4: -1- m4_pattern_forbid([^_?m4_])
2757 m4trace:configure.ac:4: -1- m4_pattern_forbid([^dnl$])
2758 m4trace:configure.ac:4: -1- m4_pattern_forbid([^_?AS_])
2759 m4trace:configure.ac:4: -1- m4_pattern_allow([^SHELL$])
2760 m4trace:configure.ac:4: -1- m4_pattern_allow([^PATH_SEPARATOR$])
2761 m4trace:configure.ac:4: -1- m4_pattern_allow([^PACKAGE_NAME$])
2762 m4trace:configure.ac:4: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
2763 m4trace:configure.ac:4: -1- m4_pattern_allow([^PACKAGE_VERSION$])
2764 m4trace:configure.ac:4: -1- m4_pattern_allow([^PACKAGE_STRING$])
2765 m4trace:configure.ac:4: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
2766 m4trace:configure.ac:4: -1- m4_pattern_allow([^PACKAGE_URL$])
2767 m4trace:configure.ac:4: -1- m4_pattern_allow([^exec_prefix$])
2768 m4trace:configure.ac:4: -1- m4_pattern_allow([^prefix$])
2769 m4trace:configure.ac:4: -1- m4_pattern_allow([^program_transform_name$])
2770 m4trace:configure.ac:4: -1- m4_pattern_allow([^bindir$])
2771 m4trace:configure.ac:4: -1- m4_pattern_allow([^sbindir$])
2772 m4trace:configure.ac:4: -1- m4_pattern_allow([^libexecdir$])
2773 m4trace:configure.ac:4: -1- m4_pattern_allow([^datarootdir$])
2774 m4trace:configure.ac:4: -1- m4_pattern_allow([^datadir$])
2775 m4trace:configure.ac:4: -1- m4_pattern_allow([^sysconfdir$])
2776 m4trace:configure.ac:4: -1- m4_pattern_allow([^sharedstatedir$])
2777 m4trace:configure.ac:4: -1- m4_pattern_allow([^localstatedir$])
2778 m4trace:configure.ac:4: -1- m4_pattern_allow([^runstatedir$])
2779 m4trace:configure.ac:4: -1- m4_pattern_allow([^includedir$])
2780 m4trace:configure.ac:4: -1- m4_pattern_allow([^oldincludedir$])
2781 m4trace:configure.ac:4: -1- m4_pattern_allow([^docdir$])
2782 m4trace:configure.ac:4: -1- m4_pattern_allow([^infodir$])
2783 m4trace:configure.ac:4: -1- m4_pattern_allow([^htmldir$])
2784 m4trace:configure.ac:4: -1- m4_pattern_allow([^dvidir$])
2785 m4trace:configure.ac:4: -1- m4_pattern_allow([^pdfdir$])
2786 m4trace:configure.ac:4: -1- m4_pattern_allow([^psdir$])
2787 m4trace:configure.ac:4: -1- m4_pattern_allow([^libdir$])
2788 m4trace:configure.ac:4: -1- m4_pattern_allow([^localedir$])
2789 m4trace:configure.ac:4: -1- m4_pattern_allow([^mandir$])
2790 m4trace:configure.ac:4: -1- m4_pattern_allow([^PACKAGE_NAME$])
2791 m4trace:configure.ac:4: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
2792 m4trace:configure.ac:4: -1- m4_pattern_allow([^PACKAGE_VERSION$])
2793 m4trace:configure.ac:4: -1- m4_pattern_allow([^PACKAGE_STRING$])
2794 m4trace:configure.ac:4: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
2795 m4trace:configure.ac:4: -1- m4_pattern_allow([^PACKAGE_URL$])
2796 m4trace:configure.ac:4: -1- m4_pattern_allow([^DEFS$])
2797 m4trace:configure.ac:4: -1- m4_pattern_allow([^ECHO_C$])
2798 m4trace:configure.ac:4: -1- m4_pattern_allow([^ECHO_N$])
2799 m4trace:configure.ac:4: -1- m4_pattern_allow([^ECHO_T$])
2800 m4trace:configure.ac:4: -1- m4_pattern_allow([^LIBS$])
2801 m4trace:configure.ac:4: -1- m4_pattern_allow([^build_alias$])
2802 m4trace:configure.ac:4: -1- m4_pattern_allow([^host_alias$])
2803 m4trace:configure.ac:4: -1- m4_pattern_allow([^target_alias$])
2804 m4trace:configure.ac:10: -1- AC_CONFIG_MACRO_DIR([m4])
2805 m4trace:configure.ac:12: -1- AM_INIT_AUTOMAKE([1.15 -Wall -Wno-extra-portability])
2806 m4trace:configure.ac:12: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$])
2807 m4trace:configure.ac:12: -1- AM_SET_CURRENT_AUTOMAKE_VERSION
2808 m4trace:configure.ac:12: -1- AM_AUTOMAKE_VERSION([1.15])
2809 m4trace:configure.ac:12: -1- _AM_AUTOCONF_VERSION([2.69])
2810 m4trace:configure.ac:12: -1- m4_pattern_allow([^INSTALL_PROGRAM$])
2811 m4trace:configure.ac:12: -1- m4_pattern_allow([^INSTALL_SCRIPT$])
2812 m4trace:configure.ac:12: -1- m4_pattern_allow([^INSTALL_DATA$])
2813 m4trace:configure.ac:12: -1- m4_pattern_allow([^am__isrc$])
2814 m4trace:configure.ac:12: -1- _AM_SUBST_NOTMAKE([am__isrc])
2815 m4trace:configure.ac:12: -1- m4_pattern_allow([^CYGPATH_W$])
2816 m4trace:configure.ac:12: -1- _AM_SET_OPTIONS([1.15 -Wall -Wno-extra-portability])
2817 m4trace:configure.ac:12: -1- _AM_SET_OPTION([1.15])
2818 m4trace:configure.ac:12: -2- _AM_MANGLE_OPTION([1.15])
2819 m4trace:configure.ac:12: -1- _AM_SET_OPTION([-Wall])
2820 m4trace:configure.ac:12: -2- _AM_MANGLE_OPTION([-Wall])
2821 m4trace:configure.ac:12: -1- _AM_SET_OPTION([-Wno-extra-portability])
2822 m4trace:configure.ac:12: -2- _AM_MANGLE_OPTION([-Wno-extra-portability])
2823 m4trace:configure.ac:12: -1- m4_pattern_allow([^PACKAGE$])
2824 m4trace:configure.ac:12: -1- m4_pattern_allow([^VERSION$])
2825 m4trace:configure.ac:12: -1- _AM_IF_OPTION([no-define], [], [AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package])
2826 AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])
2827 m4trace:configure.ac:12: -2- _AM_MANGLE_OPTION([no-define])
2828 m4trace:configure.ac:12: -1- m4_pattern_allow([^PACKAGE$])
2829 m4trace:configure.ac:12: -1- m4_pattern_allow([^VERSION$])
2830 m4trace:configure.ac:12: -1- AM_SANITY_CHECK
2831 m4trace:configure.ac:12: -1- AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])
2832 m4trace:configure.ac:12: -1- AM_MISSING_HAS_RUN
2833 m4trace:configure.ac:12: -1- AM_AUX_DIR_EXPAND
2834 m4trace:configure.ac:12: -1- m4_pattern_allow([^ACLOCAL$])
2835 m4trace:configure.ac:12: -1- AM_MISSING_PROG([AUTOCONF], [autoconf])
2836 m4trace:configure.ac:12: -1- m4_pattern_allow([^AUTOCONF$])
2837 m4trace:configure.ac:12: -1- AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])
2838 m4trace:configure.ac:12: -1- m4_pattern_allow([^AUTOMAKE$])
2839 m4trace:configure.ac:12: -1- AM_MISSING_PROG([AUTOHEADER], [autoheader])
2840 m4trace:configure.ac:12: -1- m4_pattern_allow([^AUTOHEADER$])
2841 m4trace:configure.ac:12: -1- AM_MISSING_PROG([MAKEINFO], [makeinfo])
2842 m4trace:configure.ac:12: -1- m4_pattern_allow([^MAKEINFO$])
2843 m4trace:configure.ac:12: -1- AM_PROG_INSTALL_SH
2844 m4trace:configure.ac:12: -1- m4_pattern_allow([^install_sh$])
2845 m4trace:configure.ac:12: -1- AM_PROG_INSTALL_STRIP
2846 m4trace:configure.ac:12: -1- m4_pattern_allow([^STRIP$])
2847 m4trace:configure.ac:12: -1- m4_pattern_allow([^INSTALL_STRIP_PROGRAM$])
2848 m4trace:configure.ac:12: -1- m4_pattern_allow([^MKDIR_P$])
2849 m4trace:configure.ac:12: -1- m4_pattern_allow([^mkdir_p$])
2850 m4trace:configure.ac:12: -1- m4_pattern_allow([^AWK$])
2851 m4trace:configure.ac:12: -1- m4_pattern_allow([^SET_MAKE$])
2852 m4trace:configure.ac:12: -1- AM_SET_LEADING_DOT
2853 m4trace:configure.ac:12: -1- m4_pattern_allow([^am__leading_dot$])
2854 m4trace:configure.ac:12: -1- _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
2855 [_AM_PROG_TAR([v7])])])
2856 m4trace:configure.ac:12: -2- _AM_MANGLE_OPTION([tar-ustar])
2857 m4trace:configure.ac:12: -1- _AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])
2858 m4trace:configure.ac:12: -2- _AM_MANGLE_OPTION([tar-pax])
2859 m4trace:configure.ac:12: -1- _AM_PROG_TAR([v7])
2860 m4trace:configure.ac:12: -1- m4_pattern_allow([^AMTAR$])
2861 m4trace:configure.ac:12: -1- m4_pattern_allow([^am__tar$])
2862 m4trace:configure.ac:12: -1- m4_pattern_allow([^am__untar$])
2863 m4trace:configure.ac:12: -1- _AM_IF_OPTION([no-dependencies], [], [AC_PROVIDE_IFELSE([AC_PROG_CC],
2864 [_AM_DEPENDENCIES([CC])],
2865 [m4_define([AC_PROG_CC],
2866 m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl
2867 AC_PROVIDE_IFELSE([AC_PROG_CXX],
2868 [_AM_DEPENDENCIES([CXX])],
2869 [m4_define([AC_PROG_CXX],
2870 m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl
2871 AC_PROVIDE_IFELSE([AC_PROG_OBJC],
2872 [_AM_DEPENDENCIES([OBJC])],
2873 [m4_define([AC_PROG_OBJC],
2874 m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl
2875 AC_PROVIDE_IFELSE([AC_PROG_OBJCXX],
2876 [_AM_DEPENDENCIES([OBJCXX])],
2877 [m4_define([AC_PROG_OBJCXX],
2878 m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl
2880 m4trace:configure.ac:12: -2- _AM_MANGLE_OPTION([no-dependencies])
2881 m4trace:configure.ac:12: -1- AM_SILENT_RULES
2882 m4trace:configure.ac:12: -1- m4_pattern_allow([^AM_V$])
2883 m4trace:configure.ac:12: -1- AM_SUBST_NOTMAKE([AM_V])
2884 m4trace:configure.ac:12: -1- _AM_SUBST_NOTMAKE([AM_V])
2885 m4trace:configure.ac:12: -1- m4_pattern_allow([^AM_DEFAULT_V$])
2886 m4trace:configure.ac:12: -1- AM_SUBST_NOTMAKE([AM_DEFAULT_V])
2887 m4trace:configure.ac:12: -1- _AM_SUBST_NOTMAKE([AM_DEFAULT_V])
2888 m4trace:configure.ac:12: -1- m4_pattern_allow([^AM_DEFAULT_VERBOSITY$])
2889 m4trace:configure.ac:12: -1- m4_pattern_allow([^AM_BACKSLASH$])
2890 m4trace:configure.ac:12: -1- _AM_SUBST_NOTMAKE([AM_BACKSLASH])
2891 m4trace:configure.ac:18: -1- LT_INIT([disable-static])
2892 m4trace:configure.ac:18: -1- m4_pattern_forbid([^_?LT_[A-Z_]+$])
2893 m4trace:configure.ac:18: -1- m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])
2894 m4trace:configure.ac:18: -1- LTOPTIONS_VERSION
2895 m4trace:configure.ac:18: -1- LTSUGAR_VERSION
2896 m4trace:configure.ac:18: -1- LTVERSION_VERSION
2897 m4trace:configure.ac:18: -1- LTOBSOLETE_VERSION
2898 m4trace:configure.ac:18: -1- _LT_PROG_LTMAIN
2899 m4trace:configure.ac:18: -1- m4_pattern_allow([^LIBTOOL$])
2900 m4trace:configure.ac:18: -1- m4_pattern_allow([^build$])
2901 m4trace:configure.ac:18: -1- m4_pattern_allow([^build_cpu$])
2902 m4trace:configure.ac:18: -1- m4_pattern_allow([^build_vendor$])
2903 m4trace:configure.ac:18: -1- m4_pattern_allow([^build_os$])
2904 m4trace:configure.ac:18: -1- m4_pattern_allow([^host$])
2905 m4trace:configure.ac:18: -1- m4_pattern_allow([^host_cpu$])
2906 m4trace:configure.ac:18: -1- m4_pattern_allow([^host_vendor$])
2907 m4trace:configure.ac:18: -1- m4_pattern_allow([^host_os$])
2908 m4trace:configure.ac:18: -1- _LT_PREPARE_SED_QUOTE_VARS
2909 m4trace:configure.ac:18: -1- _LT_PROG_ECHO_BACKSLASH
2910 m4trace:configure.ac:18: -1- m4_pattern_allow([^CC$])
2911 m4trace:configure.ac:18: -1- m4_pattern_allow([^CFLAGS$])
2912 m4trace:configure.ac:18: -1- m4_pattern_allow([^LDFLAGS$])
2913 m4trace:configure.ac:18: -1- m4_pattern_allow([^LIBS$])
2914 m4trace:configure.ac:18: -1- m4_pattern_allow([^CPPFLAGS$])
2915 m4trace:configure.ac:18: -1- m4_pattern_allow([^CC$])
2916 m4trace:configure.ac:18: -1- m4_pattern_allow([^CC$])
2917 m4trace:configure.ac:18: -1- m4_pattern_allow([^CC$])
2918 m4trace:configure.ac:18: -1- m4_pattern_allow([^CC$])
2919 m4trace:configure.ac:18: -1- m4_pattern_allow([^ac_ct_CC$])
2920 m4trace:configure.ac:18: -1- m4_pattern_allow([^EXEEXT$])
2921 m4trace:configure.ac:18: -1- m4_pattern_allow([^OBJEXT$])
2922 m4trace:configure.ac:18: -1- _AM_PROG_CC_C_O
2923 m4trace:configure.ac:18: -1- AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext])
2924 m4trace:configure.ac:18: -1- _AM_DEPENDENCIES([CC])
2925 m4trace:configure.ac:18: -1- AM_SET_DEPDIR
2926 m4trace:configure.ac:18: -1- m4_pattern_allow([^DEPDIR$])
2927 m4trace:configure.ac:18: -1- AM_OUTPUT_DEPENDENCY_COMMANDS
2928 m4trace:configure.ac:18: -1- AM_MAKE_INCLUDE
2929 m4trace:configure.ac:18: -1- m4_pattern_allow([^am__include$])
2930 m4trace:configure.ac:18: -1- m4_pattern_allow([^am__quote$])
2931 m4trace:configure.ac:18: -1- AM_DEP_TRACK
2932 m4trace:configure.ac:18: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
2933 m4trace:configure.ac:18: -1- m4_pattern_allow([^AMDEP_TRUE$])
2934 m4trace:configure.ac:18: -1- m4_pattern_allow([^AMDEP_FALSE$])
2935 m4trace:configure.ac:18: -1- _AM_SUBST_NOTMAKE([AMDEP_TRUE])
2936 m4trace:configure.ac:18: -1- _AM_SUBST_NOTMAKE([AMDEP_FALSE])
2937 m4trace:configure.ac:18: -1- m4_pattern_allow([^AMDEPBACKSLASH$])
2938 m4trace:configure.ac:18: -1- _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])
2939 m4trace:configure.ac:18: -1- m4_pattern_allow([^am__nodep$])
2940 m4trace:configure.ac:18: -1- _AM_SUBST_NOTMAKE([am__nodep])
2941 m4trace:configure.ac:18: -1- m4_pattern_allow([^CCDEPMODE$])
2942 m4trace:configure.ac:18: -1- AM_CONDITIONAL([am__fastdepCC], [
2943 test "x$enable_dependency_tracking" != xno \
2944 && test "$am_cv_CC_dependencies_compiler_type" = gcc3])
2945 m4trace:configure.ac:18: -1- m4_pattern_allow([^am__fastdepCC_TRUE$])
2946 m4trace:configure.ac:18: -1- m4_pattern_allow([^am__fastdepCC_FALSE$])
2947 m4trace:configure.ac:18: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE])
2948 m4trace:configure.ac:18: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE])
2949 m4trace:configure.ac:18: -1- LT_PATH_LD
2950 m4trace:configure.ac:18: -1- m4_pattern_allow([^SED$])
2951 m4trace:configure.ac:18: -1- AC_PROG_EGREP
2952 m4trace:configure.ac:18: -1- m4_pattern_allow([^GREP$])
2953 m4trace:configure.ac:18: -1- m4_pattern_allow([^EGREP$])
2954 m4trace:configure.ac:18: -1- m4_pattern_allow([^FGREP$])
2955 m4trace:configure.ac:18: -1- m4_pattern_allow([^GREP$])
2956 m4trace:configure.ac:18: -1- m4_pattern_allow([^LD$])
2957 m4trace:configure.ac:18: -1- LT_PATH_NM
2958 m4trace:configure.ac:18: -1- m4_pattern_allow([^DUMPBIN$])
2959 m4trace:configure.ac:18: -1- m4_pattern_allow([^ac_ct_DUMPBIN$])
2960 m4trace:configure.ac:18: -1- m4_pattern_allow([^DUMPBIN$])
2961 m4trace:configure.ac:18: -1- m4_pattern_allow([^NM$])
2962 m4trace:configure.ac:18: -1- m4_pattern_allow([^LN_S$])
2963 m4trace:configure.ac:18: -1- LT_CMD_MAX_LEN
2964 m4trace:configure.ac:18: -1- m4_pattern_allow([^OBJDUMP$])
2965 m4trace:configure.ac:18: -1- m4_pattern_allow([^OBJDUMP$])
2966 m4trace:configure.ac:18: -1- m4_pattern_allow([^DLLTOOL$])
2967 m4trace:configure.ac:18: -1- m4_pattern_allow([^DLLTOOL$])
2968 m4trace:configure.ac:18: -1- m4_pattern_allow([^AR$])
2969 m4trace:configure.ac:18: -1- m4_pattern_allow([^ac_ct_AR$])
2970 m4trace:configure.ac:18: -1- m4_pattern_allow([^STRIP$])
2971 m4trace:configure.ac:18: -1- m4_pattern_allow([^RANLIB$])
2972 m4trace:configure.ac:18: -1- _LT_WITH_SYSROOT
2973 m4trace:configure.ac:18: -1- m4_pattern_allow([LT_OBJDIR])
2974 m4trace:configure.ac:18: -1- m4_pattern_allow([^LT_OBJDIR$])
2975 m4trace:configure.ac:18: -1- _LT_CC_BASENAME([$compiler])
2976 m4trace:configure.ac:18: -1- _LT_PATH_TOOL_PREFIX([${ac_tool_prefix}file], [/usr/bin$PATH_SEPARATOR$PATH])
2977 m4trace:configure.ac:18: -1- _LT_PATH_TOOL_PREFIX([file], [/usr/bin$PATH_SEPARATOR$PATH])
2978 m4trace:configure.ac:18: -1- LT_SUPPORTED_TAG([CC])
2979 m4trace:configure.ac:18: -1- _LT_COMPILER_BOILERPLATE
2980 m4trace:configure.ac:18: -1- _LT_LINKER_BOILERPLATE
2981 m4trace:configure.ac:18: -1- _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], [lt_cv_prog_compiler_rtti_exceptions], [-fno-rtti -fno-exceptions], [], [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, )="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, ) -fno-rtti -fno-exceptions"])
2982 m4trace:configure.ac:18: -1- _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, ) works], [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, )], [$_LT_TAGVAR(lt_prog_compiler_pic, )@&t@m4_if([],[],[ -DPIC],[m4_if([],[CXX],[ -DPIC],[])])], [], [case $_LT_TAGVAR(lt_prog_compiler_pic, ) in
2984 *) _LT_TAGVAR(lt_prog_compiler_pic, )=" $_LT_TAGVAR(lt_prog_compiler_pic, )" ;;
2985 esac], [_LT_TAGVAR(lt_prog_compiler_pic, )=
2986 _LT_TAGVAR(lt_prog_compiler_can_build_shared, )=no])
2987 m4trace:configure.ac:18: -1- _LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], [lt_cv_prog_compiler_static_works], [$lt_tmp_static_flag], [], [_LT_TAGVAR(lt_prog_compiler_static, )=])
2988 m4trace:configure.ac:18: -1- m4_pattern_allow([^MANIFEST_TOOL$])
2989 m4trace:configure.ac:18: -1- _LT_DLL_DEF_P([$export_symbols])
2990 m4trace:configure.ac:18: -1- _LT_DLL_DEF_P([$export_symbols])
2991 m4trace:configure.ac:18: -1- _LT_REQUIRED_DARWIN_CHECKS
2992 m4trace:configure.ac:18: -1- m4_pattern_allow([^DSYMUTIL$])
2993 m4trace:configure.ac:18: -1- m4_pattern_allow([^NMEDIT$])
2994 m4trace:configure.ac:18: -1- m4_pattern_allow([^LIPO$])
2995 m4trace:configure.ac:18: -1- m4_pattern_allow([^OTOOL$])
2996 m4trace:configure.ac:18: -1- m4_pattern_allow([^OTOOL64$])
2997 m4trace:configure.ac:18: -1- _LT_LINKER_OPTION([if $CC understands -b], [lt_cv_prog_compiler__b], [-b], [_LT_TAGVAR(archive_cmds, )='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags'], [_LT_TAGVAR(archive_cmds, )='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'])
2998 m4trace:configure.ac:18: -1- m4_pattern_allow([^LT_SYS_LIBRARY_PATH$])
2999 m4trace:configure.ac:18: -1- LT_SYS_DLOPEN_SELF
3000 m4trace:configure.ac:18: -1- m4_pattern_allow([^CPP$])
3001 m4trace:configure.ac:18: -1- m4_pattern_allow([^CPPFLAGS$])
3002 m4trace:configure.ac:18: -1- m4_pattern_allow([^CPP$])
3003 m4trace:configure.ac:18: -1- m4_pattern_allow([^STDC_HEADERS$])
3004 m4trace:configure.ac:18: -1- m4_pattern_allow([^HAVE_DLFCN_H$])
3005 m4trace:configure.ac:21: -1- m4_pattern_allow([^CC$])
3006 m4trace:configure.ac:21: -1- m4_pattern_allow([^CFLAGS$])
3007 m4trace:configure.ac:21: -1- m4_pattern_allow([^LDFLAGS$])
3008 m4trace:configure.ac:21: -1- m4_pattern_allow([^LIBS$])
3009 m4trace:configure.ac:21: -1- m4_pattern_allow([^CPPFLAGS$])
3010 m4trace:configure.ac:21: -1- m4_pattern_allow([^CC$])
3011 m4trace:configure.ac:21: -1- m4_pattern_allow([^CC$])
3012 m4trace:configure.ac:21: -1- m4_pattern_allow([^CC$])
3013 m4trace:configure.ac:21: -1- m4_pattern_allow([^CC$])
3014 m4trace:configure.ac:21: -1- m4_pattern_allow([^ac_ct_CC$])
3015 m4trace:configure.ac:21: -1- _AM_PROG_CC_C_O
3016 m4trace:configure.ac:21: -1- AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext])
3017 m4trace:configure.ac:21: -1- _AM_DEPENDENCIES([CC])
3018 m4trace:configure.ac:21: -1- m4_pattern_allow([^CCDEPMODE$])
3019 m4trace:configure.ac:21: -1- AM_CONDITIONAL([am__fastdepCC], [
3020 test "x$enable_dependency_tracking" != xno \
3021 && test "$am_cv_CC_dependencies_compiler_type" = gcc3])
3022 m4trace:configure.ac:21: -1- m4_pattern_allow([^am__fastdepCC_TRUE$])
3023 m4trace:configure.ac:21: -1- m4_pattern_allow([^am__fastdepCC_FALSE$])
3024 m4trace:configure.ac:21: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE])
3025 m4trace:configure.ac:21: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE])
3026 m4trace:configure.ac:22: -1- m4_pattern_allow([^CXX$])
3027 m4trace:configure.ac:22: -1- m4_pattern_allow([^CXXFLAGS$])
3028 m4trace:configure.ac:22: -1- m4_pattern_allow([^LDFLAGS$])
3029 m4trace:configure.ac:22: -1- m4_pattern_allow([^LIBS$])
3030 m4trace:configure.ac:22: -1- m4_pattern_allow([^CPPFLAGS$])
3031 m4trace:configure.ac:22: -1- m4_pattern_allow([^CXX$])
3032 m4trace:configure.ac:22: -1- m4_pattern_allow([^ac_ct_CXX$])
3033 m4trace:configure.ac:22: -1- _AM_DEPENDENCIES([CXX])
3034 m4trace:configure.ac:22: -1- m4_pattern_allow([^CXXDEPMODE$])
3035 m4trace:configure.ac:22: -1- AM_CONDITIONAL([am__fastdepCXX], [
3036 test "x$enable_dependency_tracking" != xno \
3037 && test "$am_cv_CXX_dependencies_compiler_type" = gcc3])
3038 m4trace:configure.ac:22: -1- m4_pattern_allow([^am__fastdepCXX_TRUE$])
3039 m4trace:configure.ac:22: -1- m4_pattern_allow([^am__fastdepCXX_FALSE$])
3040 m4trace:configure.ac:22: -1- _AM_SUBST_NOTMAKE([am__fastdepCXX_TRUE])
3041 m4trace:configure.ac:22: -1- _AM_SUBST_NOTMAKE([am__fastdepCXX_FALSE])
3042 m4trace:configure.ac:22: -1- LT_LANG([CXX])
3043 m4trace:configure.ac:22: -1- LT_SUPPORTED_TAG([CXX])
3044 m4trace:configure.ac:22: -1- m4_pattern_allow([^CXXCPP$])
3045 m4trace:configure.ac:22: -1- m4_pattern_allow([^CPPFLAGS$])
3046 m4trace:configure.ac:22: -1- m4_pattern_allow([^CXXCPP$])
3047 m4trace:configure.ac:22: -1- _LT_COMPILER_BOILERPLATE
3048 m4trace:configure.ac:22: -1- _LT_LINKER_BOILERPLATE
3049 m4trace:configure.ac:22: -1- _LT_CC_BASENAME([$compiler])
3050 m4trace:configure.ac:22: -1- LT_PATH_LD
3051 m4trace:configure.ac:22: -1- m4_pattern_allow([^LD$])
3052 m4trace:configure.ac:22: -1- _LT_DLL_DEF_P([$export_symbols])
3053 m4trace:configure.ac:22: -1- _LT_DLL_DEF_P([$export_symbols])
3054 m4trace:configure.ac:22: -1- _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, CXX) works], [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, CXX)], [$_LT_TAGVAR(lt_prog_compiler_pic, CXX)@&t@m4_if([CXX],[],[ -DPIC],[m4_if([CXX],[CXX],[ -DPIC],[])])], [], [case $_LT_TAGVAR(lt_prog_compiler_pic, CXX) in
3056 *) _LT_TAGVAR(lt_prog_compiler_pic, CXX)=" $_LT_TAGVAR(lt_prog_compiler_pic, CXX)" ;;
3057 esac], [_LT_TAGVAR(lt_prog_compiler_pic, CXX)=
3058 _LT_TAGVAR(lt_prog_compiler_can_build_shared, CXX)=no])
3059 m4trace:configure.ac:22: -1- _LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], [lt_cv_prog_compiler_static_works_CXX], [$lt_tmp_static_flag], [], [_LT_TAGVAR(lt_prog_compiler_static, CXX)=])
3060 m4trace:configure.ac:22: -1- m4_pattern_allow([^LT_SYS_LIBRARY_PATH$])
3061 m4trace:configure.ac:26: -1- m4_pattern_allow([^HAVE_LIBGF_COMPLETE$])
3062 m4trace:configure.ac:37: -1- m4_pattern_allow([^_UINT32_T$])
3063 m4trace:configure.ac:37: -1- m4_pattern_allow([^uint32_t$])
3064 m4trace:configure.ac:38: -1- m4_pattern_allow([^_UINT64_T$])
3065 m4trace:configure.ac:38: -1- m4_pattern_allow([^uint64_t$])
3066 m4trace:configure.ac:39: -1- AX_EXT
3067 m4trace:configure.ac:39: -1- m4_pattern_allow([^HAVE_ALTIVEC$])
3068 m4trace:configure.ac:39: -1- AX_CHECK_COMPILE_FLAG([-faltivec], [SIMD_FLAGS="$SIMD_FLAGS -faltivec"], [])
3069 m4trace:configure.ac:39: -1- AX_GCC_X86_CPUID
3070 m4trace:configure.ac:39: -1- AX_GCC_X86_CPUID_COUNT([], [0])
3071 m4trace:configure.ac:39: -1- AX_GCC_X86_AVX_XGETBV
3072 m4trace:configure.ac:39: -1- AX_GCC_X86_CPUID([0x00000000])
3073 m4trace:configure.ac:39: -1- AX_GCC_X86_CPUID_COUNT([0x00000000], [0])
3074 m4trace:configure.ac:39: -1- AX_GCC_X86_CPUID([0x80000000])
3075 m4trace:configure.ac:39: -1- AX_GCC_X86_CPUID_COUNT([0x80000000], [0])
3076 m4trace:configure.ac:39: -1- AX_GCC_X86_CPUID([0x00000001])
3077 m4trace:configure.ac:39: -1- AX_GCC_X86_CPUID_COUNT([0x00000001], [0])
3078 m4trace:configure.ac:39: -1- AX_GCC_X86_CPUID_COUNT([0x00000007], [0x00])
3079 m4trace:configure.ac:39: -1- AX_GCC_X86_CPUID([0x80000001])
3080 m4trace:configure.ac:39: -1- AX_GCC_X86_CPUID_COUNT([0x80000001], [0])
3081 m4trace:configure.ac:39: -1- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
3082 You should run autoupdate.], [../../lib/autoconf/general.m4:2775: AC_TRY_RUN is expanded from...
3083 ../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from...
3084 ../../lib/autoconf/general.m4:2042: AC_CACHE_VAL is expanded from...
3085 /usr/share/aclocal/ax_ext.m4:48: AX_EXT is expanded from...
3086 configure.ac:39: the top level])
3087 m4trace:configure.ac:39: -1- AX_GCC_X86_AVX_XGETBV([0x00000000])
3088 m4trace:configure.ac:39: -1- AX_CHECK_COMPILE_FLAG([${ac_instr_compiler_flags}], [eval ax_cv_support_${ac_instr_acvar}_ext=yes], [eval ax_cv_support_${ac_instr_acvar}_ext=no])
3089 m4trace:configure.ac:39: -1- m4_pattern_allow([^SIMD_FLAGS$])
3090 m4trace:configure.ac:39: -1- m4_pattern_allow([^CPUEXT_FLAGS$])
3091 m4trace:configure.ac:50: -1- m4_pattern_allow([^HAVE_STDLIB_H$])
3092 m4trace:configure.ac:50: -1- m4_pattern_allow([^HAVE_MALLOC$])
3093 m4trace:configure.ac:50: -1- m4_pattern_allow([^HAVE_MALLOC$])
3094 m4trace:configure.ac:50: -1- m4_pattern_allow([^LIB@&t@OBJS$])
3095 m4trace:configure.ac:50: -1- m4_pattern_allow([^malloc$])
3096 m4trace:configure.ac:56: -1- m4_pattern_allow([^LIB@&t@OBJS$])
3097 m4trace:configure.ac:56: -1- m4_pattern_allow([^LTLIBOBJS$])
3098 m4trace:configure.ac:56: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])
3099 m4trace:configure.ac:56: -1- m4_pattern_allow([^am__EXEEXT_TRUE$])
3100 m4trace:configure.ac:56: -1- m4_pattern_allow([^am__EXEEXT_FALSE$])
3101 m4trace:configure.ac:56: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE])
3102 m4trace:configure.ac:56: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE])
3103 m4trace:configure.ac:56: -1- _AC_AM_CONFIG_HEADER_HOOK(["$ac_file"])
3104 m4trace:configure.ac:56: -1- _AM_OUTPUT_DEPENDENCY_COMMANDS
3105 m4trace:configure.ac:56: -1- _LT_PROG_LTMAIN