traces.0 121 KB

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