traces.2 115 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817
  1. m4trace:/usr/share/aclocal/longlong.m4:17: -1- AC_DEFUN([AC_TYPE_LONG_LONG_INT], [
  2. AC_REQUIRE([AC_TYPE_UNSIGNED_LONG_LONG_INT])
  3. AC_CACHE_CHECK([for long long int], [ac_cv_type_long_long_int],
  4. [ac_cv_type_long_long_int=yes
  5. if test "x${ac_cv_prog_cc_c99-no}" = xno; then
  6. ac_cv_type_long_long_int=$ac_cv_type_unsigned_long_long_int
  7. if test $ac_cv_type_long_long_int = yes; then
  8. dnl Catch a bug in Tandem NonStop Kernel (OSS) cc -O circa 2004.
  9. dnl If cross compiling, assume the bug is not important, since
  10. dnl nobody cross compiles for this platform as far as we know.
  11. AC_RUN_IFELSE(
  12. [AC_LANG_PROGRAM(
  13. [[@%:@include <limits.h>
  14. @%:@ifndef LLONG_MAX
  15. @%:@ define HALF \
  16. (1LL << (sizeof (long long int) * CHAR_BIT - 2))
  17. @%:@ define LLONG_MAX (HALF - 1 + HALF)
  18. @%:@endif]],
  19. [[long long int n = 1;
  20. int i;
  21. for (i = 0; ; i++)
  22. {
  23. long long int m = n << i;
  24. if (m >> i != n)
  25. return 1;
  26. if (LLONG_MAX / 2 < m)
  27. break;
  28. }
  29. return 0;]])],
  30. [],
  31. [ac_cv_type_long_long_int=no],
  32. [:])
  33. fi
  34. fi])
  35. if test $ac_cv_type_long_long_int = yes; then
  36. AC_DEFINE([HAVE_LONG_LONG_INT], [1],
  37. [Define to 1 if the system has the type 'long long int'.])
  38. fi
  39. ])
  40. m4trace:/usr/share/aclocal/longlong.m4:67: -1- AC_DEFUN([AC_TYPE_UNSIGNED_LONG_LONG_INT], [
  41. AC_CACHE_CHECK([for unsigned long long int],
  42. [ac_cv_type_unsigned_long_long_int],
  43. [ac_cv_type_unsigned_long_long_int=yes
  44. if test "x${ac_cv_prog_cc_c99-no}" = xno; then
  45. AC_LINK_IFELSE(
  46. [_AC_TYPE_LONG_LONG_SNIPPET],
  47. [],
  48. [ac_cv_type_unsigned_long_long_int=no])
  49. fi])
  50. if test $ac_cv_type_unsigned_long_long_int = yes; then
  51. AC_DEFINE([HAVE_UNSIGNED_LONG_LONG_INT], [1],
  52. [Define to 1 if the system has the type 'unsigned long long int'.])
  53. fi
  54. ])
  55. m4trace:/usr/share/aclocal/longlong.m4:89: -1- AC_DEFUN([_AC_TYPE_LONG_LONG_SNIPPET], [
  56. AC_LANG_PROGRAM(
  57. [[/* For now, do not test the preprocessor; as of 2007 there are too many
  58. implementations with broken preprocessors. Perhaps this can
  59. be revisited in 2012. In the meantime, code should not expect
  60. #if to work with literals wider than 32 bits. */
  61. /* Test literals. */
  62. long long int ll = 9223372036854775807ll;
  63. long long int nll = -9223372036854775807LL;
  64. unsigned long long int ull = 18446744073709551615ULL;
  65. /* Test constant expressions. */
  66. typedef int a[((-9223372036854775807LL < 0 && 0 < 9223372036854775807ll)
  67. ? 1 : -1)];
  68. typedef int b[(18446744073709551615ULL <= (unsigned long long int) -1
  69. ? 1 : -1)];
  70. int i = 63;]],
  71. [[/* Test availability of runtime routines for shift and division. */
  72. long long int llmax = 9223372036854775807ll;
  73. unsigned long long int ullmax = 18446744073709551615ull;
  74. return ((ll << 63) | (ll >> 63) | (ll < i) | (ll > i)
  75. | (llmax / ll) | (llmax % ll)
  76. | (ull << 63) | (ull >> 63) | (ull << i) | (ull >> i)
  77. | (ullmax / ull) | (ullmax % ull));]])
  78. ])
  79. m4trace:/usr/share/aclocal/ltargz.m4:12: -1- AC_DEFUN([LT_FUNC_ARGZ], [
  80. AC_CHECK_HEADERS([argz.h], [], [], [AC_INCLUDES_DEFAULT])
  81. AC_CHECK_TYPES([error_t],
  82. [],
  83. [AC_DEFINE([error_t], [int],
  84. [Define to a type to use for 'error_t' if it is not otherwise available.])
  85. AC_DEFINE([__error_t_defined], [1], [Define so that glibc/gnulib argp.h
  86. does not typedef error_t.])],
  87. [#if defined(HAVE_ARGZ_H)
  88. # include <argz.h>
  89. #endif])
  90. LT_ARGZ_H=
  91. AC_CHECK_FUNCS([argz_add argz_append argz_count argz_create_sep argz_insert \
  92. argz_next argz_stringify], [], [LT_ARGZ_H=lt__argz.h; AC_LIBOBJ([lt__argz])])
  93. dnl if have system argz functions, allow forced use of
  94. dnl libltdl-supplied implementation (and default to do so
  95. dnl on "known bad" systems). Could use a runtime check, but
  96. dnl (a) detecting malloc issues is notoriously unreliable
  97. dnl (b) only known system that declares argz functions,
  98. dnl provides them, yet they are broken, is cygwin
  99. dnl releases prior to 16-Mar-2007 (1.5.24 and earlier)
  100. dnl So, it's more straightforward simply to special case
  101. dnl this for known bad systems.
  102. AS_IF([test -z "$LT_ARGZ_H"],
  103. [AC_CACHE_CHECK(
  104. [if argz actually works],
  105. [lt_cv_sys_argz_works],
  106. [[case $host_os in #(
  107. *cygwin*)
  108. lt_cv_sys_argz_works=no
  109. if test no != "$cross_compiling"; then
  110. lt_cv_sys_argz_works="guessing no"
  111. else
  112. lt_sed_extract_leading_digits='s/^\([0-9\.]*\).*/\1/'
  113. save_IFS=$IFS
  114. IFS=-.
  115. set x `uname -r | sed -e "$lt_sed_extract_leading_digits"`
  116. IFS=$save_IFS
  117. lt_os_major=${2-0}
  118. lt_os_minor=${3-0}
  119. lt_os_micro=${4-0}
  120. if test 1 -lt "$lt_os_major" \
  121. || { test 1 -eq "$lt_os_major" \
  122. && { test 5 -lt "$lt_os_minor" \
  123. || { test 5 -eq "$lt_os_minor" \
  124. && test 24 -lt "$lt_os_micro"; }; }; }; then
  125. lt_cv_sys_argz_works=yes
  126. fi
  127. fi
  128. ;; #(
  129. *) lt_cv_sys_argz_works=yes ;;
  130. esac]])
  131. AS_IF([test yes = "$lt_cv_sys_argz_works"],
  132. [AC_DEFINE([HAVE_WORKING_ARGZ], 1,
  133. [This value is set to 1 to indicate that the system argz facility works])],
  134. [LT_ARGZ_H=lt__argz.h
  135. AC_LIBOBJ([lt__argz])])])
  136. AC_SUBST([LT_ARGZ_H])
  137. ])
  138. m4trace:/usr/share/aclocal/ltdl.m4:16: -1- AC_DEFUN([LT_CONFIG_LTDL_DIR], [AC_BEFORE([$0], [LTDL_INIT])
  139. _$0($*)
  140. ])
  141. m4trace:/usr/share/aclocal/ltdl.m4:68: -1- AC_DEFUN([LTDL_CONVENIENCE], [AC_BEFORE([$0], [LTDL_INIT])dnl
  142. dnl Although the argument is deprecated and no longer documented,
  143. dnl LTDL_CONVENIENCE used to take a DIRECTORY orgument, if we have one
  144. dnl here make sure it is the same as any other declaration of libltdl's
  145. dnl location! This also ensures lt_ltdl_dir is set when configure.ac is
  146. dnl not yet using an explicit LT_CONFIG_LTDL_DIR.
  147. m4_ifval([$1], [_LT_CONFIG_LTDL_DIR([$1])])dnl
  148. _$0()
  149. ])
  150. m4trace:/usr/share/aclocal/ltdl.m4:81: -1- AU_DEFUN([AC_LIBLTDL_CONVENIENCE], [_LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
  151. _LTDL_CONVENIENCE])
  152. m4trace:/usr/share/aclocal/ltdl.m4:81: -1- AC_DEFUN([AC_LIBLTDL_CONVENIENCE], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBLTDL_CONVENIENCE' is obsolete.
  153. You should run autoupdate.])dnl
  154. _LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
  155. _LTDL_CONVENIENCE])
  156. m4trace:/usr/share/aclocal/ltdl.m4:124: -1- AC_DEFUN([LTDL_INSTALLABLE], [AC_BEFORE([$0], [LTDL_INIT])dnl
  157. dnl Although the argument is deprecated and no longer documented,
  158. dnl LTDL_INSTALLABLE used to take a DIRECTORY orgument, if we have one
  159. dnl here make sure it is the same as any other declaration of libltdl's
  160. dnl location! This also ensures lt_ltdl_dir is set when configure.ac is
  161. dnl not yet using an explicit LT_CONFIG_LTDL_DIR.
  162. m4_ifval([$1], [_LT_CONFIG_LTDL_DIR([$1])])dnl
  163. _$0()
  164. ])
  165. m4trace:/usr/share/aclocal/ltdl.m4:137: -1- AU_DEFUN([AC_LIBLTDL_INSTALLABLE], [_LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
  166. _LTDL_INSTALLABLE])
  167. m4trace:/usr/share/aclocal/ltdl.m4:137: -1- AC_DEFUN([AC_LIBLTDL_INSTALLABLE], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBLTDL_INSTALLABLE' is obsolete.
  168. You should run autoupdate.])dnl
  169. _LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
  170. _LTDL_INSTALLABLE])
  171. m4trace:/usr/share/aclocal/ltdl.m4:213: -1- AC_DEFUN([_LT_LIBOBJ], [
  172. m4_pattern_allow([^_LT_LIBOBJS$])
  173. _LT_LIBOBJS="$_LT_LIBOBJS $1.$ac_objext"
  174. ])
  175. m4trace:/usr/share/aclocal/ltdl.m4:226: -1- AC_DEFUN([LTDL_INIT], [dnl Parse OPTIONS
  176. _LT_SET_OPTIONS([$0], [$1])
  177. dnl We need to keep our own list of libobjs separate from our parent project,
  178. dnl and the easiest way to do that is redefine the AC_LIBOBJs macro while
  179. dnl we look for our own LIBOBJs.
  180. m4_pushdef([AC_LIBOBJ], m4_defn([_LT_LIBOBJ]))
  181. m4_pushdef([AC_LIBSOURCES])
  182. dnl If not otherwise defined, default to the 1.5.x compatible subproject mode:
  183. m4_if(_LTDL_MODE, [],
  184. [m4_define([_LTDL_MODE], m4_default([$2], [subproject]))
  185. m4_if([-1], [m4_bregexp(_LTDL_MODE, [\(subproject\|\(non\)?recursive\)])],
  186. [m4_fatal([unknown libltdl mode: ]_LTDL_MODE)])])
  187. AC_ARG_WITH([included_ltdl],
  188. [AS_HELP_STRING([--with-included-ltdl],
  189. [use the GNU ltdl sources included here])])
  190. if test yes != "$with_included_ltdl"; then
  191. # We are not being forced to use the included libltdl sources, so
  192. # decide whether there is a useful installed version we can use.
  193. AC_CHECK_HEADER([ltdl.h],
  194. [AC_CHECK_DECL([lt_dlinterface_register],
  195. [AC_CHECK_LIB([ltdl], [lt_dladvise_preload],
  196. [with_included_ltdl=no],
  197. [with_included_ltdl=yes])],
  198. [with_included_ltdl=yes],
  199. [AC_INCLUDES_DEFAULT
  200. #include <ltdl.h>])],
  201. [with_included_ltdl=yes],
  202. [AC_INCLUDES_DEFAULT]
  203. )
  204. fi
  205. dnl If neither LT_CONFIG_LTDL_DIR, LTDL_CONVENIENCE nor LTDL_INSTALLABLE
  206. dnl was called yet, then for old times' sake, we assume libltdl is in an
  207. dnl eponymous directory:
  208. AC_PROVIDE_IFELSE([LT_CONFIG_LTDL_DIR], [], [_LT_CONFIG_LTDL_DIR([libltdl])])
  209. AC_ARG_WITH([ltdl_include],
  210. [AS_HELP_STRING([--with-ltdl-include=DIR],
  211. [use the ltdl headers installed in DIR])])
  212. if test -n "$with_ltdl_include"; then
  213. if test -f "$with_ltdl_include/ltdl.h"; then :
  214. else
  215. AC_MSG_ERROR([invalid ltdl include directory: '$with_ltdl_include'])
  216. fi
  217. else
  218. with_ltdl_include=no
  219. fi
  220. AC_ARG_WITH([ltdl_lib],
  221. [AS_HELP_STRING([--with-ltdl-lib=DIR],
  222. [use the libltdl.la installed in DIR])])
  223. if test -n "$with_ltdl_lib"; then
  224. if test -f "$with_ltdl_lib/libltdl.la"; then :
  225. else
  226. AC_MSG_ERROR([invalid ltdl library directory: '$with_ltdl_lib'])
  227. fi
  228. else
  229. with_ltdl_lib=no
  230. fi
  231. case ,$with_included_ltdl,$with_ltdl_include,$with_ltdl_lib, in
  232. ,yes,no,no,)
  233. m4_case(m4_default(_LTDL_TYPE, [convenience]),
  234. [convenience], [_LTDL_CONVENIENCE],
  235. [installable], [_LTDL_INSTALLABLE],
  236. [m4_fatal([unknown libltdl build type: ]_LTDL_TYPE)])
  237. ;;
  238. ,no,no,no,)
  239. # If the included ltdl is not to be used, then use the
  240. # preinstalled libltdl we found.
  241. AC_DEFINE([HAVE_LTDL], [1],
  242. [Define this if a modern libltdl is already installed])
  243. LIBLTDL=-lltdl
  244. LTDLDEPS=
  245. LTDLINCL=
  246. ;;
  247. ,no*,no,*)
  248. AC_MSG_ERROR(['--with-ltdl-include' and '--with-ltdl-lib' options must be used together])
  249. ;;
  250. *) with_included_ltdl=no
  251. LIBLTDL="-L$with_ltdl_lib -lltdl"
  252. LTDLDEPS=
  253. LTDLINCL=-I$with_ltdl_include
  254. ;;
  255. esac
  256. INCLTDL=$LTDLINCL
  257. # Report our decision...
  258. AC_MSG_CHECKING([where to find libltdl headers])
  259. AC_MSG_RESULT([$LTDLINCL])
  260. AC_MSG_CHECKING([where to find libltdl library])
  261. AC_MSG_RESULT([$LIBLTDL])
  262. _LTDL_SETUP
  263. dnl restore autoconf definition.
  264. m4_popdef([AC_LIBOBJ])
  265. m4_popdef([AC_LIBSOURCES])
  266. AC_CONFIG_COMMANDS_PRE([
  267. _ltdl_libobjs=
  268. _ltdl_ltlibobjs=
  269. if test -n "$_LT_LIBOBJS"; then
  270. # Remove the extension.
  271. _lt_sed_drop_objext='s/\.o$//;s/\.obj$//'
  272. for i in `for i in $_LT_LIBOBJS; do echo "$i"; done | sed "$_lt_sed_drop_objext" | sort -u`; do
  273. _ltdl_libobjs="$_ltdl_libobjs $lt_libobj_prefix$i.$ac_objext"
  274. _ltdl_ltlibobjs="$_ltdl_ltlibobjs $lt_libobj_prefix$i.lo"
  275. done
  276. fi
  277. AC_SUBST([ltdl_LIBOBJS], [$_ltdl_libobjs])
  278. AC_SUBST([ltdl_LTLIBOBJS], [$_ltdl_ltlibobjs])
  279. ])
  280. # Only expand once:
  281. m4_define([LTDL_INIT])
  282. ])
  283. m4trace:/usr/share/aclocal/ltdl.m4:352: -1- AU_DEFUN([AC_LIB_LTDL], [LTDL_INIT($@)])
  284. m4trace:/usr/share/aclocal/ltdl.m4:352: -1- AC_DEFUN([AC_LIB_LTDL], [AC_DIAGNOSE([obsolete], [The macro `AC_LIB_LTDL' is obsolete.
  285. You should run autoupdate.])dnl
  286. LTDL_INIT($@)])
  287. m4trace:/usr/share/aclocal/ltdl.m4:353: -1- AU_DEFUN([AC_WITH_LTDL], [LTDL_INIT($@)])
  288. m4trace:/usr/share/aclocal/ltdl.m4:353: -1- AC_DEFUN([AC_WITH_LTDL], [AC_DIAGNOSE([obsolete], [The macro `AC_WITH_LTDL' is obsolete.
  289. You should run autoupdate.])dnl
  290. LTDL_INIT($@)])
  291. m4trace:/usr/share/aclocal/ltdl.m4:354: -1- AU_DEFUN([LT_WITH_LTDL], [LTDL_INIT($@)])
  292. m4trace:/usr/share/aclocal/ltdl.m4:354: -1- AC_DEFUN([LT_WITH_LTDL], [AC_DIAGNOSE([obsolete], [The macro `LT_WITH_LTDL' is obsolete.
  293. You should run autoupdate.])dnl
  294. LTDL_INIT($@)])
  295. m4trace:/usr/share/aclocal/ltdl.m4:367: -1- AC_DEFUN([_LTDL_SETUP], [AC_REQUIRE([AC_PROG_CC])dnl
  296. AC_REQUIRE([LT_SYS_MODULE_EXT])dnl
  297. AC_REQUIRE([LT_SYS_MODULE_PATH])dnl
  298. AC_REQUIRE([LT_SYS_DLSEARCH_PATH])dnl
  299. AC_REQUIRE([LT_LIB_DLLOAD])dnl
  300. AC_REQUIRE([LT_SYS_SYMBOL_USCORE])dnl
  301. AC_REQUIRE([LT_FUNC_DLSYM_USCORE])dnl
  302. AC_REQUIRE([LT_SYS_DLOPEN_DEPLIBS])dnl
  303. AC_REQUIRE([LT_FUNC_ARGZ])dnl
  304. m4_require([_LT_CHECK_OBJDIR])dnl
  305. m4_require([_LT_HEADER_DLFCN])dnl
  306. m4_require([_LT_CHECK_DLPREOPEN])dnl
  307. m4_require([_LT_DECL_SED])dnl
  308. dnl Don't require this, or it will be expanded earlier than the code
  309. dnl that sets the variables it relies on:
  310. _LT_ENABLE_INSTALL
  311. dnl _LTDL_MODE specific code must be called at least once:
  312. _LTDL_MODE_DISPATCH
  313. # In order that ltdl.c can compile, find out the first AC_CONFIG_HEADERS
  314. # the user used. This is so that ltdl.h can pick up the parent projects
  315. # config.h file, The first file in AC_CONFIG_HEADERS must contain the
  316. # definitions required by ltdl.c.
  317. # FIXME: Remove use of undocumented AC_LIST_HEADERS (2.59 compatibility).
  318. AC_CONFIG_COMMANDS_PRE([dnl
  319. m4_pattern_allow([^LT_CONFIG_H$])dnl
  320. m4_ifset([AH_HEADER],
  321. [LT_CONFIG_H=AH_HEADER],
  322. [m4_ifset([AC_LIST_HEADERS],
  323. [LT_CONFIG_H=`echo "AC_LIST_HEADERS" | $SED 's|^[[ ]]*||;s|[[ :]].*$||'`],
  324. [])])])
  325. AC_SUBST([LT_CONFIG_H])
  326. AC_CHECK_HEADERS([unistd.h dl.h sys/dl.h dld.h mach-o/dyld.h dirent.h],
  327. [], [], [AC_INCLUDES_DEFAULT])
  328. AC_CHECK_FUNCS([closedir opendir readdir], [], [AC_LIBOBJ([lt__dirent])])
  329. AC_CHECK_FUNCS([strlcat strlcpy], [], [AC_LIBOBJ([lt__strl])])
  330. m4_pattern_allow([LT_LIBEXT])dnl
  331. AC_DEFINE_UNQUOTED([LT_LIBEXT],["$libext"],[The archive extension])
  332. name=
  333. eval "lt_libprefix=\"$libname_spec\""
  334. m4_pattern_allow([LT_LIBPREFIX])dnl
  335. AC_DEFINE_UNQUOTED([LT_LIBPREFIX],["$lt_libprefix"],[The archive prefix])
  336. name=ltdl
  337. eval "LTDLOPEN=\"$libname_spec\""
  338. AC_SUBST([LTDLOPEN])
  339. ])
  340. m4trace:/usr/share/aclocal/ltdl.m4:443: -1- AC_DEFUN([LT_SYS_DLOPEN_DEPLIBS], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
  341. AC_CACHE_CHECK([whether deplibs are loaded by dlopen],
  342. [lt_cv_sys_dlopen_deplibs],
  343. [# PORTME does your system automatically load deplibs for dlopen?
  344. # or its logical equivalent (e.g. shl_load for HP-UX < 11)
  345. # For now, we just catch OSes we know something about -- in the
  346. # future, we'll try test this programmatically.
  347. lt_cv_sys_dlopen_deplibs=unknown
  348. case $host_os in
  349. aix3*|aix4.1.*|aix4.2.*)
  350. # Unknown whether this is true for these versions of AIX, but
  351. # we want this 'case' here to explicitly catch those versions.
  352. lt_cv_sys_dlopen_deplibs=unknown
  353. ;;
  354. aix[[4-9]]*)
  355. lt_cv_sys_dlopen_deplibs=yes
  356. ;;
  357. amigaos*)
  358. case $host_cpu in
  359. powerpc)
  360. lt_cv_sys_dlopen_deplibs=no
  361. ;;
  362. esac
  363. ;;
  364. bitrig*)
  365. lt_cv_sys_dlopen_deplibs=yes
  366. ;;
  367. darwin*)
  368. # Assuming the user has installed a libdl from somewhere, this is true
  369. # If you are looking for one http://www.opendarwin.org/projects/dlcompat
  370. lt_cv_sys_dlopen_deplibs=yes
  371. ;;
  372. freebsd* | dragonfly*)
  373. lt_cv_sys_dlopen_deplibs=yes
  374. ;;
  375. gnu* | linux* | k*bsd*-gnu | kopensolaris*-gnu)
  376. # GNU and its variants, using gnu ld.so (Glibc)
  377. lt_cv_sys_dlopen_deplibs=yes
  378. ;;
  379. hpux10*|hpux11*)
  380. lt_cv_sys_dlopen_deplibs=yes
  381. ;;
  382. interix*)
  383. lt_cv_sys_dlopen_deplibs=yes
  384. ;;
  385. irix[[12345]]*|irix6.[[01]]*)
  386. # Catch all versions of IRIX before 6.2, and indicate that we don't
  387. # know how it worked for any of those versions.
  388. lt_cv_sys_dlopen_deplibs=unknown
  389. ;;
  390. irix*)
  391. # The case above catches anything before 6.2, and it's known that
  392. # at 6.2 and later dlopen does load deplibs.
  393. lt_cv_sys_dlopen_deplibs=yes
  394. ;;
  395. netbsd* | netbsdelf*-gnu)
  396. lt_cv_sys_dlopen_deplibs=yes
  397. ;;
  398. openbsd*)
  399. lt_cv_sys_dlopen_deplibs=yes
  400. ;;
  401. osf[[1234]]*)
  402. # dlopen did load deplibs (at least at 4.x), but until the 5.x series,
  403. # it did *not* use an RPATH in a shared library to find objects the
  404. # library depends on, so we explicitly say 'no'.
  405. lt_cv_sys_dlopen_deplibs=no
  406. ;;
  407. osf5.0|osf5.0a|osf5.1)
  408. # dlopen *does* load deplibs and with the right loader patch applied
  409. # it even uses RPATH in a shared library to search for shared objects
  410. # that the library depends on, but there's no easy way to know if that
  411. # patch is installed. Since this is the case, all we can really
  412. # say is unknown -- it depends on the patch being installed. If
  413. # it is, this changes to 'yes'. Without it, it would be 'no'.
  414. lt_cv_sys_dlopen_deplibs=unknown
  415. ;;
  416. osf*)
  417. # the two cases above should catch all versions of osf <= 5.1. Read
  418. # the comments above for what we know about them.
  419. # At > 5.1, deplibs are loaded *and* any RPATH in a shared library
  420. # is used to find them so we can finally say 'yes'.
  421. lt_cv_sys_dlopen_deplibs=yes
  422. ;;
  423. qnx*)
  424. lt_cv_sys_dlopen_deplibs=yes
  425. ;;
  426. solaris*)
  427. lt_cv_sys_dlopen_deplibs=yes
  428. ;;
  429. sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
  430. libltdl_cv_sys_dlopen_deplibs=yes
  431. ;;
  432. esac
  433. ])
  434. if test yes != "$lt_cv_sys_dlopen_deplibs"; then
  435. AC_DEFINE([LTDL_DLOPEN_DEPLIBS], [1],
  436. [Define if the OS needs help to load dependent libraries for dlopen().])
  437. fi
  438. ])
  439. 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($@)])])
  440. 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.
  441. You should run autoupdate.])dnl
  442. m4_if($#, 0, [LT_SYS_DLOPEN_DEPLIBS], [LT_SYS_DLOPEN_DEPLIBS($@)])])
  443. m4trace:/usr/share/aclocal/ltdl.m4:552: -1- AC_DEFUN([LT_SYS_MODULE_EXT], [m4_require([_LT_SYS_DYNAMIC_LINKER])dnl
  444. AC_CACHE_CHECK([what extension is used for runtime loadable modules],
  445. [libltdl_cv_shlibext],
  446. [
  447. module=yes
  448. eval libltdl_cv_shlibext=$shrext_cmds
  449. module=no
  450. eval libltdl_cv_shrext=$shrext_cmds
  451. ])
  452. if test -n "$libltdl_cv_shlibext"; then
  453. m4_pattern_allow([LT_MODULE_EXT])dnl
  454. AC_DEFINE_UNQUOTED([LT_MODULE_EXT], ["$libltdl_cv_shlibext"],
  455. [Define to the extension used for runtime loadable modules, say, ".so".])
  456. fi
  457. if test "$libltdl_cv_shrext" != "$libltdl_cv_shlibext"; then
  458. m4_pattern_allow([LT_SHARED_EXT])dnl
  459. AC_DEFINE_UNQUOTED([LT_SHARED_EXT], ["$libltdl_cv_shrext"],
  460. [Define to the shared library suffix, say, ".dylib".])
  461. fi
  462. if test -n "$shared_archive_member_spec"; then
  463. m4_pattern_allow([LT_SHARED_LIB_MEMBER])dnl
  464. AC_DEFINE_UNQUOTED([LT_SHARED_LIB_MEMBER], ["($shared_archive_member_spec.o)"],
  465. [Define to the shared archive member specification, say "(shr.o)".])
  466. fi
  467. ])
  468. m4trace:/usr/share/aclocal/ltdl.m4:580: -1- AU_DEFUN([AC_LTDL_SHLIBEXT], [m4_if($#, 0, [LT_SYS_MODULE_EXT], [LT_SYS_MODULE_EXT($@)])])
  469. m4trace:/usr/share/aclocal/ltdl.m4:580: -1- AC_DEFUN([AC_LTDL_SHLIBEXT], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SHLIBEXT' is obsolete.
  470. You should run autoupdate.])dnl
  471. m4_if($#, 0, [LT_SYS_MODULE_EXT], [LT_SYS_MODULE_EXT($@)])])
  472. m4trace:/usr/share/aclocal/ltdl.m4:587: -1- AC_DEFUN([LT_SYS_MODULE_PATH], [m4_require([_LT_SYS_DYNAMIC_LINKER])dnl
  473. AC_CACHE_CHECK([what variable specifies run-time module search path],
  474. [lt_cv_module_path_var], [lt_cv_module_path_var=$shlibpath_var])
  475. if test -n "$lt_cv_module_path_var"; then
  476. m4_pattern_allow([LT_MODULE_PATH_VAR])dnl
  477. AC_DEFINE_UNQUOTED([LT_MODULE_PATH_VAR], ["$lt_cv_module_path_var"],
  478. [Define to the name of the environment variable that determines the run-time module search path.])
  479. fi
  480. ])
  481. m4trace:/usr/share/aclocal/ltdl.m4:599: -1- AU_DEFUN([AC_LTDL_SHLIBPATH], [m4_if($#, 0, [LT_SYS_MODULE_PATH], [LT_SYS_MODULE_PATH($@)])])
  482. m4trace:/usr/share/aclocal/ltdl.m4:599: -1- AC_DEFUN([AC_LTDL_SHLIBPATH], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SHLIBPATH' is obsolete.
  483. You should run autoupdate.])dnl
  484. m4_if($#, 0, [LT_SYS_MODULE_PATH], [LT_SYS_MODULE_PATH($@)])])
  485. m4trace:/usr/share/aclocal/ltdl.m4:606: -1- AC_DEFUN([LT_SYS_DLSEARCH_PATH], [m4_require([_LT_SYS_DYNAMIC_LINKER])dnl
  486. AC_CACHE_CHECK([for the default library search path],
  487. [lt_cv_sys_dlsearch_path],
  488. [lt_cv_sys_dlsearch_path=$sys_lib_dlsearch_path_spec])
  489. if test -n "$lt_cv_sys_dlsearch_path"; then
  490. sys_dlsearch_path=
  491. for dir in $lt_cv_sys_dlsearch_path; do
  492. if test -z "$sys_dlsearch_path"; then
  493. sys_dlsearch_path=$dir
  494. else
  495. sys_dlsearch_path=$sys_dlsearch_path$PATH_SEPARATOR$dir
  496. fi
  497. done
  498. m4_pattern_allow([LT_DLSEARCH_PATH])dnl
  499. AC_DEFINE_UNQUOTED([LT_DLSEARCH_PATH], ["$sys_dlsearch_path"],
  500. [Define to the system default library search path.])
  501. fi
  502. ])
  503. m4trace:/usr/share/aclocal/ltdl.m4:627: -1- AU_DEFUN([AC_LTDL_SYSSEARCHPATH], [m4_if($#, 0, [LT_SYS_DLSEARCH_PATH], [LT_SYS_DLSEARCH_PATH($@)])])
  504. m4trace:/usr/share/aclocal/ltdl.m4:627: -1- AC_DEFUN([AC_LTDL_SYSSEARCHPATH], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SYSSEARCHPATH' is obsolete.
  505. You should run autoupdate.])dnl
  506. m4_if($#, 0, [LT_SYS_DLSEARCH_PATH], [LT_SYS_DLSEARCH_PATH($@)])])
  507. m4trace:/usr/share/aclocal/ltdl.m4:653: -1- AC_DEFUN([LT_LIB_DLLOAD], [m4_pattern_allow([^LT_DLLOADERS$])
  508. LT_DLLOADERS=
  509. AC_SUBST([LT_DLLOADERS])
  510. AC_LANG_PUSH([C])
  511. lt_dlload_save_LIBS=$LIBS
  512. LIBADD_DLOPEN=
  513. AC_SEARCH_LIBS([dlopen], [dl],
  514. [AC_DEFINE([HAVE_LIBDL], [1],
  515. [Define if you have the libdl library or equivalent.])
  516. if test "$ac_cv_search_dlopen" != "none required"; then
  517. LIBADD_DLOPEN=-ldl
  518. fi
  519. libltdl_cv_lib_dl_dlopen=yes
  520. LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"],
  521. [AC_LINK_IFELSE([AC_LANG_PROGRAM([[#if HAVE_DLFCN_H
  522. # include <dlfcn.h>
  523. #endif
  524. ]], [[dlopen(0, 0);]])],
  525. [AC_DEFINE([HAVE_LIBDL], [1],
  526. [Define if you have the libdl library or equivalent.])
  527. libltdl_cv_func_dlopen=yes
  528. LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"],
  529. [AC_CHECK_LIB([svld], [dlopen],
  530. [AC_DEFINE([HAVE_LIBDL], [1],
  531. [Define if you have the libdl library or equivalent.])
  532. LIBADD_DLOPEN=-lsvld libltdl_cv_func_dlopen=yes
  533. LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"])])])
  534. if test yes = "$libltdl_cv_func_dlopen" || test yes = "$libltdl_cv_lib_dl_dlopen"
  535. then
  536. lt_save_LIBS=$LIBS
  537. LIBS="$LIBS $LIBADD_DLOPEN"
  538. AC_CHECK_FUNCS([dlerror])
  539. LIBS=$lt_save_LIBS
  540. fi
  541. AC_SUBST([LIBADD_DLOPEN])
  542. LIBADD_SHL_LOAD=
  543. AC_CHECK_FUNC([shl_load],
  544. [AC_DEFINE([HAVE_SHL_LOAD], [1],
  545. [Define if you have the shl_load function.])
  546. LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}shl_load.la"],
  547. [AC_CHECK_LIB([dld], [shl_load],
  548. [AC_DEFINE([HAVE_SHL_LOAD], [1],
  549. [Define if you have the shl_load function.])
  550. LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}shl_load.la"
  551. LIBADD_SHL_LOAD=-ldld])])
  552. AC_SUBST([LIBADD_SHL_LOAD])
  553. case $host_os in
  554. darwin[[1567]].*)
  555. # We only want this for pre-Mac OS X 10.4.
  556. AC_CHECK_FUNC([_dyld_func_lookup],
  557. [AC_DEFINE([HAVE_DYLD], [1],
  558. [Define if you have the _dyld_func_lookup function.])
  559. LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dyld.la"])
  560. ;;
  561. beos*)
  562. LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}load_add_on.la"
  563. ;;
  564. cygwin* | mingw* | pw32*)
  565. AC_CHECK_DECLS([cygwin_conv_path], [], [], [[#include <sys/cygwin.h>]])
  566. LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}loadlibrary.la"
  567. ;;
  568. esac
  569. AC_CHECK_LIB([dld], [dld_link],
  570. [AC_DEFINE([HAVE_DLD], [1],
  571. [Define if you have the GNU dld library.])
  572. LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dld_link.la"])
  573. AC_SUBST([LIBADD_DLD_LINK])
  574. m4_pattern_allow([^LT_DLPREOPEN$])
  575. LT_DLPREOPEN=
  576. if test -n "$LT_DLLOADERS"
  577. then
  578. for lt_loader in $LT_DLLOADERS; do
  579. LT_DLPREOPEN="$LT_DLPREOPEN-dlpreopen $lt_loader "
  580. done
  581. AC_DEFINE([HAVE_LIBDLLOADER], [1],
  582. [Define if libdlloader will be built on this platform])
  583. fi
  584. AC_SUBST([LT_DLPREOPEN])
  585. dnl This isn't used anymore, but set it for backwards compatibility
  586. LIBADD_DL="$LIBADD_DLOPEN $LIBADD_SHL_LOAD"
  587. AC_SUBST([LIBADD_DL])
  588. LIBS=$lt_dlload_save_LIBS
  589. AC_LANG_POP
  590. ])
  591. m4trace:/usr/share/aclocal/ltdl.m4:748: -1- AU_DEFUN([AC_LTDL_DLLIB], [m4_if($#, 0, [LT_LIB_DLLOAD], [LT_LIB_DLLOAD($@)])])
  592. m4trace:/usr/share/aclocal/ltdl.m4:748: -1- AC_DEFUN([AC_LTDL_DLLIB], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_DLLIB' is obsolete.
  593. You should run autoupdate.])dnl
  594. m4_if($#, 0, [LT_LIB_DLLOAD], [LT_LIB_DLLOAD($@)])])
  595. m4trace:/usr/share/aclocal/ltdl.m4:756: -1- AC_DEFUN([LT_SYS_SYMBOL_USCORE], [m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl
  596. AC_CACHE_CHECK([for _ prefix in compiled symbols],
  597. [lt_cv_sys_symbol_underscore],
  598. [lt_cv_sys_symbol_underscore=no
  599. cat > conftest.$ac_ext <<_LT_EOF
  600. void nm_test_func(){}
  601. int main(){nm_test_func;return 0;}
  602. _LT_EOF
  603. if AC_TRY_EVAL(ac_compile); then
  604. # Now try to grab the symbols.
  605. ac_nlist=conftest.nm
  606. if AC_TRY_EVAL(NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $ac_nlist) && test -s "$ac_nlist"; then
  607. # See whether the symbols have a leading underscore.
  608. if grep '^. _nm_test_func' "$ac_nlist" >/dev/null; then
  609. lt_cv_sys_symbol_underscore=yes
  610. else
  611. if grep '^. nm_test_func ' "$ac_nlist" >/dev/null; then
  612. :
  613. else
  614. echo "configure: cannot find nm_test_func in $ac_nlist" >&AS_MESSAGE_LOG_FD
  615. fi
  616. fi
  617. else
  618. echo "configure: cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD
  619. fi
  620. else
  621. echo "configure: failed program was:" >&AS_MESSAGE_LOG_FD
  622. cat conftest.c >&AS_MESSAGE_LOG_FD
  623. fi
  624. rm -rf conftest*
  625. ])
  626. sys_symbol_underscore=$lt_cv_sys_symbol_underscore
  627. AC_SUBST([sys_symbol_underscore])
  628. ])
  629. 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($@)])])
  630. 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.
  631. You should run autoupdate.])dnl
  632. m4_if($#, 0, [LT_SYS_SYMBOL_USCORE], [LT_SYS_SYMBOL_USCORE($@)])])
  633. 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
  634. AC_REQUIRE([LT_SYS_SYMBOL_USCORE])dnl for lt_cv_sys_symbol_underscore
  635. AC_REQUIRE([LT_SYS_MODULE_EXT])dnl for libltdl_cv_shlibext
  636. if test yes = "$lt_cv_sys_symbol_underscore"; then
  637. if test yes = "$libltdl_cv_func_dlopen" || test yes = "$libltdl_cv_lib_dl_dlopen"; then
  638. AC_CACHE_CHECK([whether we have to add an underscore for dlsym],
  639. [libltdl_cv_need_uscore],
  640. [libltdl_cv_need_uscore=unknown
  641. dlsym_uscore_save_LIBS=$LIBS
  642. LIBS="$LIBS $LIBADD_DLOPEN"
  643. libname=conftmod # stay within 8.3 filename limits!
  644. cat >$libname.$ac_ext <<_LT_EOF
  645. [#line $LINENO "configure"
  646. #include "confdefs.h"
  647. /* When -fvisibility=hidden is used, assume the code has been annotated
  648. correspondingly for the symbols needed. */
  649. #if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3))
  650. int fnord () __attribute__((visibility("default")));
  651. #endif
  652. int fnord () { return 42; }]
  653. _LT_EOF
  654. # ltfn_module_cmds module_cmds
  655. # Execute tilde-delimited MODULE_CMDS with environment primed for
  656. # $module_cmds or $archive_cmds type content.
  657. ltfn_module_cmds ()
  658. {( # subshell avoids polluting parent global environment
  659. module_cmds_save_ifs=$IFS; IFS='~'
  660. for cmd in @S|@1; do
  661. IFS=$module_cmds_save_ifs
  662. libobjs=$libname.$ac_objext; lib=$libname$libltdl_cv_shlibext
  663. rpath=/not-exists; soname=$libname$libltdl_cv_shlibext; output_objdir=.
  664. major=; versuffix=; verstring=; deplibs=
  665. ECHO=echo; wl=$lt_prog_compiler_wl; allow_undefined_flag=
  666. eval $cmd
  667. done
  668. IFS=$module_cmds_save_ifs
  669. )}
  670. # Compile a loadable module using libtool macro expansion results.
  671. $CC $pic_flag -c $libname.$ac_ext
  672. ltfn_module_cmds "${module_cmds:-$archive_cmds}"
  673. # Try to fetch fnord with dlsym().
  674. libltdl_dlunknown=0; libltdl_dlnouscore=1; libltdl_dluscore=2
  675. cat >conftest.$ac_ext <<_LT_EOF
  676. [#line $LINENO "configure"
  677. #include "confdefs.h"
  678. #if HAVE_DLFCN_H
  679. #include <dlfcn.h>
  680. #endif
  681. #include <stdio.h>
  682. #ifndef RTLD_GLOBAL
  683. # ifdef DL_GLOBAL
  684. # define RTLD_GLOBAL DL_GLOBAL
  685. # else
  686. # define RTLD_GLOBAL 0
  687. # endif
  688. #endif
  689. #ifndef RTLD_NOW
  690. # ifdef DL_NOW
  691. # define RTLD_NOW DL_NOW
  692. # else
  693. # define RTLD_NOW 0
  694. # endif
  695. #endif
  696. int main () {
  697. void *handle = dlopen ("`pwd`/$libname$libltdl_cv_shlibext", RTLD_GLOBAL|RTLD_NOW);
  698. int status = $libltdl_dlunknown;
  699. if (handle) {
  700. if (dlsym (handle, "fnord"))
  701. status = $libltdl_dlnouscore;
  702. else {
  703. if (dlsym (handle, "_fnord"))
  704. status = $libltdl_dluscore;
  705. else
  706. puts (dlerror ());
  707. }
  708. dlclose (handle);
  709. } else
  710. puts (dlerror ());
  711. return status;
  712. }]
  713. _LT_EOF
  714. if AC_TRY_EVAL(ac_link) && test -s "conftest$ac_exeext" 2>/dev/null; then
  715. (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null
  716. libltdl_status=$?
  717. case x$libltdl_status in
  718. x$libltdl_dlnouscore) libltdl_cv_need_uscore=no ;;
  719. x$libltdl_dluscore) libltdl_cv_need_uscore=yes ;;
  720. x*) libltdl_cv_need_uscore=unknown ;;
  721. esac
  722. fi
  723. rm -rf conftest* $libname*
  724. LIBS=$dlsym_uscore_save_LIBS
  725. ])
  726. fi
  727. fi
  728. if test yes = "$libltdl_cv_need_uscore"; then
  729. AC_DEFINE([NEED_USCORE], [1],
  730. [Define if dlsym() requires a leading underscore in symbol names.])
  731. fi
  732. ])
  733. 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($@)])])
  734. 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.
  735. You should run autoupdate.])dnl
  736. m4_if($#, 0, [LT_FUNC_DLSYM_USCORE], [LT_FUNC_DLSYM_USCORE($@)])])
  737. m4trace:/usr/share/aclocal-1.15/amversion.m4:14: -1- AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.15'
  738. dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
  739. dnl require some minimum version. Point them to the right macro.
  740. m4_if([$1], [1.15], [],
  741. [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
  742. ])
  743. m4trace:/usr/share/aclocal-1.15/amversion.m4:33: -1- AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.15])dnl
  744. m4_ifndef([AC_AUTOCONF_VERSION],
  745. [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
  746. _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
  747. m4trace:/usr/share/aclocal-1.15/auxdir.m4:47: -1- AC_DEFUN([AM_AUX_DIR_EXPAND], [AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl
  748. # Expand $ac_aux_dir to an absolute path.
  749. am_aux_dir=`cd "$ac_aux_dir" && pwd`
  750. ])
  751. m4trace:/usr/share/aclocal-1.15/cond.m4:12: -1- AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ([2.52])dnl
  752. m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])],
  753. [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
  754. AC_SUBST([$1_TRUE])dnl
  755. AC_SUBST([$1_FALSE])dnl
  756. _AM_SUBST_NOTMAKE([$1_TRUE])dnl
  757. _AM_SUBST_NOTMAKE([$1_FALSE])dnl
  758. m4_define([_AM_COND_VALUE_$1], [$2])dnl
  759. if $2; then
  760. $1_TRUE=
  761. $1_FALSE='#'
  762. else
  763. $1_TRUE='#'
  764. $1_FALSE=
  765. fi
  766. AC_CONFIG_COMMANDS_PRE(
  767. [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
  768. AC_MSG_ERROR([[conditional "$1" was never defined.
  769. Usually this means the macro was only invoked conditionally.]])
  770. fi])])
  771. m4trace:/usr/share/aclocal-1.15/depend.m4:26: -1- AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl
  772. AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
  773. AC_REQUIRE([AM_MAKE_INCLUDE])dnl
  774. AC_REQUIRE([AM_DEP_TRACK])dnl
  775. m4_if([$1], [CC], [depcc="$CC" am_compiler_list=],
  776. [$1], [CXX], [depcc="$CXX" am_compiler_list=],
  777. [$1], [OBJC], [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
  778. [$1], [OBJCXX], [depcc="$OBJCXX" am_compiler_list='gcc3 gcc'],
  779. [$1], [UPC], [depcc="$UPC" am_compiler_list=],
  780. [$1], [GCJ], [depcc="$GCJ" am_compiler_list='gcc3 gcc'],
  781. [depcc="$$1" am_compiler_list=])
  782. AC_CACHE_CHECK([dependency style of $depcc],
  783. [am_cv_$1_dependencies_compiler_type],
  784. [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
  785. # We make a subdir and do the tests there. Otherwise we can end up
  786. # making bogus files that we don't know about and never remove. For
  787. # instance it was reported that on HP-UX the gcc test will end up
  788. # making a dummy file named 'D' -- because '-MD' means "put the output
  789. # in D".
  790. rm -rf conftest.dir
  791. mkdir conftest.dir
  792. # Copy depcomp to subdir because otherwise we won't find it if we're
  793. # using a relative directory.
  794. cp "$am_depcomp" conftest.dir
  795. cd conftest.dir
  796. # We will build objects and dependencies in a subdirectory because
  797. # it helps to detect inapplicable dependency modes. For instance
  798. # both Tru64's cc and ICC support -MD to output dependencies as a
  799. # side effect of compilation, but ICC will put the dependencies in
  800. # the current directory while Tru64 will put them in the object
  801. # directory.
  802. mkdir sub
  803. am_cv_$1_dependencies_compiler_type=none
  804. if test "$am_compiler_list" = ""; then
  805. am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
  806. fi
  807. am__universal=false
  808. m4_case([$1], [CC],
  809. [case " $depcc " in #(
  810. *\ -arch\ *\ -arch\ *) am__universal=true ;;
  811. esac],
  812. [CXX],
  813. [case " $depcc " in #(
  814. *\ -arch\ *\ -arch\ *) am__universal=true ;;
  815. esac])
  816. for depmode in $am_compiler_list; do
  817. # Setup a source with many dependencies, because some compilers
  818. # like to wrap large dependency lists on column 80 (with \), and
  819. # we should not choose a depcomp mode which is confused by this.
  820. #
  821. # We need to recreate these files for each test, as the compiler may
  822. # overwrite some of them when testing with obscure command lines.
  823. # This happens at least with the AIX C compiler.
  824. : > sub/conftest.c
  825. for i in 1 2 3 4 5 6; do
  826. echo '#include "conftst'$i'.h"' >> sub/conftest.c
  827. # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with
  828. # Solaris 10 /bin/sh.
  829. echo '/* dummy */' > sub/conftst$i.h
  830. done
  831. echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
  832. # We check with '-c' and '-o' for the sake of the "dashmstdout"
  833. # mode. It turns out that the SunPro C++ compiler does not properly
  834. # handle '-M -o', and we need to detect this. Also, some Intel
  835. # versions had trouble with output in subdirs.
  836. am__obj=sub/conftest.${OBJEXT-o}
  837. am__minus_obj="-o $am__obj"
  838. case $depmode in
  839. gcc)
  840. # This depmode causes a compiler race in universal mode.
  841. test "$am__universal" = false || continue
  842. ;;
  843. nosideeffect)
  844. # After this tag, mechanisms are not by side-effect, so they'll
  845. # only be used when explicitly requested.
  846. if test "x$enable_dependency_tracking" = xyes; then
  847. continue
  848. else
  849. break
  850. fi
  851. ;;
  852. msvc7 | msvc7msys | msvisualcpp | msvcmsys)
  853. # This compiler won't grok '-c -o', but also, the minuso test has
  854. # not run yet. These depmodes are late enough in the game, and
  855. # so weak that their functioning should not be impacted.
  856. am__obj=conftest.${OBJEXT-o}
  857. am__minus_obj=
  858. ;;
  859. none) break ;;
  860. esac
  861. if depmode=$depmode \
  862. source=sub/conftest.c object=$am__obj \
  863. depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
  864. $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
  865. >/dev/null 2>conftest.err &&
  866. grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
  867. grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
  868. grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
  869. ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
  870. # icc doesn't choke on unknown options, it will just issue warnings
  871. # or remarks (even with -Werror). So we grep stderr for any message
  872. # that says an option was ignored or not supported.
  873. # When given -MP, icc 7.0 and 7.1 complain thusly:
  874. # icc: Command line warning: ignoring option '-M'; no argument required
  875. # The diagnosis changed in icc 8.0:
  876. # icc: Command line remark: option '-MP' not supported
  877. if (grep 'ignoring option' conftest.err ||
  878. grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
  879. am_cv_$1_dependencies_compiler_type=$depmode
  880. break
  881. fi
  882. fi
  883. done
  884. cd ..
  885. rm -rf conftest.dir
  886. else
  887. am_cv_$1_dependencies_compiler_type=none
  888. fi
  889. ])
  890. AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])
  891. AM_CONDITIONAL([am__fastdep$1], [
  892. test "x$enable_dependency_tracking" != xno \
  893. && test "$am_cv_$1_dependencies_compiler_type" = gcc3])
  894. ])
  895. m4trace:/usr/share/aclocal-1.15/depend.m4:163: -1- AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl
  896. AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
  897. ])
  898. m4trace:/usr/share/aclocal-1.15/depend.m4:171: -1- AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE([dependency-tracking], [dnl
  899. AS_HELP_STRING(
  900. [--enable-dependency-tracking],
  901. [do not reject slow dependency extractors])
  902. AS_HELP_STRING(
  903. [--disable-dependency-tracking],
  904. [speeds up one-time build])])
  905. if test "x$enable_dependency_tracking" != xno; then
  906. am_depcomp="$ac_aux_dir/depcomp"
  907. AMDEPBACKSLASH='\'
  908. am__nodep='_no'
  909. fi
  910. AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
  911. AC_SUBST([AMDEPBACKSLASH])dnl
  912. _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
  913. AC_SUBST([am__nodep])dnl
  914. _AM_SUBST_NOTMAKE([am__nodep])dnl
  915. ])
  916. m4trace:/usr/share/aclocal-1.15/depout.m4:12: -1- AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{
  917. # Older Autoconf quotes --file arguments for eval, but not when files
  918. # are listed without --file. Let's play safe and only enable the eval
  919. # if we detect the quoting.
  920. case $CONFIG_FILES in
  921. *\'*) eval set x "$CONFIG_FILES" ;;
  922. *) set x $CONFIG_FILES ;;
  923. esac
  924. shift
  925. for mf
  926. do
  927. # Strip MF so we end up with the name of the file.
  928. mf=`echo "$mf" | sed -e 's/:.*$//'`
  929. # Check whether this is an Automake generated Makefile or not.
  930. # We used to match only the files named 'Makefile.in', but
  931. # some people rename them; so instead we look at the file content.
  932. # Grep'ing the first line is not enough: some people post-process
  933. # each Makefile.in and add a new line on top of each file to say so.
  934. # Grep'ing the whole file is not good either: AIX grep has a line
  935. # limit of 2048, but all sed's we know have understand at least 4000.
  936. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
  937. dirpart=`AS_DIRNAME("$mf")`
  938. else
  939. continue
  940. fi
  941. # Extract the definition of DEPDIR, am__include, and am__quote
  942. # from the Makefile without running 'make'.
  943. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
  944. test -z "$DEPDIR" && continue
  945. am__include=`sed -n 's/^am__include = //p' < "$mf"`
  946. test -z "$am__include" && continue
  947. am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
  948. # Find all dependency output files, they are included files with
  949. # $(DEPDIR) in their names. We invoke sed twice because it is the
  950. # simplest approach to changing $(DEPDIR) to its actual value in the
  951. # expansion.
  952. for file in `sed -n "
  953. s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
  954. sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do
  955. # Make sure the directory exists.
  956. test -f "$dirpart/$file" && continue
  957. fdir=`AS_DIRNAME(["$file"])`
  958. AS_MKDIR_P([$dirpart/$fdir])
  959. # echo "creating $dirpart/$file"
  960. echo '# dummy' > "$dirpart/$file"
  961. done
  962. done
  963. }
  964. ])
  965. m4trace:/usr/share/aclocal-1.15/depout.m4:71: -1- AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles],
  966. [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
  967. [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
  968. ])
  969. m4trace:/usr/share/aclocal-1.15/init.m4:29: -1- AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.65])dnl
  970. dnl Autoconf wants to disallow AM_ names. We explicitly allow
  971. dnl the ones we care about.
  972. m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
  973. AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
  974. AC_REQUIRE([AC_PROG_INSTALL])dnl
  975. if test "`cd $srcdir && pwd`" != "`pwd`"; then
  976. # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
  977. # is not polluted with repeated "-I."
  978. AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl
  979. # test to see if srcdir already configured
  980. if test -f $srcdir/config.status; then
  981. AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
  982. fi
  983. fi
  984. # test whether we have cygpath
  985. if test -z "$CYGPATH_W"; then
  986. if (cygpath --version) >/dev/null 2>/dev/null; then
  987. CYGPATH_W='cygpath -w'
  988. else
  989. CYGPATH_W=echo
  990. fi
  991. fi
  992. AC_SUBST([CYGPATH_W])
  993. # Define the identity of the package.
  994. dnl Distinguish between old-style and new-style calls.
  995. m4_ifval([$2],
  996. [AC_DIAGNOSE([obsolete],
  997. [$0: two- and three-arguments forms are deprecated.])
  998. m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
  999. AC_SUBST([PACKAGE], [$1])dnl
  1000. AC_SUBST([VERSION], [$2])],
  1001. [_AM_SET_OPTIONS([$1])dnl
  1002. dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
  1003. m4_if(
  1004. m4_ifdef([AC_PACKAGE_NAME], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]),
  1005. [ok:ok],,
  1006. [m4_fatal([AC_INIT should be called with package and version arguments])])dnl
  1007. AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
  1008. AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
  1009. _AM_IF_OPTION([no-define],,
  1010. [AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package])
  1011. AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl
  1012. # Some tools Automake needs.
  1013. AC_REQUIRE([AM_SANITY_CHECK])dnl
  1014. AC_REQUIRE([AC_ARG_PROGRAM])dnl
  1015. AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])
  1016. AM_MISSING_PROG([AUTOCONF], [autoconf])
  1017. AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])
  1018. AM_MISSING_PROG([AUTOHEADER], [autoheader])
  1019. AM_MISSING_PROG([MAKEINFO], [makeinfo])
  1020. AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
  1021. AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
  1022. AC_REQUIRE([AC_PROG_MKDIR_P])dnl
  1023. # For better backward compatibility. To be removed once Automake 1.9.x
  1024. # dies out for good. For more background, see:
  1025. # <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
  1026. # <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
  1027. AC_SUBST([mkdir_p], ['$(MKDIR_P)'])
  1028. # We need awk for the "check" target (and possibly the TAP driver). The
  1029. # system "awk" is bad on some platforms.
  1030. AC_REQUIRE([AC_PROG_AWK])dnl
  1031. AC_REQUIRE([AC_PROG_MAKE_SET])dnl
  1032. AC_REQUIRE([AM_SET_LEADING_DOT])dnl
  1033. _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
  1034. [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
  1035. [_AM_PROG_TAR([v7])])])
  1036. _AM_IF_OPTION([no-dependencies],,
  1037. [AC_PROVIDE_IFELSE([AC_PROG_CC],
  1038. [_AM_DEPENDENCIES([CC])],
  1039. [m4_define([AC_PROG_CC],
  1040. m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl
  1041. AC_PROVIDE_IFELSE([AC_PROG_CXX],
  1042. [_AM_DEPENDENCIES([CXX])],
  1043. [m4_define([AC_PROG_CXX],
  1044. m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl
  1045. AC_PROVIDE_IFELSE([AC_PROG_OBJC],
  1046. [_AM_DEPENDENCIES([OBJC])],
  1047. [m4_define([AC_PROG_OBJC],
  1048. m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl
  1049. AC_PROVIDE_IFELSE([AC_PROG_OBJCXX],
  1050. [_AM_DEPENDENCIES([OBJCXX])],
  1051. [m4_define([AC_PROG_OBJCXX],
  1052. m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl
  1053. ])
  1054. AC_REQUIRE([AM_SILENT_RULES])dnl
  1055. dnl The testsuite driver may need to know about EXEEXT, so add the
  1056. dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This
  1057. dnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below.
  1058. AC_CONFIG_COMMANDS_PRE(dnl
  1059. [m4_provide_if([_AM_COMPILER_EXEEXT],
  1060. [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
  1061. # POSIX will say in a future version that running "rm -f" with no argument
  1062. # is OK; and we want to be able to make that assumption in our Makefile
  1063. # recipes. So use an aggressive probe to check that the usage we want is
  1064. # actually supported "in the wild" to an acceptable degree.
  1065. # See automake bug#10828.
  1066. # To make any issue more visible, cause the running configure to be aborted
  1067. # by default if the 'rm' program in use doesn't match our expectations; the
  1068. # user can still override this though.
  1069. if rm -f && rm -fr && rm -rf; then : OK; else
  1070. cat >&2 <<'END'
  1071. Oops!
  1072. Your 'rm' program seems unable to run without file operands specified
  1073. on the command line, even when the '-f' option is present. This is contrary
  1074. to the behaviour of most rm programs out there, and not conforming with
  1075. the upcoming POSIX standard: <http://austingroupbugs.net/view.php?id=542>
  1076. Please tell bug-automake@gnu.org about your system, including the value
  1077. of your $PATH and any error possibly output before this message. This
  1078. can help us improve future automake versions.
  1079. END
  1080. if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then
  1081. echo 'Configuration will proceed anyway, since you have set the' >&2
  1082. echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2
  1083. echo >&2
  1084. else
  1085. cat >&2 <<'END'
  1086. Aborting the configuration process, to ensure you take notice of the issue.
  1087. You can download and install GNU coreutils to get an 'rm' implementation
  1088. that behaves properly: <http://www.gnu.org/software/coreutils/>.
  1089. If you want to complete the configuration process using your problematic
  1090. 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
  1091. to "yes", and re-run configure.
  1092. END
  1093. AC_MSG_ERROR([Your 'rm' program is bad, sorry.])
  1094. fi
  1095. fi
  1096. dnl The trailing newline in this macro's definition is deliberate, for
  1097. dnl backward compatibility and to allow trailing 'dnl'-style comments
  1098. dnl after the AM_INIT_AUTOMAKE invocation. See automake bug#16841.
  1099. ])
  1100. m4trace:/usr/share/aclocal-1.15/init.m4:186: -1- AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers.
  1101. _am_arg=$1
  1102. _am_stamp_count=1
  1103. for _am_header in $config_headers :; do
  1104. case $_am_header in
  1105. $_am_arg | $_am_arg:* )
  1106. break ;;
  1107. * )
  1108. _am_stamp_count=`expr $_am_stamp_count + 1` ;;
  1109. esac
  1110. done
  1111. echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
  1112. m4trace:/usr/share/aclocal-1.15/install-sh.m4:11: -1- AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
  1113. if test x"${install_sh+set}" != xset; then
  1114. case $am_aux_dir in
  1115. *\ * | *\ *)
  1116. install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
  1117. *)
  1118. install_sh="\${SHELL} $am_aux_dir/install-sh"
  1119. esac
  1120. fi
  1121. AC_SUBST([install_sh])])
  1122. m4trace:/usr/share/aclocal-1.15/lead-dot.m4:10: -1- AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null
  1123. mkdir .tst 2>/dev/null
  1124. if test -d .tst; then
  1125. am__leading_dot=.
  1126. else
  1127. am__leading_dot=_
  1128. fi
  1129. rmdir .tst 2>/dev/null
  1130. AC_SUBST([am__leading_dot])])
  1131. m4trace:/usr/share/aclocal-1.15/make.m4:12: -1- AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make}
  1132. cat > confinc << 'END'
  1133. am__doit:
  1134. @echo this is the am__doit target
  1135. .PHONY: am__doit
  1136. END
  1137. # If we don't find an include directive, just comment out the code.
  1138. AC_MSG_CHECKING([for style of include used by $am_make])
  1139. am__include="#"
  1140. am__quote=
  1141. _am_result=none
  1142. # First try GNU make style include.
  1143. echo "include confinc" > confmf
  1144. # Ignore all kinds of additional output from 'make'.
  1145. case `$am_make -s -f confmf 2> /dev/null` in #(
  1146. *the\ am__doit\ target*)
  1147. am__include=include
  1148. am__quote=
  1149. _am_result=GNU
  1150. ;;
  1151. esac
  1152. # Now try BSD make style include.
  1153. if test "$am__include" = "#"; then
  1154. echo '.include "confinc"' > confmf
  1155. case `$am_make -s -f confmf 2> /dev/null` in #(
  1156. *the\ am__doit\ target*)
  1157. am__include=.include
  1158. am__quote="\""
  1159. _am_result=BSD
  1160. ;;
  1161. esac
  1162. fi
  1163. AC_SUBST([am__include])
  1164. AC_SUBST([am__quote])
  1165. AC_MSG_RESULT([$_am_result])
  1166. rm -f confinc confmf
  1167. ])
  1168. m4trace:/usr/share/aclocal-1.15/missing.m4:11: -1- AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN])
  1169. $1=${$1-"${am_missing_run}$2"}
  1170. AC_SUBST($1)])
  1171. m4trace:/usr/share/aclocal-1.15/missing.m4:20: -1- AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
  1172. AC_REQUIRE_AUX_FILE([missing])dnl
  1173. if test x"${MISSING+set}" != xset; then
  1174. case $am_aux_dir in
  1175. *\ * | *\ *)
  1176. MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
  1177. *)
  1178. MISSING="\${SHELL} $am_aux_dir/missing" ;;
  1179. esac
  1180. fi
  1181. # Use eval to expand $SHELL
  1182. if eval "$MISSING --is-lightweight"; then
  1183. am_missing_run="$MISSING "
  1184. else
  1185. am_missing_run=
  1186. AC_MSG_WARN(['missing' script is too old or missing])
  1187. fi
  1188. ])
  1189. m4trace:/usr/share/aclocal-1.15/options.m4:11: -1- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
  1190. m4trace:/usr/share/aclocal-1.15/options.m4:17: -1- AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), [1])])
  1191. 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)])])
  1192. m4trace:/usr/share/aclocal-1.15/options.m4:29: -1- AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
  1193. 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
  1194. AC_REQUIRE_AUX_FILE([compile])dnl
  1195. AC_LANG_PUSH([C])dnl
  1196. AC_CACHE_CHECK(
  1197. [whether $CC understands -c and -o together],
  1198. [am_cv_prog_cc_c_o],
  1199. [AC_LANG_CONFTEST([AC_LANG_PROGRAM([])])
  1200. # Make sure it works both with $CC and with simple cc.
  1201. # Following AC_PROG_CC_C_O, we do the test twice because some
  1202. # compilers refuse to overwrite an existing .o file with -o,
  1203. # though they will create one.
  1204. am_cv_prog_cc_c_o=yes
  1205. for am_i in 1 2; do
  1206. if AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext]) \
  1207. && test -f conftest2.$ac_objext; then
  1208. : OK
  1209. else
  1210. am_cv_prog_cc_c_o=no
  1211. break
  1212. fi
  1213. done
  1214. rm -f core conftest*
  1215. unset am_i])
  1216. if test "$am_cv_prog_cc_c_o" != yes; then
  1217. # Losing compiler, so override with the script.
  1218. # FIXME: It is wrong to rewrite CC.
  1219. # But if we don't then we get into trouble of one sort or another.
  1220. # A longer-term fix would be to have automake use am__CC in this case,
  1221. # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
  1222. CC="$am_aux_dir/compile $CC"
  1223. fi
  1224. AC_LANG_POP([C])])
  1225. 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])])
  1226. m4trace:/usr/share/aclocal-1.15/runlog.m4:12: -1- AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD
  1227. ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD
  1228. ac_status=$?
  1229. echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
  1230. (exit $ac_status); }])
  1231. m4trace:/usr/share/aclocal-1.15/sanity.m4:11: -1- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane])
  1232. # Reject unsafe characters in $srcdir or the absolute working directory
  1233. # name. Accept space and tab only in the latter.
  1234. am_lf='
  1235. '
  1236. case `pwd` in
  1237. *[[\\\"\#\$\&\'\`$am_lf]]*)
  1238. AC_MSG_ERROR([unsafe absolute working directory name]);;
  1239. esac
  1240. case $srcdir in
  1241. *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*)
  1242. AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);;
  1243. esac
  1244. # Do 'set' in a subshell so we don't clobber the current shell's
  1245. # arguments. Must try -L first in case configure is actually a
  1246. # symlink; some systems play weird games with the mod time of symlinks
  1247. # (eg FreeBSD returns the mod time of the symlink's containing
  1248. # directory).
  1249. if (
  1250. am_has_slept=no
  1251. for am_try in 1 2; do
  1252. echo "timestamp, slept: $am_has_slept" > conftest.file
  1253. set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
  1254. if test "$[*]" = "X"; then
  1255. # -L didn't work.
  1256. set X `ls -t "$srcdir/configure" conftest.file`
  1257. fi
  1258. if test "$[*]" != "X $srcdir/configure conftest.file" \
  1259. && test "$[*]" != "X conftest.file $srcdir/configure"; then
  1260. # If neither matched, then we have a broken ls. This can happen
  1261. # if, for instance, CONFIG_SHELL is bash and it inherits a
  1262. # broken ls alias from the environment. This has actually
  1263. # happened. Such a system could not be considered "sane".
  1264. AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken
  1265. alias in your environment])
  1266. fi
  1267. if test "$[2]" = conftest.file || test $am_try -eq 2; then
  1268. break
  1269. fi
  1270. # Just in case.
  1271. sleep 1
  1272. am_has_slept=yes
  1273. done
  1274. test "$[2]" = conftest.file
  1275. )
  1276. then
  1277. # Ok.
  1278. :
  1279. else
  1280. AC_MSG_ERROR([newly created file is older than distributed files!
  1281. Check your system clock])
  1282. fi
  1283. AC_MSG_RESULT([yes])
  1284. # If we didn't sleep, we still need to ensure time stamps of config.status and
  1285. # generated files are strictly newer.
  1286. am_sleep_pid=
  1287. if grep 'slept: no' conftest.file >/dev/null 2>&1; then
  1288. ( sleep 1 ) &
  1289. am_sleep_pid=$!
  1290. fi
  1291. AC_CONFIG_COMMANDS_PRE(
  1292. [AC_MSG_CHECKING([that generated files are newer than configure])
  1293. if test -n "$am_sleep_pid"; then
  1294. # Hide warnings about reused PIDs.
  1295. wait $am_sleep_pid 2>/dev/null
  1296. fi
  1297. AC_MSG_RESULT([done])])
  1298. rm -f conftest.file
  1299. ])
  1300. m4trace:/usr/share/aclocal-1.15/silent.m4:12: -1- AC_DEFUN([AM_SILENT_RULES], [AC_ARG_ENABLE([silent-rules], [dnl
  1301. AS_HELP_STRING(
  1302. [--enable-silent-rules],
  1303. [less verbose build output (undo: "make V=1")])
  1304. AS_HELP_STRING(
  1305. [--disable-silent-rules],
  1306. [verbose build output (undo: "make V=0")])dnl
  1307. ])
  1308. case $enable_silent_rules in @%:@ (((
  1309. yes) AM_DEFAULT_VERBOSITY=0;;
  1310. no) AM_DEFAULT_VERBOSITY=1;;
  1311. *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);;
  1312. esac
  1313. dnl
  1314. dnl A few 'make' implementations (e.g., NonStop OS and NextStep)
  1315. dnl do not support nested variable expansions.
  1316. dnl See automake bug#9928 and bug#10237.
  1317. am_make=${MAKE-make}
  1318. AC_CACHE_CHECK([whether $am_make supports nested variables],
  1319. [am_cv_make_support_nested_variables],
  1320. [if AS_ECHO([['TRUE=$(BAR$(V))
  1321. BAR0=false
  1322. BAR1=true
  1323. V=1
  1324. am__doit:
  1325. @$(TRUE)
  1326. .PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then
  1327. am_cv_make_support_nested_variables=yes
  1328. else
  1329. am_cv_make_support_nested_variables=no
  1330. fi])
  1331. if test $am_cv_make_support_nested_variables = yes; then
  1332. dnl Using '$V' instead of '$(V)' breaks IRIX make.
  1333. AM_V='$(V)'
  1334. AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
  1335. else
  1336. AM_V=$AM_DEFAULT_VERBOSITY
  1337. AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
  1338. fi
  1339. AC_SUBST([AM_V])dnl
  1340. AM_SUBST_NOTMAKE([AM_V])dnl
  1341. AC_SUBST([AM_DEFAULT_V])dnl
  1342. AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl
  1343. AC_SUBST([AM_DEFAULT_VERBOSITY])dnl
  1344. AM_BACKSLASH='\'
  1345. AC_SUBST([AM_BACKSLASH])dnl
  1346. _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
  1347. ])
  1348. m4trace:/usr/share/aclocal-1.15/strip.m4:17: -1- AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
  1349. # Installed binaries are usually stripped using 'strip' when the user
  1350. # run "make install-strip". However 'strip' might not be the right
  1351. # tool to use in cross-compilation environments, therefore Automake
  1352. # will honor the 'STRIP' environment variable to overrule this program.
  1353. dnl Don't test for $cross_compiling = yes, because it might be 'maybe'.
  1354. if test "$cross_compiling" != no; then
  1355. AC_CHECK_TOOL([STRIP], [strip], :)
  1356. fi
  1357. INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
  1358. AC_SUBST([INSTALL_STRIP_PROGRAM])])
  1359. m4trace:/usr/share/aclocal-1.15/substnot.m4:12: -1- AC_DEFUN([_AM_SUBST_NOTMAKE])
  1360. m4trace:/usr/share/aclocal-1.15/substnot.m4:17: -1- AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
  1361. 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
  1362. # in the wild :-( We should find a proper way to deprecate it ...
  1363. AC_SUBST([AMTAR], ['$${TAR-tar}'])
  1364. # We'll loop over all known methods to create a tar archive until one works.
  1365. _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
  1366. m4_if([$1], [v7],
  1367. [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'],
  1368. [m4_case([$1],
  1369. [ustar],
  1370. [# The POSIX 1988 'ustar' format is defined with fixed-size fields.
  1371. # There is notably a 21 bits limit for the UID and the GID. In fact,
  1372. # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343
  1373. # and bug#13588).
  1374. am_max_uid=2097151 # 2^21 - 1
  1375. am_max_gid=$am_max_uid
  1376. # The $UID and $GID variables are not portable, so we need to resort
  1377. # to the POSIX-mandated id(1) utility. Errors in the 'id' calls
  1378. # below are definitely unexpected, so allow the users to see them
  1379. # (that is, avoid stderr redirection).
  1380. am_uid=`id -u || echo unknown`
  1381. am_gid=`id -g || echo unknown`
  1382. AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format])
  1383. if test $am_uid -le $am_max_uid; then
  1384. AC_MSG_RESULT([yes])
  1385. else
  1386. AC_MSG_RESULT([no])
  1387. _am_tools=none
  1388. fi
  1389. AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format])
  1390. if test $am_gid -le $am_max_gid; then
  1391. AC_MSG_RESULT([yes])
  1392. else
  1393. AC_MSG_RESULT([no])
  1394. _am_tools=none
  1395. fi],
  1396. [pax],
  1397. [],
  1398. [m4_fatal([Unknown tar format])])
  1399. AC_MSG_CHECKING([how to create a $1 tar archive])
  1400. # Go ahead even if we have the value already cached. We do so because we
  1401. # need to set the values for the 'am__tar' and 'am__untar' variables.
  1402. _am_tools=${am_cv_prog_tar_$1-$_am_tools}
  1403. for _am_tool in $_am_tools; do
  1404. case $_am_tool in
  1405. gnutar)
  1406. for _am_tar in tar gnutar gtar; do
  1407. AM_RUN_LOG([$_am_tar --version]) && break
  1408. done
  1409. am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
  1410. am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
  1411. am__untar="$_am_tar -xf -"
  1412. ;;
  1413. plaintar)
  1414. # Must skip GNU tar: if it does not support --format= it doesn't create
  1415. # ustar tarball either.
  1416. (tar --version) >/dev/null 2>&1 && continue
  1417. am__tar='tar chf - "$$tardir"'
  1418. am__tar_='tar chf - "$tardir"'
  1419. am__untar='tar xf -'
  1420. ;;
  1421. pax)
  1422. am__tar='pax -L -x $1 -w "$$tardir"'
  1423. am__tar_='pax -L -x $1 -w "$tardir"'
  1424. am__untar='pax -r'
  1425. ;;
  1426. cpio)
  1427. am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
  1428. am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
  1429. am__untar='cpio -i -H $1 -d'
  1430. ;;
  1431. none)
  1432. am__tar=false
  1433. am__tar_=false
  1434. am__untar=false
  1435. ;;
  1436. esac
  1437. # If the value was cached, stop now. We just wanted to have am__tar
  1438. # and am__untar set.
  1439. test -n "${am_cv_prog_tar_$1}" && break
  1440. # tar/untar a dummy directory, and stop if the command works.
  1441. rm -rf conftest.dir
  1442. mkdir conftest.dir
  1443. echo GrepMe > conftest.dir/file
  1444. AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
  1445. rm -rf conftest.dir
  1446. if test -s conftest.tar; then
  1447. AM_RUN_LOG([$am__untar <conftest.tar])
  1448. AM_RUN_LOG([cat conftest.dir/file])
  1449. grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
  1450. fi
  1451. done
  1452. rm -rf conftest.dir
  1453. AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
  1454. AC_MSG_RESULT([$am_cv_prog_tar_$1])])
  1455. AC_SUBST([am__tar])
  1456. AC_SUBST([am__untar])
  1457. ])
  1458. m4trace:m4/libtool.m4:61: -1- AC_DEFUN([LT_INIT], [AC_PREREQ([2.62])dnl We use AC_PATH_PROGS_FEATURE_CHECK
  1459. AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl
  1460. AC_BEFORE([$0], [LT_LANG])dnl
  1461. AC_BEFORE([$0], [LT_OUTPUT])dnl
  1462. AC_BEFORE([$0], [LTDL_INIT])dnl
  1463. m4_require([_LT_CHECK_BUILDDIR])dnl
  1464. dnl Autoconf doesn't catch unexpanded LT_ macros by default:
  1465. m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl
  1466. m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl
  1467. dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4
  1468. dnl unless we require an AC_DEFUNed macro:
  1469. AC_REQUIRE([LTOPTIONS_VERSION])dnl
  1470. AC_REQUIRE([LTSUGAR_VERSION])dnl
  1471. AC_REQUIRE([LTVERSION_VERSION])dnl
  1472. AC_REQUIRE([LTOBSOLETE_VERSION])dnl
  1473. m4_require([_LT_PROG_LTMAIN])dnl
  1474. _LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}])
  1475. dnl Parse OPTIONS
  1476. _LT_SET_OPTIONS([$0], [$1])
  1477. # This can be used to rebuild libtool when needed
  1478. LIBTOOL_DEPS=$ltmain
  1479. # Always use our own libtool.
  1480. LIBTOOL='$(SHELL) $(top_builddir)/libtool'
  1481. AC_SUBST(LIBTOOL)dnl
  1482. _LT_SETUP
  1483. # Only expand once:
  1484. m4_define([LT_INIT])
  1485. ])
  1486. m4trace:m4/libtool.m4:99: -1- AU_DEFUN([AC_PROG_LIBTOOL], [m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
  1487. m4trace:m4/libtool.m4:99: -1- AC_DEFUN([AC_PROG_LIBTOOL], [AC_DIAGNOSE([obsolete], [The macro `AC_PROG_LIBTOOL' is obsolete.
  1488. You should run autoupdate.])dnl
  1489. m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
  1490. m4trace:m4/libtool.m4:100: -1- AU_DEFUN([AM_PROG_LIBTOOL], [m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
  1491. m4trace:m4/libtool.m4:100: -1- AC_DEFUN([AM_PROG_LIBTOOL], [AC_DIAGNOSE([obsolete], [The macro `AM_PROG_LIBTOOL' is obsolete.
  1492. You should run autoupdate.])dnl
  1493. m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
  1494. m4trace:m4/libtool.m4:619: -1- AC_DEFUN([LT_OUTPUT], [: ${CONFIG_LT=./config.lt}
  1495. AC_MSG_NOTICE([creating $CONFIG_LT])
  1496. _LT_GENERATED_FILE_INIT(["$CONFIG_LT"],
  1497. [# Run this file to recreate a libtool stub with the current configuration.])
  1498. cat >>"$CONFIG_LT" <<\_LTEOF
  1499. lt_cl_silent=false
  1500. exec AS_MESSAGE_LOG_FD>>config.log
  1501. {
  1502. echo
  1503. AS_BOX([Running $as_me.])
  1504. } >&AS_MESSAGE_LOG_FD
  1505. lt_cl_help="\
  1506. '$as_me' creates a local libtool stub from the current configuration,
  1507. for use in further configure time tests before the real libtool is
  1508. generated.
  1509. Usage: $[0] [[OPTIONS]]
  1510. -h, --help print this help, then exit
  1511. -V, --version print version number, then exit
  1512. -q, --quiet do not print progress messages
  1513. -d, --debug don't remove temporary files
  1514. Report bugs to <bug-libtool@gnu.org>."
  1515. lt_cl_version="\
  1516. m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl
  1517. m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION])
  1518. configured by $[0], generated by m4_PACKAGE_STRING.
  1519. Copyright (C) 2011 Free Software Foundation, Inc.
  1520. This config.lt script is free software; the Free Software Foundation
  1521. gives unlimited permision to copy, distribute and modify it."
  1522. while test 0 != $[#]
  1523. do
  1524. case $[1] in
  1525. --version | --v* | -V )
  1526. echo "$lt_cl_version"; exit 0 ;;
  1527. --help | --h* | -h )
  1528. echo "$lt_cl_help"; exit 0 ;;
  1529. --debug | --d* | -d )
  1530. debug=: ;;
  1531. --quiet | --q* | --silent | --s* | -q )
  1532. lt_cl_silent=: ;;
  1533. -*) AC_MSG_ERROR([unrecognized option: $[1]
  1534. Try '$[0] --help' for more information.]) ;;
  1535. *) AC_MSG_ERROR([unrecognized argument: $[1]
  1536. Try '$[0] --help' for more information.]) ;;
  1537. esac
  1538. shift
  1539. done
  1540. if $lt_cl_silent; then
  1541. exec AS_MESSAGE_FD>/dev/null
  1542. fi
  1543. _LTEOF
  1544. cat >>"$CONFIG_LT" <<_LTEOF
  1545. _LT_OUTPUT_LIBTOOL_COMMANDS_INIT
  1546. _LTEOF
  1547. cat >>"$CONFIG_LT" <<\_LTEOF
  1548. AC_MSG_NOTICE([creating $ofile])
  1549. _LT_OUTPUT_LIBTOOL_COMMANDS
  1550. AS_EXIT(0)
  1551. _LTEOF
  1552. chmod +x "$CONFIG_LT"
  1553. # configure is writing to config.log, but config.lt does its own redirection,
  1554. # appending to config.log, which fails on DOS, as config.log is still kept
  1555. # open by configure. Here we exec the FD to /dev/null, effectively closing
  1556. # config.log, so it can be properly (re)opened and appended to by config.lt.
  1557. lt_cl_success=:
  1558. test yes = "$silent" &&
  1559. lt_config_lt_args="$lt_config_lt_args --quiet"
  1560. exec AS_MESSAGE_LOG_FD>/dev/null
  1561. $SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false
  1562. exec AS_MESSAGE_LOG_FD>>config.log
  1563. $lt_cl_success || AS_EXIT(1)
  1564. ])
  1565. m4trace:m4/libtool.m4:812: -1- AC_DEFUN([LT_SUPPORTED_TAG], [])
  1566. m4trace:m4/libtool.m4:823: -1- AC_DEFUN([LT_LANG], [AC_BEFORE([$0], [LT_OUTPUT])dnl
  1567. m4_case([$1],
  1568. [C], [_LT_LANG(C)],
  1569. [C++], [_LT_LANG(CXX)],
  1570. [Go], [_LT_LANG(GO)],
  1571. [Java], [_LT_LANG(GCJ)],
  1572. [Fortran 77], [_LT_LANG(F77)],
  1573. [Fortran], [_LT_LANG(FC)],
  1574. [Windows Resource], [_LT_LANG(RC)],
  1575. [m4_ifdef([_LT_LANG_]$1[_CONFIG],
  1576. [_LT_LANG($1)],
  1577. [m4_fatal([$0: unsupported language: "$1"])])])dnl
  1578. ])
  1579. m4trace:m4/libtool.m4:915: -1- AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)])
  1580. m4trace:m4/libtool.m4:915: -1- AC_DEFUN([AC_LIBTOOL_CXX], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_CXX' is obsolete.
  1581. You should run autoupdate.])dnl
  1582. LT_LANG(C++)])
  1583. m4trace:m4/libtool.m4:916: -1- AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)])
  1584. m4trace:m4/libtool.m4:916: -1- AC_DEFUN([AC_LIBTOOL_F77], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_F77' is obsolete.
  1585. You should run autoupdate.])dnl
  1586. LT_LANG(Fortran 77)])
  1587. m4trace:m4/libtool.m4:917: -1- AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)])
  1588. m4trace:m4/libtool.m4:917: -1- AC_DEFUN([AC_LIBTOOL_FC], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_FC' is obsolete.
  1589. You should run autoupdate.])dnl
  1590. LT_LANG(Fortran)])
  1591. m4trace:m4/libtool.m4:918: -1- AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)])
  1592. m4trace:m4/libtool.m4:918: -1- AC_DEFUN([AC_LIBTOOL_GCJ], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_GCJ' is obsolete.
  1593. You should run autoupdate.])dnl
  1594. LT_LANG(Java)])
  1595. m4trace:m4/libtool.m4:919: -1- AU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)])
  1596. m4trace:m4/libtool.m4:919: -1- AC_DEFUN([AC_LIBTOOL_RC], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_RC' is obsolete.
  1597. You should run autoupdate.])dnl
  1598. LT_LANG(Windows Resource)])
  1599. m4trace:m4/libtool.m4:1247: -1- AC_DEFUN([_LT_WITH_SYSROOT], [AC_MSG_CHECKING([for sysroot])
  1600. AC_ARG_WITH([sysroot],
  1601. [AS_HELP_STRING([--with-sysroot@<:@=DIR@:>@],
  1602. [Search for dependent libraries within DIR (or the compiler's sysroot
  1603. if not specified).])],
  1604. [], [with_sysroot=no])
  1605. dnl lt_sysroot will always be passed unquoted. We quote it here
  1606. dnl in case the user passed a directory name.
  1607. lt_sysroot=
  1608. case $with_sysroot in #(
  1609. yes)
  1610. if test yes = "$GCC"; then
  1611. lt_sysroot=`$CC --print-sysroot 2>/dev/null`
  1612. fi
  1613. ;; #(
  1614. /*)
  1615. lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"`
  1616. ;; #(
  1617. no|'')
  1618. ;; #(
  1619. *)
  1620. AC_MSG_RESULT([$with_sysroot])
  1621. AC_MSG_ERROR([The sysroot must be an absolute path.])
  1622. ;;
  1623. esac
  1624. AC_MSG_RESULT([${lt_sysroot:-no}])
  1625. _LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl
  1626. [dependent libraries, and where our libraries should be installed.])])
  1627. m4trace:m4/libtool.m4:1578: -1- AC_DEFUN([_LT_COMPILER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
  1628. m4_require([_LT_DECL_SED])dnl
  1629. AC_CACHE_CHECK([$1], [$2],
  1630. [$2=no
  1631. m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4])
  1632. echo "$lt_simple_compile_test_code" > conftest.$ac_ext
  1633. lt_compiler_flag="$3" ## exclude from sc_useless_quotes_in_assignment
  1634. # Insert the option either (1) after the last *FLAGS variable, or
  1635. # (2) before a word containing "conftest.", or (3) at the end.
  1636. # Note that $ac_compile itself does not contain backslashes and begins
  1637. # with a dollar sign (not a hyphen), so the echo should work correctly.
  1638. # The option is referenced via a variable to avoid confusing sed.
  1639. lt_compile=`echo "$ac_compile" | $SED \
  1640. -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
  1641. -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \
  1642. -e 's:$: $lt_compiler_flag:'`
  1643. (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD)
  1644. (eval "$lt_compile" 2>conftest.err)
  1645. ac_status=$?
  1646. cat conftest.err >&AS_MESSAGE_LOG_FD
  1647. echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
  1648. if (exit $ac_status) && test -s "$ac_outfile"; then
  1649. # The compiler can only warn and ignore the option if not recognized
  1650. # So say no if there are warnings other than the usual output.
  1651. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp
  1652. $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
  1653. if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then
  1654. $2=yes
  1655. fi
  1656. fi
  1657. $RM conftest*
  1658. ])
  1659. if test yes = "[$]$2"; then
  1660. m4_if([$5], , :, [$5])
  1661. else
  1662. m4_if([$6], , :, [$6])
  1663. fi
  1664. ])
  1665. m4trace:m4/libtool.m4:1620: -1- AU_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [m4_if($#, 0, [_LT_COMPILER_OPTION], [_LT_COMPILER_OPTION($@)])])
  1666. m4trace:m4/libtool.m4:1620: -1- AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_COMPILER_OPTION' is obsolete.
  1667. You should run autoupdate.])dnl
  1668. m4_if($#, 0, [_LT_COMPILER_OPTION], [_LT_COMPILER_OPTION($@)])])
  1669. m4trace:m4/libtool.m4:1629: -1- AC_DEFUN([_LT_LINKER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
  1670. m4_require([_LT_DECL_SED])dnl
  1671. AC_CACHE_CHECK([$1], [$2],
  1672. [$2=no
  1673. save_LDFLAGS=$LDFLAGS
  1674. LDFLAGS="$LDFLAGS $3"
  1675. echo "$lt_simple_link_test_code" > conftest.$ac_ext
  1676. if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then
  1677. # The linker can only warn and ignore the option if not recognized
  1678. # So say no if there are warnings
  1679. if test -s conftest.err; then
  1680. # Append any errors to the config.log.
  1681. cat conftest.err 1>&AS_MESSAGE_LOG_FD
  1682. $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp
  1683. $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
  1684. if diff conftest.exp conftest.er2 >/dev/null; then
  1685. $2=yes
  1686. fi
  1687. else
  1688. $2=yes
  1689. fi
  1690. fi
  1691. $RM -r conftest*
  1692. LDFLAGS=$save_LDFLAGS
  1693. ])
  1694. if test yes = "[$]$2"; then
  1695. m4_if([$4], , :, [$4])
  1696. else
  1697. m4_if([$5], , :, [$5])
  1698. fi
  1699. ])
  1700. m4trace:m4/libtool.m4:1664: -1- AU_DEFUN([AC_LIBTOOL_LINKER_OPTION], [m4_if($#, 0, [_LT_LINKER_OPTION], [_LT_LINKER_OPTION($@)])])
  1701. m4trace:m4/libtool.m4:1664: -1- AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_LINKER_OPTION' is obsolete.
  1702. You should run autoupdate.])dnl
  1703. m4_if($#, 0, [_LT_LINKER_OPTION], [_LT_LINKER_OPTION($@)])])
  1704. m4trace:m4/libtool.m4:1671: -1- AC_DEFUN([LT_CMD_MAX_LEN], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
  1705. # find the maximum length of command line arguments
  1706. AC_MSG_CHECKING([the maximum length of command line arguments])
  1707. AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl
  1708. i=0
  1709. teststring=ABCD
  1710. case $build_os in
  1711. msdosdjgpp*)
  1712. # On DJGPP, this test can blow up pretty badly due to problems in libc
  1713. # (any single argument exceeding 2000 bytes causes a buffer overrun
  1714. # during glob expansion). Even if it were fixed, the result of this
  1715. # check would be larger than it should be.
  1716. lt_cv_sys_max_cmd_len=12288; # 12K is about right
  1717. ;;
  1718. gnu*)
  1719. # Under GNU Hurd, this test is not required because there is
  1720. # no limit to the length of command line arguments.
  1721. # Libtool will interpret -1 as no limit whatsoever
  1722. lt_cv_sys_max_cmd_len=-1;
  1723. ;;
  1724. cygwin* | mingw* | cegcc*)
  1725. # On Win9x/ME, this test blows up -- it succeeds, but takes
  1726. # about 5 minutes as the teststring grows exponentially.
  1727. # Worse, since 9x/ME are not pre-emptively multitasking,
  1728. # you end up with a "frozen" computer, even though with patience
  1729. # the test eventually succeeds (with a max line length of 256k).
  1730. # Instead, let's just punt: use the minimum linelength reported by
  1731. # all of the supported platforms: 8192 (on NT/2K/XP).
  1732. lt_cv_sys_max_cmd_len=8192;
  1733. ;;
  1734. mint*)
  1735. # On MiNT this can take a long time and run out of memory.
  1736. lt_cv_sys_max_cmd_len=8192;
  1737. ;;
  1738. amigaos*)
  1739. # On AmigaOS with pdksh, this test takes hours, literally.
  1740. # So we just punt and use a minimum line length of 8192.
  1741. lt_cv_sys_max_cmd_len=8192;
  1742. ;;
  1743. bitrig* | darwin* | dragonfly* | freebsd* | netbsd* | openbsd*)
  1744. # This has been around since 386BSD, at least. Likely further.
  1745. if test -x /sbin/sysctl; then
  1746. lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax`
  1747. elif test -x /usr/sbin/sysctl; then
  1748. lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax`
  1749. else
  1750. lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs
  1751. fi
  1752. # And add a safety zone
  1753. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
  1754. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
  1755. ;;
  1756. interix*)
  1757. # We know the value 262144 and hardcode it with a safety zone (like BSD)
  1758. lt_cv_sys_max_cmd_len=196608
  1759. ;;
  1760. os2*)
  1761. # The test takes a long time on OS/2.
  1762. lt_cv_sys_max_cmd_len=8192
  1763. ;;
  1764. osf*)
  1765. # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure
  1766. # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not
  1767. # nice to cause kernel panics so lets avoid the loop below.
  1768. # First set a reasonable default.
  1769. lt_cv_sys_max_cmd_len=16384
  1770. #
  1771. if test -x /sbin/sysconfig; then
  1772. case `/sbin/sysconfig -q proc exec_disable_arg_limit` in
  1773. *1*) lt_cv_sys_max_cmd_len=-1 ;;
  1774. esac
  1775. fi
  1776. ;;
  1777. sco3.2v5*)
  1778. lt_cv_sys_max_cmd_len=102400
  1779. ;;
  1780. sysv5* | sco5v6* | sysv4.2uw2*)
  1781. kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null`
  1782. if test -n "$kargmax"; then
  1783. lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'`
  1784. else
  1785. lt_cv_sys_max_cmd_len=32768
  1786. fi
  1787. ;;
  1788. *)
  1789. lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null`
  1790. if test -n "$lt_cv_sys_max_cmd_len" && \
  1791. test undefined != "$lt_cv_sys_max_cmd_len"; then
  1792. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
  1793. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
  1794. else
  1795. # Make teststring a little bigger before we do anything with it.
  1796. # a 1K string should be a reasonable start.
  1797. for i in 1 2 3 4 5 6 7 8; do
  1798. teststring=$teststring$teststring
  1799. done
  1800. SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}}
  1801. # If test is not a shell built-in, we'll probably end up computing a
  1802. # maximum length that is only half of the actual maximum length, but
  1803. # we can't tell.
  1804. while { test X`env echo "$teststring$teststring" 2>/dev/null` \
  1805. = "X$teststring$teststring"; } >/dev/null 2>&1 &&
  1806. test 17 != "$i" # 1/2 MB should be enough
  1807. do
  1808. i=`expr $i + 1`
  1809. teststring=$teststring$teststring
  1810. done
  1811. # Only check the string length outside the loop.
  1812. lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1`
  1813. teststring=
  1814. # Add a significant safety factor because C++ compilers can tack on
  1815. # massive amounts of additional arguments before passing them to the
  1816. # linker. It appears as though 1/2 is a usable value.
  1817. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2`
  1818. fi
  1819. ;;
  1820. esac
  1821. ])
  1822. if test -n "$lt_cv_sys_max_cmd_len"; then
  1823. AC_MSG_RESULT($lt_cv_sys_max_cmd_len)
  1824. else
  1825. AC_MSG_RESULT(none)
  1826. fi
  1827. max_cmd_len=$lt_cv_sys_max_cmd_len
  1828. _LT_DECL([], [max_cmd_len], [0],
  1829. [What is the maximum length of a command?])
  1830. ])
  1831. m4trace:m4/libtool.m4:1810: -1- AU_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [m4_if($#, 0, [LT_CMD_MAX_LEN], [LT_CMD_MAX_LEN($@)])])
  1832. m4trace:m4/libtool.m4:1810: -1- AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_SYS_MAX_CMD_LEN' is obsolete.
  1833. You should run autoupdate.])dnl
  1834. m4_if($#, 0, [LT_CMD_MAX_LEN], [LT_CMD_MAX_LEN($@)])])
  1835. m4trace:m4/libtool.m4:1921: -1- AC_DEFUN([LT_SYS_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl
  1836. if test yes != "$enable_dlopen"; then
  1837. enable_dlopen=unknown
  1838. enable_dlopen_self=unknown
  1839. enable_dlopen_self_static=unknown
  1840. else
  1841. lt_cv_dlopen=no
  1842. lt_cv_dlopen_libs=
  1843. case $host_os in
  1844. beos*)
  1845. lt_cv_dlopen=load_add_on
  1846. lt_cv_dlopen_libs=
  1847. lt_cv_dlopen_self=yes
  1848. ;;
  1849. mingw* | pw32* | cegcc*)
  1850. lt_cv_dlopen=LoadLibrary
  1851. lt_cv_dlopen_libs=
  1852. ;;
  1853. cygwin*)
  1854. lt_cv_dlopen=dlopen
  1855. lt_cv_dlopen_libs=
  1856. ;;
  1857. darwin*)
  1858. # if libdl is installed we need to link against it
  1859. AC_CHECK_LIB([dl], [dlopen],
  1860. [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl],[
  1861. lt_cv_dlopen=dyld
  1862. lt_cv_dlopen_libs=
  1863. lt_cv_dlopen_self=yes
  1864. ])
  1865. ;;
  1866. tpf*)
  1867. # Don't try to run any link tests for TPF. We know it's impossible
  1868. # because TPF is a cross-compiler, and we know how we open DSOs.
  1869. lt_cv_dlopen=dlopen
  1870. lt_cv_dlopen_libs=
  1871. lt_cv_dlopen_self=no
  1872. ;;
  1873. *)
  1874. AC_CHECK_FUNC([shl_load],
  1875. [lt_cv_dlopen=shl_load],
  1876. [AC_CHECK_LIB([dld], [shl_load],
  1877. [lt_cv_dlopen=shl_load lt_cv_dlopen_libs=-ldld],
  1878. [AC_CHECK_FUNC([dlopen],
  1879. [lt_cv_dlopen=dlopen],
  1880. [AC_CHECK_LIB([dl], [dlopen],
  1881. [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl],
  1882. [AC_CHECK_LIB([svld], [dlopen],
  1883. [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-lsvld],
  1884. [AC_CHECK_LIB([dld], [dld_link],
  1885. [lt_cv_dlopen=dld_link lt_cv_dlopen_libs=-ldld])
  1886. ])
  1887. ])
  1888. ])
  1889. ])
  1890. ])
  1891. ;;
  1892. esac
  1893. if test no = "$lt_cv_dlopen"; then
  1894. enable_dlopen=no
  1895. else
  1896. enable_dlopen=yes
  1897. fi
  1898. case $lt_cv_dlopen in
  1899. dlopen)
  1900. save_CPPFLAGS=$CPPFLAGS
  1901. test yes = "$ac_cv_header_dlfcn_h" && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H"
  1902. save_LDFLAGS=$LDFLAGS
  1903. wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\"
  1904. save_LIBS=$LIBS
  1905. LIBS="$lt_cv_dlopen_libs $LIBS"
  1906. AC_CACHE_CHECK([whether a program can dlopen itself],
  1907. lt_cv_dlopen_self, [dnl
  1908. _LT_TRY_DLOPEN_SELF(
  1909. lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes,
  1910. lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross)
  1911. ])
  1912. if test yes = "$lt_cv_dlopen_self"; then
  1913. wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\"
  1914. AC_CACHE_CHECK([whether a statically linked program can dlopen itself],
  1915. lt_cv_dlopen_self_static, [dnl
  1916. _LT_TRY_DLOPEN_SELF(
  1917. lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes,
  1918. lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross)
  1919. ])
  1920. fi
  1921. CPPFLAGS=$save_CPPFLAGS
  1922. LDFLAGS=$save_LDFLAGS
  1923. LIBS=$save_LIBS
  1924. ;;
  1925. esac
  1926. case $lt_cv_dlopen_self in
  1927. yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;;
  1928. *) enable_dlopen_self=unknown ;;
  1929. esac
  1930. case $lt_cv_dlopen_self_static in
  1931. yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;;
  1932. *) enable_dlopen_self_static=unknown ;;
  1933. esac
  1934. fi
  1935. _LT_DECL([dlopen_support], [enable_dlopen], [0],
  1936. [Whether dlopen is supported])
  1937. _LT_DECL([dlopen_self], [enable_dlopen_self], [0],
  1938. [Whether dlopen of programs is supported])
  1939. _LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0],
  1940. [Whether dlopen of statically linked programs is supported])
  1941. ])
  1942. m4trace:m4/libtool.m4:2046: -1- AU_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [m4_if($#, 0, [LT_SYS_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF($@)])])
  1943. m4trace:m4/libtool.m4:2046: -1- AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_DLOPEN_SELF' is obsolete.
  1944. You should run autoupdate.])dnl
  1945. m4_if($#, 0, [LT_SYS_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF($@)])])
  1946. m4trace:m4/libtool.m4:3167: -1- AC_DEFUN([_LT_PATH_TOOL_PREFIX], [m4_require([_LT_DECL_EGREP])dnl
  1947. AC_MSG_CHECKING([for $1])
  1948. AC_CACHE_VAL(lt_cv_path_MAGIC_CMD,
  1949. [case $MAGIC_CMD in
  1950. [[\\/*] | ?:[\\/]*])
  1951. lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path.
  1952. ;;
  1953. *)
  1954. lt_save_MAGIC_CMD=$MAGIC_CMD
  1955. lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR
  1956. dnl $ac_dummy forces splitting on constant user-supplied paths.
  1957. dnl POSIX.2 word splitting is done only on the output of word expansions,
  1958. dnl not every word. This closes a longstanding sh security hole.
  1959. ac_dummy="m4_if([$2], , $PATH, [$2])"
  1960. for ac_dir in $ac_dummy; do
  1961. IFS=$lt_save_ifs
  1962. test -z "$ac_dir" && ac_dir=.
  1963. if test -f "$ac_dir/$1"; then
  1964. lt_cv_path_MAGIC_CMD=$ac_dir/"$1"
  1965. if test -n "$file_magic_test_file"; then
  1966. case $deplibs_check_method in
  1967. "file_magic "*)
  1968. file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"`
  1969. MAGIC_CMD=$lt_cv_path_MAGIC_CMD
  1970. if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null |
  1971. $EGREP "$file_magic_regex" > /dev/null; then
  1972. :
  1973. else
  1974. cat <<_LT_EOF 1>&2
  1975. *** Warning: the command libtool uses to detect shared libraries,
  1976. *** $file_magic_cmd, produces output that libtool cannot recognize.
  1977. *** The result is that libtool may fail to recognize shared libraries
  1978. *** as such. This will affect the creation of libtool libraries that
  1979. *** depend on shared libraries, but programs linked with such libtool
  1980. *** libraries will work regardless of this problem. Nevertheless, you
  1981. *** may want to report the problem to your system manager and/or to
  1982. *** bug-libtool@gnu.org
  1983. _LT_EOF
  1984. fi ;;
  1985. esac
  1986. fi
  1987. break
  1988. fi
  1989. done
  1990. IFS=$lt_save_ifs
  1991. MAGIC_CMD=$lt_save_MAGIC_CMD
  1992. ;;
  1993. esac])
  1994. MAGIC_CMD=$lt_cv_path_MAGIC_CMD
  1995. if test -n "$MAGIC_CMD"; then
  1996. AC_MSG_RESULT($MAGIC_CMD)
  1997. else
  1998. AC_MSG_RESULT(no)
  1999. fi
  2000. _LT_DECL([], [MAGIC_CMD], [0],
  2001. [Used to examine libraries when file_magic_cmd begins with "file"])dnl
  2002. ])
  2003. m4trace:m4/libtool.m4:3229: -1- AU_DEFUN([AC_PATH_TOOL_PREFIX], [m4_if($#, 0, [_LT_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX($@)])])
  2004. m4trace:m4/libtool.m4:3229: -1- AC_DEFUN([AC_PATH_TOOL_PREFIX], [AC_DIAGNOSE([obsolete], [The macro `AC_PATH_TOOL_PREFIX' is obsolete.
  2005. You should run autoupdate.])dnl
  2006. m4_if($#, 0, [_LT_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX($@)])])
  2007. m4trace:m4/libtool.m4:3252: -1- AC_DEFUN([LT_PATH_LD], [AC_REQUIRE([AC_PROG_CC])dnl
  2008. AC_REQUIRE([AC_CANONICAL_HOST])dnl
  2009. AC_REQUIRE([AC_CANONICAL_BUILD])dnl
  2010. m4_require([_LT_DECL_SED])dnl
  2011. m4_require([_LT_DECL_EGREP])dnl
  2012. m4_require([_LT_PROG_ECHO_BACKSLASH])dnl
  2013. AC_ARG_WITH([gnu-ld],
  2014. [AS_HELP_STRING([--with-gnu-ld],
  2015. [assume the C compiler uses GNU ld @<:@default=no@:>@])],
  2016. [test no = "$withval" || with_gnu_ld=yes],
  2017. [with_gnu_ld=no])dnl
  2018. ac_prog=ld
  2019. if test yes = "$GCC"; then
  2020. # Check if gcc -print-prog-name=ld gives a path.
  2021. AC_MSG_CHECKING([for ld used by $CC])
  2022. case $host in
  2023. *-*-mingw*)
  2024. # gcc leaves a trailing carriage return, which upsets mingw
  2025. ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
  2026. *)
  2027. ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
  2028. esac
  2029. case $ac_prog in
  2030. # Accept absolute paths.
  2031. [[\\/]]* | ?:[[\\/]]*)
  2032. re_direlt='/[[^/]][[^/]]*/\.\./'
  2033. # Canonicalize the pathname of ld
  2034. ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'`
  2035. while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do
  2036. ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"`
  2037. done
  2038. test -z "$LD" && LD=$ac_prog
  2039. ;;
  2040. "")
  2041. # If it fails, then pretend we aren't using GCC.
  2042. ac_prog=ld
  2043. ;;
  2044. *)
  2045. # If it is relative, then search for the first ld in PATH.
  2046. with_gnu_ld=unknown
  2047. ;;
  2048. esac
  2049. elif test yes = "$with_gnu_ld"; then
  2050. AC_MSG_CHECKING([for GNU ld])
  2051. else
  2052. AC_MSG_CHECKING([for non-GNU ld])
  2053. fi
  2054. AC_CACHE_VAL(lt_cv_path_LD,
  2055. [if test -z "$LD"; then
  2056. lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR
  2057. for ac_dir in $PATH; do
  2058. IFS=$lt_save_ifs
  2059. test -z "$ac_dir" && ac_dir=.
  2060. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
  2061. lt_cv_path_LD=$ac_dir/$ac_prog
  2062. # Check to see if the program is GNU ld. I'd rather use --version,
  2063. # but apparently some variants of GNU ld only accept -v.
  2064. # Break only if it was the GNU/non-GNU ld that we prefer.
  2065. case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in
  2066. *GNU* | *'with BFD'*)
  2067. test no != "$with_gnu_ld" && break
  2068. ;;
  2069. *)
  2070. test yes != "$with_gnu_ld" && break
  2071. ;;
  2072. esac
  2073. fi
  2074. done
  2075. IFS=$lt_save_ifs
  2076. else
  2077. lt_cv_path_LD=$LD # Let the user override the test with a path.
  2078. fi])
  2079. LD=$lt_cv_path_LD
  2080. if test -n "$LD"; then
  2081. AC_MSG_RESULT($LD)
  2082. else
  2083. AC_MSG_RESULT(no)
  2084. fi
  2085. test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH])
  2086. _LT_PATH_LD_GNU
  2087. AC_SUBST([LD])
  2088. _LT_TAGDECL([], [LD], [1], [The linker used to build libraries])
  2089. ])
  2090. m4trace:m4/libtool.m4:3341: -1- AU_DEFUN([AM_PROG_LD], [m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
  2091. m4trace:m4/libtool.m4:3341: -1- AC_DEFUN([AM_PROG_LD], [AC_DIAGNOSE([obsolete], [The macro `AM_PROG_LD' is obsolete.
  2092. You should run autoupdate.])dnl
  2093. m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
  2094. m4trace:m4/libtool.m4:3342: -1- AU_DEFUN([AC_PROG_LD], [m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
  2095. m4trace:m4/libtool.m4:3342: -1- AC_DEFUN([AC_PROG_LD], [AC_DIAGNOSE([obsolete], [The macro `AC_PROG_LD' is obsolete.
  2096. You should run autoupdate.])dnl
  2097. m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
  2098. m4trace:m4/libtool.m4:3671: -1- AC_DEFUN([LT_PATH_NM], [AC_REQUIRE([AC_PROG_CC])dnl
  2099. AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM,
  2100. [if test -n "$NM"; then
  2101. # Let the user override the test.
  2102. lt_cv_path_NM=$NM
  2103. else
  2104. lt_nm_to_check=${ac_tool_prefix}nm
  2105. if test -n "$ac_tool_prefix" && test "$build" = "$host"; then
  2106. lt_nm_to_check="$lt_nm_to_check nm"
  2107. fi
  2108. for lt_tmp_nm in $lt_nm_to_check; do
  2109. lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR
  2110. for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do
  2111. IFS=$lt_save_ifs
  2112. test -z "$ac_dir" && ac_dir=.
  2113. tmp_nm=$ac_dir/$lt_tmp_nm
  2114. if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext"; then
  2115. # Check to see if the nm accepts a BSD-compat flag.
  2116. # Adding the 'sed 1q' prevents false positives on HP-UX, which says:
  2117. # nm: unknown option "B" ignored
  2118. # Tru64's nm complains that /dev/null is an invalid object file
  2119. # MSYS converts /dev/null to NUL, MinGW nm treats NUL as empty
  2120. case $build_os in
  2121. mingw*) lt_bad_file=conftest.nm/nofile ;;
  2122. *) lt_bad_file=/dev/null ;;
  2123. esac
  2124. case `"$tmp_nm" -B $lt_bad_file 2>&1 | sed '1q'` in
  2125. *$lt_bad_file* | *'Invalid file or object type'*)
  2126. lt_cv_path_NM="$tmp_nm -B"
  2127. break 2
  2128. ;;
  2129. *)
  2130. case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in
  2131. */dev/null*)
  2132. lt_cv_path_NM="$tmp_nm -p"
  2133. break 2
  2134. ;;
  2135. *)
  2136. lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but
  2137. continue # so that we can try to find one that supports BSD flags
  2138. ;;
  2139. esac
  2140. ;;
  2141. esac
  2142. fi
  2143. done
  2144. IFS=$lt_save_ifs
  2145. done
  2146. : ${lt_cv_path_NM=no}
  2147. fi])
  2148. if test no != "$lt_cv_path_NM"; then
  2149. NM=$lt_cv_path_NM
  2150. else
  2151. # Didn't find any BSD compatible name lister, look for dumpbin.
  2152. if test -n "$DUMPBIN"; then :
  2153. # Let the user override the test.
  2154. else
  2155. AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :)
  2156. case `$DUMPBIN -symbols -headers /dev/null 2>&1 | sed '1q'` in
  2157. *COFF*)
  2158. DUMPBIN="$DUMPBIN -symbols -headers"
  2159. ;;
  2160. *)
  2161. DUMPBIN=:
  2162. ;;
  2163. esac
  2164. fi
  2165. AC_SUBST([DUMPBIN])
  2166. if test : != "$DUMPBIN"; then
  2167. NM=$DUMPBIN
  2168. fi
  2169. fi
  2170. test -z "$NM" && NM=nm
  2171. AC_SUBST([NM])
  2172. _LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl
  2173. AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface],
  2174. [lt_cv_nm_interface="BSD nm"
  2175. echo "int some_variable = 0;" > conftest.$ac_ext
  2176. (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&AS_MESSAGE_LOG_FD)
  2177. (eval "$ac_compile" 2>conftest.err)
  2178. cat conftest.err >&AS_MESSAGE_LOG_FD
  2179. (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD)
  2180. (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out)
  2181. cat conftest.err >&AS_MESSAGE_LOG_FD
  2182. (eval echo "\"\$as_me:$LINENO: output\"" >&AS_MESSAGE_LOG_FD)
  2183. cat conftest.out >&AS_MESSAGE_LOG_FD
  2184. if $GREP 'External.*some_variable' conftest.out > /dev/null; then
  2185. lt_cv_nm_interface="MS dumpbin"
  2186. fi
  2187. rm -f conftest*])
  2188. ])
  2189. m4trace:m4/libtool.m4:3766: -1- AU_DEFUN([AM_PROG_NM], [m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
  2190. m4trace:m4/libtool.m4:3766: -1- AC_DEFUN([AM_PROG_NM], [AC_DIAGNOSE([obsolete], [The macro `AM_PROG_NM' is obsolete.
  2191. You should run autoupdate.])dnl
  2192. m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
  2193. m4trace:m4/libtool.m4:3767: -1- AU_DEFUN([AC_PROG_NM], [m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
  2194. m4trace:m4/libtool.m4:3767: -1- AC_DEFUN([AC_PROG_NM], [AC_DIAGNOSE([obsolete], [The macro `AC_PROG_NM' is obsolete.
  2195. You should run autoupdate.])dnl
  2196. m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
  2197. m4trace:m4/libtool.m4:3838: -1- AC_DEFUN([_LT_DLL_DEF_P], [dnl
  2198. test DEF = "`$SED -n dnl
  2199. -e '\''s/^[[ ]]*//'\'' dnl Strip leading whitespace
  2200. -e '\''/^\(;.*\)*$/d'\'' dnl Delete empty lines and comments
  2201. -e '\''s/^\(EXPORTS\|LIBRARY\)\([[ ]].*\)*$/DEF/p'\'' dnl
  2202. -e q dnl Only consider the first "real" line
  2203. $1`" dnl
  2204. ])
  2205. m4trace:m4/libtool.m4:3852: -1- AC_DEFUN([LT_LIB_M], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
  2206. LIBM=
  2207. case $host in
  2208. *-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-pw32* | *-*-darwin*)
  2209. # These system don't have libm, or don't need it
  2210. ;;
  2211. *-ncr-sysv4.3*)
  2212. AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM=-lmw)
  2213. AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm")
  2214. ;;
  2215. *)
  2216. AC_CHECK_LIB(m, cos, LIBM=-lm)
  2217. ;;
  2218. esac
  2219. AC_SUBST([LIBM])
  2220. ])
  2221. m4trace:m4/libtool.m4:3871: -1- AU_DEFUN([AC_CHECK_LIBM], [m4_if($#, 0, [LT_LIB_M], [LT_LIB_M($@)])])
  2222. m4trace:m4/libtool.m4:3871: -1- AC_DEFUN([AC_CHECK_LIBM], [AC_DIAGNOSE([obsolete], [The macro `AC_CHECK_LIBM' is obsolete.
  2223. You should run autoupdate.])dnl
  2224. m4_if($#, 0, [LT_LIB_M], [LT_LIB_M($@)])])
  2225. m4trace:m4/libtool.m4:8141: -1- AC_DEFUN([LT_PROG_GCJ], [m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ],
  2226. [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ],
  2227. [AC_CHECK_TOOL(GCJ, gcj,)
  2228. test set = "${GCJFLAGS+set}" || GCJFLAGS="-g -O2"
  2229. AC_SUBST(GCJFLAGS)])])[]dnl
  2230. ])
  2231. m4trace:m4/libtool.m4:8150: -1- AU_DEFUN([LT_AC_PROG_GCJ], [m4_if($#, 0, [LT_PROG_GCJ], [LT_PROG_GCJ($@)])])
  2232. m4trace:m4/libtool.m4:8150: -1- AC_DEFUN([LT_AC_PROG_GCJ], [AC_DIAGNOSE([obsolete], [The macro `LT_AC_PROG_GCJ' is obsolete.
  2233. You should run autoupdate.])dnl
  2234. m4_if($#, 0, [LT_PROG_GCJ], [LT_PROG_GCJ($@)])])
  2235. m4trace:m4/libtool.m4:8157: -1- AC_DEFUN([LT_PROG_GO], [AC_CHECK_TOOL(GOC, gccgo,)
  2236. ])
  2237. m4trace:m4/libtool.m4:8164: -1- AC_DEFUN([LT_PROG_RC], [AC_CHECK_TOOL(RC, windres,)
  2238. ])
  2239. m4trace:m4/libtool.m4:8169: -1- AU_DEFUN([LT_AC_PROG_RC], [m4_if($#, 0, [LT_PROG_RC], [LT_PROG_RC($@)])])
  2240. m4trace:m4/libtool.m4:8169: -1- AC_DEFUN([LT_AC_PROG_RC], [AC_DIAGNOSE([obsolete], [The macro `LT_AC_PROG_RC' is obsolete.
  2241. You should run autoupdate.])dnl
  2242. m4_if($#, 0, [LT_PROG_RC], [LT_PROG_RC($@)])])
  2243. m4trace:m4/libtool.m4:8289: -1- AU_DEFUN([LT_AC_PROG_SED], [m4_if($#, 0, [AC_PROG_SED], [AC_PROG_SED($@)])])
  2244. m4trace:m4/libtool.m4:8289: -1- AC_DEFUN([LT_AC_PROG_SED], [AC_DIAGNOSE([obsolete], [The macro `LT_AC_PROG_SED' is obsolete.
  2245. You should run autoupdate.])dnl
  2246. m4_if($#, 0, [AC_PROG_SED], [AC_PROG_SED($@)])])
  2247. m4trace:m4/ltoptions.m4:14: -1- AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])])
  2248. m4trace:m4/ltoptions.m4:113: -1- AU_DEFUN([AC_LIBTOOL_DLOPEN], [_LT_SET_OPTION([LT_INIT], [dlopen])
  2249. AC_DIAGNOSE([obsolete],
  2250. [$0: Remove this warning and the call to _LT_SET_OPTION when you
  2251. put the 'dlopen' option into LT_INIT's first parameter.])
  2252. ])
  2253. m4trace:m4/ltoptions.m4:113: -1- AC_DEFUN([AC_LIBTOOL_DLOPEN], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_DLOPEN' is obsolete.
  2254. You should run autoupdate.])dnl
  2255. _LT_SET_OPTION([LT_INIT], [dlopen])
  2256. AC_DIAGNOSE([obsolete],
  2257. [$0: Remove this warning and the call to _LT_SET_OPTION when you
  2258. put the 'dlopen' option into LT_INIT's first parameter.])
  2259. ])
  2260. m4trace:m4/ltoptions.m4:148: -1- AU_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
  2261. _LT_SET_OPTION([LT_INIT], [win32-dll])
  2262. AC_DIAGNOSE([obsolete],
  2263. [$0: Remove this warning and the call to _LT_SET_OPTION when you
  2264. put the 'win32-dll' option into LT_INIT's first parameter.])
  2265. ])
  2266. m4trace:m4/ltoptions.m4:148: -1- AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_WIN32_DLL' is obsolete.
  2267. You should run autoupdate.])dnl
  2268. AC_REQUIRE([AC_CANONICAL_HOST])dnl
  2269. _LT_SET_OPTION([LT_INIT], [win32-dll])
  2270. AC_DIAGNOSE([obsolete],
  2271. [$0: Remove this warning and the call to _LT_SET_OPTION when you
  2272. put the 'win32-dll' option into LT_INIT's first parameter.])
  2273. ])
  2274. m4trace:m4/ltoptions.m4:197: -1- AC_DEFUN([AC_ENABLE_SHARED], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared])
  2275. ])
  2276. m4trace:m4/ltoptions.m4:201: -1- AC_DEFUN([AC_DISABLE_SHARED], [_LT_SET_OPTION([LT_INIT], [disable-shared])
  2277. ])
  2278. m4trace:m4/ltoptions.m4:205: -1- AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)])
  2279. m4trace:m4/ltoptions.m4:205: -1- AC_DEFUN([AM_ENABLE_SHARED], [AC_DIAGNOSE([obsolete], [The macro `AM_ENABLE_SHARED' is obsolete.
  2280. You should run autoupdate.])dnl
  2281. AC_ENABLE_SHARED($@)])
  2282. m4trace:m4/ltoptions.m4:206: -1- AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)])
  2283. m4trace:m4/ltoptions.m4:206: -1- AC_DEFUN([AM_DISABLE_SHARED], [AC_DIAGNOSE([obsolete], [The macro `AM_DISABLE_SHARED' is obsolete.
  2284. You should run autoupdate.])dnl
  2285. AC_DISABLE_SHARED($@)])
  2286. m4trace:m4/ltoptions.m4:251: -1- AC_DEFUN([AC_ENABLE_STATIC], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static])
  2287. ])
  2288. m4trace:m4/ltoptions.m4:255: -1- AC_DEFUN([AC_DISABLE_STATIC], [_LT_SET_OPTION([LT_INIT], [disable-static])
  2289. ])
  2290. m4trace:m4/ltoptions.m4:259: -1- AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)])
  2291. m4trace:m4/ltoptions.m4:259: -1- AC_DEFUN([AM_ENABLE_STATIC], [AC_DIAGNOSE([obsolete], [The macro `AM_ENABLE_STATIC' is obsolete.
  2292. You should run autoupdate.])dnl
  2293. AC_ENABLE_STATIC($@)])
  2294. m4trace:m4/ltoptions.m4:260: -1- AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)])
  2295. m4trace:m4/ltoptions.m4:260: -1- AC_DEFUN([AM_DISABLE_STATIC], [AC_DIAGNOSE([obsolete], [The macro `AM_DISABLE_STATIC' is obsolete.
  2296. You should run autoupdate.])dnl
  2297. AC_DISABLE_STATIC($@)])
  2298. m4trace:m4/ltoptions.m4:305: -1- AU_DEFUN([AC_ENABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install])
  2299. AC_DIAGNOSE([obsolete],
  2300. [$0: Remove this warning and the call to _LT_SET_OPTION when you put
  2301. the 'fast-install' option into LT_INIT's first parameter.])
  2302. ])
  2303. m4trace:m4/ltoptions.m4:305: -1- AC_DEFUN([AC_ENABLE_FAST_INSTALL], [AC_DIAGNOSE([obsolete], [The macro `AC_ENABLE_FAST_INSTALL' is obsolete.
  2304. You should run autoupdate.])dnl
  2305. _LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install])
  2306. AC_DIAGNOSE([obsolete],
  2307. [$0: Remove this warning and the call to _LT_SET_OPTION when you put
  2308. the 'fast-install' option into LT_INIT's first parameter.])
  2309. ])
  2310. m4trace:m4/ltoptions.m4:312: -1- AU_DEFUN([AC_DISABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], [disable-fast-install])
  2311. AC_DIAGNOSE([obsolete],
  2312. [$0: Remove this warning and the call to _LT_SET_OPTION when you put
  2313. the 'disable-fast-install' option into LT_INIT's first parameter.])
  2314. ])
  2315. m4trace:m4/ltoptions.m4:312: -1- AC_DEFUN([AC_DISABLE_FAST_INSTALL], [AC_DIAGNOSE([obsolete], [The macro `AC_DISABLE_FAST_INSTALL' is obsolete.
  2316. You should run autoupdate.])dnl
  2317. _LT_SET_OPTION([LT_INIT], [disable-fast-install])
  2318. AC_DIAGNOSE([obsolete],
  2319. [$0: Remove this warning and the call to _LT_SET_OPTION when you put
  2320. the 'disable-fast-install' option into LT_INIT's first parameter.])
  2321. ])
  2322. m4trace:m4/ltoptions.m4:411: -1- AU_DEFUN([AC_LIBTOOL_PICMODE], [_LT_SET_OPTION([LT_INIT], [pic-only])
  2323. AC_DIAGNOSE([obsolete],
  2324. [$0: Remove this warning and the call to _LT_SET_OPTION when you
  2325. put the 'pic-only' option into LT_INIT's first parameter.])
  2326. ])
  2327. m4trace:m4/ltoptions.m4:411: -1- AC_DEFUN([AC_LIBTOOL_PICMODE], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_PICMODE' is obsolete.
  2328. You should run autoupdate.])dnl
  2329. _LT_SET_OPTION([LT_INIT], [pic-only])
  2330. AC_DIAGNOSE([obsolete],
  2331. [$0: Remove this warning and the call to _LT_SET_OPTION when you
  2332. put the 'pic-only' option into LT_INIT's first parameter.])
  2333. ])
  2334. m4trace:m4/ltsugar.m4:14: -1- AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])])
  2335. m4trace:m4/ltversion.m4:18: -1- AC_DEFUN([LTVERSION_VERSION], [macro_version='2.4.6'
  2336. macro_revision='2.4.6'
  2337. _LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?])
  2338. _LT_DECL(, macro_revision, 0)
  2339. ])
  2340. m4trace:m4/lt~obsolete.m4:37: -1- AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])])
  2341. m4trace:m4/lt~obsolete.m4:41: -1- AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])
  2342. m4trace:m4/lt~obsolete.m4:42: -1- AC_DEFUN([_LT_AC_SHELL_INIT])
  2343. m4trace:m4/lt~obsolete.m4:43: -1- AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])
  2344. m4trace:m4/lt~obsolete.m4:45: -1- AC_DEFUN([_LT_AC_TAGVAR])
  2345. m4trace:m4/lt~obsolete.m4:46: -1- AC_DEFUN([AC_LTDL_ENABLE_INSTALL])
  2346. m4trace:m4/lt~obsolete.m4:47: -1- AC_DEFUN([AC_LTDL_PREOPEN])
  2347. m4trace:m4/lt~obsolete.m4:48: -1- AC_DEFUN([_LT_AC_SYS_COMPILER])
  2348. m4trace:m4/lt~obsolete.m4:49: -1- AC_DEFUN([_LT_AC_LOCK])
  2349. m4trace:m4/lt~obsolete.m4:50: -1- AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])
  2350. m4trace:m4/lt~obsolete.m4:51: -1- AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])
  2351. m4trace:m4/lt~obsolete.m4:52: -1- AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])
  2352. m4trace:m4/lt~obsolete.m4:53: -1- AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])
  2353. m4trace:m4/lt~obsolete.m4:54: -1- AC_DEFUN([AC_LIBTOOL_OBJDIR])
  2354. m4trace:m4/lt~obsolete.m4:55: -1- AC_DEFUN([AC_LTDL_OBJDIR])
  2355. m4trace:m4/lt~obsolete.m4:56: -1- AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])
  2356. m4trace:m4/lt~obsolete.m4:57: -1- AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])
  2357. m4trace:m4/lt~obsolete.m4:58: -1- AC_DEFUN([AC_PATH_MAGIC])
  2358. m4trace:m4/lt~obsolete.m4:59: -1- AC_DEFUN([AC_PROG_LD_GNU])
  2359. m4trace:m4/lt~obsolete.m4:60: -1- AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])
  2360. m4trace:m4/lt~obsolete.m4:61: -1- AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])
  2361. m4trace:m4/lt~obsolete.m4:62: -1- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])
  2362. m4trace:m4/lt~obsolete.m4:63: -1- AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])
  2363. m4trace:m4/lt~obsolete.m4:64: -1- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])
  2364. m4trace:m4/lt~obsolete.m4:65: -1- AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])
  2365. m4trace:m4/lt~obsolete.m4:66: -1- AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])
  2366. m4trace:m4/lt~obsolete.m4:67: -1- AC_DEFUN([LT_AC_PROG_EGREP])
  2367. m4trace:m4/lt~obsolete.m4:72: -1- AC_DEFUN([_AC_PROG_LIBTOOL])
  2368. m4trace:m4/lt~obsolete.m4:73: -1- AC_DEFUN([AC_LIBTOOL_SETUP])
  2369. m4trace:m4/lt~obsolete.m4:74: -1- AC_DEFUN([_LT_AC_CHECK_DLFCN])
  2370. m4trace:m4/lt~obsolete.m4:75: -1- AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])
  2371. m4trace:m4/lt~obsolete.m4:76: -1- AC_DEFUN([_LT_AC_TAGCONFIG])
  2372. m4trace:m4/lt~obsolete.m4:78: -1- AC_DEFUN([_LT_AC_LANG_CXX])
  2373. m4trace:m4/lt~obsolete.m4:79: -1- AC_DEFUN([_LT_AC_LANG_F77])
  2374. m4trace:m4/lt~obsolete.m4:80: -1- AC_DEFUN([_LT_AC_LANG_GCJ])
  2375. m4trace:m4/lt~obsolete.m4:81: -1- AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])
  2376. m4trace:m4/lt~obsolete.m4:82: -1- AC_DEFUN([_LT_AC_LANG_C_CONFIG])
  2377. m4trace:m4/lt~obsolete.m4:83: -1- AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])
  2378. m4trace:m4/lt~obsolete.m4:84: -1- AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])
  2379. m4trace:m4/lt~obsolete.m4:85: -1- AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])
  2380. m4trace:m4/lt~obsolete.m4:86: -1- AC_DEFUN([_LT_AC_LANG_F77_CONFIG])
  2381. m4trace:m4/lt~obsolete.m4:87: -1- AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])
  2382. m4trace:m4/lt~obsolete.m4:88: -1- AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])
  2383. m4trace:m4/lt~obsolete.m4:89: -1- AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])
  2384. m4trace:m4/lt~obsolete.m4:90: -1- AC_DEFUN([_LT_AC_LANG_RC_CONFIG])
  2385. m4trace:m4/lt~obsolete.m4:91: -1- AC_DEFUN([AC_LIBTOOL_CONFIG])
  2386. m4trace:m4/lt~obsolete.m4:92: -1- AC_DEFUN([_LT_AC_FILE_LTDLL_C])
  2387. m4trace:m4/lt~obsolete.m4:94: -1- AC_DEFUN([_LT_AC_PROG_CXXCPP])
  2388. m4trace:m4/lt~obsolete.m4:97: -1- AC_DEFUN([_LT_PROG_F77])
  2389. m4trace:m4/lt~obsolete.m4:98: -1- AC_DEFUN([_LT_PROG_FC])
  2390. m4trace:m4/lt~obsolete.m4:99: -1- AC_DEFUN([_LT_PROG_CXX])
  2391. m4trace:configure.ac:2: -1- m4_pattern_forbid([^_?A[CHUM]_])
  2392. m4trace:configure.ac:2: -1- m4_pattern_forbid([_AC_])
  2393. m4trace:configure.ac:2: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS'])
  2394. m4trace:configure.ac:2: -1- m4_pattern_allow([^AS_FLAGS$])
  2395. m4trace:configure.ac:2: -1- m4_pattern_forbid([^_?m4_])
  2396. m4trace:configure.ac:2: -1- m4_pattern_forbid([^dnl$])
  2397. m4trace:configure.ac:2: -1- m4_pattern_forbid([^_?AS_])
  2398. m4trace:configure.ac:2: -1- m4_pattern_allow([^SHELL$])
  2399. m4trace:configure.ac:2: -1- m4_pattern_allow([^PATH_SEPARATOR$])
  2400. m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_NAME$])
  2401. m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
  2402. m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_VERSION$])
  2403. m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_STRING$])
  2404. m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
  2405. m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_URL$])
  2406. m4trace:configure.ac:2: -1- m4_pattern_allow([^exec_prefix$])
  2407. m4trace:configure.ac:2: -1- m4_pattern_allow([^prefix$])
  2408. m4trace:configure.ac:2: -1- m4_pattern_allow([^program_transform_name$])
  2409. m4trace:configure.ac:2: -1- m4_pattern_allow([^bindir$])
  2410. m4trace:configure.ac:2: -1- m4_pattern_allow([^sbindir$])
  2411. m4trace:configure.ac:2: -1- m4_pattern_allow([^libexecdir$])
  2412. m4trace:configure.ac:2: -1- m4_pattern_allow([^datarootdir$])
  2413. m4trace:configure.ac:2: -1- m4_pattern_allow([^datadir$])
  2414. m4trace:configure.ac:2: -1- m4_pattern_allow([^sysconfdir$])
  2415. m4trace:configure.ac:2: -1- m4_pattern_allow([^sharedstatedir$])
  2416. m4trace:configure.ac:2: -1- m4_pattern_allow([^localstatedir$])
  2417. m4trace:configure.ac:2: -1- m4_pattern_allow([^runstatedir$])
  2418. m4trace:configure.ac:2: -1- m4_pattern_allow([^includedir$])
  2419. m4trace:configure.ac:2: -1- m4_pattern_allow([^oldincludedir$])
  2420. m4trace:configure.ac:2: -1- m4_pattern_allow([^docdir$])
  2421. m4trace:configure.ac:2: -1- m4_pattern_allow([^infodir$])
  2422. m4trace:configure.ac:2: -1- m4_pattern_allow([^htmldir$])
  2423. m4trace:configure.ac:2: -1- m4_pattern_allow([^dvidir$])
  2424. m4trace:configure.ac:2: -1- m4_pattern_allow([^pdfdir$])
  2425. m4trace:configure.ac:2: -1- m4_pattern_allow([^psdir$])
  2426. m4trace:configure.ac:2: -1- m4_pattern_allow([^libdir$])
  2427. m4trace:configure.ac:2: -1- m4_pattern_allow([^localedir$])
  2428. m4trace:configure.ac:2: -1- m4_pattern_allow([^mandir$])
  2429. m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_NAME$])
  2430. m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
  2431. m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_VERSION$])
  2432. m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_STRING$])
  2433. m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
  2434. m4trace:configure.ac:2: -1- m4_pattern_allow([^PACKAGE_URL$])
  2435. m4trace:configure.ac:2: -1- m4_pattern_allow([^DEFS$])
  2436. m4trace:configure.ac:2: -1- m4_pattern_allow([^ECHO_C$])
  2437. m4trace:configure.ac:2: -1- m4_pattern_allow([^ECHO_N$])
  2438. m4trace:configure.ac:2: -1- m4_pattern_allow([^ECHO_T$])
  2439. m4trace:configure.ac:2: -1- m4_pattern_allow([^LIBS$])
  2440. m4trace:configure.ac:2: -1- m4_pattern_allow([^build_alias$])
  2441. m4trace:configure.ac:2: -1- m4_pattern_allow([^host_alias$])
  2442. m4trace:configure.ac:2: -1- m4_pattern_allow([^target_alias$])
  2443. m4trace:configure.ac:4: -1- AC_CONFIG_MACRO_DIR([m4])
  2444. m4trace:configure.ac:6: -1- AM_INIT_AUTOMAKE([1.10 foreign])
  2445. m4trace:configure.ac:6: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$])
  2446. m4trace:configure.ac:6: -1- AM_SET_CURRENT_AUTOMAKE_VERSION
  2447. m4trace:configure.ac:6: -1- AM_AUTOMAKE_VERSION([1.15])
  2448. m4trace:configure.ac:6: -1- _AM_AUTOCONF_VERSION([2.69])
  2449. m4trace:configure.ac:6: -1- m4_pattern_allow([^INSTALL_PROGRAM$])
  2450. m4trace:configure.ac:6: -1- m4_pattern_allow([^INSTALL_SCRIPT$])
  2451. m4trace:configure.ac:6: -1- m4_pattern_allow([^INSTALL_DATA$])
  2452. m4trace:configure.ac:6: -1- m4_pattern_allow([^am__isrc$])
  2453. m4trace:configure.ac:6: -1- _AM_SUBST_NOTMAKE([am__isrc])
  2454. m4trace:configure.ac:6: -1- m4_pattern_allow([^CYGPATH_W$])
  2455. m4trace:configure.ac:6: -1- _AM_SET_OPTIONS([1.10 foreign])
  2456. m4trace:configure.ac:6: -1- _AM_SET_OPTION([1.10])
  2457. m4trace:configure.ac:6: -2- _AM_MANGLE_OPTION([1.10])
  2458. m4trace:configure.ac:6: -1- _AM_SET_OPTION([foreign])
  2459. m4trace:configure.ac:6: -2- _AM_MANGLE_OPTION([foreign])
  2460. m4trace:configure.ac:6: -1- m4_pattern_allow([^PACKAGE$])
  2461. m4trace:configure.ac:6: -1- m4_pattern_allow([^VERSION$])
  2462. m4trace:configure.ac:6: -1- _AM_IF_OPTION([no-define], [], [AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package])
  2463. AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])
  2464. m4trace:configure.ac:6: -2- _AM_MANGLE_OPTION([no-define])
  2465. m4trace:configure.ac:6: -1- m4_pattern_allow([^PACKAGE$])
  2466. m4trace:configure.ac:6: -1- m4_pattern_allow([^VERSION$])
  2467. m4trace:configure.ac:6: -1- AM_SANITY_CHECK
  2468. m4trace:configure.ac:6: -1- AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])
  2469. m4trace:configure.ac:6: -1- AM_MISSING_HAS_RUN
  2470. m4trace:configure.ac:6: -1- AM_AUX_DIR_EXPAND
  2471. m4trace:configure.ac:6: -1- m4_pattern_allow([^ACLOCAL$])
  2472. m4trace:configure.ac:6: -1- AM_MISSING_PROG([AUTOCONF], [autoconf])
  2473. m4trace:configure.ac:6: -1- m4_pattern_allow([^AUTOCONF$])
  2474. m4trace:configure.ac:6: -1- AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])
  2475. m4trace:configure.ac:6: -1- m4_pattern_allow([^AUTOMAKE$])
  2476. m4trace:configure.ac:6: -1- AM_MISSING_PROG([AUTOHEADER], [autoheader])
  2477. m4trace:configure.ac:6: -1- m4_pattern_allow([^AUTOHEADER$])
  2478. m4trace:configure.ac:6: -1- AM_MISSING_PROG([MAKEINFO], [makeinfo])
  2479. m4trace:configure.ac:6: -1- m4_pattern_allow([^MAKEINFO$])
  2480. m4trace:configure.ac:6: -1- AM_PROG_INSTALL_SH
  2481. m4trace:configure.ac:6: -1- m4_pattern_allow([^install_sh$])
  2482. m4trace:configure.ac:6: -1- AM_PROG_INSTALL_STRIP
  2483. m4trace:configure.ac:6: -1- m4_pattern_allow([^STRIP$])
  2484. m4trace:configure.ac:6: -1- m4_pattern_allow([^INSTALL_STRIP_PROGRAM$])
  2485. m4trace:configure.ac:6: -1- m4_pattern_allow([^MKDIR_P$])
  2486. m4trace:configure.ac:6: -1- m4_pattern_allow([^mkdir_p$])
  2487. m4trace:configure.ac:6: -1- m4_pattern_allow([^AWK$])
  2488. m4trace:configure.ac:6: -1- m4_pattern_allow([^SET_MAKE$])
  2489. m4trace:configure.ac:6: -1- AM_SET_LEADING_DOT
  2490. m4trace:configure.ac:6: -1- m4_pattern_allow([^am__leading_dot$])
  2491. m4trace:configure.ac:6: -1- _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
  2492. [_AM_PROG_TAR([v7])])])
  2493. m4trace:configure.ac:6: -2- _AM_MANGLE_OPTION([tar-ustar])
  2494. m4trace:configure.ac:6: -1- _AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])
  2495. m4trace:configure.ac:6: -2- _AM_MANGLE_OPTION([tar-pax])
  2496. m4trace:configure.ac:6: -1- _AM_PROG_TAR([v7])
  2497. m4trace:configure.ac:6: -1- m4_pattern_allow([^AMTAR$])
  2498. m4trace:configure.ac:6: -1- m4_pattern_allow([^am__tar$])
  2499. m4trace:configure.ac:6: -1- m4_pattern_allow([^am__untar$])
  2500. m4trace:configure.ac:6: -1- _AM_IF_OPTION([no-dependencies], [], [AC_PROVIDE_IFELSE([AC_PROG_CC],
  2501. [_AM_DEPENDENCIES([CC])],
  2502. [m4_define([AC_PROG_CC],
  2503. m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl
  2504. AC_PROVIDE_IFELSE([AC_PROG_CXX],
  2505. [_AM_DEPENDENCIES([CXX])],
  2506. [m4_define([AC_PROG_CXX],
  2507. m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl
  2508. AC_PROVIDE_IFELSE([AC_PROG_OBJC],
  2509. [_AM_DEPENDENCIES([OBJC])],
  2510. [m4_define([AC_PROG_OBJC],
  2511. m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl
  2512. AC_PROVIDE_IFELSE([AC_PROG_OBJCXX],
  2513. [_AM_DEPENDENCIES([OBJCXX])],
  2514. [m4_define([AC_PROG_OBJCXX],
  2515. m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl
  2516. ])
  2517. m4trace:configure.ac:6: -2- _AM_MANGLE_OPTION([no-dependencies])
  2518. m4trace:configure.ac:6: -1- AM_SILENT_RULES
  2519. m4trace:configure.ac:6: -1- m4_pattern_allow([^AM_V$])
  2520. m4trace:configure.ac:6: -1- AM_SUBST_NOTMAKE([AM_V])
  2521. m4trace:configure.ac:6: -1- _AM_SUBST_NOTMAKE([AM_V])
  2522. m4trace:configure.ac:6: -1- m4_pattern_allow([^AM_DEFAULT_V$])
  2523. m4trace:configure.ac:6: -1- AM_SUBST_NOTMAKE([AM_DEFAULT_V])
  2524. m4trace:configure.ac:6: -1- _AM_SUBST_NOTMAKE([AM_DEFAULT_V])
  2525. m4trace:configure.ac:6: -1- m4_pattern_allow([^AM_DEFAULT_VERBOSITY$])
  2526. m4trace:configure.ac:6: -1- m4_pattern_allow([^AM_BACKSLASH$])
  2527. m4trace:configure.ac:6: -1- _AM_SUBST_NOTMAKE([AM_BACKSLASH])
  2528. m4trace:configure.ac:7: -1- AM_SILENT_RULES([yes])
  2529. m4trace:configure.ac:7: -1- m4_pattern_allow([^AM_V$])
  2530. m4trace:configure.ac:7: -1- AM_SUBST_NOTMAKE([AM_V])
  2531. m4trace:configure.ac:7: -1- _AM_SUBST_NOTMAKE([AM_V])
  2532. m4trace:configure.ac:7: -1- m4_pattern_allow([^AM_DEFAULT_V$])
  2533. m4trace:configure.ac:7: -1- AM_SUBST_NOTMAKE([AM_DEFAULT_V])
  2534. m4trace:configure.ac:7: -1- _AM_SUBST_NOTMAKE([AM_DEFAULT_V])
  2535. m4trace:configure.ac:7: -1- m4_pattern_allow([^AM_DEFAULT_VERBOSITY$])
  2536. m4trace:configure.ac:7: -1- m4_pattern_allow([^AM_BACKSLASH$])
  2537. m4trace:configure.ac:7: -1- _AM_SUBST_NOTMAKE([AM_BACKSLASH])
  2538. m4trace:configure.ac:13: -1- m4_pattern_allow([^CC$])
  2539. m4trace:configure.ac:13: -1- m4_pattern_allow([^CFLAGS$])
  2540. m4trace:configure.ac:13: -1- m4_pattern_allow([^LDFLAGS$])
  2541. m4trace:configure.ac:13: -1- m4_pattern_allow([^LIBS$])
  2542. m4trace:configure.ac:13: -1- m4_pattern_allow([^CPPFLAGS$])
  2543. m4trace:configure.ac:13: -1- m4_pattern_allow([^CC$])
  2544. m4trace:configure.ac:13: -1- m4_pattern_allow([^CC$])
  2545. m4trace:configure.ac:13: -1- m4_pattern_allow([^CC$])
  2546. m4trace:configure.ac:13: -1- m4_pattern_allow([^CC$])
  2547. m4trace:configure.ac:13: -1- m4_pattern_allow([^ac_ct_CC$])
  2548. m4trace:configure.ac:13: -1- m4_pattern_allow([^EXEEXT$])
  2549. m4trace:configure.ac:13: -1- m4_pattern_allow([^OBJEXT$])
  2550. m4trace:configure.ac:13: -1- _AM_PROG_CC_C_O
  2551. m4trace:configure.ac:13: -1- AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext])
  2552. m4trace:configure.ac:13: -1- _AM_DEPENDENCIES([CC])
  2553. m4trace:configure.ac:13: -1- AM_SET_DEPDIR
  2554. m4trace:configure.ac:13: -1- m4_pattern_allow([^DEPDIR$])
  2555. m4trace:configure.ac:13: -1- AM_OUTPUT_DEPENDENCY_COMMANDS
  2556. m4trace:configure.ac:13: -1- AM_MAKE_INCLUDE
  2557. m4trace:configure.ac:13: -1- m4_pattern_allow([^am__include$])
  2558. m4trace:configure.ac:13: -1- m4_pattern_allow([^am__quote$])
  2559. m4trace:configure.ac:13: -1- AM_DEP_TRACK
  2560. m4trace:configure.ac:13: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
  2561. m4trace:configure.ac:13: -1- m4_pattern_allow([^AMDEP_TRUE$])
  2562. m4trace:configure.ac:13: -1- m4_pattern_allow([^AMDEP_FALSE$])
  2563. m4trace:configure.ac:13: -1- _AM_SUBST_NOTMAKE([AMDEP_TRUE])
  2564. m4trace:configure.ac:13: -1- _AM_SUBST_NOTMAKE([AMDEP_FALSE])
  2565. m4trace:configure.ac:13: -1- m4_pattern_allow([^AMDEPBACKSLASH$])
  2566. m4trace:configure.ac:13: -1- _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])
  2567. m4trace:configure.ac:13: -1- m4_pattern_allow([^am__nodep$])
  2568. m4trace:configure.ac:13: -1- _AM_SUBST_NOTMAKE([am__nodep])
  2569. m4trace:configure.ac:13: -1- m4_pattern_allow([^CCDEPMODE$])
  2570. m4trace:configure.ac:13: -1- AM_CONDITIONAL([am__fastdepCC], [
  2571. test "x$enable_dependency_tracking" != xno \
  2572. && test "$am_cv_CC_dependencies_compiler_type" = gcc3])
  2573. m4trace:configure.ac:13: -1- m4_pattern_allow([^am__fastdepCC_TRUE$])
  2574. m4trace:configure.ac:13: -1- m4_pattern_allow([^am__fastdepCC_FALSE$])
  2575. m4trace:configure.ac:13: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE])
  2576. m4trace:configure.ac:13: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE])
  2577. m4trace:configure.ac:14: -1- AC_PROG_LIBTOOL
  2578. m4trace:configure.ac:14: -1- _m4_warn([obsolete], [The macro `AC_PROG_LIBTOOL' is obsolete.
  2579. You should run autoupdate.], [m4/libtool.m4:99: AC_PROG_LIBTOOL is expanded from...
  2580. configure.ac:14: the top level])
  2581. m4trace:configure.ac:14: -1- LT_INIT
  2582. m4trace:configure.ac:14: -1- m4_pattern_forbid([^_?LT_[A-Z_]+$])
  2583. m4trace:configure.ac:14: -1- m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])
  2584. m4trace:configure.ac:14: -1- LTOPTIONS_VERSION
  2585. m4trace:configure.ac:14: -1- LTSUGAR_VERSION
  2586. m4trace:configure.ac:14: -1- LTVERSION_VERSION
  2587. m4trace:configure.ac:14: -1- LTOBSOLETE_VERSION
  2588. m4trace:configure.ac:14: -1- _LT_PROG_LTMAIN
  2589. m4trace:configure.ac:14: -1- m4_pattern_allow([^LIBTOOL$])
  2590. m4trace:configure.ac:14: -1- m4_pattern_allow([^build$])
  2591. m4trace:configure.ac:14: -1- m4_pattern_allow([^build_cpu$])
  2592. m4trace:configure.ac:14: -1- m4_pattern_allow([^build_vendor$])
  2593. m4trace:configure.ac:14: -1- m4_pattern_allow([^build_os$])
  2594. m4trace:configure.ac:14: -1- m4_pattern_allow([^host$])
  2595. m4trace:configure.ac:14: -1- m4_pattern_allow([^host_cpu$])
  2596. m4trace:configure.ac:14: -1- m4_pattern_allow([^host_vendor$])
  2597. m4trace:configure.ac:14: -1- m4_pattern_allow([^host_os$])
  2598. m4trace:configure.ac:14: -1- _LT_PREPARE_SED_QUOTE_VARS
  2599. m4trace:configure.ac:14: -1- _LT_PROG_ECHO_BACKSLASH
  2600. m4trace:configure.ac:14: -1- LT_PATH_LD
  2601. m4trace:configure.ac:14: -1- m4_pattern_allow([^SED$])
  2602. m4trace:configure.ac:14: -1- AC_PROG_EGREP
  2603. m4trace:configure.ac:14: -1- m4_pattern_allow([^GREP$])
  2604. m4trace:configure.ac:14: -1- m4_pattern_allow([^EGREP$])
  2605. m4trace:configure.ac:14: -1- m4_pattern_allow([^FGREP$])
  2606. m4trace:configure.ac:14: -1- m4_pattern_allow([^GREP$])
  2607. m4trace:configure.ac:14: -1- m4_pattern_allow([^LD$])
  2608. m4trace:configure.ac:14: -1- LT_PATH_NM
  2609. m4trace:configure.ac:14: -1- m4_pattern_allow([^DUMPBIN$])
  2610. m4trace:configure.ac:14: -1- m4_pattern_allow([^ac_ct_DUMPBIN$])
  2611. m4trace:configure.ac:14: -1- m4_pattern_allow([^DUMPBIN$])
  2612. m4trace:configure.ac:14: -1- m4_pattern_allow([^NM$])
  2613. m4trace:configure.ac:14: -1- m4_pattern_allow([^LN_S$])
  2614. m4trace:configure.ac:14: -1- LT_CMD_MAX_LEN
  2615. m4trace:configure.ac:14: -1- m4_pattern_allow([^OBJDUMP$])
  2616. m4trace:configure.ac:14: -1- m4_pattern_allow([^OBJDUMP$])
  2617. m4trace:configure.ac:14: -1- m4_pattern_allow([^DLLTOOL$])
  2618. m4trace:configure.ac:14: -1- m4_pattern_allow([^DLLTOOL$])
  2619. m4trace:configure.ac:14: -1- m4_pattern_allow([^AR$])
  2620. m4trace:configure.ac:14: -1- m4_pattern_allow([^ac_ct_AR$])
  2621. m4trace:configure.ac:14: -1- m4_pattern_allow([^STRIP$])
  2622. m4trace:configure.ac:14: -1- m4_pattern_allow([^RANLIB$])
  2623. m4trace:configure.ac:14: -1- _LT_WITH_SYSROOT
  2624. m4trace:configure.ac:14: -1- m4_pattern_allow([LT_OBJDIR])
  2625. m4trace:configure.ac:14: -1- m4_pattern_allow([^LT_OBJDIR$])
  2626. m4trace:configure.ac:14: -1- _LT_CC_BASENAME([$compiler])
  2627. m4trace:configure.ac:14: -1- _LT_PATH_TOOL_PREFIX([${ac_tool_prefix}file], [/usr/bin$PATH_SEPARATOR$PATH])
  2628. m4trace:configure.ac:14: -1- _LT_PATH_TOOL_PREFIX([file], [/usr/bin$PATH_SEPARATOR$PATH])
  2629. m4trace:configure.ac:14: -1- LT_SUPPORTED_TAG([CC])
  2630. m4trace:configure.ac:14: -1- _LT_COMPILER_BOILERPLATE
  2631. m4trace:configure.ac:14: -1- _LT_LINKER_BOILERPLATE
  2632. m4trace:configure.ac:14: -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"])
  2633. m4trace:configure.ac:14: -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
  2634. "" | " "*) ;;
  2635. *) _LT_TAGVAR(lt_prog_compiler_pic, )=" $_LT_TAGVAR(lt_prog_compiler_pic, )" ;;
  2636. esac], [_LT_TAGVAR(lt_prog_compiler_pic, )=
  2637. _LT_TAGVAR(lt_prog_compiler_can_build_shared, )=no])
  2638. m4trace:configure.ac:14: -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, )=])
  2639. m4trace:configure.ac:14: -1- m4_pattern_allow([^MANIFEST_TOOL$])
  2640. m4trace:configure.ac:14: -1- _LT_DLL_DEF_P([$export_symbols])
  2641. m4trace:configure.ac:14: -1- _LT_DLL_DEF_P([$export_symbols])
  2642. m4trace:configure.ac:14: -1- _LT_REQUIRED_DARWIN_CHECKS
  2643. m4trace:configure.ac:14: -1- m4_pattern_allow([^DSYMUTIL$])
  2644. m4trace:configure.ac:14: -1- m4_pattern_allow([^NMEDIT$])
  2645. m4trace:configure.ac:14: -1- m4_pattern_allow([^LIPO$])
  2646. m4trace:configure.ac:14: -1- m4_pattern_allow([^OTOOL$])
  2647. m4trace:configure.ac:14: -1- m4_pattern_allow([^OTOOL64$])
  2648. m4trace:configure.ac:14: -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'])
  2649. m4trace:configure.ac:14: -1- m4_pattern_allow([^LT_SYS_LIBRARY_PATH$])
  2650. m4trace:configure.ac:14: -1- LT_SYS_DLOPEN_SELF
  2651. m4trace:configure.ac:14: -1- m4_pattern_allow([^CPP$])
  2652. m4trace:configure.ac:14: -1- m4_pattern_allow([^CPPFLAGS$])
  2653. m4trace:configure.ac:14: -1- m4_pattern_allow([^CPP$])
  2654. m4trace:configure.ac:14: -1- m4_pattern_allow([^STDC_HEADERS$])
  2655. m4trace:configure.ac:14: -1- m4_pattern_allow([^HAVE_DLFCN_H$])
  2656. m4trace:configure.ac:15: -1- AM_CONDITIONAL([GCC], [test x$GCC = xyes])
  2657. m4trace:configure.ac:15: -1- m4_pattern_allow([^GCC_TRUE$])
  2658. m4trace:configure.ac:15: -1- m4_pattern_allow([^GCC_FALSE$])
  2659. m4trace:configure.ac:15: -1- _AM_SUBST_NOTMAKE([GCC_TRUE])
  2660. m4trace:configure.ac:15: -1- _AM_SUBST_NOTMAKE([GCC_FALSE])
  2661. m4trace:configure.ac:23: -1- m4_pattern_allow([^int32_t$])
  2662. m4trace:configure.ac:24: -1- m4_pattern_allow([^_UINT32_T$])
  2663. m4trace:configure.ac:24: -1- m4_pattern_allow([^uint32_t$])
  2664. m4trace:configure.ac:25: -1- AC_TYPE_LONG_LONG_INT
  2665. m4trace:configure.ac:25: -1- AC_TYPE_UNSIGNED_LONG_LONG_INT
  2666. m4trace:configure.ac:25: -1- _AC_TYPE_LONG_LONG_SNIPPET
  2667. m4trace:configure.ac:25: -1- m4_pattern_allow([^HAVE_UNSIGNED_LONG_LONG_INT$])
  2668. m4trace:configure.ac:25: -1- m4_pattern_allow([^HAVE_LONG_LONG_INT$])
  2669. m4trace:configure.ac:33: -1- m4_pattern_allow([^json_inline$])
  2670. m4trace:configure.ac:40: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
  2671. You should run autoupdate.], [../../lib/autoconf/general.m4:2698: AC_TRY_LINK is expanded from...
  2672. configure.ac:40: the top level])
  2673. m4trace:configure.ac:45: -1- m4_pattern_allow([^HAVE_SYNC_BUILTINS$])
  2674. m4trace:configure.ac:52: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
  2675. You should run autoupdate.], [../../lib/autoconf/general.m4:2698: AC_TRY_LINK is expanded from...
  2676. configure.ac:52: the top level])
  2677. m4trace:configure.ac:57: -1- m4_pattern_allow([^HAVE_ATOMIC_BUILTINS$])
  2678. m4trace:configure.ac:66: -1- m4_pattern_allow([^json_have_long_long$])
  2679. m4trace:configure.ac:72: -1- m4_pattern_allow([^json_have_localeconv$])
  2680. m4trace:configure.ac:81: -1- m4_pattern_allow([^USE_URANDOM$])
  2681. m4trace:configure.ac:91: -1- m4_pattern_allow([^USE_WINDOWS_CRYPTOAPI$])
  2682. m4trace:configure.ac:101: -1- m4_pattern_allow([^LIB@&t@OBJS$])
  2683. m4trace:configure.ac:101: -1- m4_pattern_allow([^LTLIBOBJS$])
  2684. m4trace:configure.ac:101: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])
  2685. m4trace:configure.ac:101: -1- m4_pattern_allow([^am__EXEEXT_TRUE$])
  2686. m4trace:configure.ac:101: -1- m4_pattern_allow([^am__EXEEXT_FALSE$])
  2687. m4trace:configure.ac:101: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE])
  2688. m4trace:configure.ac:101: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE])
  2689. m4trace:configure.ac:101: -1- _AC_AM_CONFIG_HEADER_HOOK(["$ac_file"])
  2690. m4trace:configure.ac:101: -1- _AM_OUTPUT_DEPENDENCY_COMMANDS
  2691. m4trace:configure.ac:101: -1- _LT_PROG_LTMAIN