traces.0 211 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812
  1. m4trace:/mingw/share/aclocal/argz.m4:12: -1- AC_DEFUN([gl_FUNC_ARGZ], [gl_PREREQ_ARGZ
  2. AC_CHECK_HEADERS([argz.h], [], [], [AC_INCLUDES_DEFAULT])
  3. AC_CHECK_TYPES([error_t],
  4. [],
  5. [AC_DEFINE([error_t], [int],
  6. [Define to a type to use for `error_t' if it is not otherwise available.])
  7. AC_DEFINE([__error_t_defined], [1], [Define so that glibc/gnulib argp.h
  8. does not typedef error_t.])],
  9. [#if defined(HAVE_ARGZ_H)
  10. # include <argz.h>
  11. #endif])
  12. ARGZ_H=
  13. AC_CHECK_FUNCS([argz_add argz_append argz_count argz_create_sep argz_insert \
  14. argz_next argz_stringify], [], [ARGZ_H=argz.h; AC_LIBOBJ([argz])])
  15. dnl if have system argz functions, allow forced use of
  16. dnl libltdl-supplied implementation (and default to do so
  17. dnl on "known bad" systems). Could use a runtime check, but
  18. dnl (a) detecting malloc issues is notoriously unreliable
  19. dnl (b) only known system that declares argz functions,
  20. dnl provides them, yet they are broken, is cygwin
  21. dnl releases prior to 16-Mar-2007 (1.5.24 and earlier)
  22. dnl So, it's more straightforward simply to special case
  23. dnl this for known bad systems.
  24. AS_IF([test -z "$ARGZ_H"],
  25. [AC_CACHE_CHECK(
  26. [if argz actually works],
  27. [lt_cv_sys_argz_works],
  28. [[case $host_os in #(
  29. *cygwin*)
  30. lt_cv_sys_argz_works=no
  31. if test "$cross_compiling" != no; then
  32. lt_cv_sys_argz_works="guessing no"
  33. else
  34. lt_sed_extract_leading_digits='s/^\([0-9\.]*\).*/\1/'
  35. save_IFS=$IFS
  36. IFS=-.
  37. set x `uname -r | sed -e "$lt_sed_extract_leading_digits"`
  38. IFS=$save_IFS
  39. lt_os_major=${2-0}
  40. lt_os_minor=${3-0}
  41. lt_os_micro=${4-0}
  42. if test "$lt_os_major" -gt 1 \
  43. || { test "$lt_os_major" -eq 1 \
  44. && { test "$lt_os_minor" -gt 5 \
  45. || { test "$lt_os_minor" -eq 5 \
  46. && test "$lt_os_micro" -gt 24; }; }; }; then
  47. lt_cv_sys_argz_works=yes
  48. fi
  49. fi
  50. ;; #(
  51. *) lt_cv_sys_argz_works=yes ;;
  52. esac]])
  53. AS_IF([test "$lt_cv_sys_argz_works" = yes],
  54. [AC_DEFINE([HAVE_WORKING_ARGZ], 1,
  55. [This value is set to 1 to indicate that the system argz facility works])],
  56. [ARGZ_H=argz.h
  57. AC_LIBOBJ([argz])])])
  58. AC_SUBST([ARGZ_H])
  59. ])
  60. m4trace:/mingw/share/aclocal/argz.m4:79: -1- AC_DEFUN([gl_PREREQ_ARGZ], [:])
  61. m4trace:/mingw/share/aclocal/libtool.m4:69: -1- AC_DEFUN([LT_INIT], [AC_PREREQ([2.58])dnl We use AC_INCLUDES_DEFAULT
  62. AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl
  63. AC_BEFORE([$0], [LT_LANG])dnl
  64. AC_BEFORE([$0], [LT_OUTPUT])dnl
  65. AC_BEFORE([$0], [LTDL_INIT])dnl
  66. m4_require([_LT_CHECK_BUILDDIR])dnl
  67. dnl Autoconf doesn't catch unexpanded LT_ macros by default:
  68. m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl
  69. m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl
  70. dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4
  71. dnl unless we require an AC_DEFUNed macro:
  72. AC_REQUIRE([LTOPTIONS_VERSION])dnl
  73. AC_REQUIRE([LTSUGAR_VERSION])dnl
  74. AC_REQUIRE([LTVERSION_VERSION])dnl
  75. AC_REQUIRE([LTOBSOLETE_VERSION])dnl
  76. m4_require([_LT_PROG_LTMAIN])dnl
  77. _LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}])
  78. dnl Parse OPTIONS
  79. _LT_SET_OPTIONS([$0], [$1])
  80. # This can be used to rebuild libtool when needed
  81. LIBTOOL_DEPS="$ltmain"
  82. # Always use our own libtool.
  83. LIBTOOL='$(SHELL) $(top_builddir)/libtool'
  84. AC_SUBST(LIBTOOL)dnl
  85. _LT_SETUP
  86. # Only expand once:
  87. m4_define([LT_INIT])
  88. ])
  89. m4trace:/mingw/share/aclocal/libtool.m4:107: -1- AU_DEFUN([AC_PROG_LIBTOOL], [m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
  90. m4trace:/mingw/share/aclocal/libtool.m4:107: -1- AC_DEFUN([AC_PROG_LIBTOOL], [AC_DIAGNOSE([obsolete], [The macro `AC_PROG_LIBTOOL' is obsolete.
  91. You should run autoupdate.])dnl
  92. m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
  93. m4trace:/mingw/share/aclocal/libtool.m4:108: -1- AU_DEFUN([AM_PROG_LIBTOOL], [m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
  94. m4trace:/mingw/share/aclocal/libtool.m4:108: -1- AC_DEFUN([AM_PROG_LIBTOOL], [AC_DIAGNOSE([obsolete], [The macro `AM_PROG_LIBTOOL' is obsolete.
  95. You should run autoupdate.])dnl
  96. m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
  97. m4trace:/mingw/share/aclocal/libtool.m4:607: -1- AC_DEFUN([LT_OUTPUT], [: ${CONFIG_LT=./config.lt}
  98. AC_MSG_NOTICE([creating $CONFIG_LT])
  99. _LT_GENERATED_FILE_INIT(["$CONFIG_LT"],
  100. [# Run this file to recreate a libtool stub with the current configuration.])
  101. cat >>"$CONFIG_LT" <<\_LTEOF
  102. lt_cl_silent=false
  103. exec AS_MESSAGE_LOG_FD>>config.log
  104. {
  105. echo
  106. AS_BOX([Running $as_me.])
  107. } >&AS_MESSAGE_LOG_FD
  108. lt_cl_help="\
  109. \`$as_me' creates a local libtool stub from the current configuration,
  110. for use in further configure time tests before the real libtool is
  111. generated.
  112. Usage: $[0] [[OPTIONS]]
  113. -h, --help print this help, then exit
  114. -V, --version print version number, then exit
  115. -q, --quiet do not print progress messages
  116. -d, --debug don't remove temporary files
  117. Report bugs to <bug-libtool@gnu.org>."
  118. lt_cl_version="\
  119. m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl
  120. m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION])
  121. configured by $[0], generated by m4_PACKAGE_STRING.
  122. Copyright (C) 2010 Free Software Foundation, Inc.
  123. This config.lt script is free software; the Free Software Foundation
  124. gives unlimited permision to copy, distribute and modify it."
  125. while test $[#] != 0
  126. do
  127. case $[1] in
  128. --version | --v* | -V )
  129. echo "$lt_cl_version"; exit 0 ;;
  130. --help | --h* | -h )
  131. echo "$lt_cl_help"; exit 0 ;;
  132. --debug | --d* | -d )
  133. debug=: ;;
  134. --quiet | --q* | --silent | --s* | -q )
  135. lt_cl_silent=: ;;
  136. -*) AC_MSG_ERROR([unrecognized option: $[1]
  137. Try \`$[0] --help' for more information.]) ;;
  138. *) AC_MSG_ERROR([unrecognized argument: $[1]
  139. Try \`$[0] --help' for more information.]) ;;
  140. esac
  141. shift
  142. done
  143. if $lt_cl_silent; then
  144. exec AS_MESSAGE_FD>/dev/null
  145. fi
  146. _LTEOF
  147. cat >>"$CONFIG_LT" <<_LTEOF
  148. _LT_OUTPUT_LIBTOOL_COMMANDS_INIT
  149. _LTEOF
  150. cat >>"$CONFIG_LT" <<\_LTEOF
  151. AC_MSG_NOTICE([creating $ofile])
  152. _LT_OUTPUT_LIBTOOL_COMMANDS
  153. AS_EXIT(0)
  154. _LTEOF
  155. chmod +x "$CONFIG_LT"
  156. # configure is writing to config.log, but config.lt does its own redirection,
  157. # appending to config.log, which fails on DOS, as config.log is still kept
  158. # open by configure. Here we exec the FD to /dev/null, effectively closing
  159. # config.log, so it can be properly (re)opened and appended to by config.lt.
  160. lt_cl_success=:
  161. test "$silent" = yes &&
  162. lt_config_lt_args="$lt_config_lt_args --quiet"
  163. exec AS_MESSAGE_LOG_FD>/dev/null
  164. $SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false
  165. exec AS_MESSAGE_LOG_FD>>config.log
  166. $lt_cl_success || AS_EXIT(1)
  167. ])
  168. m4trace:/mingw/share/aclocal/libtool.m4:788: -1- AC_DEFUN([LT_SUPPORTED_TAG], [])
  169. m4trace:/mingw/share/aclocal/libtool.m4:799: -1- AC_DEFUN([LT_LANG], [AC_BEFORE([$0], [LT_OUTPUT])dnl
  170. m4_case([$1],
  171. [C], [_LT_LANG(C)],
  172. [C++], [_LT_LANG(CXX)],
  173. [Java], [_LT_LANG(GCJ)],
  174. [Fortran 77], [_LT_LANG(F77)],
  175. [Fortran], [_LT_LANG(FC)],
  176. [Windows Resource], [_LT_LANG(RC)],
  177. [m4_ifdef([_LT_LANG_]$1[_CONFIG],
  178. [_LT_LANG($1)],
  179. [m4_fatal([$0: unsupported language: "$1"])])])dnl
  180. ])
  181. m4trace:/mingw/share/aclocal/libtool.m4:861: -1- AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)])
  182. m4trace:/mingw/share/aclocal/libtool.m4:861: -1- AC_DEFUN([AC_LIBTOOL_CXX], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_CXX' is obsolete.
  183. You should run autoupdate.])dnl
  184. LT_LANG(C++)])
  185. m4trace:/mingw/share/aclocal/libtool.m4:862: -1- AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)])
  186. m4trace:/mingw/share/aclocal/libtool.m4:862: -1- AC_DEFUN([AC_LIBTOOL_F77], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_F77' is obsolete.
  187. You should run autoupdate.])dnl
  188. LT_LANG(Fortran 77)])
  189. m4trace:/mingw/share/aclocal/libtool.m4:863: -1- AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)])
  190. m4trace:/mingw/share/aclocal/libtool.m4:863: -1- AC_DEFUN([AC_LIBTOOL_FC], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_FC' is obsolete.
  191. You should run autoupdate.])dnl
  192. LT_LANG(Fortran)])
  193. m4trace:/mingw/share/aclocal/libtool.m4:864: -1- AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)])
  194. m4trace:/mingw/share/aclocal/libtool.m4:864: -1- AC_DEFUN([AC_LIBTOOL_GCJ], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_GCJ' is obsolete.
  195. You should run autoupdate.])dnl
  196. LT_LANG(Java)])
  197. m4trace:/mingw/share/aclocal/libtool.m4:865: -1- AU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)])
  198. m4trace:/mingw/share/aclocal/libtool.m4:865: -1- AC_DEFUN([AC_LIBTOOL_RC], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_RC' is obsolete.
  199. You should run autoupdate.])dnl
  200. LT_LANG(Windows Resource)])
  201. m4trace:/mingw/share/aclocal/libtool.m4:1181: -1- AC_DEFUN([_LT_WITH_SYSROOT], [AC_MSG_CHECKING([for sysroot])
  202. AC_ARG_WITH([sysroot],
  203. [ --with-sysroot[=DIR] Search for dependent libraries within DIR
  204. (or the compiler's sysroot if not specified).],
  205. [], [with_sysroot=no])
  206. dnl lt_sysroot will always be passed unquoted. We quote it here
  207. dnl in case the user passed a directory name.
  208. lt_sysroot=
  209. case ${with_sysroot} in #(
  210. yes)
  211. if test "$GCC" = yes; then
  212. lt_sysroot=`$CC --print-sysroot 2>/dev/null`
  213. fi
  214. ;; #(
  215. /*)
  216. lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"`
  217. ;; #(
  218. no|'')
  219. ;; #(
  220. *)
  221. AC_MSG_RESULT([${with_sysroot}])
  222. AC_MSG_ERROR([The sysroot must be an absolute path.])
  223. ;;
  224. esac
  225. AC_MSG_RESULT([${lt_sysroot:-no}])
  226. _LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl
  227. [dependent libraries, and in which our libraries should be installed.])])
  228. m4trace:/mingw/share/aclocal/libtool.m4:1445: -1- AC_DEFUN([_LT_COMPILER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
  229. m4_require([_LT_DECL_SED])dnl
  230. AC_CACHE_CHECK([$1], [$2],
  231. [$2=no
  232. m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4])
  233. echo "$lt_simple_compile_test_code" > conftest.$ac_ext
  234. lt_compiler_flag="$3"
  235. # Insert the option either (1) after the last *FLAGS variable, or
  236. # (2) before a word containing "conftest.", or (3) at the end.
  237. # Note that $ac_compile itself does not contain backslashes and begins
  238. # with a dollar sign (not a hyphen), so the echo should work correctly.
  239. # The option is referenced via a variable to avoid confusing sed.
  240. lt_compile=`echo "$ac_compile" | $SED \
  241. -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
  242. -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \
  243. -e 's:$: $lt_compiler_flag:'`
  244. (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD)
  245. (eval "$lt_compile" 2>conftest.err)
  246. ac_status=$?
  247. cat conftest.err >&AS_MESSAGE_LOG_FD
  248. echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
  249. if (exit $ac_status) && test -s "$ac_outfile"; then
  250. # The compiler can only warn and ignore the option if not recognized
  251. # So say no if there are warnings other than the usual output.
  252. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp
  253. $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
  254. if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then
  255. $2=yes
  256. fi
  257. fi
  258. $RM conftest*
  259. ])
  260. if test x"[$]$2" = xyes; then
  261. m4_if([$5], , :, [$5])
  262. else
  263. m4_if([$6], , :, [$6])
  264. fi
  265. ])
  266. m4trace:/mingw/share/aclocal/libtool.m4:1487: -1- AU_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [m4_if($#, 0, [_LT_COMPILER_OPTION], [_LT_COMPILER_OPTION($@)])])
  267. m4trace:/mingw/share/aclocal/libtool.m4:1487: -1- AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_COMPILER_OPTION' is obsolete.
  268. You should run autoupdate.])dnl
  269. m4_if($#, 0, [_LT_COMPILER_OPTION], [_LT_COMPILER_OPTION($@)])])
  270. m4trace:/mingw/share/aclocal/libtool.m4:1496: -1- AC_DEFUN([_LT_LINKER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
  271. m4_require([_LT_DECL_SED])dnl
  272. AC_CACHE_CHECK([$1], [$2],
  273. [$2=no
  274. save_LDFLAGS="$LDFLAGS"
  275. LDFLAGS="$LDFLAGS $3"
  276. echo "$lt_simple_link_test_code" > conftest.$ac_ext
  277. if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then
  278. # The linker can only warn and ignore the option if not recognized
  279. # So say no if there are warnings
  280. if test -s conftest.err; then
  281. # Append any errors to the config.log.
  282. cat conftest.err 1>&AS_MESSAGE_LOG_FD
  283. $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp
  284. $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
  285. if diff conftest.exp conftest.er2 >/dev/null; then
  286. $2=yes
  287. fi
  288. else
  289. $2=yes
  290. fi
  291. fi
  292. $RM -r conftest*
  293. LDFLAGS="$save_LDFLAGS"
  294. ])
  295. if test x"[$]$2" = xyes; then
  296. m4_if([$4], , :, [$4])
  297. else
  298. m4_if([$5], , :, [$5])
  299. fi
  300. ])
  301. m4trace:/mingw/share/aclocal/libtool.m4:1531: -1- AU_DEFUN([AC_LIBTOOL_LINKER_OPTION], [m4_if($#, 0, [_LT_LINKER_OPTION], [_LT_LINKER_OPTION($@)])])
  302. m4trace:/mingw/share/aclocal/libtool.m4:1531: -1- AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_LINKER_OPTION' is obsolete.
  303. You should run autoupdate.])dnl
  304. m4_if($#, 0, [_LT_LINKER_OPTION], [_LT_LINKER_OPTION($@)])])
  305. m4trace:/mingw/share/aclocal/libtool.m4:1538: -1- AC_DEFUN([LT_CMD_MAX_LEN], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
  306. # find the maximum length of command line arguments
  307. AC_MSG_CHECKING([the maximum length of command line arguments])
  308. AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl
  309. i=0
  310. teststring="ABCD"
  311. case $build_os in
  312. msdosdjgpp*)
  313. # On DJGPP, this test can blow up pretty badly due to problems in libc
  314. # (any single argument exceeding 2000 bytes causes a buffer overrun
  315. # during glob expansion). Even if it were fixed, the result of this
  316. # check would be larger than it should be.
  317. lt_cv_sys_max_cmd_len=12288; # 12K is about right
  318. ;;
  319. gnu*)
  320. # Under GNU Hurd, this test is not required because there is
  321. # no limit to the length of command line arguments.
  322. # Libtool will interpret -1 as no limit whatsoever
  323. lt_cv_sys_max_cmd_len=-1;
  324. ;;
  325. cygwin* | mingw* | cegcc*)
  326. # On Win9x/ME, this test blows up -- it succeeds, but takes
  327. # about 5 minutes as the teststring grows exponentially.
  328. # Worse, since 9x/ME are not pre-emptively multitasking,
  329. # you end up with a "frozen" computer, even though with patience
  330. # the test eventually succeeds (with a max line length of 256k).
  331. # Instead, let's just punt: use the minimum linelength reported by
  332. # all of the supported platforms: 8192 (on NT/2K/XP).
  333. lt_cv_sys_max_cmd_len=8192;
  334. ;;
  335. mint*)
  336. # On MiNT this can take a long time and run out of memory.
  337. lt_cv_sys_max_cmd_len=8192;
  338. ;;
  339. amigaos*)
  340. # On AmigaOS with pdksh, this test takes hours, literally.
  341. # So we just punt and use a minimum line length of 8192.
  342. lt_cv_sys_max_cmd_len=8192;
  343. ;;
  344. netbsd* | freebsd* | openbsd* | darwin* | dragonfly*)
  345. # This has been around since 386BSD, at least. Likely further.
  346. if test -x /sbin/sysctl; then
  347. lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax`
  348. elif test -x /usr/sbin/sysctl; then
  349. lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax`
  350. else
  351. lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs
  352. fi
  353. # And add a safety zone
  354. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
  355. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
  356. ;;
  357. interix*)
  358. # We know the value 262144 and hardcode it with a safety zone (like BSD)
  359. lt_cv_sys_max_cmd_len=196608
  360. ;;
  361. osf*)
  362. # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure
  363. # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not
  364. # nice to cause kernel panics so lets avoid the loop below.
  365. # First set a reasonable default.
  366. lt_cv_sys_max_cmd_len=16384
  367. #
  368. if test -x /sbin/sysconfig; then
  369. case `/sbin/sysconfig -q proc exec_disable_arg_limit` in
  370. *1*) lt_cv_sys_max_cmd_len=-1 ;;
  371. esac
  372. fi
  373. ;;
  374. sco3.2v5*)
  375. lt_cv_sys_max_cmd_len=102400
  376. ;;
  377. sysv5* | sco5v6* | sysv4.2uw2*)
  378. kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null`
  379. if test -n "$kargmax"; then
  380. lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'`
  381. else
  382. lt_cv_sys_max_cmd_len=32768
  383. fi
  384. ;;
  385. *)
  386. lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null`
  387. if test -n "$lt_cv_sys_max_cmd_len"; then
  388. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
  389. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
  390. else
  391. # Make teststring a little bigger before we do anything with it.
  392. # a 1K string should be a reasonable start.
  393. for i in 1 2 3 4 5 6 7 8 ; do
  394. teststring=$teststring$teststring
  395. done
  396. SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}}
  397. # If test is not a shell built-in, we'll probably end up computing a
  398. # maximum length that is only half of the actual maximum length, but
  399. # we can't tell.
  400. while { test "X"`env echo "$teststring$teststring" 2>/dev/null` \
  401. = "X$teststring$teststring"; } >/dev/null 2>&1 &&
  402. test $i != 17 # 1/2 MB should be enough
  403. do
  404. i=`expr $i + 1`
  405. teststring=$teststring$teststring
  406. done
  407. # Only check the string length outside the loop.
  408. lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1`
  409. teststring=
  410. # Add a significant safety factor because C++ compilers can tack on
  411. # massive amounts of additional arguments before passing them to the
  412. # linker. It appears as though 1/2 is a usable value.
  413. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2`
  414. fi
  415. ;;
  416. esac
  417. ])
  418. if test -n $lt_cv_sys_max_cmd_len ; then
  419. AC_MSG_RESULT($lt_cv_sys_max_cmd_len)
  420. else
  421. AC_MSG_RESULT(none)
  422. fi
  423. max_cmd_len=$lt_cv_sys_max_cmd_len
  424. _LT_DECL([], [max_cmd_len], [0],
  425. [What is the maximum length of a command?])
  426. ])
  427. m4trace:/mingw/share/aclocal/libtool.m4:1671: -1- AU_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [m4_if($#, 0, [LT_CMD_MAX_LEN], [LT_CMD_MAX_LEN($@)])])
  428. m4trace:/mingw/share/aclocal/libtool.m4:1671: -1- AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_SYS_MAX_CMD_LEN' is obsolete.
  429. You should run autoupdate.])dnl
  430. m4_if($#, 0, [LT_CMD_MAX_LEN], [LT_CMD_MAX_LEN($@)])])
  431. m4trace:/mingw/share/aclocal/libtool.m4:1782: -1- AC_DEFUN([LT_SYS_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl
  432. if test "x$enable_dlopen" != xyes; then
  433. enable_dlopen=unknown
  434. enable_dlopen_self=unknown
  435. enable_dlopen_self_static=unknown
  436. else
  437. lt_cv_dlopen=no
  438. lt_cv_dlopen_libs=
  439. case $host_os in
  440. beos*)
  441. lt_cv_dlopen="load_add_on"
  442. lt_cv_dlopen_libs=
  443. lt_cv_dlopen_self=yes
  444. ;;
  445. mingw* | pw32* | cegcc*)
  446. lt_cv_dlopen="LoadLibrary"
  447. lt_cv_dlopen_libs=
  448. ;;
  449. cygwin*)
  450. lt_cv_dlopen="dlopen"
  451. lt_cv_dlopen_libs=
  452. ;;
  453. darwin*)
  454. # if libdl is installed we need to link against it
  455. AC_CHECK_LIB([dl], [dlopen],
  456. [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[
  457. lt_cv_dlopen="dyld"
  458. lt_cv_dlopen_libs=
  459. lt_cv_dlopen_self=yes
  460. ])
  461. ;;
  462. *)
  463. AC_CHECK_FUNC([shl_load],
  464. [lt_cv_dlopen="shl_load"],
  465. [AC_CHECK_LIB([dld], [shl_load],
  466. [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"],
  467. [AC_CHECK_FUNC([dlopen],
  468. [lt_cv_dlopen="dlopen"],
  469. [AC_CHECK_LIB([dl], [dlopen],
  470. [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],
  471. [AC_CHECK_LIB([svld], [dlopen],
  472. [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"],
  473. [AC_CHECK_LIB([dld], [dld_link],
  474. [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"])
  475. ])
  476. ])
  477. ])
  478. ])
  479. ])
  480. ;;
  481. esac
  482. if test "x$lt_cv_dlopen" != xno; then
  483. enable_dlopen=yes
  484. else
  485. enable_dlopen=no
  486. fi
  487. case $lt_cv_dlopen in
  488. dlopen)
  489. save_CPPFLAGS="$CPPFLAGS"
  490. test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H"
  491. save_LDFLAGS="$LDFLAGS"
  492. wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\"
  493. save_LIBS="$LIBS"
  494. LIBS="$lt_cv_dlopen_libs $LIBS"
  495. AC_CACHE_CHECK([whether a program can dlopen itself],
  496. lt_cv_dlopen_self, [dnl
  497. _LT_TRY_DLOPEN_SELF(
  498. lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes,
  499. lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross)
  500. ])
  501. if test "x$lt_cv_dlopen_self" = xyes; then
  502. wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\"
  503. AC_CACHE_CHECK([whether a statically linked program can dlopen itself],
  504. lt_cv_dlopen_self_static, [dnl
  505. _LT_TRY_DLOPEN_SELF(
  506. lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes,
  507. lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross)
  508. ])
  509. fi
  510. CPPFLAGS="$save_CPPFLAGS"
  511. LDFLAGS="$save_LDFLAGS"
  512. LIBS="$save_LIBS"
  513. ;;
  514. esac
  515. case $lt_cv_dlopen_self in
  516. yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;;
  517. *) enable_dlopen_self=unknown ;;
  518. esac
  519. case $lt_cv_dlopen_self_static in
  520. yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;;
  521. *) enable_dlopen_self_static=unknown ;;
  522. esac
  523. fi
  524. _LT_DECL([dlopen_support], [enable_dlopen], [0],
  525. [Whether dlopen is supported])
  526. _LT_DECL([dlopen_self], [enable_dlopen_self], [0],
  527. [Whether dlopen of programs is supported])
  528. _LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0],
  529. [Whether dlopen of statically linked programs is supported])
  530. ])
  531. m4trace:/mingw/share/aclocal/libtool.m4:1899: -1- AU_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [m4_if($#, 0, [LT_SYS_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF($@)])])
  532. m4trace:/mingw/share/aclocal/libtool.m4:1899: -1- AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_DLOPEN_SELF' is obsolete.
  533. You should run autoupdate.])dnl
  534. m4_if($#, 0, [LT_SYS_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF($@)])])
  535. m4trace:/mingw/share/aclocal/libtool.m4:2871: -1- AC_DEFUN([_LT_PATH_TOOL_PREFIX], [m4_require([_LT_DECL_EGREP])dnl
  536. AC_MSG_CHECKING([for $1])
  537. AC_CACHE_VAL(lt_cv_path_MAGIC_CMD,
  538. [case $MAGIC_CMD in
  539. [[\\/*] | ?:[\\/]*])
  540. lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path.
  541. ;;
  542. *)
  543. lt_save_MAGIC_CMD="$MAGIC_CMD"
  544. lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
  545. dnl $ac_dummy forces splitting on constant user-supplied paths.
  546. dnl POSIX.2 word splitting is done only on the output of word expansions,
  547. dnl not every word. This closes a longstanding sh security hole.
  548. ac_dummy="m4_if([$2], , $PATH, [$2])"
  549. for ac_dir in $ac_dummy; do
  550. IFS="$lt_save_ifs"
  551. test -z "$ac_dir" && ac_dir=.
  552. if test -f $ac_dir/$1; then
  553. lt_cv_path_MAGIC_CMD="$ac_dir/$1"
  554. if test -n "$file_magic_test_file"; then
  555. case $deplibs_check_method in
  556. "file_magic "*)
  557. file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"`
  558. MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
  559. if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null |
  560. $EGREP "$file_magic_regex" > /dev/null; then
  561. :
  562. else
  563. cat <<_LT_EOF 1>&2
  564. *** Warning: the command libtool uses to detect shared libraries,
  565. *** $file_magic_cmd, produces output that libtool cannot recognize.
  566. *** The result is that libtool may fail to recognize shared libraries
  567. *** as such. This will affect the creation of libtool libraries that
  568. *** depend on shared libraries, but programs linked with such libtool
  569. *** libraries will work regardless of this problem. Nevertheless, you
  570. *** may want to report the problem to your system manager and/or to
  571. *** bug-libtool@gnu.org
  572. _LT_EOF
  573. fi ;;
  574. esac
  575. fi
  576. break
  577. fi
  578. done
  579. IFS="$lt_save_ifs"
  580. MAGIC_CMD="$lt_save_MAGIC_CMD"
  581. ;;
  582. esac])
  583. MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
  584. if test -n "$MAGIC_CMD"; then
  585. AC_MSG_RESULT($MAGIC_CMD)
  586. else
  587. AC_MSG_RESULT(no)
  588. fi
  589. _LT_DECL([], [MAGIC_CMD], [0],
  590. [Used to examine libraries when file_magic_cmd begins with "file"])dnl
  591. ])
  592. m4trace:/mingw/share/aclocal/libtool.m4:2933: -1- AU_DEFUN([AC_PATH_TOOL_PREFIX], [m4_if($#, 0, [_LT_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX($@)])])
  593. m4trace:/mingw/share/aclocal/libtool.m4:2933: -1- AC_DEFUN([AC_PATH_TOOL_PREFIX], [AC_DIAGNOSE([obsolete], [The macro `AC_PATH_TOOL_PREFIX' is obsolete.
  594. You should run autoupdate.])dnl
  595. m4_if($#, 0, [_LT_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX($@)])])
  596. m4trace:/mingw/share/aclocal/libtool.m4:2956: -1- AC_DEFUN([LT_PATH_LD], [AC_REQUIRE([AC_PROG_CC])dnl
  597. AC_REQUIRE([AC_CANONICAL_HOST])dnl
  598. AC_REQUIRE([AC_CANONICAL_BUILD])dnl
  599. m4_require([_LT_DECL_SED])dnl
  600. m4_require([_LT_DECL_EGREP])dnl
  601. m4_require([_LT_PROG_ECHO_BACKSLASH])dnl
  602. AC_ARG_WITH([gnu-ld],
  603. [AS_HELP_STRING([--with-gnu-ld],
  604. [assume the C compiler uses GNU ld @<:@default=no@:>@])],
  605. [test "$withval" = no || with_gnu_ld=yes],
  606. [with_gnu_ld=no])dnl
  607. ac_prog=ld
  608. if test "$GCC" = yes; then
  609. # Check if gcc -print-prog-name=ld gives a path.
  610. AC_MSG_CHECKING([for ld used by $CC])
  611. case $host in
  612. *-*-mingw*)
  613. # gcc leaves a trailing carriage return which upsets mingw
  614. ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
  615. *)
  616. ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
  617. esac
  618. case $ac_prog in
  619. # Accept absolute paths.
  620. [[\\/]]* | ?:[[\\/]]*)
  621. re_direlt='/[[^/]][[^/]]*/\.\./'
  622. # Canonicalize the pathname of ld
  623. ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'`
  624. while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do
  625. ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"`
  626. done
  627. test -z "$LD" && LD="$ac_prog"
  628. ;;
  629. "")
  630. # If it fails, then pretend we aren't using GCC.
  631. ac_prog=ld
  632. ;;
  633. *)
  634. # If it is relative, then search for the first ld in PATH.
  635. with_gnu_ld=unknown
  636. ;;
  637. esac
  638. elif test "$with_gnu_ld" = yes; then
  639. AC_MSG_CHECKING([for GNU ld])
  640. else
  641. AC_MSG_CHECKING([for non-GNU ld])
  642. fi
  643. AC_CACHE_VAL(lt_cv_path_LD,
  644. [if test -z "$LD"; then
  645. lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
  646. for ac_dir in $PATH; do
  647. IFS="$lt_save_ifs"
  648. test -z "$ac_dir" && ac_dir=.
  649. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
  650. lt_cv_path_LD="$ac_dir/$ac_prog"
  651. # Check to see if the program is GNU ld. I'd rather use --version,
  652. # but apparently some variants of GNU ld only accept -v.
  653. # Break only if it was the GNU/non-GNU ld that we prefer.
  654. case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in
  655. *GNU* | *'with BFD'*)
  656. test "$with_gnu_ld" != no && break
  657. ;;
  658. *)
  659. test "$with_gnu_ld" != yes && break
  660. ;;
  661. esac
  662. fi
  663. done
  664. IFS="$lt_save_ifs"
  665. else
  666. lt_cv_path_LD="$LD" # Let the user override the test with a path.
  667. fi])
  668. LD="$lt_cv_path_LD"
  669. if test -n "$LD"; then
  670. AC_MSG_RESULT($LD)
  671. else
  672. AC_MSG_RESULT(no)
  673. fi
  674. test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH])
  675. _LT_PATH_LD_GNU
  676. AC_SUBST([LD])
  677. _LT_TAGDECL([], [LD], [1], [The linker used to build libraries])
  678. ])
  679. m4trace:/mingw/share/aclocal/libtool.m4:3045: -1- AU_DEFUN([AM_PROG_LD], [m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
  680. m4trace:/mingw/share/aclocal/libtool.m4:3045: -1- AC_DEFUN([AM_PROG_LD], [AC_DIAGNOSE([obsolete], [The macro `AM_PROG_LD' is obsolete.
  681. You should run autoupdate.])dnl
  682. m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
  683. m4trace:/mingw/share/aclocal/libtool.m4:3046: -1- AU_DEFUN([AC_PROG_LD], [m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
  684. m4trace:/mingw/share/aclocal/libtool.m4:3046: -1- AC_DEFUN([AC_PROG_LD], [AC_DIAGNOSE([obsolete], [The macro `AC_PROG_LD' is obsolete.
  685. You should run autoupdate.])dnl
  686. m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
  687. m4trace:/mingw/share/aclocal/libtool.m4:3340: -1- AC_DEFUN([LT_PATH_NM], [AC_REQUIRE([AC_PROG_CC])dnl
  688. AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM,
  689. [if test -n "$NM"; then
  690. # Let the user override the test.
  691. lt_cv_path_NM="$NM"
  692. else
  693. lt_nm_to_check="${ac_tool_prefix}nm"
  694. if test -n "$ac_tool_prefix" && test "$build" = "$host"; then
  695. lt_nm_to_check="$lt_nm_to_check nm"
  696. fi
  697. for lt_tmp_nm in $lt_nm_to_check; do
  698. lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
  699. for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do
  700. IFS="$lt_save_ifs"
  701. test -z "$ac_dir" && ac_dir=.
  702. tmp_nm="$ac_dir/$lt_tmp_nm"
  703. if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then
  704. # Check to see if the nm accepts a BSD-compat flag.
  705. # Adding the `sed 1q' prevents false positives on HP-UX, which says:
  706. # nm: unknown option "B" ignored
  707. # Tru64's nm complains that /dev/null is an invalid object file
  708. case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in
  709. */dev/null* | *'Invalid file or object type'*)
  710. lt_cv_path_NM="$tmp_nm -B"
  711. break
  712. ;;
  713. *)
  714. case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in
  715. */dev/null*)
  716. lt_cv_path_NM="$tmp_nm -p"
  717. break
  718. ;;
  719. *)
  720. lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but
  721. continue # so that we can try to find one that supports BSD flags
  722. ;;
  723. esac
  724. ;;
  725. esac
  726. fi
  727. done
  728. IFS="$lt_save_ifs"
  729. done
  730. : ${lt_cv_path_NM=no}
  731. fi])
  732. if test "$lt_cv_path_NM" != "no"; then
  733. NM="$lt_cv_path_NM"
  734. else
  735. # Didn't find any BSD compatible name lister, look for dumpbin.
  736. if test -n "$DUMPBIN"; then :
  737. # Let the user override the test.
  738. else
  739. AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :)
  740. case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in
  741. *COFF*)
  742. DUMPBIN="$DUMPBIN -symbols"
  743. ;;
  744. *)
  745. DUMPBIN=:
  746. ;;
  747. esac
  748. fi
  749. AC_SUBST([DUMPBIN])
  750. if test "$DUMPBIN" != ":"; then
  751. NM="$DUMPBIN"
  752. fi
  753. fi
  754. test -z "$NM" && NM=nm
  755. AC_SUBST([NM])
  756. _LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl
  757. AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface],
  758. [lt_cv_nm_interface="BSD nm"
  759. echo "int some_variable = 0;" > conftest.$ac_ext
  760. (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&AS_MESSAGE_LOG_FD)
  761. (eval "$ac_compile" 2>conftest.err)
  762. cat conftest.err >&AS_MESSAGE_LOG_FD
  763. (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD)
  764. (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out)
  765. cat conftest.err >&AS_MESSAGE_LOG_FD
  766. (eval echo "\"\$as_me:$LINENO: output\"" >&AS_MESSAGE_LOG_FD)
  767. cat conftest.out >&AS_MESSAGE_LOG_FD
  768. if $GREP 'External.*some_variable' conftest.out > /dev/null; then
  769. lt_cv_nm_interface="MS dumpbin"
  770. fi
  771. rm -f conftest*])
  772. ])
  773. m4trace:/mingw/share/aclocal/libtool.m4:3430: -1- AU_DEFUN([AM_PROG_NM], [m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
  774. m4trace:/mingw/share/aclocal/libtool.m4:3430: -1- AC_DEFUN([AM_PROG_NM], [AC_DIAGNOSE([obsolete], [The macro `AM_PROG_NM' is obsolete.
  775. You should run autoupdate.])dnl
  776. m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
  777. m4trace:/mingw/share/aclocal/libtool.m4:3431: -1- AU_DEFUN([AC_PROG_NM], [m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
  778. m4trace:/mingw/share/aclocal/libtool.m4:3431: -1- AC_DEFUN([AC_PROG_NM], [AC_DIAGNOSE([obsolete], [The macro `AC_PROG_NM' is obsolete.
  779. You should run autoupdate.])dnl
  780. m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
  781. m4trace:/mingw/share/aclocal/libtool.m4:3501: -1- AC_DEFUN([LT_LIB_M], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
  782. LIBM=
  783. case $host in
  784. *-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-pw32* | *-*-darwin*)
  785. # These system don't have libm, or don't need it
  786. ;;
  787. *-ncr-sysv4.3*)
  788. AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw")
  789. AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm")
  790. ;;
  791. *)
  792. AC_CHECK_LIB(m, cos, LIBM="-lm")
  793. ;;
  794. esac
  795. AC_SUBST([LIBM])
  796. ])
  797. m4trace:/mingw/share/aclocal/libtool.m4:3520: -1- AU_DEFUN([AC_CHECK_LIBM], [m4_if($#, 0, [LT_LIB_M], [LT_LIB_M($@)])])
  798. m4trace:/mingw/share/aclocal/libtool.m4:3520: -1- AC_DEFUN([AC_CHECK_LIBM], [AC_DIAGNOSE([obsolete], [The macro `AC_CHECK_LIBM' is obsolete.
  799. You should run autoupdate.])dnl
  800. m4_if($#, 0, [LT_LIB_M], [LT_LIB_M($@)])])
  801. m4trace:/mingw/share/aclocal/libtool.m4:7478: -1- AC_DEFUN([LT_PROG_GCJ], [m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ],
  802. [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ],
  803. [AC_CHECK_TOOL(GCJ, gcj,)
  804. test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2"
  805. AC_SUBST(GCJFLAGS)])])[]dnl
  806. ])
  807. m4trace:/mingw/share/aclocal/libtool.m4:7487: -1- AU_DEFUN([LT_AC_PROG_GCJ], [m4_if($#, 0, [LT_PROG_GCJ], [LT_PROG_GCJ($@)])])
  808. m4trace:/mingw/share/aclocal/libtool.m4:7487: -1- AC_DEFUN([LT_AC_PROG_GCJ], [AC_DIAGNOSE([obsolete], [The macro `LT_AC_PROG_GCJ' is obsolete.
  809. You should run autoupdate.])dnl
  810. m4_if($#, 0, [LT_PROG_GCJ], [LT_PROG_GCJ($@)])])
  811. m4trace:/mingw/share/aclocal/libtool.m4:7494: -1- AC_DEFUN([LT_PROG_RC], [AC_CHECK_TOOL(RC, windres,)
  812. ])
  813. m4trace:/mingw/share/aclocal/libtool.m4:7499: -1- AU_DEFUN([LT_AC_PROG_RC], [m4_if($#, 0, [LT_PROG_RC], [LT_PROG_RC($@)])])
  814. m4trace:/mingw/share/aclocal/libtool.m4:7499: -1- AC_DEFUN([LT_AC_PROG_RC], [AC_DIAGNOSE([obsolete], [The macro `LT_AC_PROG_RC' is obsolete.
  815. You should run autoupdate.])dnl
  816. m4_if($#, 0, [LT_PROG_RC], [LT_PROG_RC($@)])])
  817. m4trace:/mingw/share/aclocal/libtool.m4:7619: -1- AU_DEFUN([LT_AC_PROG_SED], [m4_if($#, 0, [AC_PROG_SED], [AC_PROG_SED($@)])])
  818. m4trace:/mingw/share/aclocal/libtool.m4:7619: -1- AC_DEFUN([LT_AC_PROG_SED], [AC_DIAGNOSE([obsolete], [The macro `LT_AC_PROG_SED' is obsolete.
  819. You should run autoupdate.])dnl
  820. m4_if($#, 0, [AC_PROG_SED], [AC_PROG_SED($@)])])
  821. m4trace:/mingw/share/aclocal/ltdl.m4:16: -1- AC_DEFUN([LT_CONFIG_LTDL_DIR], [AC_BEFORE([$0], [LTDL_INIT])
  822. _$0($*)
  823. ])
  824. m4trace:/mingw/share/aclocal/ltdl.m4:68: -1- AC_DEFUN([LTDL_CONVENIENCE], [AC_BEFORE([$0], [LTDL_INIT])dnl
  825. dnl Although the argument is deprecated and no longer documented,
  826. dnl LTDL_CONVENIENCE used to take a DIRECTORY orgument, if we have one
  827. dnl here make sure it is the same as any other declaration of libltdl's
  828. dnl location! This also ensures lt_ltdl_dir is set when configure.ac is
  829. dnl not yet using an explicit LT_CONFIG_LTDL_DIR.
  830. m4_ifval([$1], [_LT_CONFIG_LTDL_DIR([$1])])dnl
  831. _$0()
  832. ])
  833. m4trace:/mingw/share/aclocal/ltdl.m4:81: -1- AU_DEFUN([AC_LIBLTDL_CONVENIENCE], [_LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
  834. _LTDL_CONVENIENCE])
  835. m4trace:/mingw/share/aclocal/ltdl.m4:81: -1- AC_DEFUN([AC_LIBLTDL_CONVENIENCE], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBLTDL_CONVENIENCE' is obsolete.
  836. You should run autoupdate.])dnl
  837. _LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
  838. _LTDL_CONVENIENCE])
  839. m4trace:/mingw/share/aclocal/ltdl.m4:124: -1- AC_DEFUN([LTDL_INSTALLABLE], [AC_BEFORE([$0], [LTDL_INIT])dnl
  840. dnl Although the argument is deprecated and no longer documented,
  841. dnl LTDL_INSTALLABLE used to take a DIRECTORY orgument, if we have one
  842. dnl here make sure it is the same as any other declaration of libltdl's
  843. dnl location! This also ensures lt_ltdl_dir is set when configure.ac is
  844. dnl not yet using an explicit LT_CONFIG_LTDL_DIR.
  845. m4_ifval([$1], [_LT_CONFIG_LTDL_DIR([$1])])dnl
  846. _$0()
  847. ])
  848. m4trace:/mingw/share/aclocal/ltdl.m4:137: -1- AU_DEFUN([AC_LIBLTDL_INSTALLABLE], [_LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
  849. _LTDL_INSTALLABLE])
  850. m4trace:/mingw/share/aclocal/ltdl.m4:137: -1- AC_DEFUN([AC_LIBLTDL_INSTALLABLE], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBLTDL_INSTALLABLE' is obsolete.
  851. You should run autoupdate.])dnl
  852. _LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
  853. _LTDL_INSTALLABLE])
  854. m4trace:/mingw/share/aclocal/ltdl.m4:213: -1- AC_DEFUN([_LT_LIBOBJ], [
  855. m4_pattern_allow([^_LT_LIBOBJS$])
  856. _LT_LIBOBJS="$_LT_LIBOBJS $1.$ac_objext"
  857. ])
  858. m4trace:/mingw/share/aclocal/ltdl.m4:226: -1- AC_DEFUN([LTDL_INIT], [dnl Parse OPTIONS
  859. _LT_SET_OPTIONS([$0], [$1])
  860. dnl We need to keep our own list of libobjs separate from our parent project,
  861. dnl and the easiest way to do that is redefine the AC_LIBOBJs macro while
  862. dnl we look for our own LIBOBJs.
  863. m4_pushdef([AC_LIBOBJ], m4_defn([_LT_LIBOBJ]))
  864. m4_pushdef([AC_LIBSOURCES])
  865. dnl If not otherwise defined, default to the 1.5.x compatible subproject mode:
  866. m4_if(_LTDL_MODE, [],
  867. [m4_define([_LTDL_MODE], m4_default([$2], [subproject]))
  868. m4_if([-1], [m4_bregexp(_LTDL_MODE, [\(subproject\|\(non\)?recursive\)])],
  869. [m4_fatal([unknown libltdl mode: ]_LTDL_MODE)])])
  870. AC_ARG_WITH([included_ltdl],
  871. [AS_HELP_STRING([--with-included-ltdl],
  872. [use the GNU ltdl sources included here])])
  873. if test "x$with_included_ltdl" != xyes; then
  874. # We are not being forced to use the included libltdl sources, so
  875. # decide whether there is a useful installed version we can use.
  876. AC_CHECK_HEADER([ltdl.h],
  877. [AC_CHECK_DECL([lt_dlinterface_register],
  878. [AC_CHECK_LIB([ltdl], [lt_dladvise_preload],
  879. [with_included_ltdl=no],
  880. [with_included_ltdl=yes])],
  881. [with_included_ltdl=yes],
  882. [AC_INCLUDES_DEFAULT
  883. #include <ltdl.h>])],
  884. [with_included_ltdl=yes],
  885. [AC_INCLUDES_DEFAULT]
  886. )
  887. fi
  888. dnl If neither LT_CONFIG_LTDL_DIR, LTDL_CONVENIENCE nor LTDL_INSTALLABLE
  889. dnl was called yet, then for old times' sake, we assume libltdl is in an
  890. dnl eponymous directory:
  891. AC_PROVIDE_IFELSE([LT_CONFIG_LTDL_DIR], [], [_LT_CONFIG_LTDL_DIR([libltdl])])
  892. AC_ARG_WITH([ltdl_include],
  893. [AS_HELP_STRING([--with-ltdl-include=DIR],
  894. [use the ltdl headers installed in DIR])])
  895. if test -n "$with_ltdl_include"; then
  896. if test -f "$with_ltdl_include/ltdl.h"; then :
  897. else
  898. AC_MSG_ERROR([invalid ltdl include directory: `$with_ltdl_include'])
  899. fi
  900. else
  901. with_ltdl_include=no
  902. fi
  903. AC_ARG_WITH([ltdl_lib],
  904. [AS_HELP_STRING([--with-ltdl-lib=DIR],
  905. [use the libltdl.la installed in DIR])])
  906. if test -n "$with_ltdl_lib"; then
  907. if test -f "$with_ltdl_lib/libltdl.la"; then :
  908. else
  909. AC_MSG_ERROR([invalid ltdl library directory: `$with_ltdl_lib'])
  910. fi
  911. else
  912. with_ltdl_lib=no
  913. fi
  914. case ,$with_included_ltdl,$with_ltdl_include,$with_ltdl_lib, in
  915. ,yes,no,no,)
  916. m4_case(m4_default(_LTDL_TYPE, [convenience]),
  917. [convenience], [_LTDL_CONVENIENCE],
  918. [installable], [_LTDL_INSTALLABLE],
  919. [m4_fatal([unknown libltdl build type: ]_LTDL_TYPE)])
  920. ;;
  921. ,no,no,no,)
  922. # If the included ltdl is not to be used, then use the
  923. # preinstalled libltdl we found.
  924. AC_DEFINE([HAVE_LTDL], [1],
  925. [Define this if a modern libltdl is already installed])
  926. LIBLTDL=-lltdl
  927. LTDLDEPS=
  928. LTDLINCL=
  929. ;;
  930. ,no*,no,*)
  931. AC_MSG_ERROR([`--with-ltdl-include' and `--with-ltdl-lib' options must be used together])
  932. ;;
  933. *) with_included_ltdl=no
  934. LIBLTDL="-L$with_ltdl_lib -lltdl"
  935. LTDLDEPS=
  936. LTDLINCL="-I$with_ltdl_include"
  937. ;;
  938. esac
  939. INCLTDL="$LTDLINCL"
  940. # Report our decision...
  941. AC_MSG_CHECKING([where to find libltdl headers])
  942. AC_MSG_RESULT([$LTDLINCL])
  943. AC_MSG_CHECKING([where to find libltdl library])
  944. AC_MSG_RESULT([$LIBLTDL])
  945. _LTDL_SETUP
  946. dnl restore autoconf definition.
  947. m4_popdef([AC_LIBOBJ])
  948. m4_popdef([AC_LIBSOURCES])
  949. AC_CONFIG_COMMANDS_PRE([
  950. _ltdl_libobjs=
  951. _ltdl_ltlibobjs=
  952. if test -n "$_LT_LIBOBJS"; then
  953. # Remove the extension.
  954. _lt_sed_drop_objext='s/\.o$//;s/\.obj$//'
  955. for i in `for i in $_LT_LIBOBJS; do echo "$i"; done | sed "$_lt_sed_drop_objext" | sort -u`; do
  956. _ltdl_libobjs="$_ltdl_libobjs $lt_libobj_prefix$i.$ac_objext"
  957. _ltdl_ltlibobjs="$_ltdl_ltlibobjs $lt_libobj_prefix$i.lo"
  958. done
  959. fi
  960. AC_SUBST([ltdl_LIBOBJS], [$_ltdl_libobjs])
  961. AC_SUBST([ltdl_LTLIBOBJS], [$_ltdl_ltlibobjs])
  962. ])
  963. # Only expand once:
  964. m4_define([LTDL_INIT])
  965. ])
  966. m4trace:/mingw/share/aclocal/ltdl.m4:352: -1- AU_DEFUN([AC_LIB_LTDL], [LTDL_INIT($@)])
  967. m4trace:/mingw/share/aclocal/ltdl.m4:352: -1- AC_DEFUN([AC_LIB_LTDL], [AC_DIAGNOSE([obsolete], [The macro `AC_LIB_LTDL' is obsolete.
  968. You should run autoupdate.])dnl
  969. LTDL_INIT($@)])
  970. m4trace:/mingw/share/aclocal/ltdl.m4:353: -1- AU_DEFUN([AC_WITH_LTDL], [LTDL_INIT($@)])
  971. m4trace:/mingw/share/aclocal/ltdl.m4:353: -1- AC_DEFUN([AC_WITH_LTDL], [AC_DIAGNOSE([obsolete], [The macro `AC_WITH_LTDL' is obsolete.
  972. You should run autoupdate.])dnl
  973. LTDL_INIT($@)])
  974. m4trace:/mingw/share/aclocal/ltdl.m4:354: -1- AU_DEFUN([LT_WITH_LTDL], [LTDL_INIT($@)])
  975. m4trace:/mingw/share/aclocal/ltdl.m4:354: -1- AC_DEFUN([LT_WITH_LTDL], [AC_DIAGNOSE([obsolete], [The macro `LT_WITH_LTDL' is obsolete.
  976. You should run autoupdate.])dnl
  977. LTDL_INIT($@)])
  978. m4trace:/mingw/share/aclocal/ltdl.m4:367: -1- AC_DEFUN([_LTDL_SETUP], [AC_REQUIRE([AC_PROG_CC])dnl
  979. AC_REQUIRE([LT_SYS_MODULE_EXT])dnl
  980. AC_REQUIRE([LT_SYS_MODULE_PATH])dnl
  981. AC_REQUIRE([LT_SYS_DLSEARCH_PATH])dnl
  982. AC_REQUIRE([LT_LIB_DLLOAD])dnl
  983. AC_REQUIRE([LT_SYS_SYMBOL_USCORE])dnl
  984. AC_REQUIRE([LT_FUNC_DLSYM_USCORE])dnl
  985. AC_REQUIRE([LT_SYS_DLOPEN_DEPLIBS])dnl
  986. AC_REQUIRE([gl_FUNC_ARGZ])dnl
  987. m4_require([_LT_CHECK_OBJDIR])dnl
  988. m4_require([_LT_HEADER_DLFCN])dnl
  989. m4_require([_LT_CHECK_DLPREOPEN])dnl
  990. m4_require([_LT_DECL_SED])dnl
  991. dnl Don't require this, or it will be expanded earlier than the code
  992. dnl that sets the variables it relies on:
  993. _LT_ENABLE_INSTALL
  994. dnl _LTDL_MODE specific code must be called at least once:
  995. _LTDL_MODE_DISPATCH
  996. # In order that ltdl.c can compile, find out the first AC_CONFIG_HEADERS
  997. # the user used. This is so that ltdl.h can pick up the parent projects
  998. # config.h file, The first file in AC_CONFIG_HEADERS must contain the
  999. # definitions required by ltdl.c.
  1000. # FIXME: Remove use of undocumented AC_LIST_HEADERS (2.59 compatibility).
  1001. AC_CONFIG_COMMANDS_PRE([dnl
  1002. m4_pattern_allow([^LT_CONFIG_H$])dnl
  1003. m4_ifset([AH_HEADER],
  1004. [LT_CONFIG_H=AH_HEADER],
  1005. [m4_ifset([AC_LIST_HEADERS],
  1006. [LT_CONFIG_H=`echo "AC_LIST_HEADERS" | $SED 's,^[[ ]]*,,;s,[[ :]].*$,,'`],
  1007. [])])])
  1008. AC_SUBST([LT_CONFIG_H])
  1009. AC_CHECK_HEADERS([unistd.h dl.h sys/dl.h dld.h mach-o/dyld.h dirent.h],
  1010. [], [], [AC_INCLUDES_DEFAULT])
  1011. AC_CHECK_FUNCS([closedir opendir readdir], [], [AC_LIBOBJ([lt__dirent])])
  1012. AC_CHECK_FUNCS([strlcat strlcpy], [], [AC_LIBOBJ([lt__strl])])
  1013. m4_pattern_allow([LT_LIBEXT])dnl
  1014. AC_DEFINE_UNQUOTED([LT_LIBEXT],["$libext"],[The archive extension])
  1015. name=
  1016. eval "lt_libprefix=\"$libname_spec\""
  1017. m4_pattern_allow([LT_LIBPREFIX])dnl
  1018. AC_DEFINE_UNQUOTED([LT_LIBPREFIX],["$lt_libprefix"],[The archive prefix])
  1019. name=ltdl
  1020. eval "LTDLOPEN=\"$libname_spec\""
  1021. AC_SUBST([LTDLOPEN])
  1022. ])
  1023. m4trace:/mingw/share/aclocal/ltdl.m4:443: -1- AC_DEFUN([LT_SYS_DLOPEN_DEPLIBS], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
  1024. AC_CACHE_CHECK([whether deplibs are loaded by dlopen],
  1025. [lt_cv_sys_dlopen_deplibs],
  1026. [# PORTME does your system automatically load deplibs for dlopen?
  1027. # or its logical equivalent (e.g. shl_load for HP-UX < 11)
  1028. # For now, we just catch OSes we know something about -- in the
  1029. # future, we'll try test this programmatically.
  1030. lt_cv_sys_dlopen_deplibs=unknown
  1031. case $host_os in
  1032. aix3*|aix4.1.*|aix4.2.*)
  1033. # Unknown whether this is true for these versions of AIX, but
  1034. # we want this `case' here to explicitly catch those versions.
  1035. lt_cv_sys_dlopen_deplibs=unknown
  1036. ;;
  1037. aix[[4-9]]*)
  1038. lt_cv_sys_dlopen_deplibs=yes
  1039. ;;
  1040. amigaos*)
  1041. case $host_cpu in
  1042. powerpc)
  1043. lt_cv_sys_dlopen_deplibs=no
  1044. ;;
  1045. esac
  1046. ;;
  1047. darwin*)
  1048. # Assuming the user has installed a libdl from somewhere, this is true
  1049. # If you are looking for one http://www.opendarwin.org/projects/dlcompat
  1050. lt_cv_sys_dlopen_deplibs=yes
  1051. ;;
  1052. freebsd* | dragonfly*)
  1053. lt_cv_sys_dlopen_deplibs=yes
  1054. ;;
  1055. gnu* | linux* | k*bsd*-gnu | kopensolaris*-gnu)
  1056. # GNU and its variants, using gnu ld.so (Glibc)
  1057. lt_cv_sys_dlopen_deplibs=yes
  1058. ;;
  1059. hpux10*|hpux11*)
  1060. lt_cv_sys_dlopen_deplibs=yes
  1061. ;;
  1062. interix*)
  1063. lt_cv_sys_dlopen_deplibs=yes
  1064. ;;
  1065. irix[[12345]]*|irix6.[[01]]*)
  1066. # Catch all versions of IRIX before 6.2, and indicate that we don't
  1067. # know how it worked for any of those versions.
  1068. lt_cv_sys_dlopen_deplibs=unknown
  1069. ;;
  1070. irix*)
  1071. # The case above catches anything before 6.2, and it's known that
  1072. # at 6.2 and later dlopen does load deplibs.
  1073. lt_cv_sys_dlopen_deplibs=yes
  1074. ;;
  1075. netbsd*)
  1076. lt_cv_sys_dlopen_deplibs=yes
  1077. ;;
  1078. openbsd*)
  1079. lt_cv_sys_dlopen_deplibs=yes
  1080. ;;
  1081. osf[[1234]]*)
  1082. # dlopen did load deplibs (at least at 4.x), but until the 5.x series,
  1083. # it did *not* use an RPATH in a shared library to find objects the
  1084. # library depends on, so we explicitly say `no'.
  1085. lt_cv_sys_dlopen_deplibs=no
  1086. ;;
  1087. osf5.0|osf5.0a|osf5.1)
  1088. # dlopen *does* load deplibs and with the right loader patch applied
  1089. # it even uses RPATH in a shared library to search for shared objects
  1090. # that the library depends on, but there's no easy way to know if that
  1091. # patch is installed. Since this is the case, all we can really
  1092. # say is unknown -- it depends on the patch being installed. If
  1093. # it is, this changes to `yes'. Without it, it would be `no'.
  1094. lt_cv_sys_dlopen_deplibs=unknown
  1095. ;;
  1096. osf*)
  1097. # the two cases above should catch all versions of osf <= 5.1. Read
  1098. # the comments above for what we know about them.
  1099. # At > 5.1, deplibs are loaded *and* any RPATH in a shared library
  1100. # is used to find them so we can finally say `yes'.
  1101. lt_cv_sys_dlopen_deplibs=yes
  1102. ;;
  1103. qnx*)
  1104. lt_cv_sys_dlopen_deplibs=yes
  1105. ;;
  1106. solaris*)
  1107. lt_cv_sys_dlopen_deplibs=yes
  1108. ;;
  1109. sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
  1110. libltdl_cv_sys_dlopen_deplibs=yes
  1111. ;;
  1112. esac
  1113. ])
  1114. if test "$lt_cv_sys_dlopen_deplibs" != yes; then
  1115. AC_DEFINE([LTDL_DLOPEN_DEPLIBS], [1],
  1116. [Define if the OS needs help to load dependent libraries for dlopen().])
  1117. fi
  1118. ])
  1119. m4trace:/mingw/share/aclocal/ltdl.m4:542: -1- AU_DEFUN([AC_LTDL_SYS_DLOPEN_DEPLIBS], [m4_if($#, 0, [LT_SYS_DLOPEN_DEPLIBS], [LT_SYS_DLOPEN_DEPLIBS($@)])])
  1120. m4trace:/mingw/share/aclocal/ltdl.m4:542: -1- AC_DEFUN([AC_LTDL_SYS_DLOPEN_DEPLIBS], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SYS_DLOPEN_DEPLIBS' is obsolete.
  1121. You should run autoupdate.])dnl
  1122. m4_if($#, 0, [LT_SYS_DLOPEN_DEPLIBS], [LT_SYS_DLOPEN_DEPLIBS($@)])])
  1123. m4trace:/mingw/share/aclocal/ltdl.m4:549: -1- AC_DEFUN([LT_SYS_MODULE_EXT], [m4_require([_LT_SYS_DYNAMIC_LINKER])dnl
  1124. AC_CACHE_CHECK([which extension is used for runtime loadable modules],
  1125. [libltdl_cv_shlibext],
  1126. [
  1127. module=yes
  1128. eval libltdl_cv_shlibext=$shrext_cmds
  1129. ])
  1130. if test -n "$libltdl_cv_shlibext"; then
  1131. m4_pattern_allow([LT_MODULE_EXT])dnl
  1132. AC_DEFINE_UNQUOTED([LT_MODULE_EXT], ["$libltdl_cv_shlibext"],
  1133. [Define to the extension used for runtime loadable modules, say, ".so".])
  1134. fi
  1135. ])
  1136. m4trace:/mingw/share/aclocal/ltdl.m4:565: -1- AU_DEFUN([AC_LTDL_SHLIBEXT], [m4_if($#, 0, [LT_SYS_MODULE_EXT], [LT_SYS_MODULE_EXT($@)])])
  1137. m4trace:/mingw/share/aclocal/ltdl.m4:565: -1- AC_DEFUN([AC_LTDL_SHLIBEXT], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SHLIBEXT' is obsolete.
  1138. You should run autoupdate.])dnl
  1139. m4_if($#, 0, [LT_SYS_MODULE_EXT], [LT_SYS_MODULE_EXT($@)])])
  1140. m4trace:/mingw/share/aclocal/ltdl.m4:572: -1- AC_DEFUN([LT_SYS_MODULE_PATH], [m4_require([_LT_SYS_DYNAMIC_LINKER])dnl
  1141. AC_CACHE_CHECK([which variable specifies run-time module search path],
  1142. [lt_cv_module_path_var], [lt_cv_module_path_var="$shlibpath_var"])
  1143. if test -n "$lt_cv_module_path_var"; then
  1144. m4_pattern_allow([LT_MODULE_PATH_VAR])dnl
  1145. AC_DEFINE_UNQUOTED([LT_MODULE_PATH_VAR], ["$lt_cv_module_path_var"],
  1146. [Define to the name of the environment variable that determines the run-time module search path.])
  1147. fi
  1148. ])
  1149. m4trace:/mingw/share/aclocal/ltdl.m4:584: -1- AU_DEFUN([AC_LTDL_SHLIBPATH], [m4_if($#, 0, [LT_SYS_MODULE_PATH], [LT_SYS_MODULE_PATH($@)])])
  1150. m4trace:/mingw/share/aclocal/ltdl.m4:584: -1- AC_DEFUN([AC_LTDL_SHLIBPATH], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SHLIBPATH' is obsolete.
  1151. You should run autoupdate.])dnl
  1152. m4_if($#, 0, [LT_SYS_MODULE_PATH], [LT_SYS_MODULE_PATH($@)])])
  1153. m4trace:/mingw/share/aclocal/ltdl.m4:591: -1- AC_DEFUN([LT_SYS_DLSEARCH_PATH], [m4_require([_LT_SYS_DYNAMIC_LINKER])dnl
  1154. AC_CACHE_CHECK([for the default library search path],
  1155. [lt_cv_sys_dlsearch_path],
  1156. [lt_cv_sys_dlsearch_path="$sys_lib_dlsearch_path_spec"])
  1157. if test -n "$lt_cv_sys_dlsearch_path"; then
  1158. sys_dlsearch_path=
  1159. for dir in $lt_cv_sys_dlsearch_path; do
  1160. if test -z "$sys_dlsearch_path"; then
  1161. sys_dlsearch_path="$dir"
  1162. else
  1163. sys_dlsearch_path="$sys_dlsearch_path$PATH_SEPARATOR$dir"
  1164. fi
  1165. done
  1166. m4_pattern_allow([LT_DLSEARCH_PATH])dnl
  1167. AC_DEFINE_UNQUOTED([LT_DLSEARCH_PATH], ["$sys_dlsearch_path"],
  1168. [Define to the system default library search path.])
  1169. fi
  1170. ])
  1171. m4trace:/mingw/share/aclocal/ltdl.m4:612: -1- AU_DEFUN([AC_LTDL_SYSSEARCHPATH], [m4_if($#, 0, [LT_SYS_DLSEARCH_PATH], [LT_SYS_DLSEARCH_PATH($@)])])
  1172. m4trace:/mingw/share/aclocal/ltdl.m4:612: -1- AC_DEFUN([AC_LTDL_SYSSEARCHPATH], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SYSSEARCHPATH' is obsolete.
  1173. You should run autoupdate.])dnl
  1174. m4_if($#, 0, [LT_SYS_DLSEARCH_PATH], [LT_SYS_DLSEARCH_PATH($@)])])
  1175. m4trace:/mingw/share/aclocal/ltdl.m4:638: -1- AC_DEFUN([LT_LIB_DLLOAD], [m4_pattern_allow([^LT_DLLOADERS$])
  1176. LT_DLLOADERS=
  1177. AC_SUBST([LT_DLLOADERS])
  1178. AC_LANG_PUSH([C])
  1179. LIBADD_DLOPEN=
  1180. AC_SEARCH_LIBS([dlopen], [dl],
  1181. [AC_DEFINE([HAVE_LIBDL], [1],
  1182. [Define if you have the libdl library or equivalent.])
  1183. if test "$ac_cv_search_dlopen" != "none required" ; then
  1184. LIBADD_DLOPEN="-ldl"
  1185. fi
  1186. libltdl_cv_lib_dl_dlopen="yes"
  1187. LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"],
  1188. [AC_LINK_IFELSE([AC_LANG_PROGRAM([[#if HAVE_DLFCN_H
  1189. # include <dlfcn.h>
  1190. #endif
  1191. ]], [[dlopen(0, 0);]])],
  1192. [AC_DEFINE([HAVE_LIBDL], [1],
  1193. [Define if you have the libdl library or equivalent.])
  1194. libltdl_cv_func_dlopen="yes"
  1195. LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"],
  1196. [AC_CHECK_LIB([svld], [dlopen],
  1197. [AC_DEFINE([HAVE_LIBDL], [1],
  1198. [Define if you have the libdl library or equivalent.])
  1199. LIBADD_DLOPEN="-lsvld" libltdl_cv_func_dlopen="yes"
  1200. LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"])])])
  1201. if test x"$libltdl_cv_func_dlopen" = xyes || test x"$libltdl_cv_lib_dl_dlopen" = xyes
  1202. then
  1203. lt_save_LIBS="$LIBS"
  1204. LIBS="$LIBS $LIBADD_DLOPEN"
  1205. AC_CHECK_FUNCS([dlerror])
  1206. LIBS="$lt_save_LIBS"
  1207. fi
  1208. AC_SUBST([LIBADD_DLOPEN])
  1209. LIBADD_SHL_LOAD=
  1210. AC_CHECK_FUNC([shl_load],
  1211. [AC_DEFINE([HAVE_SHL_LOAD], [1],
  1212. [Define if you have the shl_load function.])
  1213. LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}shl_load.la"],
  1214. [AC_CHECK_LIB([dld], [shl_load],
  1215. [AC_DEFINE([HAVE_SHL_LOAD], [1],
  1216. [Define if you have the shl_load function.])
  1217. LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}shl_load.la"
  1218. LIBADD_SHL_LOAD="-ldld"])])
  1219. AC_SUBST([LIBADD_SHL_LOAD])
  1220. case $host_os in
  1221. darwin[[1567]].*)
  1222. # We only want this for pre-Mac OS X 10.4.
  1223. AC_CHECK_FUNC([_dyld_func_lookup],
  1224. [AC_DEFINE([HAVE_DYLD], [1],
  1225. [Define if you have the _dyld_func_lookup function.])
  1226. LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dyld.la"])
  1227. ;;
  1228. beos*)
  1229. LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}load_add_on.la"
  1230. ;;
  1231. cygwin* | mingw* | os2* | pw32*)
  1232. AC_CHECK_DECLS([cygwin_conv_path], [], [], [[#include <sys/cygwin.h>]])
  1233. LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}loadlibrary.la"
  1234. ;;
  1235. esac
  1236. AC_CHECK_LIB([dld], [dld_link],
  1237. [AC_DEFINE([HAVE_DLD], [1],
  1238. [Define if you have the GNU dld library.])
  1239. LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dld_link.la"])
  1240. AC_SUBST([LIBADD_DLD_LINK])
  1241. m4_pattern_allow([^LT_DLPREOPEN$])
  1242. LT_DLPREOPEN=
  1243. if test -n "$LT_DLLOADERS"
  1244. then
  1245. for lt_loader in $LT_DLLOADERS; do
  1246. LT_DLPREOPEN="$LT_DLPREOPEN-dlpreopen $lt_loader "
  1247. done
  1248. AC_DEFINE([HAVE_LIBDLLOADER], [1],
  1249. [Define if libdlloader will be built on this platform])
  1250. fi
  1251. AC_SUBST([LT_DLPREOPEN])
  1252. dnl This isn't used anymore, but set it for backwards compatibility
  1253. LIBADD_DL="$LIBADD_DLOPEN $LIBADD_SHL_LOAD"
  1254. AC_SUBST([LIBADD_DL])
  1255. AC_LANG_POP
  1256. ])
  1257. m4trace:/mingw/share/aclocal/ltdl.m4:731: -1- AU_DEFUN([AC_LTDL_DLLIB], [m4_if($#, 0, [LT_LIB_DLLOAD], [LT_LIB_DLLOAD($@)])])
  1258. m4trace:/mingw/share/aclocal/ltdl.m4:731: -1- AC_DEFUN([AC_LTDL_DLLIB], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_DLLIB' is obsolete.
  1259. You should run autoupdate.])dnl
  1260. m4_if($#, 0, [LT_LIB_DLLOAD], [LT_LIB_DLLOAD($@)])])
  1261. m4trace:/mingw/share/aclocal/ltdl.m4:739: -1- AC_DEFUN([LT_SYS_SYMBOL_USCORE], [m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl
  1262. AC_CACHE_CHECK([for _ prefix in compiled symbols],
  1263. [lt_cv_sys_symbol_underscore],
  1264. [lt_cv_sys_symbol_underscore=no
  1265. cat > conftest.$ac_ext <<_LT_EOF
  1266. void nm_test_func(){}
  1267. int main(){nm_test_func;return 0;}
  1268. _LT_EOF
  1269. if AC_TRY_EVAL(ac_compile); then
  1270. # Now try to grab the symbols.
  1271. ac_nlist=conftest.nm
  1272. if AC_TRY_EVAL(NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $ac_nlist) && test -s "$ac_nlist"; then
  1273. # See whether the symbols have a leading underscore.
  1274. if grep '^. _nm_test_func' "$ac_nlist" >/dev/null; then
  1275. lt_cv_sys_symbol_underscore=yes
  1276. else
  1277. if grep '^. nm_test_func ' "$ac_nlist" >/dev/null; then
  1278. :
  1279. else
  1280. echo "configure: cannot find nm_test_func in $ac_nlist" >&AS_MESSAGE_LOG_FD
  1281. fi
  1282. fi
  1283. else
  1284. echo "configure: cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD
  1285. fi
  1286. else
  1287. echo "configure: failed program was:" >&AS_MESSAGE_LOG_FD
  1288. cat conftest.c >&AS_MESSAGE_LOG_FD
  1289. fi
  1290. rm -rf conftest*
  1291. ])
  1292. sys_symbol_underscore=$lt_cv_sys_symbol_underscore
  1293. AC_SUBST([sys_symbol_underscore])
  1294. ])
  1295. m4trace:/mingw/share/aclocal/ltdl.m4:776: -1- AU_DEFUN([AC_LTDL_SYMBOL_USCORE], [m4_if($#, 0, [LT_SYS_SYMBOL_USCORE], [LT_SYS_SYMBOL_USCORE($@)])])
  1296. m4trace:/mingw/share/aclocal/ltdl.m4:776: -1- AC_DEFUN([AC_LTDL_SYMBOL_USCORE], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SYMBOL_USCORE' is obsolete.
  1297. You should run autoupdate.])dnl
  1298. m4_if($#, 0, [LT_SYS_SYMBOL_USCORE], [LT_SYS_SYMBOL_USCORE($@)])])
  1299. m4trace:/mingw/share/aclocal/ltdl.m4:783: -1- AC_DEFUN([LT_FUNC_DLSYM_USCORE], [AC_REQUIRE([LT_SYS_SYMBOL_USCORE])dnl
  1300. if test x"$lt_cv_sys_symbol_underscore" = xyes; then
  1301. if test x"$libltdl_cv_func_dlopen" = xyes ||
  1302. test x"$libltdl_cv_lib_dl_dlopen" = xyes ; then
  1303. AC_CACHE_CHECK([whether we have to add an underscore for dlsym],
  1304. [libltdl_cv_need_uscore],
  1305. [libltdl_cv_need_uscore=unknown
  1306. save_LIBS="$LIBS"
  1307. LIBS="$LIBS $LIBADD_DLOPEN"
  1308. _LT_TRY_DLOPEN_SELF(
  1309. [libltdl_cv_need_uscore=no], [libltdl_cv_need_uscore=yes],
  1310. [], [libltdl_cv_need_uscore=cross])
  1311. LIBS="$save_LIBS"
  1312. ])
  1313. fi
  1314. fi
  1315. if test x"$libltdl_cv_need_uscore" = xyes; then
  1316. AC_DEFINE([NEED_USCORE], [1],
  1317. [Define if dlsym() requires a leading underscore in symbol names.])
  1318. fi
  1319. ])
  1320. m4trace:/mingw/share/aclocal/ltdl.m4:808: -1- AU_DEFUN([AC_LTDL_DLSYM_USCORE], [m4_if($#, 0, [LT_FUNC_DLSYM_USCORE], [LT_FUNC_DLSYM_USCORE($@)])])
  1321. m4trace:/mingw/share/aclocal/ltdl.m4:808: -1- AC_DEFUN([AC_LTDL_DLSYM_USCORE], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_DLSYM_USCORE' is obsolete.
  1322. You should run autoupdate.])dnl
  1323. m4_if($#, 0, [LT_FUNC_DLSYM_USCORE], [LT_FUNC_DLSYM_USCORE($@)])])
  1324. m4trace:/mingw/share/aclocal/ltoptions.m4:14: -1- AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])])
  1325. m4trace:/mingw/share/aclocal/ltoptions.m4:111: -1- AU_DEFUN([AC_LIBTOOL_DLOPEN], [_LT_SET_OPTION([LT_INIT], [dlopen])
  1326. AC_DIAGNOSE([obsolete],
  1327. [$0: Remove this warning and the call to _LT_SET_OPTION when you
  1328. put the `dlopen' option into LT_INIT's first parameter.])
  1329. ])
  1330. m4trace:/mingw/share/aclocal/ltoptions.m4:111: -1- AC_DEFUN([AC_LIBTOOL_DLOPEN], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_DLOPEN' is obsolete.
  1331. You should run autoupdate.])dnl
  1332. _LT_SET_OPTION([LT_INIT], [dlopen])
  1333. AC_DIAGNOSE([obsolete],
  1334. [$0: Remove this warning and the call to _LT_SET_OPTION when you
  1335. put the `dlopen' option into LT_INIT's first parameter.])
  1336. ])
  1337. m4trace:/mingw/share/aclocal/ltoptions.m4:146: -1- AU_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
  1338. _LT_SET_OPTION([LT_INIT], [win32-dll])
  1339. AC_DIAGNOSE([obsolete],
  1340. [$0: Remove this warning and the call to _LT_SET_OPTION when you
  1341. put the `win32-dll' option into LT_INIT's first parameter.])
  1342. ])
  1343. m4trace:/mingw/share/aclocal/ltoptions.m4:146: -1- AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_WIN32_DLL' is obsolete.
  1344. You should run autoupdate.])dnl
  1345. AC_REQUIRE([AC_CANONICAL_HOST])dnl
  1346. _LT_SET_OPTION([LT_INIT], [win32-dll])
  1347. AC_DIAGNOSE([obsolete],
  1348. [$0: Remove this warning and the call to _LT_SET_OPTION when you
  1349. put the `win32-dll' option into LT_INIT's first parameter.])
  1350. ])
  1351. m4trace:/mingw/share/aclocal/ltoptions.m4:195: -1- AC_DEFUN([AC_ENABLE_SHARED], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared])
  1352. ])
  1353. m4trace:/mingw/share/aclocal/ltoptions.m4:199: -1- AC_DEFUN([AC_DISABLE_SHARED], [_LT_SET_OPTION([LT_INIT], [disable-shared])
  1354. ])
  1355. m4trace:/mingw/share/aclocal/ltoptions.m4:203: -1- AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)])
  1356. m4trace:/mingw/share/aclocal/ltoptions.m4:203: -1- AC_DEFUN([AM_ENABLE_SHARED], [AC_DIAGNOSE([obsolete], [The macro `AM_ENABLE_SHARED' is obsolete.
  1357. You should run autoupdate.])dnl
  1358. AC_ENABLE_SHARED($@)])
  1359. m4trace:/mingw/share/aclocal/ltoptions.m4:204: -1- AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)])
  1360. m4trace:/mingw/share/aclocal/ltoptions.m4:204: -1- AC_DEFUN([AM_DISABLE_SHARED], [AC_DIAGNOSE([obsolete], [The macro `AM_DISABLE_SHARED' is obsolete.
  1361. You should run autoupdate.])dnl
  1362. AC_DISABLE_SHARED($@)])
  1363. m4trace:/mingw/share/aclocal/ltoptions.m4:249: -1- AC_DEFUN([AC_ENABLE_STATIC], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static])
  1364. ])
  1365. m4trace:/mingw/share/aclocal/ltoptions.m4:253: -1- AC_DEFUN([AC_DISABLE_STATIC], [_LT_SET_OPTION([LT_INIT], [disable-static])
  1366. ])
  1367. m4trace:/mingw/share/aclocal/ltoptions.m4:257: -1- AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)])
  1368. m4trace:/mingw/share/aclocal/ltoptions.m4:257: -1- AC_DEFUN([AM_ENABLE_STATIC], [AC_DIAGNOSE([obsolete], [The macro `AM_ENABLE_STATIC' is obsolete.
  1369. You should run autoupdate.])dnl
  1370. AC_ENABLE_STATIC($@)])
  1371. m4trace:/mingw/share/aclocal/ltoptions.m4:258: -1- AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)])
  1372. m4trace:/mingw/share/aclocal/ltoptions.m4:258: -1- AC_DEFUN([AM_DISABLE_STATIC], [AC_DIAGNOSE([obsolete], [The macro `AM_DISABLE_STATIC' is obsolete.
  1373. You should run autoupdate.])dnl
  1374. AC_DISABLE_STATIC($@)])
  1375. m4trace:/mingw/share/aclocal/ltoptions.m4:303: -1- AU_DEFUN([AC_ENABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install])
  1376. AC_DIAGNOSE([obsolete],
  1377. [$0: Remove this warning and the call to _LT_SET_OPTION when you put
  1378. the `fast-install' option into LT_INIT's first parameter.])
  1379. ])
  1380. m4trace:/mingw/share/aclocal/ltoptions.m4:303: -1- AC_DEFUN([AC_ENABLE_FAST_INSTALL], [AC_DIAGNOSE([obsolete], [The macro `AC_ENABLE_FAST_INSTALL' is obsolete.
  1381. You should run autoupdate.])dnl
  1382. _LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install])
  1383. AC_DIAGNOSE([obsolete],
  1384. [$0: Remove this warning and the call to _LT_SET_OPTION when you put
  1385. the `fast-install' option into LT_INIT's first parameter.])
  1386. ])
  1387. m4trace:/mingw/share/aclocal/ltoptions.m4:310: -1- AU_DEFUN([AC_DISABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], [disable-fast-install])
  1388. AC_DIAGNOSE([obsolete],
  1389. [$0: Remove this warning and the call to _LT_SET_OPTION when you put
  1390. the `disable-fast-install' option into LT_INIT's first parameter.])
  1391. ])
  1392. m4trace:/mingw/share/aclocal/ltoptions.m4:310: -1- AC_DEFUN([AC_DISABLE_FAST_INSTALL], [AC_DIAGNOSE([obsolete], [The macro `AC_DISABLE_FAST_INSTALL' is obsolete.
  1393. You should run autoupdate.])dnl
  1394. _LT_SET_OPTION([LT_INIT], [disable-fast-install])
  1395. AC_DIAGNOSE([obsolete],
  1396. [$0: Remove this warning and the call to _LT_SET_OPTION when you put
  1397. the `disable-fast-install' option into LT_INIT's first parameter.])
  1398. ])
  1399. m4trace:/mingw/share/aclocal/ltoptions.m4:343: -1- AU_DEFUN([AC_LIBTOOL_PICMODE], [_LT_SET_OPTION([LT_INIT], [pic-only])
  1400. AC_DIAGNOSE([obsolete],
  1401. [$0: Remove this warning and the call to _LT_SET_OPTION when you
  1402. put the `pic-only' option into LT_INIT's first parameter.])
  1403. ])
  1404. m4trace:/mingw/share/aclocal/ltoptions.m4:343: -1- AC_DEFUN([AC_LIBTOOL_PICMODE], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_PICMODE' is obsolete.
  1405. You should run autoupdate.])dnl
  1406. _LT_SET_OPTION([LT_INIT], [pic-only])
  1407. AC_DIAGNOSE([obsolete],
  1408. [$0: Remove this warning and the call to _LT_SET_OPTION when you
  1409. put the `pic-only' option into LT_INIT's first parameter.])
  1410. ])
  1411. m4trace:/mingw/share/aclocal/ltsugar.m4:13: -1- AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])])
  1412. m4trace:/mingw/share/aclocal/ltversion.m4:18: -1- AC_DEFUN([LTVERSION_VERSION], [macro_version='2.4'
  1413. macro_revision='1.3294'
  1414. _LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?])
  1415. _LT_DECL(, macro_revision, 0)
  1416. ])
  1417. m4trace:/mingw/share/aclocal/lt~obsolete.m4:36: -1- AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])])
  1418. m4trace:/mingw/share/aclocal/lt~obsolete.m4:40: -1- AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])
  1419. m4trace:/mingw/share/aclocal/lt~obsolete.m4:41: -1- AC_DEFUN([_LT_AC_SHELL_INIT])
  1420. m4trace:/mingw/share/aclocal/lt~obsolete.m4:42: -1- AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])
  1421. m4trace:/mingw/share/aclocal/lt~obsolete.m4:44: -1- AC_DEFUN([_LT_AC_TAGVAR])
  1422. m4trace:/mingw/share/aclocal/lt~obsolete.m4:45: -1- AC_DEFUN([AC_LTDL_ENABLE_INSTALL])
  1423. m4trace:/mingw/share/aclocal/lt~obsolete.m4:46: -1- AC_DEFUN([AC_LTDL_PREOPEN])
  1424. m4trace:/mingw/share/aclocal/lt~obsolete.m4:47: -1- AC_DEFUN([_LT_AC_SYS_COMPILER])
  1425. m4trace:/mingw/share/aclocal/lt~obsolete.m4:48: -1- AC_DEFUN([_LT_AC_LOCK])
  1426. m4trace:/mingw/share/aclocal/lt~obsolete.m4:49: -1- AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])
  1427. m4trace:/mingw/share/aclocal/lt~obsolete.m4:50: -1- AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])
  1428. m4trace:/mingw/share/aclocal/lt~obsolete.m4:51: -1- AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])
  1429. m4trace:/mingw/share/aclocal/lt~obsolete.m4:52: -1- AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])
  1430. m4trace:/mingw/share/aclocal/lt~obsolete.m4:53: -1- AC_DEFUN([AC_LIBTOOL_OBJDIR])
  1431. m4trace:/mingw/share/aclocal/lt~obsolete.m4:54: -1- AC_DEFUN([AC_LTDL_OBJDIR])
  1432. m4trace:/mingw/share/aclocal/lt~obsolete.m4:55: -1- AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])
  1433. m4trace:/mingw/share/aclocal/lt~obsolete.m4:56: -1- AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])
  1434. m4trace:/mingw/share/aclocal/lt~obsolete.m4:57: -1- AC_DEFUN([AC_PATH_MAGIC])
  1435. m4trace:/mingw/share/aclocal/lt~obsolete.m4:58: -1- AC_DEFUN([AC_PROG_LD_GNU])
  1436. m4trace:/mingw/share/aclocal/lt~obsolete.m4:59: -1- AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])
  1437. m4trace:/mingw/share/aclocal/lt~obsolete.m4:60: -1- AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])
  1438. m4trace:/mingw/share/aclocal/lt~obsolete.m4:61: -1- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])
  1439. m4trace:/mingw/share/aclocal/lt~obsolete.m4:62: -1- AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])
  1440. m4trace:/mingw/share/aclocal/lt~obsolete.m4:63: -1- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])
  1441. m4trace:/mingw/share/aclocal/lt~obsolete.m4:64: -1- AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])
  1442. m4trace:/mingw/share/aclocal/lt~obsolete.m4:65: -1- AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])
  1443. m4trace:/mingw/share/aclocal/lt~obsolete.m4:66: -1- AC_DEFUN([LT_AC_PROG_EGREP])
  1444. m4trace:/mingw/share/aclocal/lt~obsolete.m4:71: -1- AC_DEFUN([_AC_PROG_LIBTOOL])
  1445. m4trace:/mingw/share/aclocal/lt~obsolete.m4:72: -1- AC_DEFUN([AC_LIBTOOL_SETUP])
  1446. m4trace:/mingw/share/aclocal/lt~obsolete.m4:73: -1- AC_DEFUN([_LT_AC_CHECK_DLFCN])
  1447. m4trace:/mingw/share/aclocal/lt~obsolete.m4:74: -1- AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])
  1448. m4trace:/mingw/share/aclocal/lt~obsolete.m4:75: -1- AC_DEFUN([_LT_AC_TAGCONFIG])
  1449. m4trace:/mingw/share/aclocal/lt~obsolete.m4:77: -1- AC_DEFUN([_LT_AC_LANG_CXX])
  1450. m4trace:/mingw/share/aclocal/lt~obsolete.m4:78: -1- AC_DEFUN([_LT_AC_LANG_F77])
  1451. m4trace:/mingw/share/aclocal/lt~obsolete.m4:79: -1- AC_DEFUN([_LT_AC_LANG_GCJ])
  1452. m4trace:/mingw/share/aclocal/lt~obsolete.m4:80: -1- AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])
  1453. m4trace:/mingw/share/aclocal/lt~obsolete.m4:81: -1- AC_DEFUN([_LT_AC_LANG_C_CONFIG])
  1454. m4trace:/mingw/share/aclocal/lt~obsolete.m4:82: -1- AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])
  1455. m4trace:/mingw/share/aclocal/lt~obsolete.m4:83: -1- AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])
  1456. m4trace:/mingw/share/aclocal/lt~obsolete.m4:84: -1- AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])
  1457. m4trace:/mingw/share/aclocal/lt~obsolete.m4:85: -1- AC_DEFUN([_LT_AC_LANG_F77_CONFIG])
  1458. m4trace:/mingw/share/aclocal/lt~obsolete.m4:86: -1- AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])
  1459. m4trace:/mingw/share/aclocal/lt~obsolete.m4:87: -1- AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])
  1460. m4trace:/mingw/share/aclocal/lt~obsolete.m4:88: -1- AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])
  1461. m4trace:/mingw/share/aclocal/lt~obsolete.m4:89: -1- AC_DEFUN([_LT_AC_LANG_RC_CONFIG])
  1462. m4trace:/mingw/share/aclocal/lt~obsolete.m4:90: -1- AC_DEFUN([AC_LIBTOOL_CONFIG])
  1463. m4trace:/mingw/share/aclocal/lt~obsolete.m4:91: -1- AC_DEFUN([_LT_AC_FILE_LTDLL_C])
  1464. m4trace:/mingw/share/aclocal/lt~obsolete.m4:93: -1- AC_DEFUN([_LT_AC_PROG_CXXCPP])
  1465. m4trace:/mingw/share/aclocal/lt~obsolete.m4:96: -1- AC_DEFUN([_LT_PROG_F77])
  1466. m4trace:/mingw/share/aclocal/lt~obsolete.m4:97: -1- AC_DEFUN([_LT_PROG_FC])
  1467. m4trace:/mingw/share/aclocal/lt~obsolete.m4:98: -1- AC_DEFUN([_LT_PROG_CXX])
  1468. m4trace:/mingw/share/aclocal-1.11/amversion.m4:14: -1- AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.11'
  1469. dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
  1470. dnl require some minimum version. Point them to the right macro.
  1471. m4_if([$1], [1.11.1], [],
  1472. [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
  1473. ])
  1474. m4trace:/mingw/share/aclocal-1.11/amversion.m4:33: -1- AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.11.1])dnl
  1475. m4_ifndef([AC_AUTOCONF_VERSION],
  1476. [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
  1477. _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
  1478. m4trace:/mingw/share/aclocal-1.11/auxdir.m4:47: -1- AC_DEFUN([AM_AUX_DIR_EXPAND], [dnl Rely on autoconf to set up CDPATH properly.
  1479. AC_PREREQ([2.50])dnl
  1480. # expand $ac_aux_dir to an absolute path
  1481. am_aux_dir=`cd $ac_aux_dir && pwd`
  1482. ])
  1483. m4trace:/mingw/share/aclocal-1.11/cond.m4:15: -1- AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ(2.52)dnl
  1484. ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])],
  1485. [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
  1486. AC_SUBST([$1_TRUE])dnl
  1487. AC_SUBST([$1_FALSE])dnl
  1488. _AM_SUBST_NOTMAKE([$1_TRUE])dnl
  1489. _AM_SUBST_NOTMAKE([$1_FALSE])dnl
  1490. m4_define([_AM_COND_VALUE_$1], [$2])dnl
  1491. if $2; then
  1492. $1_TRUE=
  1493. $1_FALSE='#'
  1494. else
  1495. $1_TRUE='#'
  1496. $1_FALSE=
  1497. fi
  1498. AC_CONFIG_COMMANDS_PRE(
  1499. [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
  1500. AC_MSG_ERROR([[conditional "$1" was never defined.
  1501. Usually this means the macro was only invoked conditionally.]])
  1502. fi])])
  1503. m4trace:/mingw/share/aclocal-1.11/depend.m4:28: -1- AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl
  1504. AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
  1505. AC_REQUIRE([AM_MAKE_INCLUDE])dnl
  1506. AC_REQUIRE([AM_DEP_TRACK])dnl
  1507. ifelse([$1], CC, [depcc="$CC" am_compiler_list=],
  1508. [$1], CXX, [depcc="$CXX" am_compiler_list=],
  1509. [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
  1510. [$1], UPC, [depcc="$UPC" am_compiler_list=],
  1511. [$1], GCJ, [depcc="$GCJ" am_compiler_list='gcc3 gcc'],
  1512. [depcc="$$1" am_compiler_list=])
  1513. AC_CACHE_CHECK([dependency style of $depcc],
  1514. [am_cv_$1_dependencies_compiler_type],
  1515. [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
  1516. # We make a subdir and do the tests there. Otherwise we can end up
  1517. # making bogus files that we don't know about and never remove. For
  1518. # instance it was reported that on HP-UX the gcc test will end up
  1519. # making a dummy file named `D' -- because `-MD' means `put the output
  1520. # in D'.
  1521. mkdir conftest.dir
  1522. # Copy depcomp to subdir because otherwise we won't find it if we're
  1523. # using a relative directory.
  1524. cp "$am_depcomp" conftest.dir
  1525. cd conftest.dir
  1526. # We will build objects and dependencies in a subdirectory because
  1527. # it helps to detect inapplicable dependency modes. For instance
  1528. # both Tru64's cc and ICC support -MD to output dependencies as a
  1529. # side effect of compilation, but ICC will put the dependencies in
  1530. # the current directory while Tru64 will put them in the object
  1531. # directory.
  1532. mkdir sub
  1533. am_cv_$1_dependencies_compiler_type=none
  1534. if test "$am_compiler_list" = ""; then
  1535. am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
  1536. fi
  1537. am__universal=false
  1538. m4_case([$1], [CC],
  1539. [case " $depcc " in #(
  1540. *\ -arch\ *\ -arch\ *) am__universal=true ;;
  1541. esac],
  1542. [CXX],
  1543. [case " $depcc " in #(
  1544. *\ -arch\ *\ -arch\ *) am__universal=true ;;
  1545. esac])
  1546. for depmode in $am_compiler_list; do
  1547. # Setup a source with many dependencies, because some compilers
  1548. # like to wrap large dependency lists on column 80 (with \), and
  1549. # we should not choose a depcomp mode which is confused by this.
  1550. #
  1551. # We need to recreate these files for each test, as the compiler may
  1552. # overwrite some of them when testing with obscure command lines.
  1553. # This happens at least with the AIX C compiler.
  1554. : > sub/conftest.c
  1555. for i in 1 2 3 4 5 6; do
  1556. echo '#include "conftst'$i'.h"' >> sub/conftest.c
  1557. # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
  1558. # Solaris 8's {/usr,}/bin/sh.
  1559. touch sub/conftst$i.h
  1560. done
  1561. echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
  1562. # We check with `-c' and `-o' for the sake of the "dashmstdout"
  1563. # mode. It turns out that the SunPro C++ compiler does not properly
  1564. # handle `-M -o', and we need to detect this. Also, some Intel
  1565. # versions had trouble with output in subdirs
  1566. am__obj=sub/conftest.${OBJEXT-o}
  1567. am__minus_obj="-o $am__obj"
  1568. case $depmode in
  1569. gcc)
  1570. # This depmode causes a compiler race in universal mode.
  1571. test "$am__universal" = false || continue
  1572. ;;
  1573. nosideeffect)
  1574. # after this tag, mechanisms are not by side-effect, so they'll
  1575. # only be used when explicitly requested
  1576. if test "x$enable_dependency_tracking" = xyes; then
  1577. continue
  1578. else
  1579. break
  1580. fi
  1581. ;;
  1582. msvisualcpp | msvcmsys)
  1583. # This compiler won't grok `-c -o', but also, the minuso test has
  1584. # not run yet. These depmodes are late enough in the game, and
  1585. # so weak that their functioning should not be impacted.
  1586. am__obj=conftest.${OBJEXT-o}
  1587. am__minus_obj=
  1588. ;;
  1589. none) break ;;
  1590. esac
  1591. if depmode=$depmode \
  1592. source=sub/conftest.c object=$am__obj \
  1593. depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
  1594. $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
  1595. >/dev/null 2>conftest.err &&
  1596. grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
  1597. grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
  1598. grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
  1599. ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
  1600. # icc doesn't choke on unknown options, it will just issue warnings
  1601. # or remarks (even with -Werror). So we grep stderr for any message
  1602. # that says an option was ignored or not supported.
  1603. # When given -MP, icc 7.0 and 7.1 complain thusly:
  1604. # icc: Command line warning: ignoring option '-M'; no argument required
  1605. # The diagnosis changed in icc 8.0:
  1606. # icc: Command line remark: option '-MP' not supported
  1607. if (grep 'ignoring option' conftest.err ||
  1608. grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
  1609. am_cv_$1_dependencies_compiler_type=$depmode
  1610. break
  1611. fi
  1612. fi
  1613. done
  1614. cd ..
  1615. rm -rf conftest.dir
  1616. else
  1617. am_cv_$1_dependencies_compiler_type=none
  1618. fi
  1619. ])
  1620. AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])
  1621. AM_CONDITIONAL([am__fastdep$1], [
  1622. test "x$enable_dependency_tracking" != xno \
  1623. && test "$am_cv_$1_dependencies_compiler_type" = gcc3])
  1624. ])
  1625. m4trace:/mingw/share/aclocal-1.11/depend.m4:163: -1- AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl
  1626. AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
  1627. ])
  1628. m4trace:/mingw/share/aclocal-1.11/depend.m4:171: -1- AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE(dependency-tracking,
  1629. [ --disable-dependency-tracking speeds up one-time build
  1630. --enable-dependency-tracking do not reject slow dependency extractors])
  1631. if test "x$enable_dependency_tracking" != xno; then
  1632. am_depcomp="$ac_aux_dir/depcomp"
  1633. AMDEPBACKSLASH='\'
  1634. fi
  1635. AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
  1636. AC_SUBST([AMDEPBACKSLASH])dnl
  1637. _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
  1638. ])
  1639. m4trace:/mingw/share/aclocal-1.11/depout.m4:14: -1- AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{
  1640. # Autoconf 2.62 quotes --file arguments for eval, but not when files
  1641. # are listed without --file. Let's play safe and only enable the eval
  1642. # if we detect the quoting.
  1643. case $CONFIG_FILES in
  1644. *\'*) eval set x "$CONFIG_FILES" ;;
  1645. *) set x $CONFIG_FILES ;;
  1646. esac
  1647. shift
  1648. for mf
  1649. do
  1650. # Strip MF so we end up with the name of the file.
  1651. mf=`echo "$mf" | sed -e 's/:.*$//'`
  1652. # Check whether this is an Automake generated Makefile or not.
  1653. # We used to match only the files named `Makefile.in', but
  1654. # some people rename them; so instead we look at the file content.
  1655. # Grep'ing the first line is not enough: some people post-process
  1656. # each Makefile.in and add a new line on top of each file to say so.
  1657. # Grep'ing the whole file is not good either: AIX grep has a line
  1658. # limit of 2048, but all sed's we know have understand at least 4000.
  1659. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
  1660. dirpart=`AS_DIRNAME("$mf")`
  1661. else
  1662. continue
  1663. fi
  1664. # Extract the definition of DEPDIR, am__include, and am__quote
  1665. # from the Makefile without running `make'.
  1666. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
  1667. test -z "$DEPDIR" && continue
  1668. am__include=`sed -n 's/^am__include = //p' < "$mf"`
  1669. test -z "am__include" && continue
  1670. am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
  1671. # When using ansi2knr, U may be empty or an underscore; expand it
  1672. U=`sed -n 's/^U = //p' < "$mf"`
  1673. # Find all dependency output files, they are included files with
  1674. # $(DEPDIR) in their names. We invoke sed twice because it is the
  1675. # simplest approach to changing $(DEPDIR) to its actual value in the
  1676. # expansion.
  1677. for file in `sed -n "
  1678. s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
  1679. sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
  1680. # Make sure the directory exists.
  1681. test -f "$dirpart/$file" && continue
  1682. fdir=`AS_DIRNAME(["$file"])`
  1683. AS_MKDIR_P([$dirpart/$fdir])
  1684. # echo "creating $dirpart/$file"
  1685. echo '# dummy' > "$dirpart/$file"
  1686. done
  1687. done
  1688. }
  1689. ])
  1690. m4trace:/mingw/share/aclocal-1.11/depout.m4:75: -1- AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles],
  1691. [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
  1692. [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
  1693. ])
  1694. m4trace:/mingw/share/aclocal-1.11/init.m4:26: -1- AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.62])dnl
  1695. dnl Autoconf wants to disallow AM_ names. We explicitly allow
  1696. dnl the ones we care about.
  1697. m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
  1698. AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
  1699. AC_REQUIRE([AC_PROG_INSTALL])dnl
  1700. if test "`cd $srcdir && pwd`" != "`pwd`"; then
  1701. # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
  1702. # is not polluted with repeated "-I."
  1703. AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl
  1704. # test to see if srcdir already configured
  1705. if test -f $srcdir/config.status; then
  1706. AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
  1707. fi
  1708. fi
  1709. # test whether we have cygpath
  1710. if test -z "$CYGPATH_W"; then
  1711. if (cygpath --version) >/dev/null 2>/dev/null; then
  1712. CYGPATH_W='cygpath -w'
  1713. else
  1714. CYGPATH_W=echo
  1715. fi
  1716. fi
  1717. AC_SUBST([CYGPATH_W])
  1718. # Define the identity of the package.
  1719. dnl Distinguish between old-style and new-style calls.
  1720. m4_ifval([$2],
  1721. [m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
  1722. AC_SUBST([PACKAGE], [$1])dnl
  1723. AC_SUBST([VERSION], [$2])],
  1724. [_AM_SET_OPTIONS([$1])dnl
  1725. dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
  1726. m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,,
  1727. [m4_fatal([AC_INIT should be called with package and version arguments])])dnl
  1728. AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
  1729. AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
  1730. _AM_IF_OPTION([no-define],,
  1731. [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
  1732. AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl
  1733. # Some tools Automake needs.
  1734. AC_REQUIRE([AM_SANITY_CHECK])dnl
  1735. AC_REQUIRE([AC_ARG_PROGRAM])dnl
  1736. AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version})
  1737. AM_MISSING_PROG(AUTOCONF, autoconf)
  1738. AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})
  1739. AM_MISSING_PROG(AUTOHEADER, autoheader)
  1740. AM_MISSING_PROG(MAKEINFO, makeinfo)
  1741. AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
  1742. AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
  1743. AC_REQUIRE([AM_PROG_MKDIR_P])dnl
  1744. # We need awk for the "check" target. The system "awk" is bad on
  1745. # some platforms.
  1746. AC_REQUIRE([AC_PROG_AWK])dnl
  1747. AC_REQUIRE([AC_PROG_MAKE_SET])dnl
  1748. AC_REQUIRE([AM_SET_LEADING_DOT])dnl
  1749. _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
  1750. [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
  1751. [_AM_PROG_TAR([v7])])])
  1752. _AM_IF_OPTION([no-dependencies],,
  1753. [AC_PROVIDE_IFELSE([AC_PROG_CC],
  1754. [_AM_DEPENDENCIES(CC)],
  1755. [define([AC_PROG_CC],
  1756. defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
  1757. AC_PROVIDE_IFELSE([AC_PROG_CXX],
  1758. [_AM_DEPENDENCIES(CXX)],
  1759. [define([AC_PROG_CXX],
  1760. defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
  1761. AC_PROVIDE_IFELSE([AC_PROG_OBJC],
  1762. [_AM_DEPENDENCIES(OBJC)],
  1763. [define([AC_PROG_OBJC],
  1764. defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl
  1765. ])
  1766. _AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl
  1767. dnl The `parallel-tests' driver may need to know about EXEEXT, so add the
  1768. dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This macro
  1769. dnl is hooked onto _AC_COMPILER_EXEEXT early, see below.
  1770. AC_CONFIG_COMMANDS_PRE(dnl
  1771. [m4_provide_if([_AM_COMPILER_EXEEXT],
  1772. [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
  1773. ])
  1774. m4trace:/mingw/share/aclocal-1.11/init.m4:126: -1- AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers.
  1775. _am_arg=$1
  1776. _am_stamp_count=1
  1777. for _am_header in $config_headers :; do
  1778. case $_am_header in
  1779. $_am_arg | $_am_arg:* )
  1780. break ;;
  1781. * )
  1782. _am_stamp_count=`expr $_am_stamp_count + 1` ;;
  1783. esac
  1784. done
  1785. echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
  1786. m4trace:/mingw/share/aclocal-1.11/install-sh.m4:11: -1- AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
  1787. if test x"${install_sh}" != xset; then
  1788. case $am_aux_dir in
  1789. *\ * | *\ *)
  1790. install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
  1791. *)
  1792. install_sh="\${SHELL} $am_aux_dir/install-sh"
  1793. esac
  1794. fi
  1795. AC_SUBST(install_sh)])
  1796. m4trace:/mingw/share/aclocal-1.11/lead-dot.m4:12: -1- AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null
  1797. mkdir .tst 2>/dev/null
  1798. if test -d .tst; then
  1799. am__leading_dot=.
  1800. else
  1801. am__leading_dot=_
  1802. fi
  1803. rmdir .tst 2>/dev/null
  1804. AC_SUBST([am__leading_dot])])
  1805. m4trace:/mingw/share/aclocal-1.11/maintainer.m4:19: -1- AC_DEFUN([AM_MAINTAINER_MODE], [m4_case(m4_default([$1], [disable]),
  1806. [enable], [m4_define([am_maintainer_other], [disable])],
  1807. [disable], [m4_define([am_maintainer_other], [enable])],
  1808. [m4_define([am_maintainer_other], [enable])
  1809. m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])])
  1810. AC_MSG_CHECKING([whether to am_maintainer_other maintainer-specific portions of Makefiles])
  1811. dnl maintainer-mode's default is 'disable' unless 'enable' is passed
  1812. AC_ARG_ENABLE([maintainer-mode],
  1813. [ --][am_maintainer_other][-maintainer-mode am_maintainer_other make rules and dependencies not useful
  1814. (and sometimes confusing) to the casual installer],
  1815. [USE_MAINTAINER_MODE=$enableval],
  1816. [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes]))
  1817. AC_MSG_RESULT([$USE_MAINTAINER_MODE])
  1818. AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes])
  1819. MAINT=$MAINTAINER_MODE_TRUE
  1820. AC_SUBST([MAINT])dnl
  1821. ])
  1822. m4trace:/mingw/share/aclocal-1.11/maintainer.m4:39: -1- AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE])
  1823. m4trace:/mingw/share/aclocal-1.11/maintainer.m4:39: -1- AC_DEFUN([jm_MAINTAINER_MODE], [AC_DIAGNOSE([obsolete], [The macro `jm_MAINTAINER_MODE' is obsolete.
  1824. You should run autoupdate.])dnl
  1825. AM_MAINTAINER_MODE])
  1826. m4trace:/mingw/share/aclocal-1.11/make.m4:14: -1- AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make}
  1827. cat > confinc << 'END'
  1828. am__doit:
  1829. @echo this is the am__doit target
  1830. .PHONY: am__doit
  1831. END
  1832. # If we don't find an include directive, just comment out the code.
  1833. AC_MSG_CHECKING([for style of include used by $am_make])
  1834. am__include="#"
  1835. am__quote=
  1836. _am_result=none
  1837. # First try GNU make style include.
  1838. echo "include confinc" > confmf
  1839. # Ignore all kinds of additional output from `make'.
  1840. case `$am_make -s -f confmf 2> /dev/null` in #(
  1841. *the\ am__doit\ target*)
  1842. am__include=include
  1843. am__quote=
  1844. _am_result=GNU
  1845. ;;
  1846. esac
  1847. # Now try BSD make style include.
  1848. if test "$am__include" = "#"; then
  1849. echo '.include "confinc"' > confmf
  1850. case `$am_make -s -f confmf 2> /dev/null` in #(
  1851. *the\ am__doit\ target*)
  1852. am__include=.include
  1853. am__quote="\""
  1854. _am_result=BSD
  1855. ;;
  1856. esac
  1857. fi
  1858. AC_SUBST([am__include])
  1859. AC_SUBST([am__quote])
  1860. AC_MSG_RESULT([$_am_result])
  1861. rm -f confinc confmf
  1862. ])
  1863. m4trace:/mingw/share/aclocal-1.11/minuso.m4:14: -1- AC_DEFUN([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC_C_O])dnl
  1864. AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
  1865. AC_REQUIRE_AUX_FILE([compile])dnl
  1866. # FIXME: we rely on the cache variable name because
  1867. # there is no other way.
  1868. set dummy $CC
  1869. am_cc=`echo $[2] | sed ['s/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/']`
  1870. eval am_t=\$ac_cv_prog_cc_${am_cc}_c_o
  1871. if test "$am_t" != yes; then
  1872. # Losing compiler, so override with the script.
  1873. # FIXME: It is wrong to rewrite CC.
  1874. # But if we don't then we get into trouble of one sort or another.
  1875. # A longer-term fix would be to have automake use am__CC in this case,
  1876. # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
  1877. CC="$am_aux_dir/compile $CC"
  1878. fi
  1879. dnl Make sure AC_PROG_CC is never called again, or it will override our
  1880. dnl setting of CC.
  1881. m4_define([AC_PROG_CC],
  1882. [m4_fatal([AC_PROG_CC cannot be called after AM_PROG_CC_C_O])])
  1883. ])
  1884. m4trace:/mingw/share/aclocal-1.11/missing.m4:14: -1- AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN])
  1885. $1=${$1-"${am_missing_run}$2"}
  1886. AC_SUBST($1)])
  1887. m4trace:/mingw/share/aclocal-1.11/missing.m4:24: -1- AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
  1888. AC_REQUIRE_AUX_FILE([missing])dnl
  1889. if test x"${MISSING+set}" != xset; then
  1890. case $am_aux_dir in
  1891. *\ * | *\ *)
  1892. MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
  1893. *)
  1894. MISSING="\${SHELL} $am_aux_dir/missing" ;;
  1895. esac
  1896. fi
  1897. # Use eval to expand $SHELL
  1898. if eval "$MISSING --run true"; then
  1899. am_missing_run="$MISSING --run "
  1900. else
  1901. am_missing_run=
  1902. AC_MSG_WARN([`missing' script is too old or missing])
  1903. fi
  1904. ])
  1905. m4trace:/mingw/share/aclocal-1.11/mkdirp.m4:11: -1- AC_DEFUN([AM_PROG_MKDIR_P], [AC_PREREQ([2.60])dnl
  1906. AC_REQUIRE([AC_PROG_MKDIR_P])dnl
  1907. dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P,
  1908. dnl while keeping a definition of mkdir_p for backward compatibility.
  1909. dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile.
  1910. dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of
  1911. dnl Makefile.ins that do not define MKDIR_P, so we do our own
  1912. dnl adjustment using top_builddir (which is defined more often than
  1913. dnl MKDIR_P).
  1914. AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl
  1915. case $mkdir_p in
  1916. [[\\/$]]* | ?:[[\\/]]*) ;;
  1917. */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
  1918. esac
  1919. ])
  1920. m4trace:/mingw/share/aclocal-1.11/options.m4:13: -1- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
  1921. m4trace:/mingw/share/aclocal-1.11/options.m4:19: -1- AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), 1)])
  1922. m4trace:/mingw/share/aclocal-1.11/options.m4:25: -1- AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
  1923. m4trace:/mingw/share/aclocal-1.11/options.m4:31: -1- AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
  1924. m4trace:/mingw/share/aclocal-1.11/runlog.m4:12: -1- AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD
  1925. ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD
  1926. ac_status=$?
  1927. echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
  1928. (exit $ac_status); }])
  1929. m4trace:/mingw/share/aclocal-1.11/sanity.m4:14: -1- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane])
  1930. # Just in case
  1931. sleep 1
  1932. echo timestamp > conftest.file
  1933. # Reject unsafe characters in $srcdir or the absolute working directory
  1934. # name. Accept space and tab only in the latter.
  1935. am_lf='
  1936. '
  1937. case `pwd` in
  1938. *[[\\\"\#\$\&\'\`$am_lf]]*)
  1939. AC_MSG_ERROR([unsafe absolute working directory name]);;
  1940. esac
  1941. case $srcdir in
  1942. *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*)
  1943. AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);;
  1944. esac
  1945. # Do `set' in a subshell so we don't clobber the current shell's
  1946. # arguments. Must try -L first in case configure is actually a
  1947. # symlink; some systems play weird games with the mod time of symlinks
  1948. # (eg FreeBSD returns the mod time of the symlink's containing
  1949. # directory).
  1950. if (
  1951. set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
  1952. if test "$[*]" = "X"; then
  1953. # -L didn't work.
  1954. set X `ls -t "$srcdir/configure" conftest.file`
  1955. fi
  1956. rm -f conftest.file
  1957. if test "$[*]" != "X $srcdir/configure conftest.file" \
  1958. && test "$[*]" != "X conftest.file $srcdir/configure"; then
  1959. # If neither matched, then we have a broken ls. This can happen
  1960. # if, for instance, CONFIG_SHELL is bash and it inherits a
  1961. # broken ls alias from the environment. This has actually
  1962. # happened. Such a system could not be considered "sane".
  1963. AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken
  1964. alias in your environment])
  1965. fi
  1966. test "$[2]" = conftest.file
  1967. )
  1968. then
  1969. # Ok.
  1970. :
  1971. else
  1972. AC_MSG_ERROR([newly created file is older than distributed files!
  1973. Check your system clock])
  1974. fi
  1975. AC_MSG_RESULT(yes)])
  1976. m4trace:/mingw/share/aclocal-1.11/silent.m4:14: -1- AC_DEFUN([AM_SILENT_RULES], [AC_ARG_ENABLE([silent-rules],
  1977. [ --enable-silent-rules less verbose build output (undo: `make V=1')
  1978. --disable-silent-rules verbose build output (undo: `make V=0')])
  1979. case $enable_silent_rules in
  1980. yes) AM_DEFAULT_VERBOSITY=0;;
  1981. no) AM_DEFAULT_VERBOSITY=1;;
  1982. *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);;
  1983. esac
  1984. AC_SUBST([AM_DEFAULT_VERBOSITY])dnl
  1985. AM_BACKSLASH='\'
  1986. AC_SUBST([AM_BACKSLASH])dnl
  1987. _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
  1988. ])
  1989. m4trace:/mingw/share/aclocal-1.11/strip.m4:17: -1- AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
  1990. # Installed binaries are usually stripped using `strip' when the user
  1991. # run `make install-strip'. However `strip' might not be the right
  1992. # tool to use in cross-compilation environments, therefore Automake
  1993. # will honor the `STRIP' environment variable to overrule this program.
  1994. dnl Don't test for $cross_compiling = yes, because it might be `maybe'.
  1995. if test "$cross_compiling" != no; then
  1996. AC_CHECK_TOOL([STRIP], [strip], :)
  1997. fi
  1998. INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
  1999. AC_SUBST([INSTALL_STRIP_PROGRAM])])
  2000. m4trace:/mingw/share/aclocal-1.11/substnot.m4:14: -1- AC_DEFUN([_AM_SUBST_NOTMAKE])
  2001. m4trace:/mingw/share/aclocal-1.11/substnot.m4:19: -1- AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
  2002. m4trace:/mingw/share/aclocal-1.11/tar.m4:24: -1- AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility.
  2003. AM_MISSING_PROG([AMTAR], [tar])
  2004. m4_if([$1], [v7],
  2005. [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'],
  2006. [m4_case([$1], [ustar],, [pax],,
  2007. [m4_fatal([Unknown tar format])])
  2008. AC_MSG_CHECKING([how to create a $1 tar archive])
  2009. # Loop over all known methods to create a tar archive until one works.
  2010. _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
  2011. _am_tools=${am_cv_prog_tar_$1-$_am_tools}
  2012. # Do not fold the above two line into one, because Tru64 sh and
  2013. # Solaris sh will not grok spaces in the rhs of `-'.
  2014. for _am_tool in $_am_tools
  2015. do
  2016. case $_am_tool in
  2017. gnutar)
  2018. for _am_tar in tar gnutar gtar;
  2019. do
  2020. AM_RUN_LOG([$_am_tar --version]) && break
  2021. done
  2022. am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
  2023. am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
  2024. am__untar="$_am_tar -xf -"
  2025. ;;
  2026. plaintar)
  2027. # Must skip GNU tar: if it does not support --format= it doesn't create
  2028. # ustar tarball either.
  2029. (tar --version) >/dev/null 2>&1 && continue
  2030. am__tar='tar chf - "$$tardir"'
  2031. am__tar_='tar chf - "$tardir"'
  2032. am__untar='tar xf -'
  2033. ;;
  2034. pax)
  2035. am__tar='pax -L -x $1 -w "$$tardir"'
  2036. am__tar_='pax -L -x $1 -w "$tardir"'
  2037. am__untar='pax -r'
  2038. ;;
  2039. cpio)
  2040. am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
  2041. am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
  2042. am__untar='cpio -i -H $1 -d'
  2043. ;;
  2044. none)
  2045. am__tar=false
  2046. am__tar_=false
  2047. am__untar=false
  2048. ;;
  2049. esac
  2050. # If the value was cached, stop now. We just wanted to have am__tar
  2051. # and am__untar set.
  2052. test -n "${am_cv_prog_tar_$1}" && break
  2053. # tar/untar a dummy directory, and stop if the command works
  2054. rm -rf conftest.dir
  2055. mkdir conftest.dir
  2056. echo GrepMe > conftest.dir/file
  2057. AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
  2058. rm -rf conftest.dir
  2059. if test -s conftest.tar; then
  2060. AM_RUN_LOG([$am__untar <conftest.tar])
  2061. grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
  2062. fi
  2063. done
  2064. rm -rf conftest.dir
  2065. AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
  2066. AC_MSG_RESULT([$am_cv_prog_tar_$1])])
  2067. AC_SUBST([am__tar])
  2068. AC_SUBST([am__untar])
  2069. ])
  2070. m4trace:m4/00gnulib.m4:30: -1- AC_DEFUN([gl_00GNULIB])
  2071. m4trace:m4/extensions.m4:37: -1- AC_DEFUN_ONCE([AC_USE_SYSTEM_EXTENSIONS], [AC_BEFORE([$0], [AC_COMPILE_IFELSE])dnl
  2072. AC_BEFORE([$0], [AC_RUN_IFELSE])dnl
  2073. AC_REQUIRE([AC_CANONICAL_HOST])
  2074. AC_CHECK_HEADER([minix/config.h], [MINIX=yes], [MINIX=])
  2075. if test "$MINIX" = yes; then
  2076. AC_DEFINE([_POSIX_SOURCE], [1],
  2077. [Define to 1 if you need to in order for `stat' and other
  2078. things to work.])
  2079. AC_DEFINE([_POSIX_1_SOURCE], [2],
  2080. [Define to 2 if the system does not provide POSIX.1 features
  2081. except with this defined.])
  2082. AC_DEFINE([_MINIX], [1],
  2083. [Define to 1 if on MINIX.])
  2084. fi
  2085. dnl HP-UX 11.11 defines mbstate_t only if _XOPEN_SOURCE is defined to 500,
  2086. dnl regardless of whether the flags -Ae or _D_HPUX_SOURCE=1 are already
  2087. dnl provided.
  2088. case "$host_os" in
  2089. hpux*)
  2090. AC_DEFINE([_XOPEN_SOURCE], [500],
  2091. [Define to 500 only on HP-UX.])
  2092. ;;
  2093. esac
  2094. AH_VERBATIM([__EXTENSIONS__],
  2095. [/* Enable extensions on AIX 3, Interix. */
  2096. #ifndef _ALL_SOURCE
  2097. # undef _ALL_SOURCE
  2098. #endif
  2099. /* Enable GNU extensions on systems that have them. */
  2100. #ifndef _GNU_SOURCE
  2101. # undef _GNU_SOURCE
  2102. #endif
  2103. /* Enable threading extensions on Solaris. */
  2104. #ifndef _POSIX_PTHREAD_SEMANTICS
  2105. # undef _POSIX_PTHREAD_SEMANTICS
  2106. #endif
  2107. /* Enable extensions on HP NonStop. */
  2108. #ifndef _TANDEM_SOURCE
  2109. # undef _TANDEM_SOURCE
  2110. #endif
  2111. /* Enable general extensions on Solaris. */
  2112. #ifndef __EXTENSIONS__
  2113. # undef __EXTENSIONS__
  2114. #endif
  2115. ])
  2116. AC_CACHE_CHECK([whether it is safe to define __EXTENSIONS__],
  2117. [ac_cv_safe_to_define___extensions__],
  2118. [AC_COMPILE_IFELSE(
  2119. [AC_LANG_PROGRAM([[
  2120. # define __EXTENSIONS__ 1
  2121. ]AC_INCLUDES_DEFAULT])],
  2122. [ac_cv_safe_to_define___extensions__=yes],
  2123. [ac_cv_safe_to_define___extensions__=no])])
  2124. test $ac_cv_safe_to_define___extensions__ = yes &&
  2125. AC_DEFINE([__EXTENSIONS__])
  2126. AC_DEFINE([_ALL_SOURCE])
  2127. AC_DEFINE([_GNU_SOURCE])
  2128. AC_DEFINE([_POSIX_PTHREAD_SEMANTICS])
  2129. AC_DEFINE([_TANDEM_SOURCE])
  2130. ])
  2131. m4trace:m4/extensions.m4:107: -1- AC_DEFUN_ONCE([gl_USE_SYSTEM_EXTENSIONS], [
  2132. dnl Require this macro before AC_USE_SYSTEM_EXTENSIONS.
  2133. dnl gnulib does not need it. But if it gets required by third-party macros
  2134. dnl after AC_USE_SYSTEM_EXTENSIONS is required, autoconf 2.62..2.63 emit a
  2135. dnl warning: "AC_COMPILE_IFELSE was called before AC_USE_SYSTEM_EXTENSIONS".
  2136. dnl Note: We can do this only for one of the macros AC_AIX, AC_GNU_SOURCE,
  2137. dnl AC_MINIX. If people still use AC_AIX or AC_MINIX, they are out of luck.
  2138. AC_REQUIRE([AC_GNU_SOURCE])
  2139. AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
  2140. ])
  2141. m4trace:m4/gnulib-common.m4:9: -1- AC_DEFUN([gl_COMMON], [
  2142. dnl Use AC_REQUIRE here, so that the code is expanded once only.
  2143. AC_REQUIRE([gl_00GNULIB])
  2144. AC_REQUIRE([gl_COMMON_BODY])
  2145. ])
  2146. m4trace:m4/gnulib-common.m4:14: -1- AC_DEFUN([gl_COMMON_BODY], [
  2147. AH_VERBATIM([isoc99_inline],
  2148. [/* Work around a bug in Apple GCC 4.0.1 build 5465: In C99 mode, it supports
  2149. the ISO C 99 semantics of 'extern inline' (unlike the GNU C semantics of
  2150. earlier versions), but does not display it by setting __GNUC_STDC_INLINE__.
  2151. __APPLE__ && __MACH__ test for MacOS X.
  2152. __APPLE_CC__ tests for the Apple compiler and its version.
  2153. __STDC_VERSION__ tests for the C99 mode. */
  2154. #if defined __APPLE__ && defined __MACH__ && __APPLE_CC__ >= 5465 && !defined __cplusplus && __STDC_VERSION__ >= 199901L && !defined __GNUC_STDC_INLINE__
  2155. # define __GNUC_STDC_INLINE__ 1
  2156. #endif])
  2157. AH_VERBATIM([unused_parameter],
  2158. [/* Define as a marker that can be attached to declarations that might not
  2159. be used. This helps to reduce warnings, such as from
  2160. GCC -Wunused-parameter. */
  2161. #if __GNUC__ >= 3 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7)
  2162. # define _GL_UNUSED __attribute__ ((__unused__))
  2163. #else
  2164. # define _GL_UNUSED
  2165. #endif
  2166. /* The name _UNUSED_PARAMETER_ is an earlier spelling, although the name
  2167. is a misnomer outside of parameter lists. */
  2168. #define _UNUSED_PARAMETER_ _GL_UNUSED
  2169. /* The __pure__ attribute was added in gcc 2.96. */
  2170. #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 96)
  2171. # define _GL_ATTRIBUTE_PURE __attribute__ ((__pure__))
  2172. #else
  2173. # define _GL_ATTRIBUTE_PURE /* empty */
  2174. #endif
  2175. /* The __const__ attribute was added in gcc 2.95. */
  2176. #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 95)
  2177. # define _GL_ATTRIBUTE_CONST __attribute__ ((__const__))
  2178. #else
  2179. # define _GL_ATTRIBUTE_CONST /* empty */
  2180. #endif
  2181. ])
  2182. dnl Preparation for running test programs:
  2183. dnl Tell glibc to write diagnostics from -D_FORTIFY_SOURCE=2 to stderr, not
  2184. dnl to /dev/tty, so they can be redirected to log files. Such diagnostics
  2185. dnl arise e.g., in the macros gl_PRINTF_DIRECTIVE_N, gl_SNPRINTF_DIRECTIVE_N.
  2186. LIBC_FATAL_STDERR_=1
  2187. export LIBC_FATAL_STDERR_
  2188. ])
  2189. m4trace:m4/gnulib-common.m4:69: -1- AC_DEFUN([gl_MODULE_INDICATOR_SET_VARIABLE], [
  2190. gl_MODULE_INDICATOR_SET_VARIABLE_AUX(
  2191. [GNULIB_[]m4_translit([[$1]],
  2192. [abcdefghijklmnopqrstuvwxyz./-],
  2193. [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])],
  2194. [gl_MODULE_INDICATOR_CONDITION])
  2195. ])
  2196. m4trace:m4/gnulib-common.m4:82: -1- AC_DEFUN([gl_MODULE_INDICATOR_SET_VARIABLE_AUX], [
  2197. m4_if(m4_defn([gl_MODULE_INDICATOR_CONDITION]), [1],
  2198. [
  2199. dnl Simplify the expression VALUE || 1 to 1.
  2200. $1=1
  2201. ],
  2202. [gl_MODULE_INDICATOR_SET_VARIABLE_AUX_OR([$1],
  2203. [gl_MODULE_INDICATOR_CONDITION])])
  2204. ])
  2205. m4trace:m4/gnulib-common.m4:96: -1- AC_DEFUN([gl_MODULE_INDICATOR_SET_VARIABLE_AUX_OR], [
  2206. dnl Simplify the expression 1 || CONDITION to 1.
  2207. if test "$[]$1" != 1; then
  2208. dnl Simplify the expression 0 || CONDITION to CONDITION.
  2209. if test "$[]$1" = 0; then
  2210. $1=$2
  2211. else
  2212. $1="($[]$1 || $2)"
  2213. fi
  2214. fi
  2215. ])
  2216. m4trace:m4/gnulib-common.m4:121: -1- AC_DEFUN([gl_MODULE_INDICATOR], [
  2217. AC_DEFINE_UNQUOTED([GNULIB_]m4_translit([[$1]],
  2218. [abcdefghijklmnopqrstuvwxyz./-],
  2219. [ABCDEFGHIJKLMNOPQRSTUVWXYZ___]),
  2220. [gl_MODULE_INDICATOR_CONDITION],
  2221. [Define to a C preprocessor expression that evaluates to 1 or 0,
  2222. depending whether the gnulib module $1 shall be considered present.])
  2223. ])
  2224. m4trace:m4/gnulib-common.m4:144: -1- AC_DEFUN([gl_MODULE_INDICATOR_FOR_TESTS], [
  2225. AC_DEFINE([GNULIB_TEST_]m4_translit([[$1]],
  2226. [abcdefghijklmnopqrstuvwxyz./-],
  2227. [ABCDEFGHIJKLMNOPQRSTUVWXYZ___]), [1],
  2228. [Define to 1 when the gnulib module $1 should be tested.])
  2229. ])
  2230. m4trace:m4/gnulib-common.m4:156: -1- AC_DEFUN([gl_ASSERT_NO_GNULIB_POSIXCHECK], [
  2231. dnl Override gl_WARN_ON_USE_PREPARE.
  2232. dnl But hide this definition from 'aclocal'.
  2233. AC_DEFUN([gl_W][ARN_ON_USE_PREPARE], [])
  2234. ])
  2235. m4trace:m4/gnulib-common.m4:167: -1- AC_DEFUN([gl_ASSERT_NO_GNULIB_TESTS], [
  2236. dnl Override gl_MODULE_INDICATOR_FOR_TESTS.
  2237. AC_DEFUN([gl_MODULE_INDICATOR_FOR_TESTS], [])
  2238. ])
  2239. m4trace:m4/gnulib-common.m4:175: -1- AC_DEFUN([gl_FEATURES_H], [
  2240. AC_CHECK_HEADERS_ONCE([features.h])
  2241. if test $ac_cv_header_features_h = yes; then
  2242. HAVE_FEATURES_H=1
  2243. else
  2244. HAVE_FEATURES_H=0
  2245. fi
  2246. AC_SUBST([HAVE_FEATURES_H])
  2247. ])
  2248. m4trace:m4/gnulib-common.m4:266: -1- AC_DEFUN([gl_BIGENDIAN], [
  2249. AC_C_BIGENDIAN
  2250. ])
  2251. m4trace:m4/gnulib-common.m4:276: -1- AC_DEFUN([gl_CACHE_VAL_SILENT], [
  2252. saved_as_echo_n="$as_echo_n"
  2253. as_echo_n=':'
  2254. AC_CACHE_VAL([$1], [$2])
  2255. as_echo_n="$saved_as_echo_n"
  2256. ])
  2257. m4trace:m4/gnulib-comp.m4:22: -1- AC_DEFUN([gl_EARLY], [
  2258. m4_pattern_forbid([^gl_[A-Z]])dnl the gnulib macro namespace
  2259. m4_pattern_allow([^gl_ES$])dnl a valid locale name
  2260. m4_pattern_allow([^gl_LIBOBJS$])dnl a variable
  2261. m4_pattern_allow([^gl_LTLIBOBJS$])dnl a variable
  2262. AC_REQUIRE([AC_PROG_RANLIB])
  2263. # Code from module arg-nonnull:
  2264. # Code from module c++defs:
  2265. # Code from module extensions:
  2266. AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
  2267. # Code from module include_next:
  2268. # Code from module memchr:
  2269. # Code from module memmem:
  2270. # Code from module memmem-simple:
  2271. # Code from module multiarch:
  2272. # Code from module sigaction:
  2273. # Code from module signal:
  2274. # Code from module sigprocmask:
  2275. # Code from module stddef:
  2276. # Code from module stdint:
  2277. # Code from module string:
  2278. # Code from module warn-on-use:
  2279. ])
  2280. m4trace:m4/gnulib-comp.m4:49: -1- AC_DEFUN([gl_INIT], [
  2281. AM_CONDITIONAL([GL_COND_LIBTOOL], [false])
  2282. gl_cond_libtool=false
  2283. gl_libdeps=
  2284. gl_ltlibdeps=
  2285. gl_m4_base='m4'
  2286. m4_pushdef([AC_LIBOBJ], m4_defn([gl_LIBOBJ]))
  2287. m4_pushdef([AC_REPLACE_FUNCS], m4_defn([gl_REPLACE_FUNCS]))
  2288. m4_pushdef([AC_LIBSOURCES], m4_defn([gl_LIBSOURCES]))
  2289. m4_pushdef([gl_LIBSOURCES_LIST], [])
  2290. m4_pushdef([gl_LIBSOURCES_DIR], [])
  2291. gl_COMMON
  2292. gl_source_base='lib'
  2293. gl_FUNC_MEMCHR
  2294. if test $HAVE_MEMCHR = 0 || test $REPLACE_MEMCHR = 1; then
  2295. AC_LIBOBJ([memchr])
  2296. gl_PREREQ_MEMCHR
  2297. fi
  2298. gl_STRING_MODULE_INDICATOR([memchr])
  2299. gl_FUNC_MEMMEM
  2300. if test $HAVE_MEMMEM = 0 || test $REPLACE_MEMMEM = 1; then
  2301. AC_LIBOBJ([memmem])
  2302. fi
  2303. gl_FUNC_MEMMEM_SIMPLE
  2304. if test $HAVE_MEMMEM = 0 || test $REPLACE_MEMMEM = 1; then
  2305. AC_LIBOBJ([memmem])
  2306. fi
  2307. gl_STRING_MODULE_INDICATOR([memmem])
  2308. gl_MULTIARCH
  2309. gl_SIGACTION
  2310. if test $HAVE_SIGACTION = 0; then
  2311. AC_LIBOBJ([sigaction])
  2312. gl_PREREQ_SIGACTION
  2313. fi
  2314. gl_SIGNAL_MODULE_INDICATOR([sigaction])
  2315. gl_SIGNAL_H
  2316. gl_SIGNALBLOCKING
  2317. if test $HAVE_POSIX_SIGNALBLOCKING = 0; then
  2318. AC_LIBOBJ([sigprocmask])
  2319. gl_PREREQ_SIGPROCMASK
  2320. fi
  2321. gl_SIGNAL_MODULE_INDICATOR([sigprocmask])
  2322. gl_STDDEF_H
  2323. gl_STDINT_H
  2324. gl_HEADER_STRING_H
  2325. # End of code from modules
  2326. m4_ifval(gl_LIBSOURCES_LIST, [
  2327. m4_syscmd([test ! -d ]m4_defn([gl_LIBSOURCES_DIR])[ ||
  2328. for gl_file in ]gl_LIBSOURCES_LIST[ ; do
  2329. if test ! -r ]m4_defn([gl_LIBSOURCES_DIR])[/$gl_file ; then
  2330. echo "missing file ]m4_defn([gl_LIBSOURCES_DIR])[/$gl_file" >&2
  2331. exit 1
  2332. fi
  2333. done])dnl
  2334. m4_if(m4_sysval, [0], [],
  2335. [AC_FATAL([expected source file, required through AC_LIBSOURCES, not found])])
  2336. ])
  2337. m4_popdef([gl_LIBSOURCES_DIR])
  2338. m4_popdef([gl_LIBSOURCES_LIST])
  2339. m4_popdef([AC_LIBSOURCES])
  2340. m4_popdef([AC_REPLACE_FUNCS])
  2341. m4_popdef([AC_LIBOBJ])
  2342. AC_CONFIG_COMMANDS_PRE([
  2343. gl_libobjs=
  2344. gl_ltlibobjs=
  2345. if test -n "$gl_LIBOBJS"; then
  2346. # Remove the extension.
  2347. sed_drop_objext='s/\.o$//;s/\.obj$//'
  2348. for i in `for i in $gl_LIBOBJS; do echo "$i"; done | sed -e "$sed_drop_objext" | sort | uniq`; do
  2349. gl_libobjs="$gl_libobjs $i.$ac_objext"
  2350. gl_ltlibobjs="$gl_ltlibobjs $i.lo"
  2351. done
  2352. fi
  2353. AC_SUBST([gl_LIBOBJS], [$gl_libobjs])
  2354. AC_SUBST([gl_LTLIBOBJS], [$gl_ltlibobjs])
  2355. ])
  2356. gltests_libdeps=
  2357. gltests_ltlibdeps=
  2358. m4_pushdef([AC_LIBOBJ], m4_defn([gltests_LIBOBJ]))
  2359. m4_pushdef([AC_REPLACE_FUNCS], m4_defn([gltests_REPLACE_FUNCS]))
  2360. m4_pushdef([AC_LIBSOURCES], m4_defn([gltests_LIBSOURCES]))
  2361. m4_pushdef([gltests_LIBSOURCES_LIST], [])
  2362. m4_pushdef([gltests_LIBSOURCES_DIR], [])
  2363. gl_COMMON
  2364. gl_source_base='tests'
  2365. changequote(,)dnl
  2366. gltests_WITNESS=IN_`echo "${PACKAGE-$PACKAGE_TARNAME}" | LC_ALL=C tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ | LC_ALL=C sed -e 's/[^A-Z0-9_]/_/g'`_GNULIB_TESTS
  2367. changequote([, ])dnl
  2368. AC_SUBST([gltests_WITNESS])
  2369. gl_module_indicator_condition=$gltests_WITNESS
  2370. m4_pushdef([gl_MODULE_INDICATOR_CONDITION], [$gl_module_indicator_condition])
  2371. m4_popdef([gl_MODULE_INDICATOR_CONDITION])
  2372. m4_ifval(gltests_LIBSOURCES_LIST, [
  2373. m4_syscmd([test ! -d ]m4_defn([gltests_LIBSOURCES_DIR])[ ||
  2374. for gl_file in ]gltests_LIBSOURCES_LIST[ ; do
  2375. if test ! -r ]m4_defn([gltests_LIBSOURCES_DIR])[/$gl_file ; then
  2376. echo "missing file ]m4_defn([gltests_LIBSOURCES_DIR])[/$gl_file" >&2
  2377. exit 1
  2378. fi
  2379. done])dnl
  2380. m4_if(m4_sysval, [0], [],
  2381. [AC_FATAL([expected source file, required through AC_LIBSOURCES, not found])])
  2382. ])
  2383. m4_popdef([gltests_LIBSOURCES_DIR])
  2384. m4_popdef([gltests_LIBSOURCES_LIST])
  2385. m4_popdef([AC_LIBSOURCES])
  2386. m4_popdef([AC_REPLACE_FUNCS])
  2387. m4_popdef([AC_LIBOBJ])
  2388. AC_CONFIG_COMMANDS_PRE([
  2389. gltests_libobjs=
  2390. gltests_ltlibobjs=
  2391. if test -n "$gltests_LIBOBJS"; then
  2392. # Remove the extension.
  2393. sed_drop_objext='s/\.o$//;s/\.obj$//'
  2394. for i in `for i in $gltests_LIBOBJS; do echo "$i"; done | sed -e "$sed_drop_objext" | sort | uniq`; do
  2395. gltests_libobjs="$gltests_libobjs $i.$ac_objext"
  2396. gltests_ltlibobjs="$gltests_ltlibobjs $i.lo"
  2397. done
  2398. fi
  2399. AC_SUBST([gltests_LIBOBJS], [$gltests_libobjs])
  2400. AC_SUBST([gltests_LTLIBOBJS], [$gltests_ltlibobjs])
  2401. ])
  2402. LIBGNU_LIBDEPS="$gl_libdeps"
  2403. AC_SUBST([LIBGNU_LIBDEPS])
  2404. LIBGNU_LTLIBDEPS="$gl_ltlibdeps"
  2405. AC_SUBST([LIBGNU_LTLIBDEPS])
  2406. ])
  2407. m4trace:m4/gnulib-comp.m4:180: -1- AC_DEFUN([gl_LIBOBJ], [
  2408. AS_LITERAL_IF([$1], [gl_LIBSOURCES([$1.c])])dnl
  2409. gl_LIBOBJS="$gl_LIBOBJS $1.$ac_objext"
  2410. ])
  2411. m4trace:m4/gnulib-comp.m4:187: -1- AC_DEFUN([gl_REPLACE_FUNCS], [
  2412. m4_foreach_w([gl_NAME], [$1], [AC_LIBSOURCES(gl_NAME[.c])])dnl
  2413. AC_CHECK_FUNCS([$1], , [gl_LIBOBJ($ac_func)])
  2414. ])
  2415. m4trace:m4/gnulib-comp.m4:196: -1- AC_DEFUN([gl_LIBSOURCES], [
  2416. m4_foreach([_gl_NAME], [$1], [
  2417. m4_if(_gl_NAME, [alloca.c], [], [
  2418. m4_define([gl_LIBSOURCES_DIR], [lib])
  2419. m4_append([gl_LIBSOURCES_LIST], _gl_NAME, [ ])
  2420. ])
  2421. ])
  2422. ])
  2423. m4trace:m4/gnulib-comp.m4:207: -1- AC_DEFUN([gltests_LIBOBJ], [
  2424. AS_LITERAL_IF([$1], [gltests_LIBSOURCES([$1.c])])dnl
  2425. gltests_LIBOBJS="$gltests_LIBOBJS $1.$ac_objext"
  2426. ])
  2427. m4trace:m4/gnulib-comp.m4:214: -1- AC_DEFUN([gltests_REPLACE_FUNCS], [
  2428. m4_foreach_w([gl_NAME], [$1], [AC_LIBSOURCES(gl_NAME[.c])])dnl
  2429. AC_CHECK_FUNCS([$1], , [gltests_LIBOBJ($ac_func)])
  2430. ])
  2431. m4trace:m4/gnulib-comp.m4:223: -1- AC_DEFUN([gltests_LIBSOURCES], [
  2432. m4_foreach([_gl_NAME], [$1], [
  2433. m4_if(_gl_NAME, [alloca.c], [], [
  2434. m4_define([gltests_LIBSOURCES_DIR], [tests])
  2435. m4_append([gltests_LIBSOURCES_LIST], _gl_NAME, [ ])
  2436. ])
  2437. ])
  2438. ])
  2439. m4trace:m4/gnulib-comp.m4:234: -1- AC_DEFUN([gl_FILE_LIST], [
  2440. build-aux/arg-nonnull.h
  2441. build-aux/c++defs.h
  2442. build-aux/warn-on-use.h
  2443. lib/dummy.c
  2444. lib/memchr.c
  2445. lib/memchr.valgrind
  2446. lib/memmem.c
  2447. lib/sig-handler.h
  2448. lib/sigaction.c
  2449. lib/signal.in.h
  2450. lib/sigprocmask.c
  2451. lib/stddef.in.h
  2452. lib/stdint.in.h
  2453. lib/str-two-way.h
  2454. lib/string.in.h
  2455. m4/00gnulib.m4
  2456. m4/extensions.m4
  2457. m4/gnulib-common.m4
  2458. m4/include_next.m4
  2459. m4/longlong.m4
  2460. m4/memchr.m4
  2461. m4/memmem.m4
  2462. m4/mmap-anon.m4
  2463. m4/multiarch.m4
  2464. m4/onceonly.m4
  2465. m4/sigaction.m4
  2466. m4/signal_h.m4
  2467. m4/signalblocking.m4
  2468. m4/stddef_h.m4
  2469. m4/stdint.m4
  2470. m4/string_h.m4
  2471. m4/warn-on-use.m4
  2472. m4/wchar_t.m4
  2473. ])
  2474. m4trace:m4/include_next.m4:35: -1- AC_DEFUN([gl_INCLUDE_NEXT], [
  2475. AC_LANG_PREPROC_REQUIRE()
  2476. AC_CACHE_CHECK([whether the preprocessor supports include_next],
  2477. [gl_cv_have_include_next],
  2478. [rm -rf conftestd1a conftestd1b conftestd2
  2479. mkdir conftestd1a conftestd1b conftestd2
  2480. dnl IBM C 9.0, 10.1 (original versions, prior to the 2009-01 updates) on
  2481. dnl AIX 6.1 support include_next when used as first preprocessor directive
  2482. dnl in a file, but not when preceded by another include directive. Check
  2483. dnl for this bug by including <stdio.h>.
  2484. dnl Additionally, with this same compiler, include_next is a no-op when
  2485. dnl used in a header file that was included by specifying its absolute
  2486. dnl file name. Despite these two bugs, include_next is used in the
  2487. dnl compiler's <math.h>. By virtue of the second bug, we need to use
  2488. dnl include_next as well in this case.
  2489. cat <<EOF > conftestd1a/conftest.h
  2490. #define DEFINED_IN_CONFTESTD1
  2491. #include_next <conftest.h>
  2492. #ifdef DEFINED_IN_CONFTESTD2
  2493. int foo;
  2494. #else
  2495. #error "include_next doesn't work"
  2496. #endif
  2497. EOF
  2498. cat <<EOF > conftestd1b/conftest.h
  2499. #define DEFINED_IN_CONFTESTD1
  2500. #include <stdio.h>
  2501. #include_next <conftest.h>
  2502. #ifdef DEFINED_IN_CONFTESTD2
  2503. int foo;
  2504. #else
  2505. #error "include_next doesn't work"
  2506. #endif
  2507. EOF
  2508. cat <<EOF > conftestd2/conftest.h
  2509. #ifndef DEFINED_IN_CONFTESTD1
  2510. #error "include_next test doesn't work"
  2511. #endif
  2512. #define DEFINED_IN_CONFTESTD2
  2513. EOF
  2514. gl_save_CPPFLAGS="$CPPFLAGS"
  2515. CPPFLAGS="$gl_save_CPPFLAGS -Iconftestd1b -Iconftestd2"
  2516. dnl We intentionally avoid using AC_LANG_SOURCE here.
  2517. AC_COMPILE_IFELSE([AC_LANG_DEFINES_PROVIDED[#include <conftest.h>]],
  2518. [gl_cv_have_include_next=yes],
  2519. [CPPFLAGS="$gl_save_CPPFLAGS -Iconftestd1a -Iconftestd2"
  2520. AC_COMPILE_IFELSE([AC_LANG_DEFINES_PROVIDED[#include <conftest.h>]],
  2521. [gl_cv_have_include_next=buggy],
  2522. [gl_cv_have_include_next=no])
  2523. ])
  2524. CPPFLAGS="$gl_save_CPPFLAGS"
  2525. rm -rf conftestd1a conftestd1b conftestd2
  2526. ])
  2527. PRAGMA_SYSTEM_HEADER=
  2528. if test $gl_cv_have_include_next = yes; then
  2529. INCLUDE_NEXT=include_next
  2530. INCLUDE_NEXT_AS_FIRST_DIRECTIVE=include_next
  2531. if test -n "$GCC"; then
  2532. PRAGMA_SYSTEM_HEADER='#pragma GCC system_header'
  2533. fi
  2534. else
  2535. if test $gl_cv_have_include_next = buggy; then
  2536. INCLUDE_NEXT=include
  2537. INCLUDE_NEXT_AS_FIRST_DIRECTIVE=include_next
  2538. else
  2539. INCLUDE_NEXT=include
  2540. INCLUDE_NEXT_AS_FIRST_DIRECTIVE=include
  2541. fi
  2542. fi
  2543. AC_SUBST([INCLUDE_NEXT])
  2544. AC_SUBST([INCLUDE_NEXT_AS_FIRST_DIRECTIVE])
  2545. AC_SUBST([PRAGMA_SYSTEM_HEADER])
  2546. AC_CACHE_CHECK([whether system header files limit the line length],
  2547. [gl_cv_pragma_columns],
  2548. [dnl HP NonStop systems, which define __TANDEM, have this misfeature.
  2549. AC_EGREP_CPP([choke me],
  2550. [
  2551. #ifdef __TANDEM
  2552. choke me
  2553. #endif
  2554. ],
  2555. [gl_cv_pragma_columns=yes],
  2556. [gl_cv_pragma_columns=no])
  2557. ])
  2558. if test $gl_cv_pragma_columns = yes; then
  2559. PRAGMA_COLUMNS="#pragma COLUMNS 10000"
  2560. else
  2561. PRAGMA_COLUMNS=
  2562. fi
  2563. AC_SUBST([PRAGMA_COLUMNS])
  2564. ])
  2565. m4trace:m4/include_next.m4:153: -1- AC_DEFUN([gl_CHECK_NEXT_HEADERS], [
  2566. gl_NEXT_HEADERS_INTERNAL([$1], [check])
  2567. ])
  2568. m4trace:m4/include_next.m4:163: -1- AC_DEFUN([gl_NEXT_HEADERS], [
  2569. gl_NEXT_HEADERS_INTERNAL([$1], [assume])
  2570. ])
  2571. m4trace:m4/include_next.m4:169: -1- AC_DEFUN([gl_NEXT_HEADERS_INTERNAL], [
  2572. AC_REQUIRE([gl_INCLUDE_NEXT])
  2573. AC_REQUIRE([AC_CANONICAL_HOST])
  2574. m4_if([$2], [check],
  2575. [AC_CHECK_HEADERS_ONCE([$1])
  2576. ])
  2577. m4_foreach_w([gl_HEADER_NAME], [$1],
  2578. [AS_VAR_PUSHDEF([gl_next_header],
  2579. [gl_cv_next_]m4_defn([gl_HEADER_NAME]))
  2580. if test $gl_cv_have_include_next = yes; then
  2581. AS_VAR_SET([gl_next_header], ['<'gl_HEADER_NAME'>'])
  2582. else
  2583. AC_CACHE_CHECK(
  2584. [absolute name of <]m4_defn([gl_HEADER_NAME])[>],
  2585. m4_defn([gl_next_header]),
  2586. [m4_if([$2], [check],
  2587. [AS_VAR_PUSHDEF([gl_header_exists],
  2588. [ac_cv_header_]m4_defn([gl_HEADER_NAME]))
  2589. if test AS_VAR_GET(gl_header_exists) = yes; then
  2590. AS_VAR_POPDEF([gl_header_exists])
  2591. ])
  2592. AC_LANG_CONFTEST(
  2593. [AC_LANG_SOURCE(
  2594. [[#include <]]m4_dquote(m4_defn([gl_HEADER_NAME]))[[>]]
  2595. )])
  2596. dnl AIX "xlc -E" and "cc -E" omit #line directives for header
  2597. dnl files that contain only a #include of other header files and
  2598. dnl no non-comment tokens of their own. This leads to a failure
  2599. dnl to detect the absolute name of <dirent.h>, <signal.h>,
  2600. dnl <poll.h> and others. The workaround is to force preservation
  2601. dnl of comments through option -C. This ensures all necessary
  2602. dnl #line directives are present. GCC supports option -C as well.
  2603. case "$host_os" in
  2604. aix*) gl_absname_cpp="$ac_cpp -C" ;;
  2605. *) gl_absname_cpp="$ac_cpp" ;;
  2606. esac
  2607. dnl eval is necessary to expand gl_absname_cpp.
  2608. dnl Ultrix and Pyramid sh refuse to redirect output of eval,
  2609. dnl so use subshell.
  2610. AS_VAR_SET([gl_next_header],
  2611. ['"'`(eval "$gl_absname_cpp conftest.$ac_ext") 2>&AS_MESSAGE_LOG_FD |
  2612. sed -n '\#/]m4_defn([gl_HEADER_NAME])[#{
  2613. s#.*"\(.*/]m4_defn([gl_HEADER_NAME])[\)".*#\1#
  2614. s#^/[^/]#//&#
  2615. p
  2616. q
  2617. }'`'"'])
  2618. m4_if([$2], [check],
  2619. [else
  2620. AS_VAR_SET([gl_next_header], ['<'gl_HEADER_NAME'>'])
  2621. fi
  2622. ])
  2623. ])
  2624. fi
  2625. AC_SUBST(
  2626. AS_TR_CPP([NEXT_]m4_defn([gl_HEADER_NAME])),
  2627. [AS_VAR_GET([gl_next_header])])
  2628. if test $gl_cv_have_include_next = yes || test $gl_cv_have_include_next = buggy; then
  2629. # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include_next'
  2630. gl_next_as_first_directive='<'gl_HEADER_NAME'>'
  2631. else
  2632. # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include'
  2633. gl_next_as_first_directive=AS_VAR_GET([gl_next_header])
  2634. fi
  2635. AC_SUBST(
  2636. AS_TR_CPP([NEXT_AS_FIRST_DIRECTIVE_]m4_defn([gl_HEADER_NAME])),
  2637. [$gl_next_as_first_directive])
  2638. AS_VAR_POPDEF([gl_next_header])])
  2639. ])
  2640. m4trace:m4/longlong.m4:17: -1- AC_DEFUN([AC_TYPE_LONG_LONG_INT], [
  2641. AC_REQUIRE([AC_TYPE_UNSIGNED_LONG_LONG_INT])
  2642. AC_CACHE_CHECK([for long long int], [ac_cv_type_long_long_int],
  2643. [ac_cv_type_long_long_int=yes
  2644. if test "x${ac_cv_prog_cc_c99-no}" = xno; then
  2645. ac_cv_type_long_long_int=$ac_cv_type_unsigned_long_long_int
  2646. if test $ac_cv_type_long_long_int = yes; then
  2647. dnl Catch a bug in Tandem NonStop Kernel (OSS) cc -O circa 2004.
  2648. dnl If cross compiling, assume the bug is not important, since
  2649. dnl nobody cross compiles for this platform as far as we know.
  2650. AC_RUN_IFELSE(
  2651. [AC_LANG_PROGRAM(
  2652. [[@%:@include <limits.h>
  2653. @%:@ifndef LLONG_MAX
  2654. @%:@ define HALF \
  2655. (1LL << (sizeof (long long int) * CHAR_BIT - 2))
  2656. @%:@ define LLONG_MAX (HALF - 1 + HALF)
  2657. @%:@endif]],
  2658. [[long long int n = 1;
  2659. int i;
  2660. for (i = 0; ; i++)
  2661. {
  2662. long long int m = n << i;
  2663. if (m >> i != n)
  2664. return 1;
  2665. if (LLONG_MAX / 2 < m)
  2666. break;
  2667. }
  2668. return 0;]])],
  2669. [],
  2670. [ac_cv_type_long_long_int=no],
  2671. [:])
  2672. fi
  2673. fi])
  2674. if test $ac_cv_type_long_long_int = yes; then
  2675. AC_DEFINE([HAVE_LONG_LONG_INT], [1],
  2676. [Define to 1 if the system has the type `long long int'.])
  2677. fi
  2678. ])
  2679. m4trace:m4/longlong.m4:67: -1- AC_DEFUN([AC_TYPE_UNSIGNED_LONG_LONG_INT], [
  2680. AC_CACHE_CHECK([for unsigned long long int],
  2681. [ac_cv_type_unsigned_long_long_int],
  2682. [ac_cv_type_unsigned_long_long_int=yes
  2683. if test "x${ac_cv_prog_cc_c99-no}" = xno; then
  2684. AC_LINK_IFELSE(
  2685. [_AC_TYPE_LONG_LONG_SNIPPET],
  2686. [],
  2687. [ac_cv_type_unsigned_long_long_int=no])
  2688. fi])
  2689. if test $ac_cv_type_unsigned_long_long_int = yes; then
  2690. AC_DEFINE([HAVE_UNSIGNED_LONG_LONG_INT], [1],
  2691. [Define to 1 if the system has the type `unsigned long long int'.])
  2692. fi
  2693. ])
  2694. m4trace:m4/longlong.m4:89: -1- AC_DEFUN([_AC_TYPE_LONG_LONG_SNIPPET], [
  2695. AC_LANG_PROGRAM(
  2696. [[/* For now, do not test the preprocessor; as of 2007 there are too many
  2697. implementations with broken preprocessors. Perhaps this can
  2698. be revisited in 2012. In the meantime, code should not expect
  2699. #if to work with literals wider than 32 bits. */
  2700. /* Test literals. */
  2701. long long int ll = 9223372036854775807ll;
  2702. long long int nll = -9223372036854775807LL;
  2703. unsigned long long int ull = 18446744073709551615ULL;
  2704. /* Test constant expressions. */
  2705. typedef int a[((-9223372036854775807LL < 0 && 0 < 9223372036854775807ll)
  2706. ? 1 : -1)];
  2707. typedef int b[(18446744073709551615ULL <= (unsigned long long int) -1
  2708. ? 1 : -1)];
  2709. int i = 63;]],
  2710. [[/* Test availability of runtime routines for shift and division. */
  2711. long long int llmax = 9223372036854775807ll;
  2712. unsigned long long int ullmax = 18446744073709551615ull;
  2713. return ((ll << 63) | (ll >> 63) | (ll < i) | (ll > i)
  2714. | (llmax / ll) | (llmax % ll)
  2715. | (ull << 63) | (ull >> 63) | (ull << i) | (ull >> i)
  2716. | (ullmax / ull) | (ullmax % ull));]])
  2717. ])
  2718. m4trace:m4/memchr.m4:7: -1- AC_DEFUN_ONCE([gl_FUNC_MEMCHR], [
  2719. dnl Check for prerequisites for memory fence checks.
  2720. gl_FUNC_MMAP_ANON
  2721. AC_CHECK_HEADERS_ONCE([sys/mman.h])
  2722. AC_CHECK_FUNCS_ONCE([mprotect])
  2723. AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])
  2724. m4_ifdef([gl_FUNC_MEMCHR_OBSOLETE], [
  2725. dnl These days, we assume memchr is present. But if support for old
  2726. dnl platforms is desired:
  2727. AC_CHECK_FUNCS_ONCE([memchr])
  2728. if test $ac_cv_func_memchr = no; then
  2729. HAVE_MEMCHR=0
  2730. fi
  2731. ])
  2732. if test $HAVE_MEMCHR = 1; then
  2733. # Detect platform-specific bugs in some versions of glibc:
  2734. # memchr should not dereference anything with length 0
  2735. # http://bugzilla.redhat.com/499689
  2736. # memchr should not dereference overestimated length after a match
  2737. # http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=521737
  2738. # http://sourceware.org/bugzilla/show_bug.cgi?id=10162
  2739. # Assume that memchr works on platforms that lack mprotect.
  2740. AC_CACHE_CHECK([whether memchr works], [gl_cv_func_memchr_works],
  2741. [AC_RUN_IFELSE([AC_LANG_PROGRAM([[
  2742. #include <string.h>
  2743. #if HAVE_SYS_MMAN_H
  2744. # include <fcntl.h>
  2745. # include <unistd.h>
  2746. # include <sys/types.h>
  2747. # include <sys/mman.h>
  2748. # ifndef MAP_FILE
  2749. # define MAP_FILE 0
  2750. # endif
  2751. #endif
  2752. ]], [[
  2753. int result = 0;
  2754. char *fence = NULL;
  2755. #if HAVE_SYS_MMAN_H && HAVE_MPROTECT
  2756. # if HAVE_MAP_ANONYMOUS
  2757. const int flags = MAP_ANONYMOUS | MAP_PRIVATE;
  2758. const int fd = -1;
  2759. # else /* !HAVE_MAP_ANONYMOUS */
  2760. const int flags = MAP_FILE | MAP_PRIVATE;
  2761. int fd = open ("/dev/zero", O_RDONLY, 0666);
  2762. if (fd >= 0)
  2763. # endif
  2764. {
  2765. int pagesize = getpagesize ();
  2766. char *two_pages =
  2767. (char *) mmap (NULL, 2 * pagesize, PROT_READ | PROT_WRITE,
  2768. flags, fd, 0);
  2769. if (two_pages != (char *)(-1)
  2770. && mprotect (two_pages + pagesize, pagesize, PROT_NONE) == 0)
  2771. fence = two_pages + pagesize;
  2772. }
  2773. #endif
  2774. if (fence)
  2775. {
  2776. if (memchr (fence, 0, 0))
  2777. result |= 1;
  2778. strcpy (fence - 9, "12345678");
  2779. if (memchr (fence - 9, 0, 79) != fence - 1)
  2780. result |= 2;
  2781. if (memchr (fence - 1, 0, 3) != fence - 1)
  2782. result |= 4;
  2783. }
  2784. return result;
  2785. ]])], [gl_cv_func_memchr_works=yes], [gl_cv_func_memchr_works=no],
  2786. [dnl Be pessimistic for now.
  2787. gl_cv_func_memchr_works="guessing no"])])
  2788. if test "$gl_cv_func_memchr_works" != yes; then
  2789. REPLACE_MEMCHR=1
  2790. fi
  2791. fi
  2792. ])
  2793. m4trace:m4/memchr.m4:86: -1- AC_DEFUN([gl_PREREQ_MEMCHR], [
  2794. AC_CHECK_HEADERS([bp-sym.h])
  2795. ])
  2796. m4trace:m4/memmem.m4:8: -1- AC_DEFUN([gl_FUNC_MEMMEM_SIMPLE], [
  2797. dnl Persuade glibc <string.h> to declare memmem().
  2798. AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
  2799. AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])
  2800. AC_CHECK_FUNCS([memmem])
  2801. if test $ac_cv_func_memmem = yes; then
  2802. HAVE_MEMMEM=1
  2803. else
  2804. HAVE_MEMMEM=0
  2805. fi
  2806. AC_CHECK_DECLS_ONCE([memmem])
  2807. if test $ac_cv_have_decl_memmem = no; then
  2808. HAVE_DECL_MEMMEM=0
  2809. else
  2810. dnl Detect http://sourceware.org/bugzilla/show_bug.cgi?id=12092.
  2811. dnl Also check that we handle empty needles correctly.
  2812. AC_CACHE_CHECK([whether memmem works],
  2813. [gl_cv_func_memmem_works_always],
  2814. [AC_RUN_IFELSE([AC_LANG_PROGRAM([[
  2815. #include <string.h> /* for memmem */
  2816. #define P "_EF_BF_BD"
  2817. #define HAYSTACK "F_BD_CE_BD" P P P P "_C3_88_20" P P P "_C3_A7_20" P
  2818. #define NEEDLE P P P P P
  2819. ]], [[
  2820. int result = 0;
  2821. if (memmem (HAYSTACK, strlen (HAYSTACK), NEEDLE, strlen (NEEDLE)))
  2822. result |= 1;
  2823. /* Check for empty needle behavior. */
  2824. {
  2825. const char *haystack = "AAA";
  2826. if (memmem (haystack, 3, NULL, 0) != haystack)
  2827. result |= 2;
  2828. }
  2829. return result;
  2830. ]])],
  2831. [gl_cv_func_memmem_works_always=yes],
  2832. [gl_cv_func_memmem_works_always=no],
  2833. [dnl glibc 2.9..2.12 and cygwin 1.7.7 have issue #12092 above.
  2834. dnl Also empty needles work on glibc >= 2.1 and cygwin >= 1.7.0.
  2835. dnl uClibc is not affected, since it uses different source code.
  2836. dnl Assume that it works on all other platforms (even if not linear).
  2837. AC_EGREP_CPP([Lucky user],
  2838. [
  2839. #ifdef __GNU_LIBRARY__
  2840. #include <features.h>
  2841. #if ((__GLIBC__ == 2 && ((__GLIBC_MINOR > 0 && __GLIBC_MINOR__ < 9) \
  2842. || __GLIBC_MINOR__ > 12)) \
  2843. || (__GLIBC__ > 2)) \
  2844. || defined __UCLIBC__
  2845. Lucky user
  2846. #endif
  2847. #elif defined __CYGWIN__
  2848. #include <cygwin/version.h>
  2849. #if CYGWIN_VERSION_DLL_COMBINED > CYGWIN_VERSION_DLL_MAKE_COMBINED (1007, 7)
  2850. Lucky user
  2851. #endif
  2852. #else
  2853. Lucky user
  2854. #endif
  2855. ],
  2856. [gl_cv_func_memmem_works_always=yes],
  2857. [gl_cv_func_memmem_works_always="guessing no"])
  2858. ])
  2859. ])
  2860. if test "$gl_cv_func_memmem_works_always" != yes; then
  2861. REPLACE_MEMMEM=1
  2862. fi
  2863. fi
  2864. gl_PREREQ_MEMMEM
  2865. ])
  2866. m4trace:m4/memmem.m4:82: -1- AC_DEFUN([gl_FUNC_MEMMEM], [
  2867. AC_REQUIRE([gl_FUNC_MEMMEM_SIMPLE])
  2868. if test $HAVE_DECL_MEMMEM = 1 && test $REPLACE_MEMMEM = 0; then
  2869. AC_CACHE_CHECK([whether memmem works in linear time],
  2870. [gl_cv_func_memmem_works_fast],
  2871. [AC_RUN_IFELSE([AC_LANG_PROGRAM([[
  2872. #include <signal.h> /* for signal */
  2873. #include <string.h> /* for memmem */
  2874. #include <stdlib.h> /* for malloc */
  2875. #include <unistd.h> /* for alarm */
  2876. static void quit (int sig) { exit (sig + 128); }
  2877. ]], [[
  2878. int result = 0;
  2879. size_t m = 1000000;
  2880. char *haystack = (char *) malloc (2 * m + 1);
  2881. char *needle = (char *) malloc (m + 1);
  2882. /* Failure to compile this test due to missing alarm is okay,
  2883. since all such platforms (mingw) also lack memmem. */
  2884. signal (SIGALRM, quit);
  2885. alarm (5);
  2886. /* Check for quadratic performance. */
  2887. if (haystack && needle)
  2888. {
  2889. memset (haystack, 'A', 2 * m);
  2890. haystack[2 * m] = 'B';
  2891. memset (needle, 'A', m);
  2892. needle[m] = 'B';
  2893. if (!memmem (haystack, 2 * m + 1, needle, m + 1))
  2894. result |= 1;
  2895. }
  2896. return result;
  2897. ]])],
  2898. [gl_cv_func_memmem_works_fast=yes], [gl_cv_func_memmem_works_fast=no],
  2899. [dnl Only glibc >= 2.9 and cygwin > 1.7.0 are known to have a
  2900. dnl memmem that works in linear time.
  2901. AC_EGREP_CPP([Lucky user],
  2902. [
  2903. #include <features.h>
  2904. #ifdef __GNU_LIBRARY__
  2905. #if ((__GLIBC__ == 2 && __GLIBC_MINOR__ >= 9) || (__GLIBC__ > 2)) \
  2906. && !defined __UCLIBC__
  2907. Lucky user
  2908. #endif
  2909. #endif
  2910. #ifdef __CYGWIN__
  2911. #include <cygwin/version.h>
  2912. #if CYGWIN_VERSION_DLL_COMBINED > CYGWIN_VERSION_DLL_MAKE_COMBINED (1007, 0)
  2913. Lucky user
  2914. #endif
  2915. #endif
  2916. ],
  2917. [gl_cv_func_memmem_works_fast=yes],
  2918. [gl_cv_func_memmem_works_fast="guessing no"])
  2919. ])
  2920. ])
  2921. if test "$gl_cv_func_memmem_works_fast" != yes; then
  2922. REPLACE_MEMMEM=1
  2923. fi
  2924. fi
  2925. ])
  2926. m4trace:m4/memmem.m4:145: -1- AC_DEFUN([gl_PREREQ_MEMMEM], [:])
  2927. m4trace:m4/mmap-anon.m4:16: -1- AC_DEFUN([gl_FUNC_MMAP_ANON], [
  2928. dnl Persuade glibc <sys/mman.h> to define MAP_ANONYMOUS.
  2929. AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
  2930. # Check for mmap(). Don't use AC_FUNC_MMAP, because it checks too much: it
  2931. # fails on HP-UX 11, because MAP_FIXED mappings do not work. But this is
  2932. # irrelevant for anonymous mappings.
  2933. AC_CHECK_FUNC([mmap], [gl_have_mmap=yes], [gl_have_mmap=no])
  2934. # Try to allow MAP_ANONYMOUS.
  2935. gl_have_mmap_anonymous=no
  2936. if test $gl_have_mmap = yes; then
  2937. AC_MSG_CHECKING([for MAP_ANONYMOUS])
  2938. AC_EGREP_CPP([I cant identify this map.], [
  2939. #include <sys/mman.h>
  2940. #ifdef MAP_ANONYMOUS
  2941. I cant identify this map.
  2942. #endif
  2943. ],
  2944. [gl_have_mmap_anonymous=yes])
  2945. if test $gl_have_mmap_anonymous != yes; then
  2946. AC_EGREP_CPP([I cant identify this map.], [
  2947. #include <sys/mman.h>
  2948. #ifdef MAP_ANON
  2949. I cant identify this map.
  2950. #endif
  2951. ],
  2952. [AC_DEFINE([MAP_ANONYMOUS], [MAP_ANON],
  2953. [Define to a substitute value for mmap()'s MAP_ANONYMOUS flag.])
  2954. gl_have_mmap_anonymous=yes])
  2955. fi
  2956. AC_MSG_RESULT([$gl_have_mmap_anonymous])
  2957. if test $gl_have_mmap_anonymous = yes; then
  2958. AC_DEFINE([HAVE_MAP_ANONYMOUS], [1],
  2959. [Define to 1 if mmap()'s MAP_ANONYMOUS flag is available after including
  2960. config.h and <sys/mman.h>.])
  2961. fi
  2962. fi
  2963. ])
  2964. m4trace:m4/multiarch.m4:21: -1- AC_DEFUN_ONCE([gl_MULTIARCH], [
  2965. dnl Code similar to autoconf-2.63 AC_C_BIGENDIAN.
  2966. gl_cv_c_multiarch=no
  2967. AC_COMPILE_IFELSE(
  2968. [AC_LANG_SOURCE(
  2969. [[#ifndef __APPLE_CC__
  2970. not a universal capable compiler
  2971. #endif
  2972. typedef int dummy;
  2973. ]])],
  2974. [
  2975. dnl Check for potential -arch flags. It is not universal unless
  2976. dnl there are at least two -arch flags with different values.
  2977. arch=
  2978. prev=
  2979. for word in ${CC} ${CFLAGS} ${CPPFLAGS} ${LDFLAGS}; do
  2980. if test -n "$prev"; then
  2981. case $word in
  2982. i?86 | x86_64 | ppc | ppc64)
  2983. if test -z "$arch" || test "$arch" = "$word"; then
  2984. arch="$word"
  2985. else
  2986. gl_cv_c_multiarch=yes
  2987. fi
  2988. ;;
  2989. esac
  2990. prev=
  2991. else
  2992. if test "x$word" = "x-arch"; then
  2993. prev=arch
  2994. fi
  2995. fi
  2996. done
  2997. ])
  2998. if test $gl_cv_c_multiarch = yes; then
  2999. APPLE_UNIVERSAL_BUILD=1
  3000. else
  3001. APPLE_UNIVERSAL_BUILD=0
  3002. fi
  3003. AC_SUBST([APPLE_UNIVERSAL_BUILD])
  3004. ])
  3005. m4trace:m4/onceonly.m4:39: -1- AC_DEFUN([AC_CHECK_HEADERS_ONCE], [
  3006. :
  3007. m4_foreach_w([gl_HEADER_NAME], [$1], [
  3008. AC_DEFUN([gl_CHECK_HEADER_]m4_quote(m4_translit(gl_HEADER_NAME,
  3009. [./-], [___])), [
  3010. m4_divert_text([INIT_PREPARE],
  3011. [gl_header_list="$gl_header_list gl_HEADER_NAME"])
  3012. gl_HEADERS_EXPANSION
  3013. AH_TEMPLATE(AS_TR_CPP([HAVE_]m4_defn([gl_HEADER_NAME])),
  3014. [Define to 1 if you have the <]m4_defn([gl_HEADER_NAME])[> header file.])
  3015. ])
  3016. AC_REQUIRE([gl_CHECK_HEADER_]m4_quote(m4_translit(gl_HEADER_NAME,
  3017. [./-], [___])))
  3018. ])
  3019. ])
  3020. m4trace:m4/onceonly.m4:62: -1- AC_DEFUN([AC_CHECK_FUNCS_ONCE], [
  3021. :
  3022. m4_foreach_w([gl_FUNC_NAME], [$1], [
  3023. AC_DEFUN([gl_CHECK_FUNC_]m4_defn([gl_FUNC_NAME]), [
  3024. m4_divert_text([INIT_PREPARE],
  3025. [gl_func_list="$gl_func_list gl_FUNC_NAME"])
  3026. gl_FUNCS_EXPANSION
  3027. AH_TEMPLATE(AS_TR_CPP([HAVE_]m4_defn([gl_FUNC_NAME])),
  3028. [Define to 1 if you have the `]m4_defn([gl_FUNC_NAME])[' function.])
  3029. ])
  3030. AC_REQUIRE([gl_CHECK_FUNC_]m4_defn([gl_FUNC_NAME]))
  3031. ])
  3032. ])
  3033. m4trace:m4/onceonly.m4:83: -1- AC_DEFUN([AC_CHECK_DECLS_ONCE], [
  3034. :
  3035. m4_foreach_w([gl_DECL_NAME], [$1], [
  3036. AC_DEFUN([gl_CHECK_DECL_]m4_defn([gl_DECL_NAME]), [
  3037. AC_CHECK_DECLS(m4_defn([gl_DECL_NAME]))
  3038. ])
  3039. AC_REQUIRE([gl_CHECK_DECL_]m4_defn([gl_DECL_NAME]))
  3040. ])
  3041. ])
  3042. m4trace:m4/sigaction.m4:8: -1- AC_DEFUN([gl_SIGACTION], [
  3043. AC_REQUIRE([gl_SIGNAL_H_DEFAULTS])
  3044. AC_CHECK_FUNCS_ONCE([sigaction])
  3045. if test $ac_cv_func_sigaction = yes; then
  3046. AC_CHECK_MEMBERS([struct sigaction.sa_sigaction], , ,
  3047. [[#include <signal.h>]])
  3048. if test $ac_cv_member_struct_sigaction_sa_sigaction = no; then
  3049. HAVE_STRUCT_SIGACTION_SA_SIGACTION=0
  3050. fi
  3051. else
  3052. HAVE_SIGACTION=0
  3053. fi
  3054. ])
  3055. m4trace:m4/sigaction.m4:24: -1- AC_DEFUN([gl_PREREQ_SIGACTION], [
  3056. AC_REQUIRE([gl_SIGNAL_H_DEFAULTS])
  3057. AC_REQUIRE([AC_C_RESTRICT])
  3058. AC_REQUIRE([AC_TYPE_UID_T])
  3059. AC_REQUIRE([gl_PREREQ_SIG_HANDLER_H])
  3060. AC_CHECK_FUNCS_ONCE([sigaltstack siginterrupt])
  3061. AC_CHECK_TYPES([siginfo_t], [], [], [[
  3062. #include <signal.h>
  3063. ]])
  3064. if test $ac_cv_type_siginfo_t = no; then
  3065. HAVE_SIGINFO_T=0
  3066. fi
  3067. ])
  3068. m4trace:m4/sigaction.m4:40: -1- AC_DEFUN([gl_PREREQ_SIG_HANDLER_H], [
  3069. AC_REQUIRE([AC_C_INLINE])
  3070. ])
  3071. m4trace:m4/signal_h.m4:7: -1- AC_DEFUN([gl_SIGNAL_H], [
  3072. AC_REQUIRE([gl_SIGNAL_H_DEFAULTS])
  3073. gl_NEXT_HEADERS([signal.h])
  3074. # AIX declares sig_atomic_t to already include volatile, and C89 compilers
  3075. # then choke on 'volatile sig_atomic_t'. C99 requires that it compile.
  3076. AC_CHECK_TYPE([volatile sig_atomic_t], [],
  3077. [HAVE_TYPE_VOLATILE_SIG_ATOMIC_T=0], [[
  3078. #include <signal.h>
  3079. ]])
  3080. AC_REQUIRE([AC_TYPE_UID_T])
  3081. dnl Persuade glibc <signal.h> to define sighandler_t.
  3082. AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])
  3083. AC_CHECK_TYPE([sighandler_t], [], [HAVE_SIGHANDLER_T=0], [[
  3084. #include <signal.h>
  3085. ]])
  3086. dnl Check for declarations of anything we want to poison if the
  3087. dnl corresponding gnulib module is not in use.
  3088. gl_WARN_ON_USE_PREPARE([[#include <signal.h>
  3089. ]], [sigaction sigaddset sigdelset sigemptyset sigfillset sigismember
  3090. sigpending sigprocmask])
  3091. ])
  3092. m4trace:m4/signal_h.m4:34: -1- AC_DEFUN([gl_SIGNAL_MODULE_INDICATOR], [
  3093. dnl Use AC_REQUIRE here, so that the default settings are expanded once only.
  3094. AC_REQUIRE([gl_SIGNAL_H_DEFAULTS])
  3095. gl_MODULE_INDICATOR_SET_VARIABLE([$1])
  3096. dnl Define it also as a C macro, for the benefit of the unit tests.
  3097. gl_MODULE_INDICATOR_FOR_TESTS([$1])
  3098. ])
  3099. m4trace:m4/signal_h.m4:43: -1- AC_DEFUN([gl_SIGNAL_H_DEFAULTS], [
  3100. GNULIB_SIGNAL_H_SIGPIPE=0; AC_SUBST([GNULIB_SIGNAL_H_SIGPIPE])
  3101. GNULIB_SIGPROCMASK=0; AC_SUBST([GNULIB_SIGPROCMASK])
  3102. GNULIB_SIGACTION=0; AC_SUBST([GNULIB_SIGACTION])
  3103. dnl Assume proper GNU behavior unless another module says otherwise.
  3104. HAVE_POSIX_SIGNALBLOCKING=1; AC_SUBST([HAVE_POSIX_SIGNALBLOCKING])
  3105. HAVE_SIGSET_T=1; AC_SUBST([HAVE_SIGSET_T])
  3106. HAVE_SIGINFO_T=1; AC_SUBST([HAVE_SIGINFO_T])
  3107. HAVE_SIGACTION=1; AC_SUBST([HAVE_SIGACTION])
  3108. HAVE_STRUCT_SIGACTION_SA_SIGACTION=1;
  3109. AC_SUBST([HAVE_STRUCT_SIGACTION_SA_SIGACTION])
  3110. HAVE_TYPE_VOLATILE_SIG_ATOMIC_T=1;
  3111. AC_SUBST([HAVE_TYPE_VOLATILE_SIG_ATOMIC_T])
  3112. HAVE_SIGHANDLER_T=1; AC_SUBST([HAVE_SIGHANDLER_T])
  3113. ])
  3114. m4trace:m4/signalblocking.m4:12: -1- AC_DEFUN([gl_SIGNALBLOCKING], [
  3115. AC_REQUIRE([gl_SIGNAL_H_DEFAULTS])
  3116. signals_not_posix=
  3117. AC_EGREP_HEADER([sigset_t], [signal.h], , [signals_not_posix=1])
  3118. if test -z "$signals_not_posix"; then
  3119. AC_CHECK_FUNC([sigprocmask], [gl_cv_func_sigprocmask=1])
  3120. fi
  3121. if test -z "$gl_cv_func_sigprocmask"; then
  3122. HAVE_POSIX_SIGNALBLOCKING=0
  3123. fi
  3124. ])
  3125. m4trace:m4/signalblocking.m4:26: -1- AC_DEFUN([gl_PREREQ_SIGPROCMASK], [
  3126. AC_REQUIRE([gl_SIGNAL_H_DEFAULTS])
  3127. AC_CHECK_TYPES([sigset_t],
  3128. [gl_cv_type_sigset_t=yes], [gl_cv_type_sigset_t=no],
  3129. [#include <signal.h>
  3130. /* Mingw defines sigset_t not in <signal.h>, but in <sys/types.h>. */
  3131. #include <sys/types.h>])
  3132. if test $gl_cv_type_sigset_t != yes; then
  3133. HAVE_SIGSET_T=0
  3134. fi
  3135. dnl HAVE_SIGSET_T is 1 if the system lacks the sigprocmask function but has
  3136. dnl the sigset_t type.
  3137. AC_SUBST([HAVE_SIGSET_T])
  3138. ])
  3139. m4trace:m4/stddef_h.m4:8: -1- AC_DEFUN([gl_STDDEF_H], [
  3140. AC_REQUIRE([gl_STDDEF_H_DEFAULTS])
  3141. AC_REQUIRE([gt_TYPE_WCHAR_T])
  3142. STDDEF_H=
  3143. if test $gt_cv_c_wchar_t = no; then
  3144. HAVE_WCHAR_T=0
  3145. STDDEF_H=stddef.h
  3146. fi
  3147. AC_CACHE_CHECK([whether NULL can be used in arbitrary expressions],
  3148. [gl_cv_decl_null_works],
  3149. [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <stddef.h>
  3150. int test[2 * (sizeof NULL == sizeof (void *)) -1];
  3151. ]])],
  3152. [gl_cv_decl_null_works=yes],
  3153. [gl_cv_decl_null_works=no])])
  3154. if test $gl_cv_decl_null_works = no; then
  3155. REPLACE_NULL=1
  3156. STDDEF_H=stddef.h
  3157. fi
  3158. AC_SUBST([STDDEF_H])
  3159. AM_CONDITIONAL([GL_GENERATE_STDDEF_H], [test -n "$STDDEF_H"])
  3160. if test -n "$STDDEF_H"; then
  3161. gl_NEXT_HEADERS([stddef.h])
  3162. fi
  3163. ])
  3164. m4trace:m4/stddef_h.m4:35: -1- AC_DEFUN([gl_STDDEF_MODULE_INDICATOR], [
  3165. dnl Use AC_REQUIRE here, so that the default settings are expanded once only.
  3166. AC_REQUIRE([gl_STDDEF_H_DEFAULTS])
  3167. gl_MODULE_INDICATOR_SET_VARIABLE([$1])
  3168. ])
  3169. m4trace:m4/stddef_h.m4:42: -1- AC_DEFUN([gl_STDDEF_H_DEFAULTS], [
  3170. dnl Assume proper GNU behavior unless another module says otherwise.
  3171. REPLACE_NULL=0; AC_SUBST([REPLACE_NULL])
  3172. HAVE_WCHAR_T=1; AC_SUBST([HAVE_WCHAR_T])
  3173. ])
  3174. m4trace:m4/stdint.m4:10: -1- AC_DEFUN_ONCE([gl_STDINT_H], [
  3175. AC_PREREQ([2.59])dnl
  3176. dnl Check for long long int and unsigned long long int.
  3177. AC_REQUIRE([AC_TYPE_LONG_LONG_INT])
  3178. if test $ac_cv_type_long_long_int = yes; then
  3179. HAVE_LONG_LONG_INT=1
  3180. else
  3181. HAVE_LONG_LONG_INT=0
  3182. fi
  3183. AC_SUBST([HAVE_LONG_LONG_INT])
  3184. AC_REQUIRE([AC_TYPE_UNSIGNED_LONG_LONG_INT])
  3185. if test $ac_cv_type_unsigned_long_long_int = yes; then
  3186. HAVE_UNSIGNED_LONG_LONG_INT=1
  3187. else
  3188. HAVE_UNSIGNED_LONG_LONG_INT=0
  3189. fi
  3190. AC_SUBST([HAVE_UNSIGNED_LONG_LONG_INT])
  3191. dnl Check for <wchar.h>, in the same way as gl_WCHAR_H does.
  3192. AC_CHECK_HEADERS_ONCE([wchar.h])
  3193. if test $ac_cv_header_wchar_h = yes; then
  3194. HAVE_WCHAR_H=1
  3195. else
  3196. HAVE_WCHAR_H=0
  3197. fi
  3198. AC_SUBST([HAVE_WCHAR_H])
  3199. dnl Check for <inttypes.h>.
  3200. dnl AC_INCLUDES_DEFAULT defines $ac_cv_header_inttypes_h.
  3201. if test $ac_cv_header_inttypes_h = yes; then
  3202. HAVE_INTTYPES_H=1
  3203. else
  3204. HAVE_INTTYPES_H=0
  3205. fi
  3206. AC_SUBST([HAVE_INTTYPES_H])
  3207. dnl Check for <sys/types.h>.
  3208. dnl AC_INCLUDES_DEFAULT defines $ac_cv_header_sys_types_h.
  3209. if test $ac_cv_header_sys_types_h = yes; then
  3210. HAVE_SYS_TYPES_H=1
  3211. else
  3212. HAVE_SYS_TYPES_H=0
  3213. fi
  3214. AC_SUBST([HAVE_SYS_TYPES_H])
  3215. gl_CHECK_NEXT_HEADERS([stdint.h])
  3216. if test $ac_cv_header_stdint_h = yes; then
  3217. HAVE_STDINT_H=1
  3218. else
  3219. HAVE_STDINT_H=0
  3220. fi
  3221. AC_SUBST([HAVE_STDINT_H])
  3222. dnl Now see whether we need a substitute <stdint.h>.
  3223. if test $ac_cv_header_stdint_h = yes; then
  3224. AC_CACHE_CHECK([whether stdint.h conforms to C99],
  3225. [gl_cv_header_working_stdint_h],
  3226. [gl_cv_header_working_stdint_h=no
  3227. AC_COMPILE_IFELSE([
  3228. AC_LANG_PROGRAM([[
  3229. #define __STDC_LIMIT_MACROS 1 /* to make it work also in C++ mode */
  3230. #define __STDC_CONSTANT_MACROS 1 /* to make it work also in C++ mode */
  3231. #define _GL_JUST_INCLUDE_SYSTEM_STDINT_H 1 /* work if build isn't clean */
  3232. #include <stdint.h>
  3233. /* Dragonfly defines WCHAR_MIN, WCHAR_MAX only in <wchar.h>. */
  3234. #if !(defined WCHAR_MIN && defined WCHAR_MAX)
  3235. #error "WCHAR_MIN, WCHAR_MAX not defined in <stdint.h>"
  3236. #endif
  3237. ]
  3238. gl_STDINT_INCLUDES
  3239. [
  3240. #ifdef INT8_MAX
  3241. int8_t a1 = INT8_MAX;
  3242. int8_t a1min = INT8_MIN;
  3243. #endif
  3244. #ifdef INT16_MAX
  3245. int16_t a2 = INT16_MAX;
  3246. int16_t a2min = INT16_MIN;
  3247. #endif
  3248. #ifdef INT32_MAX
  3249. int32_t a3 = INT32_MAX;
  3250. int32_t a3min = INT32_MIN;
  3251. #endif
  3252. #ifdef INT64_MAX
  3253. int64_t a4 = INT64_MAX;
  3254. int64_t a4min = INT64_MIN;
  3255. #endif
  3256. #ifdef UINT8_MAX
  3257. uint8_t b1 = UINT8_MAX;
  3258. #else
  3259. typedef int b1[(unsigned char) -1 != 255 ? 1 : -1];
  3260. #endif
  3261. #ifdef UINT16_MAX
  3262. uint16_t b2 = UINT16_MAX;
  3263. #endif
  3264. #ifdef UINT32_MAX
  3265. uint32_t b3 = UINT32_MAX;
  3266. #endif
  3267. #ifdef UINT64_MAX
  3268. uint64_t b4 = UINT64_MAX;
  3269. #endif
  3270. int_least8_t c1 = INT8_C (0x7f);
  3271. int_least8_t c1max = INT_LEAST8_MAX;
  3272. int_least8_t c1min = INT_LEAST8_MIN;
  3273. int_least16_t c2 = INT16_C (0x7fff);
  3274. int_least16_t c2max = INT_LEAST16_MAX;
  3275. int_least16_t c2min = INT_LEAST16_MIN;
  3276. int_least32_t c3 = INT32_C (0x7fffffff);
  3277. int_least32_t c3max = INT_LEAST32_MAX;
  3278. int_least32_t c3min = INT_LEAST32_MIN;
  3279. int_least64_t c4 = INT64_C (0x7fffffffffffffff);
  3280. int_least64_t c4max = INT_LEAST64_MAX;
  3281. int_least64_t c4min = INT_LEAST64_MIN;
  3282. uint_least8_t d1 = UINT8_C (0xff);
  3283. uint_least8_t d1max = UINT_LEAST8_MAX;
  3284. uint_least16_t d2 = UINT16_C (0xffff);
  3285. uint_least16_t d2max = UINT_LEAST16_MAX;
  3286. uint_least32_t d3 = UINT32_C (0xffffffff);
  3287. uint_least32_t d3max = UINT_LEAST32_MAX;
  3288. uint_least64_t d4 = UINT64_C (0xffffffffffffffff);
  3289. uint_least64_t d4max = UINT_LEAST64_MAX;
  3290. int_fast8_t e1 = INT_FAST8_MAX;
  3291. int_fast8_t e1min = INT_FAST8_MIN;
  3292. int_fast16_t e2 = INT_FAST16_MAX;
  3293. int_fast16_t e2min = INT_FAST16_MIN;
  3294. int_fast32_t e3 = INT_FAST32_MAX;
  3295. int_fast32_t e3min = INT_FAST32_MIN;
  3296. int_fast64_t e4 = INT_FAST64_MAX;
  3297. int_fast64_t e4min = INT_FAST64_MIN;
  3298. uint_fast8_t f1 = UINT_FAST8_MAX;
  3299. uint_fast16_t f2 = UINT_FAST16_MAX;
  3300. uint_fast32_t f3 = UINT_FAST32_MAX;
  3301. uint_fast64_t f4 = UINT_FAST64_MAX;
  3302. #ifdef INTPTR_MAX
  3303. intptr_t g = INTPTR_MAX;
  3304. intptr_t gmin = INTPTR_MIN;
  3305. #endif
  3306. #ifdef UINTPTR_MAX
  3307. uintptr_t h = UINTPTR_MAX;
  3308. #endif
  3309. intmax_t i = INTMAX_MAX;
  3310. uintmax_t j = UINTMAX_MAX;
  3311. #include <limits.h> /* for CHAR_BIT */
  3312. #define TYPE_MINIMUM(t) \
  3313. ((t) ((t) 0 < (t) -1 ? (t) 0 : ~ TYPE_MAXIMUM (t)))
  3314. #define TYPE_MAXIMUM(t) \
  3315. ((t) ((t) 0 < (t) -1 \
  3316. ? (t) -1 \
  3317. : ((((t) 1 << (sizeof (t) * CHAR_BIT - 2)) - 1) * 2 + 1)))
  3318. struct s {
  3319. int check_PTRDIFF:
  3320. PTRDIFF_MIN == TYPE_MINIMUM (ptrdiff_t)
  3321. && PTRDIFF_MAX == TYPE_MAXIMUM (ptrdiff_t)
  3322. ? 1 : -1;
  3323. /* Detect bug in FreeBSD 6.0 / ia64. */
  3324. int check_SIG_ATOMIC:
  3325. SIG_ATOMIC_MIN == TYPE_MINIMUM (sig_atomic_t)
  3326. && SIG_ATOMIC_MAX == TYPE_MAXIMUM (sig_atomic_t)
  3327. ? 1 : -1;
  3328. int check_SIZE: SIZE_MAX == TYPE_MAXIMUM (size_t) ? 1 : -1;
  3329. int check_WCHAR:
  3330. WCHAR_MIN == TYPE_MINIMUM (wchar_t)
  3331. && WCHAR_MAX == TYPE_MAXIMUM (wchar_t)
  3332. ? 1 : -1;
  3333. /* Detect bug in mingw. */
  3334. int check_WINT:
  3335. WINT_MIN == TYPE_MINIMUM (wint_t)
  3336. && WINT_MAX == TYPE_MAXIMUM (wint_t)
  3337. ? 1 : -1;
  3338. /* Detect bugs in glibc 2.4 and Solaris 10 stdint.h, among others. */
  3339. int check_UINT8_C:
  3340. (-1 < UINT8_C (0)) == (-1 < (uint_least8_t) 0) ? 1 : -1;
  3341. int check_UINT16_C:
  3342. (-1 < UINT16_C (0)) == (-1 < (uint_least16_t) 0) ? 1 : -1;
  3343. /* Detect bugs in OpenBSD 3.9 stdint.h. */
  3344. #ifdef UINT8_MAX
  3345. int check_uint8: (uint8_t) -1 == UINT8_MAX ? 1 : -1;
  3346. #endif
  3347. #ifdef UINT16_MAX
  3348. int check_uint16: (uint16_t) -1 == UINT16_MAX ? 1 : -1;
  3349. #endif
  3350. #ifdef UINT32_MAX
  3351. int check_uint32: (uint32_t) -1 == UINT32_MAX ? 1 : -1;
  3352. #endif
  3353. #ifdef UINT64_MAX
  3354. int check_uint64: (uint64_t) -1 == UINT64_MAX ? 1 : -1;
  3355. #endif
  3356. int check_uint_least8: (uint_least8_t) -1 == UINT_LEAST8_MAX ? 1 : -1;
  3357. int check_uint_least16: (uint_least16_t) -1 == UINT_LEAST16_MAX ? 1 : -1;
  3358. int check_uint_least32: (uint_least32_t) -1 == UINT_LEAST32_MAX ? 1 : -1;
  3359. int check_uint_least64: (uint_least64_t) -1 == UINT_LEAST64_MAX ? 1 : -1;
  3360. int check_uint_fast8: (uint_fast8_t) -1 == UINT_FAST8_MAX ? 1 : -1;
  3361. int check_uint_fast16: (uint_fast16_t) -1 == UINT_FAST16_MAX ? 1 : -1;
  3362. int check_uint_fast32: (uint_fast32_t) -1 == UINT_FAST32_MAX ? 1 : -1;
  3363. int check_uint_fast64: (uint_fast64_t) -1 == UINT_FAST64_MAX ? 1 : -1;
  3364. int check_uintptr: (uintptr_t) -1 == UINTPTR_MAX ? 1 : -1;
  3365. int check_uintmax: (uintmax_t) -1 == UINTMAX_MAX ? 1 : -1;
  3366. int check_size: (size_t) -1 == SIZE_MAX ? 1 : -1;
  3367. };
  3368. ]])],
  3369. [dnl Determine whether the various *_MIN, *_MAX macros are usable
  3370. dnl in preprocessor expression. We could do it by compiling a test
  3371. dnl program for each of these macros. It is faster to run a program
  3372. dnl that inspects the macro expansion.
  3373. dnl This detects a bug on HP-UX 11.23/ia64.
  3374. AC_RUN_IFELSE([
  3375. AC_LANG_PROGRAM([[
  3376. #define __STDC_LIMIT_MACROS 1 /* to make it work also in C++ mode */
  3377. #define __STDC_CONSTANT_MACROS 1 /* to make it work also in C++ mode */
  3378. #define _GL_JUST_INCLUDE_SYSTEM_STDINT_H 1 /* work if build isn't clean */
  3379. #include <stdint.h>
  3380. ]
  3381. gl_STDINT_INCLUDES
  3382. [
  3383. #include <stdio.h>
  3384. #include <string.h>
  3385. #define MVAL(macro) MVAL1(macro)
  3386. #define MVAL1(expression) #expression
  3387. static const char *macro_values[] =
  3388. {
  3389. #ifdef INT8_MAX
  3390. MVAL (INT8_MAX),
  3391. #endif
  3392. #ifdef INT16_MAX
  3393. MVAL (INT16_MAX),
  3394. #endif
  3395. #ifdef INT32_MAX
  3396. MVAL (INT32_MAX),
  3397. #endif
  3398. #ifdef INT64_MAX
  3399. MVAL (INT64_MAX),
  3400. #endif
  3401. #ifdef UINT8_MAX
  3402. MVAL (UINT8_MAX),
  3403. #endif
  3404. #ifdef UINT16_MAX
  3405. MVAL (UINT16_MAX),
  3406. #endif
  3407. #ifdef UINT32_MAX
  3408. MVAL (UINT32_MAX),
  3409. #endif
  3410. #ifdef UINT64_MAX
  3411. MVAL (UINT64_MAX),
  3412. #endif
  3413. NULL
  3414. };
  3415. ]], [[
  3416. const char **mv;
  3417. for (mv = macro_values; *mv != NULL; mv++)
  3418. {
  3419. const char *value = *mv;
  3420. /* Test whether it looks like a cast expression. */
  3421. if (strncmp (value, "((unsigned int)"/*)*/, 15) == 0
  3422. || strncmp (value, "((unsigned short)"/*)*/, 17) == 0
  3423. || strncmp (value, "((unsigned char)"/*)*/, 16) == 0
  3424. || strncmp (value, "((int)"/*)*/, 6) == 0
  3425. || strncmp (value, "((signed short)"/*)*/, 15) == 0
  3426. || strncmp (value, "((signed char)"/*)*/, 14) == 0)
  3427. return mv - macro_values + 1;
  3428. }
  3429. return 0;
  3430. ]])],
  3431. [gl_cv_header_working_stdint_h=yes],
  3432. [],
  3433. [dnl When cross-compiling, assume it works.
  3434. gl_cv_header_working_stdint_h=yes
  3435. ])
  3436. ])
  3437. ])
  3438. fi
  3439. if test "$gl_cv_header_working_stdint_h" = yes; then
  3440. STDINT_H=
  3441. else
  3442. dnl Check for <sys/inttypes.h>, and for
  3443. dnl <sys/bitypes.h> (used in Linux libc4 >= 4.6.7 and libc5).
  3444. AC_CHECK_HEADERS([sys/inttypes.h sys/bitypes.h])
  3445. if test $ac_cv_header_sys_inttypes_h = yes; then
  3446. HAVE_SYS_INTTYPES_H=1
  3447. else
  3448. HAVE_SYS_INTTYPES_H=0
  3449. fi
  3450. AC_SUBST([HAVE_SYS_INTTYPES_H])
  3451. if test $ac_cv_header_sys_bitypes_h = yes; then
  3452. HAVE_SYS_BITYPES_H=1
  3453. else
  3454. HAVE_SYS_BITYPES_H=0
  3455. fi
  3456. AC_SUBST([HAVE_SYS_BITYPES_H])
  3457. gl_STDINT_TYPE_PROPERTIES
  3458. STDINT_H=stdint.h
  3459. fi
  3460. AC_SUBST([STDINT_H])
  3461. AM_CONDITIONAL([GL_GENERATE_STDINT_H], [test -n "$STDINT_H"])
  3462. ])
  3463. m4trace:m4/stdint.m4:313: -1- AC_DEFUN([gl_STDINT_BITSIZEOF], [
  3464. dnl Use a shell loop, to avoid bloating configure, and
  3465. dnl - extra AH_TEMPLATE calls, so that autoheader knows what to put into
  3466. dnl config.h.in,
  3467. dnl - extra AC_SUBST calls, so that the right substitutions are made.
  3468. m4_foreach_w([gltype], [$1],
  3469. [AH_TEMPLATE([BITSIZEOF_]m4_translit(gltype,[abcdefghijklmnopqrstuvwxyz ],[ABCDEFGHIJKLMNOPQRSTUVWXYZ_]),
  3470. [Define to the number of bits in type ']gltype['.])])
  3471. for gltype in $1 ; do
  3472. AC_CACHE_CHECK([for bit size of $gltype], [gl_cv_bitsizeof_${gltype}],
  3473. [AC_COMPUTE_INT([result], [sizeof ($gltype) * CHAR_BIT],
  3474. [$2
  3475. #include <limits.h>], [result=unknown])
  3476. eval gl_cv_bitsizeof_${gltype}=\$result
  3477. ])
  3478. eval result=\$gl_cv_bitsizeof_${gltype}
  3479. if test $result = unknown; then
  3480. dnl Use a nonempty default, because some compilers, such as IRIX 5 cc,
  3481. dnl do a syntax check even on unused #if conditions and give an error
  3482. dnl on valid C code like this:
  3483. dnl #if 0
  3484. dnl # if > 32
  3485. dnl # endif
  3486. dnl #endif
  3487. result=0
  3488. fi
  3489. GLTYPE=`echo "$gltype" | tr 'abcdefghijklmnopqrstuvwxyz ' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'`
  3490. AC_DEFINE_UNQUOTED([BITSIZEOF_${GLTYPE}], [$result])
  3491. eval BITSIZEOF_${GLTYPE}=\$result
  3492. done
  3493. m4_foreach_w([gltype], [$1],
  3494. [AC_SUBST([BITSIZEOF_]m4_translit(gltype,[abcdefghijklmnopqrstuvwxyz ],[ABCDEFGHIJKLMNOPQRSTUVWXYZ_]))])
  3495. ])
  3496. m4trace:m4/stdint.m4:351: -1- AC_DEFUN([gl_CHECK_TYPES_SIGNED], [
  3497. dnl Use a shell loop, to avoid bloating configure, and
  3498. dnl - extra AH_TEMPLATE calls, so that autoheader knows what to put into
  3499. dnl config.h.in,
  3500. dnl - extra AC_SUBST calls, so that the right substitutions are made.
  3501. m4_foreach_w([gltype], [$1],
  3502. [AH_TEMPLATE([HAVE_SIGNED_]m4_translit(gltype,[abcdefghijklmnopqrstuvwxyz ],[ABCDEFGHIJKLMNOPQRSTUVWXYZ_]),
  3503. [Define to 1 if ']gltype[' is a signed integer type.])])
  3504. for gltype in $1 ; do
  3505. AC_CACHE_CHECK([whether $gltype is signed], [gl_cv_type_${gltype}_signed],
  3506. [AC_COMPILE_IFELSE(
  3507. [AC_LANG_PROGRAM([$2[
  3508. int verify[2 * (($gltype) -1 < ($gltype) 0) - 1];]])],
  3509. result=yes, result=no)
  3510. eval gl_cv_type_${gltype}_signed=\$result
  3511. ])
  3512. eval result=\$gl_cv_type_${gltype}_signed
  3513. GLTYPE=`echo $gltype | tr 'abcdefghijklmnopqrstuvwxyz ' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'`
  3514. if test "$result" = yes; then
  3515. AC_DEFINE_UNQUOTED([HAVE_SIGNED_${GLTYPE}], [1])
  3516. eval HAVE_SIGNED_${GLTYPE}=1
  3517. else
  3518. eval HAVE_SIGNED_${GLTYPE}=0
  3519. fi
  3520. done
  3521. m4_foreach_w([gltype], [$1],
  3522. [AC_SUBST([HAVE_SIGNED_]m4_translit(gltype,[abcdefghijklmnopqrstuvwxyz ],[ABCDEFGHIJKLMNOPQRSTUVWXYZ_]))])
  3523. ])
  3524. m4trace:m4/stdint.m4:384: -1- AC_DEFUN([gl_INTEGER_TYPE_SUFFIX], [
  3525. dnl Use a shell loop, to avoid bloating configure, and
  3526. dnl - extra AH_TEMPLATE calls, so that autoheader knows what to put into
  3527. dnl config.h.in,
  3528. dnl - extra AC_SUBST calls, so that the right substitutions are made.
  3529. m4_foreach_w([gltype], [$1],
  3530. [AH_TEMPLATE(m4_translit(gltype,[abcdefghijklmnopqrstuvwxyz ],[ABCDEFGHIJKLMNOPQRSTUVWXYZ_])[_SUFFIX],
  3531. [Define to l, ll, u, ul, ull, etc., as suitable for
  3532. constants of type ']gltype['.])])
  3533. for gltype in $1 ; do
  3534. AC_CACHE_CHECK([for $gltype integer literal suffix],
  3535. [gl_cv_type_${gltype}_suffix],
  3536. [eval gl_cv_type_${gltype}_suffix=no
  3537. eval result=\$gl_cv_type_${gltype}_signed
  3538. if test "$result" = yes; then
  3539. glsufu=
  3540. else
  3541. glsufu=u
  3542. fi
  3543. for glsuf in "$glsufu" ${glsufu}l ${glsufu}ll ${glsufu}i64; do
  3544. case $glsuf in
  3545. '') gltype1='int';;
  3546. l) gltype1='long int';;
  3547. ll) gltype1='long long int';;
  3548. i64) gltype1='__int64';;
  3549. u) gltype1='unsigned int';;
  3550. ul) gltype1='unsigned long int';;
  3551. ull) gltype1='unsigned long long int';;
  3552. ui64)gltype1='unsigned __int64';;
  3553. esac
  3554. AC_COMPILE_IFELSE(
  3555. [AC_LANG_PROGRAM([$2[
  3556. extern $gltype foo;
  3557. extern $gltype1 foo;]])],
  3558. [eval gl_cv_type_${gltype}_suffix=\$glsuf])
  3559. eval result=\$gl_cv_type_${gltype}_suffix
  3560. test "$result" != no && break
  3561. done])
  3562. GLTYPE=`echo $gltype | tr 'abcdefghijklmnopqrstuvwxyz ' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'`
  3563. eval result=\$gl_cv_type_${gltype}_suffix
  3564. test "$result" = no && result=
  3565. eval ${GLTYPE}_SUFFIX=\$result
  3566. AC_DEFINE_UNQUOTED([${GLTYPE}_SUFFIX], [$result])
  3567. done
  3568. m4_foreach_w([gltype], [$1],
  3569. [AC_SUBST(m4_translit(gltype,[abcdefghijklmnopqrstuvwxyz ],[ABCDEFGHIJKLMNOPQRSTUVWXYZ_])[_SUFFIX])])
  3570. ])
  3571. m4trace:m4/stdint.m4:434: -1- AC_DEFUN([gl_STDINT_INCLUDES], [[
  3572. /* BSD/OS 4.0.1 has a bug: <stddef.h>, <stdio.h> and <time.h> must be
  3573. included before <wchar.h>. */
  3574. #include <stddef.h>
  3575. #include <signal.h>
  3576. #if HAVE_WCHAR_H
  3577. # include <stdio.h>
  3578. # include <time.h>
  3579. # include <wchar.h>
  3580. #endif
  3581. ]])
  3582. m4trace:m4/stdint.m4:450: -1- AC_DEFUN([gl_STDINT_TYPE_PROPERTIES], [
  3583. AC_REQUIRE([gl_MULTIARCH])
  3584. if test $APPLE_UNIVERSAL_BUILD = 0; then
  3585. gl_STDINT_BITSIZEOF([ptrdiff_t size_t],
  3586. [gl_STDINT_INCLUDES])
  3587. fi
  3588. gl_STDINT_BITSIZEOF([sig_atomic_t wchar_t wint_t],
  3589. [gl_STDINT_INCLUDES])
  3590. gl_CHECK_TYPES_SIGNED([sig_atomic_t wchar_t wint_t],
  3591. [gl_STDINT_INCLUDES])
  3592. gl_cv_type_ptrdiff_t_signed=yes
  3593. gl_cv_type_size_t_signed=no
  3594. if test $APPLE_UNIVERSAL_BUILD = 0; then
  3595. gl_INTEGER_TYPE_SUFFIX([ptrdiff_t size_t],
  3596. [gl_STDINT_INCLUDES])
  3597. fi
  3598. gl_INTEGER_TYPE_SUFFIX([sig_atomic_t wchar_t wint_t],
  3599. [gl_STDINT_INCLUDES])
  3600. ])
  3601. m4trace:m4/string_h.m4:12: -1- AC_DEFUN([gl_HEADER_STRING_H], [
  3602. dnl Use AC_REQUIRE here, so that the default behavior below is expanded
  3603. dnl once only, before all statements that occur in other macros.
  3604. AC_REQUIRE([gl_HEADER_STRING_H_BODY])
  3605. ])
  3606. m4trace:m4/string_h.m4:19: -1- AC_DEFUN([gl_HEADER_STRING_H_BODY], [
  3607. AC_REQUIRE([AC_C_RESTRICT])
  3608. AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])
  3609. gl_NEXT_HEADERS([string.h])
  3610. dnl Check for declarations of anything we want to poison if the
  3611. dnl corresponding gnulib module is not in use, and which is not
  3612. dnl guaranteed by C89.
  3613. gl_WARN_ON_USE_PREPARE([[#include <string.h>
  3614. ]],
  3615. [memmem mempcpy memrchr rawmemchr stpcpy stpncpy strchrnul strdup
  3616. strncat strndup strnlen strpbrk strsep strcasestr strtok_r strerror_r
  3617. strsignal strverscmp])
  3618. ])
  3619. m4trace:m4/string_h.m4:35: -1- AC_DEFUN([gl_STRING_MODULE_INDICATOR], [
  3620. dnl Use AC_REQUIRE here, so that the default settings are expanded once only.
  3621. AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS])
  3622. gl_MODULE_INDICATOR_SET_VARIABLE([$1])
  3623. dnl Define it also as a C macro, for the benefit of the unit tests.
  3624. gl_MODULE_INDICATOR_FOR_TESTS([$1])
  3625. ])
  3626. m4trace:m4/string_h.m4:44: -1- AC_DEFUN([gl_HEADER_STRING_H_DEFAULTS], [
  3627. GNULIB_MEMCHR=0; AC_SUBST([GNULIB_MEMCHR])
  3628. GNULIB_MEMMEM=0; AC_SUBST([GNULIB_MEMMEM])
  3629. GNULIB_MEMPCPY=0; AC_SUBST([GNULIB_MEMPCPY])
  3630. GNULIB_MEMRCHR=0; AC_SUBST([GNULIB_MEMRCHR])
  3631. GNULIB_RAWMEMCHR=0; AC_SUBST([GNULIB_RAWMEMCHR])
  3632. GNULIB_STPCPY=0; AC_SUBST([GNULIB_STPCPY])
  3633. GNULIB_STPNCPY=0; AC_SUBST([GNULIB_STPNCPY])
  3634. GNULIB_STRCHRNUL=0; AC_SUBST([GNULIB_STRCHRNUL])
  3635. GNULIB_STRDUP=0; AC_SUBST([GNULIB_STRDUP])
  3636. GNULIB_STRNCAT=0; AC_SUBST([GNULIB_STRNCAT])
  3637. GNULIB_STRNDUP=0; AC_SUBST([GNULIB_STRNDUP])
  3638. GNULIB_STRNLEN=0; AC_SUBST([GNULIB_STRNLEN])
  3639. GNULIB_STRPBRK=0; AC_SUBST([GNULIB_STRPBRK])
  3640. GNULIB_STRSEP=0; AC_SUBST([GNULIB_STRSEP])
  3641. GNULIB_STRSTR=0; AC_SUBST([GNULIB_STRSTR])
  3642. GNULIB_STRCASESTR=0; AC_SUBST([GNULIB_STRCASESTR])
  3643. GNULIB_STRTOK_R=0; AC_SUBST([GNULIB_STRTOK_R])
  3644. GNULIB_MBSLEN=0; AC_SUBST([GNULIB_MBSLEN])
  3645. GNULIB_MBSNLEN=0; AC_SUBST([GNULIB_MBSNLEN])
  3646. GNULIB_MBSCHR=0; AC_SUBST([GNULIB_MBSCHR])
  3647. GNULIB_MBSRCHR=0; AC_SUBST([GNULIB_MBSRCHR])
  3648. GNULIB_MBSSTR=0; AC_SUBST([GNULIB_MBSSTR])
  3649. GNULIB_MBSCASECMP=0; AC_SUBST([GNULIB_MBSCASECMP])
  3650. GNULIB_MBSNCASECMP=0; AC_SUBST([GNULIB_MBSNCASECMP])
  3651. GNULIB_MBSPCASECMP=0; AC_SUBST([GNULIB_MBSPCASECMP])
  3652. GNULIB_MBSCASESTR=0; AC_SUBST([GNULIB_MBSCASESTR])
  3653. GNULIB_MBSCSPN=0; AC_SUBST([GNULIB_MBSCSPN])
  3654. GNULIB_MBSPBRK=0; AC_SUBST([GNULIB_MBSPBRK])
  3655. GNULIB_MBSSPN=0; AC_SUBST([GNULIB_MBSSPN])
  3656. GNULIB_MBSSEP=0; AC_SUBST([GNULIB_MBSSEP])
  3657. GNULIB_MBSTOK_R=0; AC_SUBST([GNULIB_MBSTOK_R])
  3658. GNULIB_STRERROR=0; AC_SUBST([GNULIB_STRERROR])
  3659. GNULIB_STRERROR_R=0; AC_SUBST([GNULIB_STRERROR_R])
  3660. GNULIB_STRSIGNAL=0; AC_SUBST([GNULIB_STRSIGNAL])
  3661. GNULIB_STRVERSCMP=0; AC_SUBST([GNULIB_STRVERSCMP])
  3662. HAVE_MBSLEN=0; AC_SUBST([HAVE_MBSLEN])
  3663. dnl Assume proper GNU behavior unless another module says otherwise.
  3664. HAVE_MEMCHR=1; AC_SUBST([HAVE_MEMCHR])
  3665. HAVE_DECL_MEMMEM=1; AC_SUBST([HAVE_DECL_MEMMEM])
  3666. HAVE_MEMPCPY=1; AC_SUBST([HAVE_MEMPCPY])
  3667. HAVE_DECL_MEMRCHR=1; AC_SUBST([HAVE_DECL_MEMRCHR])
  3668. HAVE_RAWMEMCHR=1; AC_SUBST([HAVE_RAWMEMCHR])
  3669. HAVE_STPCPY=1; AC_SUBST([HAVE_STPCPY])
  3670. HAVE_STPNCPY=1; AC_SUBST([HAVE_STPNCPY])
  3671. HAVE_STRCHRNUL=1; AC_SUBST([HAVE_STRCHRNUL])
  3672. HAVE_DECL_STRDUP=1; AC_SUBST([HAVE_DECL_STRDUP])
  3673. HAVE_DECL_STRNDUP=1; AC_SUBST([HAVE_DECL_STRNDUP])
  3674. HAVE_DECL_STRNLEN=1; AC_SUBST([HAVE_DECL_STRNLEN])
  3675. HAVE_STRPBRK=1; AC_SUBST([HAVE_STRPBRK])
  3676. HAVE_STRSEP=1; AC_SUBST([HAVE_STRSEP])
  3677. HAVE_STRCASESTR=1; AC_SUBST([HAVE_STRCASESTR])
  3678. HAVE_DECL_STRTOK_R=1; AC_SUBST([HAVE_DECL_STRTOK_R])
  3679. HAVE_DECL_STRERROR_R=1; AC_SUBST([HAVE_DECL_STRERROR_R])
  3680. HAVE_DECL_STRSIGNAL=1; AC_SUBST([HAVE_DECL_STRSIGNAL])
  3681. HAVE_STRVERSCMP=1; AC_SUBST([HAVE_STRVERSCMP])
  3682. REPLACE_MEMCHR=0; AC_SUBST([REPLACE_MEMCHR])
  3683. REPLACE_MEMMEM=0; AC_SUBST([REPLACE_MEMMEM])
  3684. REPLACE_STPNCPY=0; AC_SUBST([REPLACE_STPNCPY])
  3685. REPLACE_STRDUP=0; AC_SUBST([REPLACE_STRDUP])
  3686. REPLACE_STRSTR=0; AC_SUBST([REPLACE_STRSTR])
  3687. REPLACE_STRCASESTR=0; AC_SUBST([REPLACE_STRCASESTR])
  3688. REPLACE_STRCHRNUL=0; AC_SUBST([REPLACE_STRCHRNUL])
  3689. REPLACE_STRERROR=0; AC_SUBST([REPLACE_STRERROR])
  3690. REPLACE_STRERROR_R=0; AC_SUBST([REPLACE_STRERROR_R])
  3691. REPLACE_STRNCAT=0; AC_SUBST([REPLACE_STRNCAT])
  3692. REPLACE_STRNDUP=0; AC_SUBST([REPLACE_STRNDUP])
  3693. REPLACE_STRNLEN=0; AC_SUBST([REPLACE_STRNLEN])
  3694. REPLACE_STRSIGNAL=0; AC_SUBST([REPLACE_STRSIGNAL])
  3695. REPLACE_STRTOK_R=0; AC_SUBST([REPLACE_STRTOK_R])
  3696. UNDEFINE_STRTOK_R=0; AC_SUBST([UNDEFINE_STRTOK_R])
  3697. ])
  3698. m4trace:m4/warn-on-use.m4:24: -1- AC_DEFUN([gl_WARN_ON_USE_PREPARE], [
  3699. m4_foreach_w([gl_decl], [$2],
  3700. [AH_TEMPLATE([HAVE_RAW_DECL_]AS_TR_CPP(m4_defn([gl_decl])),
  3701. [Define to 1 if ]m4_defn([gl_decl])[ is declared even after
  3702. undefining macros.])])dnl
  3703. for gl_func in m4_flatten([$2]); do
  3704. AS_VAR_PUSHDEF([gl_Symbol], [gl_cv_have_raw_decl_$gl_func])dnl
  3705. AC_CACHE_CHECK([whether $gl_func is declared without a macro],
  3706. gl_Symbol,
  3707. [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([$1],
  3708. [@%:@undef $gl_func
  3709. (void) $gl_func;])],
  3710. [AS_VAR_SET(gl_Symbol, [yes])], [AS_VAR_SET(gl_Symbol, [no])])])
  3711. AS_VAR_IF(gl_Symbol, [yes],
  3712. [AC_DEFINE_UNQUOTED(AS_TR_CPP([HAVE_RAW_DECL_$gl_func]), [1])
  3713. dnl shortcut - if the raw declaration exists, then set a cache
  3714. dnl variable to allow skipping any later AC_CHECK_DECL efforts
  3715. eval ac_cv_have_decl_$gl_func=yes])
  3716. AS_VAR_POPDEF([gl_Symbol])dnl
  3717. done
  3718. ])
  3719. m4trace:m4/wchar_t.m4:11: -1- AC_DEFUN([gt_TYPE_WCHAR_T], [
  3720. AC_CACHE_CHECK([for wchar_t], [gt_cv_c_wchar_t],
  3721. [AC_COMPILE_IFELSE(
  3722. [AC_LANG_PROGRAM(
  3723. [[#include <stddef.h>
  3724. wchar_t foo = (wchar_t)'\0';]],
  3725. [[]])],
  3726. [gt_cv_c_wchar_t=yes],
  3727. [gt_cv_c_wchar_t=no])])
  3728. if test $gt_cv_c_wchar_t = yes; then
  3729. AC_DEFINE([HAVE_WCHAR_T], [1], [Define if you have the 'wchar_t' type.])
  3730. fi
  3731. ])
  3732. m4trace:configure.ac:14: -1- m4_pattern_forbid([^_?A[CHUM]_])
  3733. m4trace:configure.ac:14: -1- m4_pattern_forbid([_AC_])
  3734. m4trace:configure.ac:14: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS'])
  3735. m4trace:configure.ac:14: -1- m4_pattern_allow([^AS_FLAGS$])
  3736. m4trace:configure.ac:14: -1- m4_pattern_forbid([^_?m4_])
  3737. m4trace:configure.ac:14: -1- m4_pattern_forbid([^dnl$])
  3738. m4trace:configure.ac:14: -1- m4_pattern_forbid([^_?AS_])
  3739. m4trace:configure.ac:14: -1- m4_pattern_allow([^SHELL$])
  3740. m4trace:configure.ac:14: -1- m4_pattern_allow([^PATH_SEPARATOR$])
  3741. m4trace:configure.ac:14: -1- m4_pattern_allow([^PACKAGE_NAME$])
  3742. m4trace:configure.ac:14: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
  3743. m4trace:configure.ac:14: -1- m4_pattern_allow([^PACKAGE_VERSION$])
  3744. m4trace:configure.ac:14: -1- m4_pattern_allow([^PACKAGE_STRING$])
  3745. m4trace:configure.ac:14: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
  3746. m4trace:configure.ac:14: -1- m4_pattern_allow([^PACKAGE_URL$])
  3747. m4trace:configure.ac:14: -1- m4_pattern_allow([^exec_prefix$])
  3748. m4trace:configure.ac:14: -1- m4_pattern_allow([^prefix$])
  3749. m4trace:configure.ac:14: -1- m4_pattern_allow([^program_transform_name$])
  3750. m4trace:configure.ac:14: -1- m4_pattern_allow([^bindir$])
  3751. m4trace:configure.ac:14: -1- m4_pattern_allow([^sbindir$])
  3752. m4trace:configure.ac:14: -1- m4_pattern_allow([^libexecdir$])
  3753. m4trace:configure.ac:14: -1- m4_pattern_allow([^datarootdir$])
  3754. m4trace:configure.ac:14: -1- m4_pattern_allow([^datadir$])
  3755. m4trace:configure.ac:14: -1- m4_pattern_allow([^sysconfdir$])
  3756. m4trace:configure.ac:14: -1- m4_pattern_allow([^sharedstatedir$])
  3757. m4trace:configure.ac:14: -1- m4_pattern_allow([^localstatedir$])
  3758. m4trace:configure.ac:14: -1- m4_pattern_allow([^includedir$])
  3759. m4trace:configure.ac:14: -1- m4_pattern_allow([^oldincludedir$])
  3760. m4trace:configure.ac:14: -1- m4_pattern_allow([^docdir$])
  3761. m4trace:configure.ac:14: -1- m4_pattern_allow([^infodir$])
  3762. m4trace:configure.ac:14: -1- m4_pattern_allow([^htmldir$])
  3763. m4trace:configure.ac:14: -1- m4_pattern_allow([^dvidir$])
  3764. m4trace:configure.ac:14: -1- m4_pattern_allow([^pdfdir$])
  3765. m4trace:configure.ac:14: -1- m4_pattern_allow([^psdir$])
  3766. m4trace:configure.ac:14: -1- m4_pattern_allow([^libdir$])
  3767. m4trace:configure.ac:14: -1- m4_pattern_allow([^localedir$])
  3768. m4trace:configure.ac:14: -1- m4_pattern_allow([^mandir$])
  3769. m4trace:configure.ac:14: -1- m4_pattern_allow([^PACKAGE_NAME$])
  3770. m4trace:configure.ac:14: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
  3771. m4trace:configure.ac:14: -1- m4_pattern_allow([^PACKAGE_VERSION$])
  3772. m4trace:configure.ac:14: -1- m4_pattern_allow([^PACKAGE_STRING$])
  3773. m4trace:configure.ac:14: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
  3774. m4trace:configure.ac:14: -1- m4_pattern_allow([^PACKAGE_URL$])
  3775. m4trace:configure.ac:14: -1- m4_pattern_allow([^DEFS$])
  3776. m4trace:configure.ac:14: -1- m4_pattern_allow([^ECHO_C$])
  3777. m4trace:configure.ac:14: -1- m4_pattern_allow([^ECHO_N$])
  3778. m4trace:configure.ac:14: -1- m4_pattern_allow([^ECHO_T$])
  3779. m4trace:configure.ac:14: -1- m4_pattern_allow([^LIBS$])
  3780. m4trace:configure.ac:14: -1- m4_pattern_allow([^build_alias$])
  3781. m4trace:configure.ac:14: -1- m4_pattern_allow([^host_alias$])
  3782. m4trace:configure.ac:14: -1- m4_pattern_allow([^target_alias$])
  3783. m4trace:configure.ac:17: -1- _m4_warn([obsolete], [The macro `AC_CANONICAL_SYSTEM' is obsolete.
  3784. You should run autoupdate.], [/mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:1858: AC_CANONICAL_SYSTEM is expanded from...
  3785. configure.ac:17: the top level])
  3786. m4trace:configure.ac:17: -1- m4_pattern_allow([^build$])
  3787. m4trace:configure.ac:17: -1- m4_pattern_allow([^build_cpu$])
  3788. m4trace:configure.ac:17: -1- m4_pattern_allow([^build_vendor$])
  3789. m4trace:configure.ac:17: -1- m4_pattern_allow([^build_os$])
  3790. m4trace:configure.ac:17: -1- m4_pattern_allow([^host$])
  3791. m4trace:configure.ac:17: -1- m4_pattern_allow([^host_cpu$])
  3792. m4trace:configure.ac:17: -1- m4_pattern_allow([^host_vendor$])
  3793. m4trace:configure.ac:17: -1- m4_pattern_allow([^host_os$])
  3794. m4trace:configure.ac:17: -1- m4_pattern_allow([^target$])
  3795. m4trace:configure.ac:17: -1- m4_pattern_allow([^target_cpu$])
  3796. m4trace:configure.ac:17: -1- m4_pattern_allow([^target_vendor$])
  3797. m4trace:configure.ac:17: -1- m4_pattern_allow([^target_os$])
  3798. m4trace:configure.ac:22: -1- AM_INIT_AUTOMAKE([foreign subdir-objects])
  3799. m4trace:configure.ac:22: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$])
  3800. m4trace:configure.ac:22: -1- AM_SET_CURRENT_AUTOMAKE_VERSION
  3801. m4trace:configure.ac:22: -1- AM_AUTOMAKE_VERSION([1.11.1])
  3802. m4trace:configure.ac:22: -1- _AM_AUTOCONF_VERSION([2.68])
  3803. m4trace:configure.ac:22: -1- m4_pattern_allow([^INSTALL_PROGRAM$])
  3804. m4trace:configure.ac:22: -1- m4_pattern_allow([^INSTALL_SCRIPT$])
  3805. m4trace:configure.ac:22: -1- m4_pattern_allow([^INSTALL_DATA$])
  3806. m4trace:configure.ac:22: -1- m4_pattern_allow([^am__isrc$])
  3807. m4trace:configure.ac:22: -1- _AM_SUBST_NOTMAKE([am__isrc])
  3808. m4trace:configure.ac:22: -1- m4_pattern_allow([^CYGPATH_W$])
  3809. m4trace:configure.ac:22: -1- _AM_SET_OPTIONS([foreign subdir-objects])
  3810. m4trace:configure.ac:22: -1- _AM_SET_OPTION([foreign])
  3811. m4trace:configure.ac:22: -2- _AM_MANGLE_OPTION([foreign])
  3812. m4trace:configure.ac:22: -1- _AM_SET_OPTION([subdir-objects])
  3813. m4trace:configure.ac:22: -2- _AM_MANGLE_OPTION([subdir-objects])
  3814. m4trace:configure.ac:22: -1- m4_pattern_allow([^PACKAGE$])
  3815. m4trace:configure.ac:22: -1- m4_pattern_allow([^VERSION$])
  3816. m4trace:configure.ac:22: -1- _AM_IF_OPTION([no-define], [], [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
  3817. AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])
  3818. m4trace:configure.ac:22: -2- _AM_MANGLE_OPTION([no-define])
  3819. m4trace:configure.ac:22: -1- m4_pattern_allow([^PACKAGE$])
  3820. m4trace:configure.ac:22: -1- m4_pattern_allow([^VERSION$])
  3821. m4trace:configure.ac:22: -1- AM_SANITY_CHECK
  3822. m4trace:configure.ac:22: -1- AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])
  3823. m4trace:configure.ac:22: -1- AM_MISSING_HAS_RUN
  3824. m4trace:configure.ac:22: -1- AM_AUX_DIR_EXPAND
  3825. m4trace:configure.ac:22: -1- m4_pattern_allow([^ACLOCAL$])
  3826. m4trace:configure.ac:22: -1- AM_MISSING_PROG([AUTOCONF], [autoconf])
  3827. m4trace:configure.ac:22: -1- m4_pattern_allow([^AUTOCONF$])
  3828. m4trace:configure.ac:22: -1- AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])
  3829. m4trace:configure.ac:22: -1- m4_pattern_allow([^AUTOMAKE$])
  3830. m4trace:configure.ac:22: -1- AM_MISSING_PROG([AUTOHEADER], [autoheader])
  3831. m4trace:configure.ac:22: -1- m4_pattern_allow([^AUTOHEADER$])
  3832. m4trace:configure.ac:22: -1- AM_MISSING_PROG([MAKEINFO], [makeinfo])
  3833. m4trace:configure.ac:22: -1- m4_pattern_allow([^MAKEINFO$])
  3834. m4trace:configure.ac:22: -1- AM_PROG_INSTALL_SH
  3835. m4trace:configure.ac:22: -1- m4_pattern_allow([^install_sh$])
  3836. m4trace:configure.ac:22: -1- AM_PROG_INSTALL_STRIP
  3837. m4trace:configure.ac:22: -1- m4_pattern_allow([^STRIP$])
  3838. m4trace:configure.ac:22: -1- m4_pattern_allow([^INSTALL_STRIP_PROGRAM$])
  3839. m4trace:configure.ac:22: -1- AM_PROG_MKDIR_P
  3840. m4trace:configure.ac:22: -1- AC_PROG_MKDIR_P
  3841. m4trace:configure.ac:22: -1- m4_pattern_allow([^MKDIR_P$])
  3842. m4trace:configure.ac:22: -1- m4_pattern_allow([^MKDIR_P$])
  3843. m4trace:configure.ac:22: -1- m4_pattern_allow([^mkdir_p$])
  3844. m4trace:configure.ac:22: -1- m4_pattern_allow([^AWK$])
  3845. m4trace:configure.ac:22: -1- m4_pattern_allow([^SET_MAKE$])
  3846. m4trace:configure.ac:22: -1- AM_SET_LEADING_DOT
  3847. m4trace:configure.ac:22: -1- m4_pattern_allow([^am__leading_dot$])
  3848. m4trace:configure.ac:22: -1- _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
  3849. [_AM_PROG_TAR([v7])])])
  3850. m4trace:configure.ac:22: -2- _AM_MANGLE_OPTION([tar-ustar])
  3851. m4trace:configure.ac:22: -1- _AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])
  3852. m4trace:configure.ac:22: -2- _AM_MANGLE_OPTION([tar-pax])
  3853. m4trace:configure.ac:22: -1- _AM_PROG_TAR([v7])
  3854. m4trace:configure.ac:22: -1- AM_MISSING_PROG([AMTAR], [tar])
  3855. m4trace:configure.ac:22: -1- m4_pattern_allow([^AMTAR$])
  3856. m4trace:configure.ac:22: -1- m4_pattern_allow([^am__tar$])
  3857. m4trace:configure.ac:22: -1- m4_pattern_allow([^am__untar$])
  3858. m4trace:configure.ac:22: -1- _AM_IF_OPTION([no-dependencies], [], [AC_PROVIDE_IFELSE([AC_PROG_CC],
  3859. [_AM_DEPENDENCIES(CC)],
  3860. [define([AC_PROG_CC],
  3861. defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
  3862. AC_PROVIDE_IFELSE([AC_PROG_CXX],
  3863. [_AM_DEPENDENCIES(CXX)],
  3864. [define([AC_PROG_CXX],
  3865. defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
  3866. AC_PROVIDE_IFELSE([AC_PROG_OBJC],
  3867. [_AM_DEPENDENCIES(OBJC)],
  3868. [define([AC_PROG_OBJC],
  3869. defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl
  3870. ])
  3871. m4trace:configure.ac:22: -2- _AM_MANGLE_OPTION([no-dependencies])
  3872. m4trace:configure.ac:22: -1- _AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])
  3873. m4trace:configure.ac:22: -2- _AM_MANGLE_OPTION([silent-rules])
  3874. m4trace:configure.ac:23: -1- AM_SILENT_RULES([yes])
  3875. m4trace:configure.ac:23: -1- m4_pattern_allow([^AM_DEFAULT_VERBOSITY$])
  3876. m4trace:configure.ac:23: -1- m4_pattern_allow([^AM_BACKSLASH$])
  3877. m4trace:configure.ac:23: -1- _AM_SUBST_NOTMAKE([AM_BACKSLASH])
  3878. m4trace:configure.ac:24: -1- AC_USE_SYSTEM_EXTENSIONS
  3879. m4trace:configure.ac:24: -1- m4_pattern_allow([^CC$])
  3880. m4trace:configure.ac:24: -1- m4_pattern_allow([^CFLAGS$])
  3881. m4trace:configure.ac:24: -1- m4_pattern_allow([^LDFLAGS$])
  3882. m4trace:configure.ac:24: -1- m4_pattern_allow([^LIBS$])
  3883. m4trace:configure.ac:24: -1- m4_pattern_allow([^CPPFLAGS$])
  3884. m4trace:configure.ac:24: -1- m4_pattern_allow([^CC$])
  3885. m4trace:configure.ac:24: -1- m4_pattern_allow([^CC$])
  3886. m4trace:configure.ac:24: -1- m4_pattern_allow([^CC$])
  3887. m4trace:configure.ac:24: -1- m4_pattern_allow([^CC$])
  3888. m4trace:configure.ac:24: -1- m4_pattern_allow([^ac_ct_CC$])
  3889. m4trace:configure.ac:24: -1- m4_pattern_allow([^EXEEXT$])
  3890. m4trace:configure.ac:24: -1- m4_pattern_allow([^OBJEXT$])
  3891. m4trace:configure.ac:24: -1- _AM_DEPENDENCIES([CC])
  3892. m4trace:configure.ac:24: -1- AM_SET_DEPDIR
  3893. m4trace:configure.ac:24: -1- m4_pattern_allow([^DEPDIR$])
  3894. m4trace:configure.ac:24: -1- AM_OUTPUT_DEPENDENCY_COMMANDS
  3895. m4trace:configure.ac:24: -1- AM_MAKE_INCLUDE
  3896. m4trace:configure.ac:24: -1- m4_pattern_allow([^am__include$])
  3897. m4trace:configure.ac:24: -1- m4_pattern_allow([^am__quote$])
  3898. m4trace:configure.ac:24: -1- AM_DEP_TRACK
  3899. m4trace:configure.ac:24: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
  3900. m4trace:configure.ac:24: -1- m4_pattern_allow([^AMDEP_TRUE$])
  3901. m4trace:configure.ac:24: -1- m4_pattern_allow([^AMDEP_FALSE$])
  3902. m4trace:configure.ac:24: -1- _AM_SUBST_NOTMAKE([AMDEP_TRUE])
  3903. m4trace:configure.ac:24: -1- _AM_SUBST_NOTMAKE([AMDEP_FALSE])
  3904. m4trace:configure.ac:24: -1- m4_pattern_allow([^AMDEPBACKSLASH$])
  3905. m4trace:configure.ac:24: -1- _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])
  3906. m4trace:configure.ac:24: -1- m4_pattern_allow([^CCDEPMODE$])
  3907. m4trace:configure.ac:24: -1- AM_CONDITIONAL([am__fastdepCC], [
  3908. test "x$enable_dependency_tracking" != xno \
  3909. && test "$am_cv_CC_dependencies_compiler_type" = gcc3])
  3910. m4trace:configure.ac:24: -1- m4_pattern_allow([^am__fastdepCC_TRUE$])
  3911. m4trace:configure.ac:24: -1- m4_pattern_allow([^am__fastdepCC_FALSE$])
  3912. m4trace:configure.ac:24: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE])
  3913. m4trace:configure.ac:24: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE])
  3914. m4trace:configure.ac:24: -1- m4_pattern_allow([^CPP$])
  3915. m4trace:configure.ac:24: -1- m4_pattern_allow([^CPPFLAGS$])
  3916. m4trace:configure.ac:24: -1- m4_pattern_allow([^CPP$])
  3917. m4trace:configure.ac:24: -1- AC_PROG_EGREP
  3918. m4trace:configure.ac:24: -1- m4_pattern_allow([^GREP$])
  3919. m4trace:configure.ac:24: -1- m4_pattern_allow([^EGREP$])
  3920. m4trace:configure.ac:24: -1- m4_pattern_allow([^STDC_HEADERS$])
  3921. m4trace:configure.ac:24: -1- m4_pattern_allow([^_POSIX_SOURCE$])
  3922. m4trace:configure.ac:24: -1- m4_pattern_allow([^_POSIX_1_SOURCE$])
  3923. m4trace:configure.ac:24: -1- m4_pattern_allow([^_MINIX$])
  3924. m4trace:configure.ac:24: -1- m4_pattern_allow([^_XOPEN_SOURCE$])
  3925. m4trace:configure.ac:24: -1- m4_pattern_allow([^__EXTENSIONS__$])
  3926. m4trace:configure.ac:24: -1- m4_pattern_allow([^_ALL_SOURCE$])
  3927. m4trace:configure.ac:24: -1- m4_pattern_allow([^_GNU_SOURCE$])
  3928. m4trace:configure.ac:24: -1- m4_pattern_allow([^_POSIX_PTHREAD_SEMANTICS$])
  3929. m4trace:configure.ac:24: -1- m4_pattern_allow([^_TANDEM_SOURCE$])
  3930. m4trace:configure.ac:30: -1- m4_pattern_allow([^CGMINER_MAJOR_VERSION$])
  3931. m4trace:configure.ac:31: -1- m4_pattern_allow([^CGMINER_MINOR_VERSION$])
  3932. m4trace:configure.ac:32: -1- m4_pattern_allow([^CGMINER_MINOR_SUBVERSION$])
  3933. m4trace:configure.ac:35: -1- m4_pattern_allow([^version_info$])
  3934. m4trace:configure.ac:36: -1- m4_pattern_allow([^release_info$])
  3935. m4trace:configure.ac:40: -1- m4_pattern_allow([^VMAJ$])
  3936. m4trace:configure.ac:46: -1- AM_MAINTAINER_MODE
  3937. m4trace:configure.ac:46: -1- AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes])
  3938. m4trace:configure.ac:46: -1- m4_pattern_allow([^MAINTAINER_MODE_TRUE$])
  3939. m4trace:configure.ac:46: -1- m4_pattern_allow([^MAINTAINER_MODE_FALSE$])
  3940. m4trace:configure.ac:46: -1- _AM_SUBST_NOTMAKE([MAINTAINER_MODE_TRUE])
  3941. m4trace:configure.ac:46: -1- _AM_SUBST_NOTMAKE([MAINTAINER_MODE_FALSE])
  3942. m4trace:configure.ac:46: -1- m4_pattern_allow([^MAINT$])
  3943. m4trace:configure.ac:49: -1- m4_pattern_allow([^CC$])
  3944. m4trace:configure.ac:49: -1- m4_pattern_allow([^CFLAGS$])
  3945. m4trace:configure.ac:49: -1- m4_pattern_allow([^LDFLAGS$])
  3946. m4trace:configure.ac:49: -1- m4_pattern_allow([^LIBS$])
  3947. m4trace:configure.ac:49: -1- m4_pattern_allow([^CPPFLAGS$])
  3948. m4trace:configure.ac:49: -1- m4_pattern_allow([^CC$])
  3949. m4trace:configure.ac:49: -1- m4_pattern_allow([^CC$])
  3950. m4trace:configure.ac:49: -1- m4_pattern_allow([^CC$])
  3951. m4trace:configure.ac:49: -1- m4_pattern_allow([^CC$])
  3952. m4trace:configure.ac:49: -1- m4_pattern_allow([^ac_ct_CC$])
  3953. m4trace:configure.ac:49: -1- _AM_DEPENDENCIES([CC])
  3954. m4trace:configure.ac:49: -1- m4_pattern_allow([^CCDEPMODE$])
  3955. m4trace:configure.ac:49: -1- AM_CONDITIONAL([am__fastdepCC], [
  3956. test "x$enable_dependency_tracking" != xno \
  3957. && test "$am_cv_CC_dependencies_compiler_type" = gcc3])
  3958. m4trace:configure.ac:49: -1- m4_pattern_allow([^am__fastdepCC_TRUE$])
  3959. m4trace:configure.ac:49: -1- m4_pattern_allow([^am__fastdepCC_FALSE$])
  3960. m4trace:configure.ac:49: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE])
  3961. m4trace:configure.ac:49: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE])
  3962. m4trace:configure.ac:50: -1- gl_EARLY
  3963. m4trace:configure.ac:50: -1- m4_pattern_forbid([^gl_[A-Z]])
  3964. m4trace:configure.ac:50: -1- m4_pattern_allow([^gl_ES$])
  3965. m4trace:configure.ac:50: -1- m4_pattern_allow([^gl_LIBOBJS$])
  3966. m4trace:configure.ac:50: -1- m4_pattern_allow([^gl_LTLIBOBJS$])
  3967. m4trace:configure.ac:50: -1- m4_pattern_allow([^RANLIB$])
  3968. m4trace:configure.ac:50: -1- gl_USE_SYSTEM_EXTENSIONS
  3969. m4trace:configure.ac:50: -1- _m4_warn([obsolete], [The macro `AC_GNU_SOURCE' is obsolete.
  3970. You should run autoupdate.], [/mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/specific.m4:310: AC_GNU_SOURCE is expanded from...
  3971. m4/gnulib-comp.m4:22: gl_EARLY is expanded from...
  3972. configure.ac:50: the top level])
  3973. m4trace:configure.ac:50: -1- AC_USE_SYSTEM_EXTENSIONS
  3974. m4trace:configure.ac:52: -1- AM_PROG_CC_C_O
  3975. m4trace:configure.ac:52: -1- m4_pattern_allow([^NO_MINUS_C_MINUS_O$])
  3976. m4trace:configure.ac:53: -1- LT_INIT([disable-shared])
  3977. m4trace:configure.ac:53: -1- m4_pattern_forbid([^_?LT_[A-Z_]+$])
  3978. m4trace:configure.ac:53: -1- m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])
  3979. m4trace:configure.ac:53: -1- LTOPTIONS_VERSION
  3980. m4trace:configure.ac:53: -1- LTSUGAR_VERSION
  3981. m4trace:configure.ac:53: -1- LTVERSION_VERSION
  3982. m4trace:configure.ac:53: -1- LTOBSOLETE_VERSION
  3983. m4trace:configure.ac:53: -1- _LT_PROG_LTMAIN
  3984. m4trace:configure.ac:53: -1- m4_pattern_allow([^LIBTOOL$])
  3985. m4trace:configure.ac:53: -1- _LT_PREPARE_SED_QUOTE_VARS
  3986. m4trace:configure.ac:53: -1- _LT_PROG_ECHO_BACKSLASH
  3987. m4trace:configure.ac:53: -1- LT_PATH_LD
  3988. m4trace:configure.ac:53: -1- m4_pattern_allow([^SED$])
  3989. m4trace:configure.ac:53: -1- m4_pattern_allow([^FGREP$])
  3990. m4trace:configure.ac:53: -1- m4_pattern_allow([^GREP$])
  3991. m4trace:configure.ac:53: -1- m4_pattern_allow([^LD$])
  3992. m4trace:configure.ac:53: -1- LT_PATH_NM
  3993. m4trace:configure.ac:53: -1- m4_pattern_allow([^DUMPBIN$])
  3994. m4trace:configure.ac:53: -1- m4_pattern_allow([^ac_ct_DUMPBIN$])
  3995. m4trace:configure.ac:53: -1- m4_pattern_allow([^DUMPBIN$])
  3996. m4trace:configure.ac:53: -1- m4_pattern_allow([^NM$])
  3997. m4trace:configure.ac:53: -1- m4_pattern_allow([^LN_S$])
  3998. m4trace:configure.ac:53: -1- LT_CMD_MAX_LEN
  3999. m4trace:configure.ac:53: -1- m4_pattern_allow([^OBJDUMP$])
  4000. m4trace:configure.ac:53: -1- m4_pattern_allow([^OBJDUMP$])
  4001. m4trace:configure.ac:53: -1- m4_pattern_allow([^DLLTOOL$])
  4002. m4trace:configure.ac:53: -1- m4_pattern_allow([^DLLTOOL$])
  4003. m4trace:configure.ac:53: -1- m4_pattern_allow([^AR$])
  4004. m4trace:configure.ac:53: -1- m4_pattern_allow([^ac_ct_AR$])
  4005. m4trace:configure.ac:53: -1- m4_pattern_allow([^STRIP$])
  4006. m4trace:configure.ac:53: -1- m4_pattern_allow([^RANLIB$])
  4007. m4trace:configure.ac:53: -1- _LT_WITH_SYSROOT
  4008. m4trace:configure.ac:53: -1- m4_pattern_allow([LT_OBJDIR])
  4009. m4trace:configure.ac:53: -1- m4_pattern_allow([^LT_OBJDIR$])
  4010. m4trace:configure.ac:53: -1- _LT_CC_BASENAME([$compiler])
  4011. m4trace:configure.ac:53: -1- _LT_PATH_TOOL_PREFIX([${ac_tool_prefix}file], [/usr/bin$PATH_SEPARATOR$PATH])
  4012. m4trace:configure.ac:53: -1- _LT_PATH_TOOL_PREFIX([file], [/usr/bin$PATH_SEPARATOR$PATH])
  4013. m4trace:configure.ac:53: -1- LT_SUPPORTED_TAG([CC])
  4014. m4trace:configure.ac:53: -1- _LT_COMPILER_BOILERPLATE
  4015. m4trace:configure.ac:53: -1- _LT_LINKER_BOILERPLATE
  4016. m4trace:configure.ac:53: -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"])
  4017. m4trace:configure.ac:53: -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
  4018. "" | " "*) ;;
  4019. *) _LT_TAGVAR(lt_prog_compiler_pic, )=" $_LT_TAGVAR(lt_prog_compiler_pic, )" ;;
  4020. esac], [_LT_TAGVAR(lt_prog_compiler_pic, )=
  4021. _LT_TAGVAR(lt_prog_compiler_can_build_shared, )=no])
  4022. m4trace:configure.ac:53: -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, )=])
  4023. m4trace:configure.ac:53: -1- m4_pattern_allow([^MANIFEST_TOOL$])
  4024. m4trace:configure.ac:53: -1- _LT_REQUIRED_DARWIN_CHECKS
  4025. m4trace:configure.ac:53: -1- m4_pattern_allow([^DSYMUTIL$])
  4026. m4trace:configure.ac:53: -1- m4_pattern_allow([^NMEDIT$])
  4027. m4trace:configure.ac:53: -1- m4_pattern_allow([^LIPO$])
  4028. m4trace:configure.ac:53: -1- m4_pattern_allow([^OTOOL$])
  4029. m4trace:configure.ac:53: -1- m4_pattern_allow([^OTOOL64$])
  4030. m4trace:configure.ac:53: -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'])
  4031. m4trace:configure.ac:53: -1- LT_SYS_DLOPEN_SELF
  4032. m4trace:configure.ac:53: -1- m4_pattern_allow([^HAVE_DLFCN_H$])
  4033. m4trace:configure.ac:55: -1- gl_INIT
  4034. m4trace:configure.ac:55: -1- AM_CONDITIONAL([GL_COND_LIBTOOL], [false])
  4035. m4trace:configure.ac:55: -1- m4_pattern_allow([^GL_COND_LIBTOOL_TRUE$])
  4036. m4trace:configure.ac:55: -1- m4_pattern_allow([^GL_COND_LIBTOOL_FALSE$])
  4037. m4trace:configure.ac:55: -1- _AM_SUBST_NOTMAKE([GL_COND_LIBTOOL_TRUE])
  4038. m4trace:configure.ac:55: -1- _AM_SUBST_NOTMAKE([GL_COND_LIBTOOL_FALSE])
  4039. m4trace:configure.ac:55: -1- gl_COMMON
  4040. m4trace:configure.ac:55: -1- gl_00GNULIB
  4041. m4trace:configure.ac:55: -1- gl_COMMON_BODY
  4042. m4trace:configure.ac:55: -1- gl_FUNC_MEMCHR
  4043. m4trace:configure.ac:55: -1- gl_FUNC_MMAP_ANON
  4044. m4trace:configure.ac:55: -1- m4_pattern_allow([^MAP_ANONYMOUS$])
  4045. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_MAP_ANONYMOUS$])
  4046. m4trace:configure.ac:55: -1- AC_CHECK_HEADERS_ONCE([sys/mman.h])
  4047. m4trace:configure.ac:55: -1- AC_DEFUN([gl_CHECK_HEADER_sys_mman_h], [
  4048. m4_divert_text([INIT_PREPARE],
  4049. [gl_header_list="$gl_header_list gl_HEADER_NAME"])
  4050. gl_HEADERS_EXPANSION
  4051. AH_TEMPLATE(AS_TR_CPP([HAVE_]m4_defn([gl_HEADER_NAME])),
  4052. [Define to 1 if you have the <]m4_defn([gl_HEADER_NAME])[> header file.])
  4053. ])
  4054. m4trace:configure.ac:55: -1- AC_CHECK_FUNCS_ONCE([mprotect])
  4055. m4trace:configure.ac:55: -1- AC_DEFUN([gl_CHECK_FUNC_mprotect], [
  4056. m4_divert_text([INIT_PREPARE],
  4057. [gl_func_list="$gl_func_list gl_FUNC_NAME"])
  4058. gl_FUNCS_EXPANSION
  4059. AH_TEMPLATE(AS_TR_CPP([HAVE_]m4_defn([gl_FUNC_NAME])),
  4060. [Define to 1 if you have the `]m4_defn([gl_FUNC_NAME])[' function.])
  4061. ])
  4062. m4trace:configure.ac:55: -1- gl_HEADER_STRING_H_DEFAULTS
  4063. m4trace:configure.ac:55: -1- m4_pattern_allow([^GNULIB_MEMCHR$])
  4064. m4trace:configure.ac:55: -1- m4_pattern_allow([^GNULIB_MEMMEM$])
  4065. m4trace:configure.ac:55: -1- m4_pattern_allow([^GNULIB_MEMPCPY$])
  4066. m4trace:configure.ac:55: -1- m4_pattern_allow([^GNULIB_MEMRCHR$])
  4067. m4trace:configure.ac:55: -1- m4_pattern_allow([^GNULIB_RAWMEMCHR$])
  4068. m4trace:configure.ac:55: -1- m4_pattern_allow([^GNULIB_STPCPY$])
  4069. m4trace:configure.ac:55: -1- m4_pattern_allow([^GNULIB_STPNCPY$])
  4070. m4trace:configure.ac:55: -1- m4_pattern_allow([^GNULIB_STRCHRNUL$])
  4071. m4trace:configure.ac:55: -1- m4_pattern_allow([^GNULIB_STRDUP$])
  4072. m4trace:configure.ac:55: -1- m4_pattern_allow([^GNULIB_STRNCAT$])
  4073. m4trace:configure.ac:55: -1- m4_pattern_allow([^GNULIB_STRNDUP$])
  4074. m4trace:configure.ac:55: -1- m4_pattern_allow([^GNULIB_STRNLEN$])
  4075. m4trace:configure.ac:55: -1- m4_pattern_allow([^GNULIB_STRPBRK$])
  4076. m4trace:configure.ac:55: -1- m4_pattern_allow([^GNULIB_STRSEP$])
  4077. m4trace:configure.ac:55: -1- m4_pattern_allow([^GNULIB_STRSTR$])
  4078. m4trace:configure.ac:55: -1- m4_pattern_allow([^GNULIB_STRCASESTR$])
  4079. m4trace:configure.ac:55: -1- m4_pattern_allow([^GNULIB_STRTOK_R$])
  4080. m4trace:configure.ac:55: -1- m4_pattern_allow([^GNULIB_MBSLEN$])
  4081. m4trace:configure.ac:55: -1- m4_pattern_allow([^GNULIB_MBSNLEN$])
  4082. m4trace:configure.ac:55: -1- m4_pattern_allow([^GNULIB_MBSCHR$])
  4083. m4trace:configure.ac:55: -1- m4_pattern_allow([^GNULIB_MBSRCHR$])
  4084. m4trace:configure.ac:55: -1- m4_pattern_allow([^GNULIB_MBSSTR$])
  4085. m4trace:configure.ac:55: -1- m4_pattern_allow([^GNULIB_MBSCASECMP$])
  4086. m4trace:configure.ac:55: -1- m4_pattern_allow([^GNULIB_MBSNCASECMP$])
  4087. m4trace:configure.ac:55: -1- m4_pattern_allow([^GNULIB_MBSPCASECMP$])
  4088. m4trace:configure.ac:55: -1- m4_pattern_allow([^GNULIB_MBSCASESTR$])
  4089. m4trace:configure.ac:55: -1- m4_pattern_allow([^GNULIB_MBSCSPN$])
  4090. m4trace:configure.ac:55: -1- m4_pattern_allow([^GNULIB_MBSPBRK$])
  4091. m4trace:configure.ac:55: -1- m4_pattern_allow([^GNULIB_MBSSPN$])
  4092. m4trace:configure.ac:55: -1- m4_pattern_allow([^GNULIB_MBSSEP$])
  4093. m4trace:configure.ac:55: -1- m4_pattern_allow([^GNULIB_MBSTOK_R$])
  4094. m4trace:configure.ac:55: -1- m4_pattern_allow([^GNULIB_STRERROR$])
  4095. m4trace:configure.ac:55: -1- m4_pattern_allow([^GNULIB_STRERROR_R$])
  4096. m4trace:configure.ac:55: -1- m4_pattern_allow([^GNULIB_STRSIGNAL$])
  4097. m4trace:configure.ac:55: -1- m4_pattern_allow([^GNULIB_STRVERSCMP$])
  4098. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_MBSLEN$])
  4099. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_MEMCHR$])
  4100. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_DECL_MEMMEM$])
  4101. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_MEMPCPY$])
  4102. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_DECL_MEMRCHR$])
  4103. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_RAWMEMCHR$])
  4104. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_STPCPY$])
  4105. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_STPNCPY$])
  4106. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_STRCHRNUL$])
  4107. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_DECL_STRDUP$])
  4108. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_DECL_STRNDUP$])
  4109. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_DECL_STRNLEN$])
  4110. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_STRPBRK$])
  4111. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_STRSEP$])
  4112. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_STRCASESTR$])
  4113. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_DECL_STRTOK_R$])
  4114. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_DECL_STRERROR_R$])
  4115. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_DECL_STRSIGNAL$])
  4116. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_STRVERSCMP$])
  4117. m4trace:configure.ac:55: -1- m4_pattern_allow([^REPLACE_MEMCHR$])
  4118. m4trace:configure.ac:55: -1- m4_pattern_allow([^REPLACE_MEMMEM$])
  4119. m4trace:configure.ac:55: -1- m4_pattern_allow([^REPLACE_STPNCPY$])
  4120. m4trace:configure.ac:55: -1- m4_pattern_allow([^REPLACE_STRDUP$])
  4121. m4trace:configure.ac:55: -1- m4_pattern_allow([^REPLACE_STRSTR$])
  4122. m4trace:configure.ac:55: -1- m4_pattern_allow([^REPLACE_STRCASESTR$])
  4123. m4trace:configure.ac:55: -1- m4_pattern_allow([^REPLACE_STRCHRNUL$])
  4124. m4trace:configure.ac:55: -1- m4_pattern_allow([^REPLACE_STRERROR$])
  4125. m4trace:configure.ac:55: -1- m4_pattern_allow([^REPLACE_STRERROR_R$])
  4126. m4trace:configure.ac:55: -1- m4_pattern_allow([^REPLACE_STRNCAT$])
  4127. m4trace:configure.ac:55: -1- m4_pattern_allow([^REPLACE_STRNDUP$])
  4128. m4trace:configure.ac:55: -1- m4_pattern_allow([^REPLACE_STRNLEN$])
  4129. m4trace:configure.ac:55: -1- m4_pattern_allow([^REPLACE_STRSIGNAL$])
  4130. m4trace:configure.ac:55: -1- m4_pattern_allow([^REPLACE_STRTOK_R$])
  4131. m4trace:configure.ac:55: -1- m4_pattern_allow([^UNDEFINE_STRTOK_R$])
  4132. m4trace:configure.ac:55: -1- gl_LIBSOURCES([memchr.c])
  4133. m4trace:configure.ac:55: -1- gl_PREREQ_MEMCHR
  4134. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_BP_SYM_H$])
  4135. m4trace:configure.ac:55: -1- gl_STRING_MODULE_INDICATOR([memchr])
  4136. m4trace:configure.ac:55: -1- gl_MODULE_INDICATOR_SET_VARIABLE([memchr])
  4137. m4trace:configure.ac:55: -1- gl_MODULE_INDICATOR_SET_VARIABLE_AUX([GNULIB_[]m4_translit([[memchr]],
  4138. [abcdefghijklmnopqrstuvwxyz./-],
  4139. [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])], [gl_MODULE_INDICATOR_CONDITION])
  4140. m4trace:configure.ac:55: -1- gl_MODULE_INDICATOR_FOR_TESTS([memchr])
  4141. m4trace:configure.ac:55: -1- m4_pattern_allow([^GNULIB_TEST_MEMCHR$])
  4142. m4trace:configure.ac:55: -1- gl_FUNC_MEMMEM
  4143. m4trace:configure.ac:55: -1- gl_FUNC_MEMMEM_SIMPLE
  4144. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_MEMMEM$])
  4145. m4trace:configure.ac:55: -1- AC_CHECK_DECLS_ONCE([memmem])
  4146. m4trace:configure.ac:55: -1- AC_DEFUN([gl_CHECK_DECL_memmem], [
  4147. AC_CHECK_DECLS(m4_defn([gl_DECL_NAME]))
  4148. ])
  4149. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_DECL_MEMMEM$])
  4150. m4trace:configure.ac:55: -1- gl_PREREQ_MEMMEM
  4151. m4trace:configure.ac:55: -1- gl_LIBSOURCES([memmem.c])
  4152. m4trace:configure.ac:55: -1- gl_FUNC_MEMMEM_SIMPLE
  4153. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_MEMMEM$])
  4154. m4trace:configure.ac:55: -1- AC_CHECK_DECLS_ONCE([memmem])
  4155. m4trace:configure.ac:55: -1- AC_DEFUN([gl_CHECK_DECL_memmem], [
  4156. AC_CHECK_DECLS(m4_defn([gl_DECL_NAME]))
  4157. ])
  4158. m4trace:configure.ac:55: -1- gl_PREREQ_MEMMEM
  4159. m4trace:configure.ac:55: -1- gl_LIBSOURCES([memmem.c])
  4160. m4trace:configure.ac:55: -1- gl_STRING_MODULE_INDICATOR([memmem])
  4161. m4trace:configure.ac:55: -1- gl_MODULE_INDICATOR_SET_VARIABLE([memmem])
  4162. m4trace:configure.ac:55: -1- gl_MODULE_INDICATOR_SET_VARIABLE_AUX([GNULIB_[]m4_translit([[memmem]],
  4163. [abcdefghijklmnopqrstuvwxyz./-],
  4164. [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])], [gl_MODULE_INDICATOR_CONDITION])
  4165. m4trace:configure.ac:55: -1- gl_MODULE_INDICATOR_FOR_TESTS([memmem])
  4166. m4trace:configure.ac:55: -1- m4_pattern_allow([^GNULIB_TEST_MEMMEM$])
  4167. m4trace:configure.ac:55: -1- gl_MULTIARCH
  4168. m4trace:configure.ac:55: -1- m4_pattern_allow([^APPLE_UNIVERSAL_BUILD$])
  4169. m4trace:configure.ac:55: -1- gl_SIGACTION
  4170. m4trace:configure.ac:55: -1- gl_SIGNAL_H_DEFAULTS
  4171. m4trace:configure.ac:55: -1- m4_pattern_allow([^GNULIB_SIGNAL_H_SIGPIPE$])
  4172. m4trace:configure.ac:55: -1- m4_pattern_allow([^GNULIB_SIGPROCMASK$])
  4173. m4trace:configure.ac:55: -1- m4_pattern_allow([^GNULIB_SIGACTION$])
  4174. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_POSIX_SIGNALBLOCKING$])
  4175. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_SIGSET_T$])
  4176. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_SIGINFO_T$])
  4177. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_SIGACTION$])
  4178. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_STRUCT_SIGACTION_SA_SIGACTION$])
  4179. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_TYPE_VOLATILE_SIG_ATOMIC_T$])
  4180. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_SIGHANDLER_T$])
  4181. m4trace:configure.ac:55: -1- AC_CHECK_FUNCS_ONCE([sigaction])
  4182. m4trace:configure.ac:55: -1- AC_DEFUN([gl_CHECK_FUNC_sigaction], [
  4183. m4_divert_text([INIT_PREPARE],
  4184. [gl_func_list="$gl_func_list gl_FUNC_NAME"])
  4185. gl_FUNCS_EXPANSION
  4186. AH_TEMPLATE(AS_TR_CPP([HAVE_]m4_defn([gl_FUNC_NAME])),
  4187. [Define to 1 if you have the `]m4_defn([gl_FUNC_NAME])[' function.])
  4188. ])
  4189. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_STRUCT_SIGACTION_SA_SIGACTION$])
  4190. m4trace:configure.ac:55: -1- gl_LIBSOURCES([sigaction.c])
  4191. m4trace:configure.ac:55: -1- gl_PREREQ_SIGACTION
  4192. m4trace:configure.ac:55: -1- AC_C_RESTRICT
  4193. m4trace:configure.ac:55: -1- m4_pattern_allow([^restrict$])
  4194. m4trace:configure.ac:55: -1- m4_pattern_allow([^restrict$])
  4195. m4trace:configure.ac:55: -1- m4_pattern_allow([^uid_t$])
  4196. m4trace:configure.ac:55: -1- m4_pattern_allow([^gid_t$])
  4197. m4trace:configure.ac:55: -1- gl_PREREQ_SIG_HANDLER_H
  4198. m4trace:configure.ac:55: -1- AC_CHECK_FUNCS_ONCE([sigaltstack siginterrupt])
  4199. m4trace:configure.ac:55: -1- AC_DEFUN([gl_CHECK_FUNC_sigaltstack], [
  4200. m4_divert_text([INIT_PREPARE],
  4201. [gl_func_list="$gl_func_list gl_FUNC_NAME"])
  4202. gl_FUNCS_EXPANSION
  4203. AH_TEMPLATE(AS_TR_CPP([HAVE_]m4_defn([gl_FUNC_NAME])),
  4204. [Define to 1 if you have the `]m4_defn([gl_FUNC_NAME])[' function.])
  4205. ])
  4206. m4trace:configure.ac:55: -1- AC_DEFUN([gl_CHECK_FUNC_siginterrupt], [
  4207. m4_divert_text([INIT_PREPARE],
  4208. [gl_func_list="$gl_func_list gl_FUNC_NAME"])
  4209. gl_FUNCS_EXPANSION
  4210. AH_TEMPLATE(AS_TR_CPP([HAVE_]m4_defn([gl_FUNC_NAME])),
  4211. [Define to 1 if you have the `]m4_defn([gl_FUNC_NAME])[' function.])
  4212. ])
  4213. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_SIGINFO_T$])
  4214. m4trace:configure.ac:55: -1- gl_SIGNAL_MODULE_INDICATOR([sigaction])
  4215. m4trace:configure.ac:55: -1- gl_MODULE_INDICATOR_SET_VARIABLE([sigaction])
  4216. m4trace:configure.ac:55: -1- gl_MODULE_INDICATOR_SET_VARIABLE_AUX([GNULIB_[]m4_translit([[sigaction]],
  4217. [abcdefghijklmnopqrstuvwxyz./-],
  4218. [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])], [gl_MODULE_INDICATOR_CONDITION])
  4219. m4trace:configure.ac:55: -1- gl_MODULE_INDICATOR_FOR_TESTS([sigaction])
  4220. m4trace:configure.ac:55: -1- m4_pattern_allow([^GNULIB_TEST_SIGACTION$])
  4221. m4trace:configure.ac:55: -1- gl_SIGNAL_H
  4222. m4trace:configure.ac:55: -1- gl_NEXT_HEADERS([signal.h])
  4223. m4trace:configure.ac:55: -1- gl_NEXT_HEADERS_INTERNAL([signal.h], [assume])
  4224. m4trace:configure.ac:55: -1- gl_INCLUDE_NEXT
  4225. m4trace:configure.ac:55: -1- m4_pattern_allow([^INCLUDE_NEXT$])
  4226. m4trace:configure.ac:55: -1- m4_pattern_allow([^INCLUDE_NEXT_AS_FIRST_DIRECTIVE$])
  4227. m4trace:configure.ac:55: -1- m4_pattern_allow([^PRAGMA_SYSTEM_HEADER$])
  4228. m4trace:configure.ac:55: -1- m4_pattern_allow([^PRAGMA_COLUMNS$])
  4229. m4trace:configure.ac:55: -1- m4_pattern_allow([^NEXT_SIGNAL_H$])
  4230. m4trace:configure.ac:55: -1- m4_pattern_allow([^NEXT_AS_FIRST_DIRECTIVE_SIGNAL_H$])
  4231. m4trace:configure.ac:55: -1- gl_WARN_ON_USE_PREPARE([[#include <signal.h>
  4232. ]], [sigaction sigaddset sigdelset sigemptyset sigfillset sigismember
  4233. sigpending sigprocmask])
  4234. m4trace:configure.ac:55: -1- gl_SIGNALBLOCKING
  4235. m4trace:configure.ac:55: -1- gl_LIBSOURCES([sigprocmask.c])
  4236. m4trace:configure.ac:55: -1- gl_PREREQ_SIGPROCMASK
  4237. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_SIGSET_T$])
  4238. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_SIGSET_T$])
  4239. m4trace:configure.ac:55: -1- gl_SIGNAL_MODULE_INDICATOR([sigprocmask])
  4240. m4trace:configure.ac:55: -1- gl_MODULE_INDICATOR_SET_VARIABLE([sigprocmask])
  4241. m4trace:configure.ac:55: -1- gl_MODULE_INDICATOR_SET_VARIABLE_AUX([GNULIB_[]m4_translit([[sigprocmask]],
  4242. [abcdefghijklmnopqrstuvwxyz./-],
  4243. [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])], [gl_MODULE_INDICATOR_CONDITION])
  4244. m4trace:configure.ac:55: -1- gl_MODULE_INDICATOR_FOR_TESTS([sigprocmask])
  4245. m4trace:configure.ac:55: -1- m4_pattern_allow([^GNULIB_TEST_SIGPROCMASK$])
  4246. m4trace:configure.ac:55: -1- gl_STDDEF_H
  4247. m4trace:configure.ac:55: -1- gl_STDDEF_H_DEFAULTS
  4248. m4trace:configure.ac:55: -1- m4_pattern_allow([^REPLACE_NULL$])
  4249. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_WCHAR_T$])
  4250. m4trace:configure.ac:55: -1- gt_TYPE_WCHAR_T
  4251. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_WCHAR_T$])
  4252. m4trace:configure.ac:55: -1- m4_pattern_allow([^STDDEF_H$])
  4253. m4trace:configure.ac:55: -1- AM_CONDITIONAL([GL_GENERATE_STDDEF_H], [test -n "$STDDEF_H"])
  4254. m4trace:configure.ac:55: -1- m4_pattern_allow([^GL_GENERATE_STDDEF_H_TRUE$])
  4255. m4trace:configure.ac:55: -1- m4_pattern_allow([^GL_GENERATE_STDDEF_H_FALSE$])
  4256. m4trace:configure.ac:55: -1- _AM_SUBST_NOTMAKE([GL_GENERATE_STDDEF_H_TRUE])
  4257. m4trace:configure.ac:55: -1- _AM_SUBST_NOTMAKE([GL_GENERATE_STDDEF_H_FALSE])
  4258. m4trace:configure.ac:55: -1- gl_NEXT_HEADERS([stddef.h])
  4259. m4trace:configure.ac:55: -1- gl_NEXT_HEADERS_INTERNAL([stddef.h], [assume])
  4260. m4trace:configure.ac:55: -1- m4_pattern_allow([^NEXT_STDDEF_H$])
  4261. m4trace:configure.ac:55: -1- m4_pattern_allow([^NEXT_AS_FIRST_DIRECTIVE_STDDEF_H$])
  4262. m4trace:configure.ac:55: -1- gl_STDINT_H
  4263. m4trace:configure.ac:55: -1- AC_TYPE_LONG_LONG_INT
  4264. m4trace:configure.ac:55: -1- AC_TYPE_UNSIGNED_LONG_LONG_INT
  4265. m4trace:configure.ac:55: -1- _AC_TYPE_LONG_LONG_SNIPPET
  4266. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_UNSIGNED_LONG_LONG_INT$])
  4267. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_LONG_LONG_INT$])
  4268. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_LONG_LONG_INT$])
  4269. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_UNSIGNED_LONG_LONG_INT$])
  4270. m4trace:configure.ac:55: -1- AC_CHECK_HEADERS_ONCE([wchar.h])
  4271. m4trace:configure.ac:55: -1- AC_DEFUN([gl_CHECK_HEADER_wchar_h], [
  4272. m4_divert_text([INIT_PREPARE],
  4273. [gl_header_list="$gl_header_list gl_HEADER_NAME"])
  4274. gl_HEADERS_EXPANSION
  4275. AH_TEMPLATE(AS_TR_CPP([HAVE_]m4_defn([gl_HEADER_NAME])),
  4276. [Define to 1 if you have the <]m4_defn([gl_HEADER_NAME])[> header file.])
  4277. ])
  4278. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_WCHAR_H$])
  4279. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_INTTYPES_H$])
  4280. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_SYS_TYPES_H$])
  4281. m4trace:configure.ac:55: -1- gl_CHECK_NEXT_HEADERS([stdint.h])
  4282. m4trace:configure.ac:55: -1- gl_NEXT_HEADERS_INTERNAL([stdint.h], [check])
  4283. m4trace:configure.ac:55: -1- AC_CHECK_HEADERS_ONCE([stdint.h])
  4284. m4trace:configure.ac:55: -1- AC_DEFUN([gl_CHECK_HEADER_stdint_h], [
  4285. m4_divert_text([INIT_PREPARE],
  4286. [gl_header_list="$gl_header_list gl_HEADER_NAME"])
  4287. gl_HEADERS_EXPANSION
  4288. AH_TEMPLATE(AS_TR_CPP([HAVE_]m4_defn([gl_HEADER_NAME])),
  4289. [Define to 1 if you have the <]m4_defn([gl_HEADER_NAME])[> header file.])
  4290. ])
  4291. m4trace:configure.ac:55: -1- m4_pattern_allow([^NEXT_STDINT_H$])
  4292. m4trace:configure.ac:55: -1- m4_pattern_allow([^NEXT_AS_FIRST_DIRECTIVE_STDINT_H$])
  4293. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_STDINT_H$])
  4294. m4trace:configure.ac:55: -1- gl_STDINT_INCLUDES
  4295. m4trace:configure.ac:55: -1- gl_STDINT_INCLUDES
  4296. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_SYS_INTTYPES_H$])
  4297. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_SYS_BITYPES_H$])
  4298. m4trace:configure.ac:55: -1- gl_STDINT_TYPE_PROPERTIES
  4299. m4trace:configure.ac:55: -1- gl_STDINT_BITSIZEOF([ptrdiff_t size_t], [gl_STDINT_INCLUDES])
  4300. m4trace:configure.ac:55: -1- AC_COMPUTE_INT([result], [sizeof ($gltype) * CHAR_BIT], [gl_STDINT_INCLUDES
  4301. #include <limits.h>], [result=unknown])
  4302. m4trace:configure.ac:55: -1- gl_STDINT_INCLUDES
  4303. m4trace:configure.ac:55: -1- m4_pattern_allow([^BITSIZEOF_PTRDIFF_T$])
  4304. m4trace:configure.ac:55: -1- m4_pattern_allow([^BITSIZEOF_SIZE_T$])
  4305. m4trace:configure.ac:55: -1- gl_STDINT_BITSIZEOF([sig_atomic_t wchar_t wint_t], [gl_STDINT_INCLUDES])
  4306. m4trace:configure.ac:55: -1- AC_COMPUTE_INT([result], [sizeof ($gltype) * CHAR_BIT], [gl_STDINT_INCLUDES
  4307. #include <limits.h>], [result=unknown])
  4308. m4trace:configure.ac:55: -1- gl_STDINT_INCLUDES
  4309. m4trace:configure.ac:55: -1- m4_pattern_allow([^BITSIZEOF_SIG_ATOMIC_T$])
  4310. m4trace:configure.ac:55: -1- m4_pattern_allow([^BITSIZEOF_WCHAR_T$])
  4311. m4trace:configure.ac:55: -1- m4_pattern_allow([^BITSIZEOF_WINT_T$])
  4312. m4trace:configure.ac:55: -1- gl_CHECK_TYPES_SIGNED([sig_atomic_t wchar_t wint_t], [gl_STDINT_INCLUDES])
  4313. m4trace:configure.ac:55: -1- gl_STDINT_INCLUDES
  4314. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_SIGNED_SIG_ATOMIC_T$])
  4315. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_SIGNED_WCHAR_T$])
  4316. m4trace:configure.ac:55: -1- m4_pattern_allow([^HAVE_SIGNED_WINT_T$])
  4317. m4trace:configure.ac:55: -1- gl_INTEGER_TYPE_SUFFIX([ptrdiff_t size_t], [gl_STDINT_INCLUDES])
  4318. m4trace:configure.ac:55: -1- gl_STDINT_INCLUDES
  4319. m4trace:configure.ac:55: -1- m4_pattern_allow([^PTRDIFF_T_SUFFIX$])
  4320. m4trace:configure.ac:55: -1- m4_pattern_allow([^SIZE_T_SUFFIX$])
  4321. m4trace:configure.ac:55: -1- gl_INTEGER_TYPE_SUFFIX([sig_atomic_t wchar_t wint_t], [gl_STDINT_INCLUDES])
  4322. m4trace:configure.ac:55: -1- gl_STDINT_INCLUDES
  4323. m4trace:configure.ac:55: -1- m4_pattern_allow([^SIG_ATOMIC_T_SUFFIX$])
  4324. m4trace:configure.ac:55: -1- m4_pattern_allow([^WCHAR_T_SUFFIX$])
  4325. m4trace:configure.ac:55: -1- m4_pattern_allow([^WINT_T_SUFFIX$])
  4326. m4trace:configure.ac:55: -1- m4_pattern_allow([^STDINT_H$])
  4327. m4trace:configure.ac:55: -1- AM_CONDITIONAL([GL_GENERATE_STDINT_H], [test -n "$STDINT_H"])
  4328. m4trace:configure.ac:55: -1- m4_pattern_allow([^GL_GENERATE_STDINT_H_TRUE$])
  4329. m4trace:configure.ac:55: -1- m4_pattern_allow([^GL_GENERATE_STDINT_H_FALSE$])
  4330. m4trace:configure.ac:55: -1- _AM_SUBST_NOTMAKE([GL_GENERATE_STDINT_H_TRUE])
  4331. m4trace:configure.ac:55: -1- _AM_SUBST_NOTMAKE([GL_GENERATE_STDINT_H_FALSE])
  4332. m4trace:configure.ac:55: -1- gl_HEADER_STRING_H
  4333. m4trace:configure.ac:55: -1- gl_HEADER_STRING_H_BODY
  4334. m4trace:configure.ac:55: -1- gl_NEXT_HEADERS([string.h])
  4335. m4trace:configure.ac:55: -1- gl_NEXT_HEADERS_INTERNAL([string.h], [assume])
  4336. m4trace:configure.ac:55: -1- m4_pattern_allow([^NEXT_STRING_H$])
  4337. m4trace:configure.ac:55: -1- m4_pattern_allow([^NEXT_AS_FIRST_DIRECTIVE_STRING_H$])
  4338. m4trace:configure.ac:55: -1- gl_WARN_ON_USE_PREPARE([[#include <string.h>
  4339. ]], [memmem mempcpy memrchr rawmemchr stpcpy stpncpy strchrnul strdup
  4340. strncat strndup strnlen strpbrk strsep strcasestr strtok_r strerror_r
  4341. strsignal strverscmp])
  4342. m4trace:configure.ac:55: -1- gl_COMMON
  4343. m4trace:configure.ac:55: -1- m4_pattern_allow([^gltests_WITNESS$])
  4344. m4trace:configure.ac:55: -1- m4_pattern_allow([^LIBGNU_LIBDEPS$])
  4345. m4trace:configure.ac:55: -1- m4_pattern_allow([^LIBGNU_LTLIBDEPS$])
  4346. m4trace:configure.ac:58: -1- m4_pattern_allow([^STDC_HEADERS$])
  4347. m4trace:configure.ac:59: -1- m4_pattern_allow([^HAVE_SYSLOG_H$])
  4348. m4trace:configure.ac:61: -1- m4_pattern_allow([^size_t$])
  4349. m4trace:configure.ac:61: -1- m4_pattern_allow([^HAVE_ALLOCA_H$])
  4350. m4trace:configure.ac:61: -1- m4_pattern_allow([^HAVE_ALLOCA$])
  4351. m4trace:configure.ac:61: -1- m4_pattern_allow([^ALLOCA$])
  4352. m4trace:configure.ac:61: -1- m4_pattern_allow([^C_ALLOCA$])
  4353. m4trace:configure.ac:61: -1- m4_pattern_allow([^CRAY_STACKSEG_END$])
  4354. m4trace:configure.ac:61: -1- m4_pattern_allow([^STACK_DIRECTION$])
  4355. m4trace:configure.ac:94: -1- m4_pattern_allow([^_WIN32_WINNT$])
  4356. m4trace:configure.ac:112: -1- m4_pattern_allow([^HAVE_LIBWINPTHREAD$])
  4357. m4trace:configure.ac:117: -1- m4_pattern_allow([^HAVE_LIBPTHREAD$])
  4358. m4trace:configure.ac:124: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
  4359. You should run autoupdate.], [/mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
  4360. /mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:1463: AC_ARG_ENABLE is expanded from...
  4361. configure.ac:124: the top level])
  4362. m4trace:configure.ac:129: -1- m4_pattern_allow([^USE_SCRYPT$])
  4363. m4trace:configure.ac:131: -1- AM_CONDITIONAL([HAS_SCRYPT], [test x$scrypt = xyes])
  4364. m4trace:configure.ac:131: -1- m4_pattern_allow([^HAS_SCRYPT_TRUE$])
  4365. m4trace:configure.ac:131: -1- m4_pattern_allow([^HAS_SCRYPT_FALSE$])
  4366. m4trace:configure.ac:131: -1- _AM_SUBST_NOTMAKE([HAS_SCRYPT_TRUE])
  4367. m4trace:configure.ac:131: -1- _AM_SUBST_NOTMAKE([HAS_SCRYPT_FALSE])
  4368. m4trace:configure.ac:135: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
  4369. You should run autoupdate.], [/mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
  4370. /mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:1463: AC_ARG_ENABLE is expanded from...
  4371. configure.ac:135: the top level])
  4372. m4trace:configure.ac:140: -1- m4_pattern_allow([^USE_ANT_S1$])
  4373. m4trace:configure.ac:142: -1- AM_CONDITIONAL([HAS_ANT_S1], [test x$ants1 = xyes])
  4374. m4trace:configure.ac:142: -1- m4_pattern_allow([^HAS_ANT_S1_TRUE$])
  4375. m4trace:configure.ac:142: -1- m4_pattern_allow([^HAS_ANT_S1_FALSE$])
  4376. m4trace:configure.ac:142: -1- _AM_SUBST_NOTMAKE([HAS_ANT_S1_TRUE])
  4377. m4trace:configure.ac:142: -1- _AM_SUBST_NOTMAKE([HAS_ANT_S1_FALSE])
  4378. m4trace:configure.ac:146: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
  4379. You should run autoupdate.], [/mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
  4380. /mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:1463: AC_ARG_ENABLE is expanded from...
  4381. configure.ac:146: the top level])
  4382. m4trace:configure.ac:151: -1- m4_pattern_allow([^USE_ANT_S2$])
  4383. m4trace:configure.ac:153: -1- AM_CONDITIONAL([HAS_ANT_S2], [test x$ants2 = xyes])
  4384. m4trace:configure.ac:153: -1- m4_pattern_allow([^HAS_ANT_S2_TRUE$])
  4385. m4trace:configure.ac:153: -1- m4_pattern_allow([^HAS_ANT_S2_FALSE$])
  4386. m4trace:configure.ac:153: -1- _AM_SUBST_NOTMAKE([HAS_ANT_S2_TRUE])
  4387. m4trace:configure.ac:153: -1- _AM_SUBST_NOTMAKE([HAS_ANT_S2_FALSE])
  4388. m4trace:configure.ac:161: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
  4389. You should run autoupdate.], [/mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
  4390. /mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:1463: AC_ARG_ENABLE is expanded from...
  4391. configure.ac:161: the top level])
  4392. m4trace:configure.ac:166: -1- m4_pattern_allow([^USE_AVALON$])
  4393. m4trace:configure.ac:168: -1- AM_CONDITIONAL([HAS_AVALON], [test x$avalon = xyes])
  4394. m4trace:configure.ac:168: -1- m4_pattern_allow([^HAS_AVALON_TRUE$])
  4395. m4trace:configure.ac:168: -1- m4_pattern_allow([^HAS_AVALON_FALSE$])
  4396. m4trace:configure.ac:168: -1- _AM_SUBST_NOTMAKE([HAS_AVALON_TRUE])
  4397. m4trace:configure.ac:168: -1- _AM_SUBST_NOTMAKE([HAS_AVALON_FALSE])
  4398. m4trace:configure.ac:172: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
  4399. You should run autoupdate.], [/mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
  4400. /mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:1463: AC_ARG_ENABLE is expanded from...
  4401. configure.ac:172: the top level])
  4402. m4trace:configure.ac:177: -1- m4_pattern_allow([^USE_BAB$])
  4403. m4trace:configure.ac:179: -1- AM_CONDITIONAL([HAS_BAB], [test x$bab = xyes])
  4404. m4trace:configure.ac:179: -1- m4_pattern_allow([^HAS_BAB_TRUE$])
  4405. m4trace:configure.ac:179: -1- m4_pattern_allow([^HAS_BAB_FALSE$])
  4406. m4trace:configure.ac:179: -1- _AM_SUBST_NOTMAKE([HAS_BAB_TRUE])
  4407. m4trace:configure.ac:179: -1- _AM_SUBST_NOTMAKE([HAS_BAB_FALSE])
  4408. m4trace:configure.ac:183: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
  4409. You should run autoupdate.], [/mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
  4410. /mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:1463: AC_ARG_ENABLE is expanded from...
  4411. configure.ac:183: the top level])
  4412. m4trace:configure.ac:188: -1- m4_pattern_allow([^USE_BFLSC$])
  4413. m4trace:configure.ac:190: -1- AM_CONDITIONAL([HAS_BFLSC], [test x$bflsc = xyes])
  4414. m4trace:configure.ac:190: -1- m4_pattern_allow([^HAS_BFLSC_TRUE$])
  4415. m4trace:configure.ac:190: -1- m4_pattern_allow([^HAS_BFLSC_FALSE$])
  4416. m4trace:configure.ac:190: -1- _AM_SUBST_NOTMAKE([HAS_BFLSC_TRUE])
  4417. m4trace:configure.ac:190: -1- _AM_SUBST_NOTMAKE([HAS_BFLSC_FALSE])
  4418. m4trace:configure.ac:194: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
  4419. You should run autoupdate.], [/mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
  4420. /mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:1463: AC_ARG_ENABLE is expanded from...
  4421. configure.ac:194: the top level])
  4422. m4trace:configure.ac:199: -1- m4_pattern_allow([^USE_BITFORCE$])
  4423. m4trace:configure.ac:201: -1- AM_CONDITIONAL([HAS_BITFORCE], [test x$bitforce = xyes])
  4424. m4trace:configure.ac:201: -1- m4_pattern_allow([^HAS_BITFORCE_TRUE$])
  4425. m4trace:configure.ac:201: -1- m4_pattern_allow([^HAS_BITFORCE_FALSE$])
  4426. m4trace:configure.ac:201: -1- _AM_SUBST_NOTMAKE([HAS_BITFORCE_TRUE])
  4427. m4trace:configure.ac:201: -1- _AM_SUBST_NOTMAKE([HAS_BITFORCE_FALSE])
  4428. m4trace:configure.ac:205: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
  4429. You should run autoupdate.], [/mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
  4430. /mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:1463: AC_ARG_ENABLE is expanded from...
  4431. configure.ac:205: the top level])
  4432. m4trace:configure.ac:210: -1- m4_pattern_allow([^USE_BITFURY$])
  4433. m4trace:configure.ac:212: -1- AM_CONDITIONAL([HAS_BITFURY], [test x$bitfury = xyes])
  4434. m4trace:configure.ac:212: -1- m4_pattern_allow([^HAS_BITFURY_TRUE$])
  4435. m4trace:configure.ac:212: -1- m4_pattern_allow([^HAS_BITFURY_FALSE$])
  4436. m4trace:configure.ac:212: -1- _AM_SUBST_NOTMAKE([HAS_BITFURY_TRUE])
  4437. m4trace:configure.ac:212: -1- _AM_SUBST_NOTMAKE([HAS_BITFURY_FALSE])
  4438. m4trace:configure.ac:216: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
  4439. You should run autoupdate.], [/mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
  4440. /mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:1463: AC_ARG_ENABLE is expanded from...
  4441. configure.ac:216: the top level])
  4442. m4trace:configure.ac:221: -1- m4_pattern_allow([^USE_COINTERRA$])
  4443. m4trace:configure.ac:223: -1- AM_CONDITIONAL([HAS_COINTERRA], [test x$cointerra = xyes])
  4444. m4trace:configure.ac:223: -1- m4_pattern_allow([^HAS_COINTERRA_TRUE$])
  4445. m4trace:configure.ac:223: -1- m4_pattern_allow([^HAS_COINTERRA_FALSE$])
  4446. m4trace:configure.ac:223: -1- _AM_SUBST_NOTMAKE([HAS_COINTERRA_TRUE])
  4447. m4trace:configure.ac:223: -1- _AM_SUBST_NOTMAKE([HAS_COINTERRA_FALSE])
  4448. m4trace:configure.ac:227: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
  4449. You should run autoupdate.], [/mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
  4450. /mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:1463: AC_ARG_ENABLE is expanded from...
  4451. configure.ac:227: the top level])
  4452. m4trace:configure.ac:232: -1- m4_pattern_allow([^USE_BITMINE_A1$])
  4453. m4trace:configure.ac:234: -1- AM_CONDITIONAL([HAS_BITMINE_A1], [test x$bitmine_A1 = xyes])
  4454. m4trace:configure.ac:234: -1- m4_pattern_allow([^HAS_BITMINE_A1_TRUE$])
  4455. m4trace:configure.ac:234: -1- m4_pattern_allow([^HAS_BITMINE_A1_FALSE$])
  4456. m4trace:configure.ac:234: -1- _AM_SUBST_NOTMAKE([HAS_BITMINE_A1_TRUE])
  4457. m4trace:configure.ac:234: -1- _AM_SUBST_NOTMAKE([HAS_BITMINE_A1_FALSE])
  4458. m4trace:configure.ac:238: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
  4459. You should run autoupdate.], [/mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
  4460. /mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:1463: AC_ARG_ENABLE is expanded from...
  4461. configure.ac:238: the top level])
  4462. m4trace:configure.ac:243: -1- m4_pattern_allow([^USE_DRILLBIT$])
  4463. m4trace:configure.ac:245: -1- AM_CONDITIONAL([HAS_DRILLBIT], [test x$drillbit = xyes])
  4464. m4trace:configure.ac:245: -1- m4_pattern_allow([^HAS_DRILLBIT_TRUE$])
  4465. m4trace:configure.ac:245: -1- m4_pattern_allow([^HAS_DRILLBIT_FALSE$])
  4466. m4trace:configure.ac:245: -1- _AM_SUBST_NOTMAKE([HAS_DRILLBIT_TRUE])
  4467. m4trace:configure.ac:245: -1- _AM_SUBST_NOTMAKE([HAS_DRILLBIT_FALSE])
  4468. m4trace:configure.ac:249: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
  4469. You should run autoupdate.], [/mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
  4470. /mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:1463: AC_ARG_ENABLE is expanded from...
  4471. configure.ac:249: the top level])
  4472. m4trace:configure.ac:254: -1- m4_pattern_allow([^USE_HASHFAST$])
  4473. m4trace:configure.ac:256: -1- AM_CONDITIONAL([HAS_HASHFAST], [test x$hashfast = xyes])
  4474. m4trace:configure.ac:256: -1- m4_pattern_allow([^HAS_HASHFAST_TRUE$])
  4475. m4trace:configure.ac:256: -1- m4_pattern_allow([^HAS_HASHFAST_FALSE$])
  4476. m4trace:configure.ac:256: -1- _AM_SUBST_NOTMAKE([HAS_HASHFAST_TRUE])
  4477. m4trace:configure.ac:256: -1- _AM_SUBST_NOTMAKE([HAS_HASHFAST_FALSE])
  4478. m4trace:configure.ac:260: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
  4479. You should run autoupdate.], [/mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
  4480. /mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:1463: AC_ARG_ENABLE is expanded from...
  4481. configure.ac:260: the top level])
  4482. m4trace:configure.ac:265: -1- m4_pattern_allow([^USE_ICARUS$])
  4483. m4trace:configure.ac:267: -1- AM_CONDITIONAL([HAS_ICARUS], [test x$icarus = xyes])
  4484. m4trace:configure.ac:267: -1- m4_pattern_allow([^HAS_ICARUS_TRUE$])
  4485. m4trace:configure.ac:267: -1- m4_pattern_allow([^HAS_ICARUS_FALSE$])
  4486. m4trace:configure.ac:267: -1- _AM_SUBST_NOTMAKE([HAS_ICARUS_TRUE])
  4487. m4trace:configure.ac:267: -1- _AM_SUBST_NOTMAKE([HAS_ICARUS_FALSE])
  4488. m4trace:configure.ac:271: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
  4489. You should run autoupdate.], [/mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
  4490. /mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:1463: AC_ARG_ENABLE is expanded from...
  4491. configure.ac:271: the top level])
  4492. m4trace:configure.ac:276: -1- m4_pattern_allow([^USE_KLONDIKE$])
  4493. m4trace:configure.ac:278: -1- AM_CONDITIONAL([HAS_KLONDIKE], [test x$klondike = xyes])
  4494. m4trace:configure.ac:278: -1- m4_pattern_allow([^HAS_KLONDIKE_TRUE$])
  4495. m4trace:configure.ac:278: -1- m4_pattern_allow([^HAS_KLONDIKE_FALSE$])
  4496. m4trace:configure.ac:278: -1- _AM_SUBST_NOTMAKE([HAS_KLONDIKE_TRUE])
  4497. m4trace:configure.ac:278: -1- _AM_SUBST_NOTMAKE([HAS_KLONDIKE_FALSE])
  4498. m4trace:configure.ac:282: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
  4499. You should run autoupdate.], [/mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
  4500. /mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:1463: AC_ARG_ENABLE is expanded from...
  4501. configure.ac:282: the top level])
  4502. m4trace:configure.ac:287: -1- m4_pattern_allow([^USE_KNC$])
  4503. m4trace:configure.ac:289: -1- AM_CONDITIONAL([HAS_KNC], [test x$knc = xyes])
  4504. m4trace:configure.ac:289: -1- m4_pattern_allow([^HAS_KNC_TRUE$])
  4505. m4trace:configure.ac:289: -1- m4_pattern_allow([^HAS_KNC_FALSE$])
  4506. m4trace:configure.ac:289: -1- _AM_SUBST_NOTMAKE([HAS_KNC_TRUE])
  4507. m4trace:configure.ac:289: -1- _AM_SUBST_NOTMAKE([HAS_KNC_FALSE])
  4508. m4trace:configure.ac:293: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
  4509. You should run autoupdate.], [/mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
  4510. /mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:1463: AC_ARG_ENABLE is expanded from...
  4511. configure.ac:293: the top level])
  4512. m4trace:configure.ac:298: -1- m4_pattern_allow([^USE_FPGA_SERIAL$])
  4513. m4trace:configure.ac:299: -1- m4_pattern_allow([^USE_AVALON2$])
  4514. m4trace:configure.ac:301: -1- AM_CONDITIONAL([HAS_AVALON2], [test x$avalon2 = xyes])
  4515. m4trace:configure.ac:301: -1- m4_pattern_allow([^HAS_AVALON2_TRUE$])
  4516. m4trace:configure.ac:301: -1- m4_pattern_allow([^HAS_AVALON2_FALSE$])
  4517. m4trace:configure.ac:301: -1- _AM_SUBST_NOTMAKE([HAS_AVALON2_TRUE])
  4518. m4trace:configure.ac:301: -1- _AM_SUBST_NOTMAKE([HAS_AVALON2_FALSE])
  4519. m4trace:configure.ac:306: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
  4520. You should run autoupdate.], [/mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
  4521. /mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:1463: AC_ARG_ENABLE is expanded from...
  4522. configure.ac:306: the top level])
  4523. m4trace:configure.ac:311: -1- m4_pattern_allow([^USE_MINION$])
  4524. m4trace:configure.ac:313: -1- AM_CONDITIONAL([HAS_MINION], [test x$minion = xyes])
  4525. m4trace:configure.ac:313: -1- m4_pattern_allow([^HAS_MINION_TRUE$])
  4526. m4trace:configure.ac:313: -1- m4_pattern_allow([^HAS_MINION_FALSE$])
  4527. m4trace:configure.ac:313: -1- _AM_SUBST_NOTMAKE([HAS_MINION_TRUE])
  4528. m4trace:configure.ac:313: -1- _AM_SUBST_NOTMAKE([HAS_MINION_FALSE])
  4529. m4trace:configure.ac:317: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
  4530. You should run autoupdate.], [/mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
  4531. /mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:1463: AC_ARG_ENABLE is expanded from...
  4532. configure.ac:317: the top level])
  4533. m4trace:configure.ac:322: -1- m4_pattern_allow([^USE_MODMINER$])
  4534. m4trace:configure.ac:324: -1- AM_CONDITIONAL([HAS_MODMINER], [test x$modminer = xyes])
  4535. m4trace:configure.ac:324: -1- m4_pattern_allow([^HAS_MODMINER_TRUE$])
  4536. m4trace:configure.ac:324: -1- m4_pattern_allow([^HAS_MODMINER_FALSE$])
  4537. m4trace:configure.ac:324: -1- _AM_SUBST_NOTMAKE([HAS_MODMINER_TRUE])
  4538. m4trace:configure.ac:324: -1- _AM_SUBST_NOTMAKE([HAS_MODMINER_FALSE])
  4539. m4trace:configure.ac:328: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
  4540. You should run autoupdate.], [/mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
  4541. /mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:1463: AC_ARG_ENABLE is expanded from...
  4542. configure.ac:328: the top level])
  4543. m4trace:configure.ac:333: -1- m4_pattern_allow([^USE_SPONDOOLIES$])
  4544. m4trace:configure.ac:335: -1- AM_CONDITIONAL([HAS_SPONDOOLIES], [test x$spondoolies = xyes])
  4545. m4trace:configure.ac:335: -1- m4_pattern_allow([^HAS_SPONDOOLIES_TRUE$])
  4546. m4trace:configure.ac:335: -1- m4_pattern_allow([^HAS_SPONDOOLIES_FALSE$])
  4547. m4trace:configure.ac:335: -1- _AM_SUBST_NOTMAKE([HAS_SPONDOOLIES_TRUE])
  4548. m4trace:configure.ac:335: -1- _AM_SUBST_NOTMAKE([HAS_SPONDOOLIES_FALSE])
  4549. m4trace:configure.ac:339: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
  4550. You should run autoupdate.], [/mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
  4551. /mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:1463: AC_ARG_ENABLE is expanded from...
  4552. configure.ac:339: the top level])
  4553. m4trace:configure.ac:344: -1- m4_pattern_allow([^USE_FPGA_SERIAL$])
  4554. m4trace:configure.ac:345: -1- m4_pattern_allow([^USE_GRIDSEED$])
  4555. m4trace:configure.ac:347: -1- AM_CONDITIONAL([HAS_GRIDSEED], [test x$gridseed = xyes])
  4556. m4trace:configure.ac:347: -1- m4_pattern_allow([^HAS_GRIDSEED_TRUE$])
  4557. m4trace:configure.ac:347: -1- m4_pattern_allow([^HAS_GRIDSEED_FALSE$])
  4558. m4trace:configure.ac:347: -1- _AM_SUBST_NOTMAKE([HAS_GRIDSEED_TRUE])
  4559. m4trace:configure.ac:347: -1- _AM_SUBST_NOTMAKE([HAS_GRIDSEED_FALSE])
  4560. m4trace:configure.ac:351: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
  4561. You should run autoupdate.], [/mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
  4562. /mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:1463: AC_ARG_ENABLE is expanded from...
  4563. configure.ac:351: the top level])
  4564. m4trace:configure.ac:356: -1- m4_pattern_allow([^USE_FPGA_SERIAL$])
  4565. m4trace:configure.ac:357: -1- m4_pattern_allow([^USE_ZEUS$])
  4566. m4trace:configure.ac:359: -1- AM_CONDITIONAL([HAS_ZEUS], [test x$zeus = xyes])
  4567. m4trace:configure.ac:359: -1- m4_pattern_allow([^HAS_ZEUS_TRUE$])
  4568. m4trace:configure.ac:359: -1- m4_pattern_allow([^HAS_ZEUS_FALSE$])
  4569. m4trace:configure.ac:359: -1- _AM_SUBST_NOTMAKE([HAS_ZEUS_TRUE])
  4570. m4trace:configure.ac:359: -1- _AM_SUBST_NOTMAKE([HAS_ZEUS_FALSE])
  4571. m4trace:configure.ac:363: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
  4572. You should run autoupdate.], [/mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
  4573. /mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:1463: AC_ARG_ENABLE is expanded from...
  4574. configure.ac:363: the top level])
  4575. m4trace:configure.ac:368: -1- m4_pattern_allow([^USE_FPGA_SERIAL$])
  4576. m4trace:configure.ac:369: -1- m4_pattern_allow([^USE_LKETC$])
  4577. m4trace:configure.ac:371: -1- AM_CONDITIONAL([HAS_LKETC], [test x$lketc = xyes])
  4578. m4trace:configure.ac:371: -1- m4_pattern_allow([^HAS_LKETC_TRUE$])
  4579. m4trace:configure.ac:371: -1- m4_pattern_allow([^HAS_LKETC_FALSE$])
  4580. m4trace:configure.ac:371: -1- _AM_SUBST_NOTMAKE([HAS_LKETC_TRUE])
  4581. m4trace:configure.ac:371: -1- _AM_SUBST_NOTMAKE([HAS_LKETC_FALSE])
  4582. m4trace:configure.ac:375: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
  4583. You should run autoupdate.], [/mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
  4584. /mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:1482: AC_ARG_WITH is expanded from...
  4585. configure.ac:375: the top level])
  4586. m4trace:configure.ac:382: -1- m4_pattern_allow([^HAVE_CURSES$])
  4587. m4trace:configure.ac:415: -1- AM_CONDITIONAL([NEED_FPGAUTILS], [test x$avalon2$modminer$gridseed$zeus$lketc != xnonononono])
  4588. m4trace:configure.ac:415: -1- m4_pattern_allow([^NEED_FPGAUTILS_TRUE$])
  4589. m4trace:configure.ac:415: -1- m4_pattern_allow([^NEED_FPGAUTILS_FALSE$])
  4590. m4trace:configure.ac:415: -1- _AM_SUBST_NOTMAKE([NEED_FPGAUTILS_TRUE])
  4591. m4trace:configure.ac:415: -1- _AM_SUBST_NOTMAKE([NEED_FPGAUTILS_FALSE])
  4592. m4trace:configure.ac:416: -1- AM_CONDITIONAL([WANT_USBUTILS], [test x$want_usbutils != xfalse])
  4593. m4trace:configure.ac:416: -1- m4_pattern_allow([^WANT_USBUTILS_TRUE$])
  4594. m4trace:configure.ac:416: -1- m4_pattern_allow([^WANT_USBUTILS_FALSE$])
  4595. m4trace:configure.ac:416: -1- _AM_SUBST_NOTMAKE([WANT_USBUTILS_TRUE])
  4596. m4trace:configure.ac:416: -1- _AM_SUBST_NOTMAKE([WANT_USBUTILS_FALSE])
  4597. m4trace:configure.ac:417: -1- AM_CONDITIONAL([WANT_LIBBITFURY], [test x$want_libbitfury != xfalse])
  4598. m4trace:configure.ac:417: -1- m4_pattern_allow([^WANT_LIBBITFURY_TRUE$])
  4599. m4trace:configure.ac:417: -1- m4_pattern_allow([^WANT_LIBBITFURY_FALSE$])
  4600. m4trace:configure.ac:417: -1- _AM_SUBST_NOTMAKE([WANT_LIBBITFURY_TRUE])
  4601. m4trace:configure.ac:417: -1- _AM_SUBST_NOTMAKE([WANT_LIBBITFURY_FALSE])
  4602. m4trace:configure.ac:418: -1- AM_CONDITIONAL([HAVE_CURSES], [test x$curses = xyes])
  4603. m4trace:configure.ac:418: -1- m4_pattern_allow([^HAVE_CURSES_TRUE$])
  4604. m4trace:configure.ac:418: -1- m4_pattern_allow([^HAVE_CURSES_FALSE$])
  4605. m4trace:configure.ac:418: -1- _AM_SUBST_NOTMAKE([HAVE_CURSES_TRUE])
  4606. m4trace:configure.ac:418: -1- _AM_SUBST_NOTMAKE([HAVE_CURSES_FALSE])
  4607. m4trace:configure.ac:419: -1- AM_CONDITIONAL([HAVE_WINDOWS], [test x$have_win32 = xtrue])
  4608. m4trace:configure.ac:419: -1- m4_pattern_allow([^HAVE_WINDOWS_TRUE$])
  4609. m4trace:configure.ac:419: -1- m4_pattern_allow([^HAVE_WINDOWS_FALSE$])
  4610. m4trace:configure.ac:419: -1- _AM_SUBST_NOTMAKE([HAVE_WINDOWS_TRUE])
  4611. m4trace:configure.ac:419: -1- _AM_SUBST_NOTMAKE([HAVE_WINDOWS_FALSE])
  4612. m4trace:configure.ac:420: -1- AM_CONDITIONAL([HAVE_x86_64], [test x$have_x86_64 = xtrue])
  4613. m4trace:configure.ac:420: -1- m4_pattern_allow([^HAVE_x86_64_TRUE$])
  4614. m4trace:configure.ac:420: -1- m4_pattern_allow([^HAVE_x86_64_FALSE$])
  4615. m4trace:configure.ac:420: -1- _AM_SUBST_NOTMAKE([HAVE_x86_64_TRUE])
  4616. m4trace:configure.ac:420: -1- _AM_SUBST_NOTMAKE([HAVE_x86_64_FALSE])
  4617. m4trace:configure.ac:424: -1- m4_pattern_allow([^USE_USBUTILS$])
  4618. m4trace:configure.ac:425: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
  4619. You should run autoupdate.], [/mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
  4620. /mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:1482: AC_ARG_WITH is expanded from...
  4621. configure.ac:425: the top level])
  4622. m4trace:configure.ac:435: -1- m4_pattern_allow([^HAVE_LIBUSB$])
  4623. m4trace:configure.ac:442: -1- m4_pattern_allow([^subdirs$])
  4624. m4trace:configure.ac:458: -1- m4_pattern_allow([^HAVE_LIBUDEV$])
  4625. m4trace:configure.ac:465: -1- AM_CONDITIONAL([WANT_STATIC_LIBUSB], [test x$dlibusb = xno])
  4626. m4trace:configure.ac:465: -1- m4_pattern_allow([^WANT_STATIC_LIBUSB_TRUE$])
  4627. m4trace:configure.ac:465: -1- m4_pattern_allow([^WANT_STATIC_LIBUSB_FALSE$])
  4628. m4trace:configure.ac:465: -1- _AM_SUBST_NOTMAKE([WANT_STATIC_LIBUSB_TRUE])
  4629. m4trace:configure.ac:465: -1- _AM_SUBST_NOTMAKE([WANT_STATIC_LIBUSB_FALSE])
  4630. m4trace:configure.ac:467: -1- m4_pattern_allow([^subdirs$])
  4631. m4trace:configure.ac:482: -1- m4_pattern_allow([^LIBUSB_LIBS$])
  4632. m4trace:configure.ac:483: -1- m4_pattern_allow([^LIBUSB_CFLAGS$])
  4633. m4trace:configure.ac:485: -1- m4_pattern_allow([^LIBUDEV_LIBS$])
  4634. m4trace:configure.ac:487: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
  4635. You should run autoupdate.], [/mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
  4636. /mingw/src/autoconf/26/autoconf2.5-2.68-1/src/autoconf-2.68/lib/autoconf/general.m4:1463: AC_ARG_ENABLE is expanded from...
  4637. configure.ac:487: the top level])
  4638. m4trace:configure.ac:498: -1- m4_pattern_allow([^CURL_HAS_KEEPALIVE$])
  4639. m4trace:configure.ac:500: -1- m4_pattern_allow([^HAVE_LIBCURL$])
  4640. m4trace:configure.ac:504: -1- m4_pattern_allow([^LIBCURL_LIBS$])
  4641. m4trace:configure.ac:512: -2- m4_pattern_allow([^EXECV_2ND_ARG_TYPE$])
  4642. m4trace:configure.ac:513: -2- m4_pattern_allow([^EXECV_2ND_ARG_TYPE$])
  4643. m4trace:configure.ac:520: -2- m4_pattern_allow([^HAVE_ATTRIBUTE_COLD$])
  4644. m4trace:configure.ac:523: -2- m4_pattern_allow([^HAVE_ATTRIBUTE_CONST$])
  4645. m4trace:configure.ac:526: -2- m4_pattern_allow([^HAVE_ATTRIBUTE_NORETURN$])
  4646. m4trace:configure.ac:529: -2- m4_pattern_allow([^HAVE_ATTRIBUTE_PRINTF$])
  4647. m4trace:configure.ac:532: -2- m4_pattern_allow([^HAVE_ATTRIBUTE_UNUSED$])
  4648. m4trace:configure.ac:535: -2- m4_pattern_allow([^HAVE_ATTRIBUTE_USED$])
  4649. m4trace:configure.ac:538: -2- m4_pattern_allow([^HAVE_BUILTIN_CONSTANT_P$])
  4650. m4trace:configure.ac:541: -2- m4_pattern_allow([^HAVE_BUILTIN_TYPES_COMPATIBLE_P$])
  4651. m4trace:configure.ac:544: -2- m4_pattern_allow([^HAVE_WARN_UNUSED_RESULT$])
  4652. m4trace:configure.ac:551: -1- m4_pattern_allow([^CGMINER_PREFIX$])
  4653. m4trace:configure.ac:553: -1- m4_pattern_allow([^JANSSON_LIBS$])
  4654. m4trace:configure.ac:554: -1- m4_pattern_allow([^PTHREAD_FLAGS$])
  4655. m4trace:configure.ac:555: -1- m4_pattern_allow([^DLOPEN_FLAGS$])
  4656. m4trace:configure.ac:556: -1- m4_pattern_allow([^PTHREAD_LIBS$])
  4657. m4trace:configure.ac:557: -1- m4_pattern_allow([^NCURSES_LIBS$])
  4658. m4trace:configure.ac:558: -1- m4_pattern_allow([^PDCURSES_LIBS$])
  4659. m4trace:configure.ac:559: -1- m4_pattern_allow([^WS2_LIBS$])
  4660. m4trace:configure.ac:560: -1- m4_pattern_allow([^MM_LIBS$])
  4661. m4trace:configure.ac:561: -1- m4_pattern_allow([^MATH_LIBS$])
  4662. m4trace:configure.ac:562: -1- m4_pattern_allow([^RT_LIBS$])
  4663. m4trace:configure.ac:570: -1- m4_pattern_allow([^LIB@&t@OBJS$])
  4664. m4trace:configure.ac:570: -1- m4_pattern_allow([^LTLIBOBJS$])
  4665. m4trace:configure.ac:570: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])
  4666. m4trace:configure.ac:570: -1- m4_pattern_allow([^am__EXEEXT_TRUE$])
  4667. m4trace:configure.ac:570: -1- m4_pattern_allow([^am__EXEEXT_FALSE$])
  4668. m4trace:configure.ac:570: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE])
  4669. m4trace:configure.ac:570: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE])
  4670. m4trace:configure.ac:570: -1- m4_pattern_allow([^gl_LIBOBJS$])
  4671. m4trace:configure.ac:570: -1- m4_pattern_allow([^gl_LTLIBOBJS$])
  4672. m4trace:configure.ac:570: -1- m4_pattern_allow([^gltests_LIBOBJS$])
  4673. m4trace:configure.ac:570: -1- m4_pattern_allow([^gltests_LTLIBOBJS$])
  4674. m4trace:configure.ac:570: -1- _AC_AM_CONFIG_HEADER_HOOK(["$ac_file"])
  4675. m4trace:configure.ac:570: -1- _AM_OUTPUT_DEPENDENCY_COMMANDS
  4676. m4trace:configure.ac:570: -1- _LT_PROG_LTMAIN