autotool.patch 142 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791
  1. diff -Nur 6tunnel-0.11rc2.orig/configure 6tunnel-0.11rc2/configure
  2. --- 6tunnel-0.11rc2.orig/configure 1970-01-01 01:00:00.000000000 +0100
  3. +++ 6tunnel-0.11rc2/configure 2010-02-18 20:34:56.116853593 +0100
  4. @@ -0,0 +1,4759 @@
  5. +#! /bin/sh
  6. +# Guess values for system-dependent variables and create Makefiles.
  7. +# Generated by GNU Autoconf 2.65.
  8. +#
  9. +#
  10. +# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
  11. +# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,
  12. +# Inc.
  13. +#
  14. +#
  15. +# This configure script is free software; the Free Software Foundation
  16. +# gives unlimited permission to copy, distribute and modify it.
  17. +## -------------------- ##
  18. +## M4sh Initialization. ##
  19. +## -------------------- ##
  20. +
  21. +# Be more Bourne compatible
  22. +DUALCASE=1; export DUALCASE # for MKS sh
  23. +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
  24. + emulate sh
  25. + NULLCMD=:
  26. + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
  27. + # is contrary to our usage. Disable this feature.
  28. + alias -g '${1+"$@"}'='"$@"'
  29. + setopt NO_GLOB_SUBST
  30. +else
  31. + case `(set -o) 2>/dev/null` in #(
  32. + *posix*) :
  33. + set -o posix ;; #(
  34. + *) :
  35. + ;;
  36. +esac
  37. +fi
  38. +
  39. +
  40. +as_nl='
  41. +'
  42. +export as_nl
  43. +# Printing a long string crashes Solaris 7 /usr/bin/printf.
  44. +as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
  45. +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
  46. +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
  47. +# Prefer a ksh shell builtin over an external printf program on Solaris,
  48. +# but without wasting forks for bash or zsh.
  49. +if test -z "$BASH_VERSION$ZSH_VERSION" \
  50. + && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
  51. + as_echo='print -r --'
  52. + as_echo_n='print -rn --'
  53. +elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
  54. + as_echo='printf %s\n'
  55. + as_echo_n='printf %s'
  56. +else
  57. + if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
  58. + as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
  59. + as_echo_n='/usr/ucb/echo -n'
  60. + else
  61. + as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
  62. + as_echo_n_body='eval
  63. + arg=$1;
  64. + case $arg in #(
  65. + *"$as_nl"*)
  66. + expr "X$arg" : "X\\(.*\\)$as_nl";
  67. + arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
  68. + esac;
  69. + expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
  70. + '
  71. + export as_echo_n_body
  72. + as_echo_n='sh -c $as_echo_n_body as_echo'
  73. + fi
  74. + export as_echo_body
  75. + as_echo='sh -c $as_echo_body as_echo'
  76. +fi
  77. +
  78. +# The user is always right.
  79. +if test "${PATH_SEPARATOR+set}" != set; then
  80. + PATH_SEPARATOR=:
  81. + (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
  82. + (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
  83. + PATH_SEPARATOR=';'
  84. + }
  85. +fi
  86. +
  87. +
  88. +# IFS
  89. +# We need space, tab and new line, in precisely that order. Quoting is
  90. +# there to prevent editors from complaining about space-tab.
  91. +# (If _AS_PATH_WALK were called with IFS unset, it would disable word
  92. +# splitting by setting IFS to empty value.)
  93. +IFS=" "" $as_nl"
  94. +
  95. +# Find who we are. Look in the path if we contain no directory separator.
  96. +case $0 in #((
  97. + *[\\/]* ) as_myself=$0 ;;
  98. + *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  99. +for as_dir in $PATH
  100. +do
  101. + IFS=$as_save_IFS
  102. + test -z "$as_dir" && as_dir=.
  103. + test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
  104. + done
  105. +IFS=$as_save_IFS
  106. +
  107. + ;;
  108. +esac
  109. +# We did not find ourselves, most probably we were run as `sh COMMAND'
  110. +# in which case we are not to be found in the path.
  111. +if test "x$as_myself" = x; then
  112. + as_myself=$0
  113. +fi
  114. +if test ! -f "$as_myself"; then
  115. + $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
  116. + exit 1
  117. +fi
  118. +
  119. +# Unset variables that we do not need and which cause bugs (e.g. in
  120. +# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1"
  121. +# suppresses any "Segmentation fault" message there. '((' could
  122. +# trigger a bug in pdksh 5.2.14.
  123. +for as_var in BASH_ENV ENV MAIL MAILPATH
  124. +do eval test x\${$as_var+set} = xset \
  125. + && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
  126. +done
  127. +PS1='$ '
  128. +PS2='> '
  129. +PS4='+ '
  130. +
  131. +# NLS nuisances.
  132. +LC_ALL=C
  133. +export LC_ALL
  134. +LANGUAGE=C
  135. +export LANGUAGE
  136. +
  137. +# CDPATH.
  138. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
  139. +
  140. +if test "x$CONFIG_SHELL" = x; then
  141. + as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :
  142. + emulate sh
  143. + NULLCMD=:
  144. + # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which
  145. + # is contrary to our usage. Disable this feature.
  146. + alias -g '\${1+\"\$@\"}'='\"\$@\"'
  147. + setopt NO_GLOB_SUBST
  148. +else
  149. + case \`(set -o) 2>/dev/null\` in #(
  150. + *posix*) :
  151. + set -o posix ;; #(
  152. + *) :
  153. + ;;
  154. +esac
  155. +fi
  156. +"
  157. + as_required="as_fn_return () { (exit \$1); }
  158. +as_fn_success () { as_fn_return 0; }
  159. +as_fn_failure () { as_fn_return 1; }
  160. +as_fn_ret_success () { return 0; }
  161. +as_fn_ret_failure () { return 1; }
  162. +
  163. +exitcode=0
  164. +as_fn_success || { exitcode=1; echo as_fn_success failed.; }
  165. +as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; }
  166. +as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; }
  167. +as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; }
  168. +if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then :
  169. +
  170. +else
  171. + exitcode=1; echo positional parameters were not saved.
  172. +fi
  173. +test x\$exitcode = x0 || exit 1"
  174. + as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO
  175. + as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO
  176. + eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
  177. + test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1
  178. +test \$(( 1 + 1 )) = 2 || exit 1"
  179. + if (eval "$as_required") 2>/dev/null; then :
  180. + as_have_required=yes
  181. +else
  182. + as_have_required=no
  183. +fi
  184. + if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then :
  185. +
  186. +else
  187. + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  188. +as_found=false
  189. +for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH
  190. +do
  191. + IFS=$as_save_IFS
  192. + test -z "$as_dir" && as_dir=.
  193. + as_found=:
  194. + case $as_dir in #(
  195. + /*)
  196. + for as_base in sh bash ksh sh5; do
  197. + # Try only shells that exist, to save several forks.
  198. + as_shell=$as_dir/$as_base
  199. + if { test -f "$as_shell" || test -f "$as_shell.exe"; } &&
  200. + { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then :
  201. + CONFIG_SHELL=$as_shell as_have_required=yes
  202. + if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then :
  203. + break 2
  204. +fi
  205. +fi
  206. + done;;
  207. + esac
  208. + as_found=false
  209. +done
  210. +$as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } &&
  211. + { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then :
  212. + CONFIG_SHELL=$SHELL as_have_required=yes
  213. +fi; }
  214. +IFS=$as_save_IFS
  215. +
  216. +
  217. + if test "x$CONFIG_SHELL" != x; then :
  218. + # We cannot yet assume a decent shell, so we have to provide a
  219. + # neutralization value for shells without unset; and this also
  220. + # works around shells that cannot unset nonexistent variables.
  221. + BASH_ENV=/dev/null
  222. + ENV=/dev/null
  223. + (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
  224. + export CONFIG_SHELL
  225. + exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"}
  226. +fi
  227. +
  228. + if test x$as_have_required = xno; then :
  229. + $as_echo "$0: This script requires a shell more modern than all"
  230. + $as_echo "$0: the shells that I found on your system."
  231. + if test x${ZSH_VERSION+set} = xset ; then
  232. + $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should"
  233. + $as_echo "$0: be upgraded to zsh 4.3.4 or later."
  234. + else
  235. + $as_echo "$0: Please tell bug-autoconf@gnu.org about your system,
  236. +$0: including any error possibly output before this
  237. +$0: message. Then install a modern shell, or manually run
  238. +$0: the script under such a shell if you do have one."
  239. + fi
  240. + exit 1
  241. +fi
  242. +fi
  243. +fi
  244. +SHELL=${CONFIG_SHELL-/bin/sh}
  245. +export SHELL
  246. +# Unset more variables known to interfere with behavior of common tools.
  247. +CLICOLOR_FORCE= GREP_OPTIONS=
  248. +unset CLICOLOR_FORCE GREP_OPTIONS
  249. +
  250. +## --------------------- ##
  251. +## M4sh Shell Functions. ##
  252. +## --------------------- ##
  253. +# as_fn_unset VAR
  254. +# ---------------
  255. +# Portably unset VAR.
  256. +as_fn_unset ()
  257. +{
  258. + { eval $1=; unset $1;}
  259. +}
  260. +as_unset=as_fn_unset
  261. +
  262. +# as_fn_set_status STATUS
  263. +# -----------------------
  264. +# Set $? to STATUS, without forking.
  265. +as_fn_set_status ()
  266. +{
  267. + return $1
  268. +} # as_fn_set_status
  269. +
  270. +# as_fn_exit STATUS
  271. +# -----------------
  272. +# Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
  273. +as_fn_exit ()
  274. +{
  275. + set +e
  276. + as_fn_set_status $1
  277. + exit $1
  278. +} # as_fn_exit
  279. +
  280. +# as_fn_mkdir_p
  281. +# -------------
  282. +# Create "$as_dir" as a directory, including parents if necessary.
  283. +as_fn_mkdir_p ()
  284. +{
  285. +
  286. + case $as_dir in #(
  287. + -*) as_dir=./$as_dir;;
  288. + esac
  289. + test -d "$as_dir" || eval $as_mkdir_p || {
  290. + as_dirs=
  291. + while :; do
  292. + case $as_dir in #(
  293. + *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
  294. + *) as_qdir=$as_dir;;
  295. + esac
  296. + as_dirs="'$as_qdir' $as_dirs"
  297. + as_dir=`$as_dirname -- "$as_dir" ||
  298. +$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
  299. + X"$as_dir" : 'X\(//\)[^/]' \| \
  300. + X"$as_dir" : 'X\(//\)$' \| \
  301. + X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
  302. +$as_echo X"$as_dir" |
  303. + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
  304. + s//\1/
  305. + q
  306. + }
  307. + /^X\(\/\/\)[^/].*/{
  308. + s//\1/
  309. + q
  310. + }
  311. + /^X\(\/\/\)$/{
  312. + s//\1/
  313. + q
  314. + }
  315. + /^X\(\/\).*/{
  316. + s//\1/
  317. + q
  318. + }
  319. + s/.*/./; q'`
  320. + test -d "$as_dir" && break
  321. + done
  322. + test -z "$as_dirs" || eval "mkdir $as_dirs"
  323. + } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir"
  324. +
  325. +
  326. +} # as_fn_mkdir_p
  327. +# as_fn_append VAR VALUE
  328. +# ----------------------
  329. +# Append the text in VALUE to the end of the definition contained in VAR. Take
  330. +# advantage of any shell optimizations that allow amortized linear growth over
  331. +# repeated appends, instead of the typical quadratic growth present in naive
  332. +# implementations.
  333. +if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
  334. + eval 'as_fn_append ()
  335. + {
  336. + eval $1+=\$2
  337. + }'
  338. +else
  339. + as_fn_append ()
  340. + {
  341. + eval $1=\$$1\$2
  342. + }
  343. +fi # as_fn_append
  344. +
  345. +# as_fn_arith ARG...
  346. +# ------------------
  347. +# Perform arithmetic evaluation on the ARGs, and store the result in the
  348. +# global $as_val. Take advantage of shells that can avoid forks. The arguments
  349. +# must be portable across $(()) and expr.
  350. +if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
  351. + eval 'as_fn_arith ()
  352. + {
  353. + as_val=$(( $* ))
  354. + }'
  355. +else
  356. + as_fn_arith ()
  357. + {
  358. + as_val=`expr "$@" || test $? -eq 1`
  359. + }
  360. +fi # as_fn_arith
  361. +
  362. +
  363. +# as_fn_error ERROR [LINENO LOG_FD]
  364. +# ---------------------------------
  365. +# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
  366. +# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
  367. +# script with status $?, using 1 if that was 0.
  368. +as_fn_error ()
  369. +{
  370. + as_status=$?; test $as_status -eq 0 && as_status=1
  371. + if test "$3"; then
  372. + as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
  373. + $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3
  374. + fi
  375. + $as_echo "$as_me: error: $1" >&2
  376. + as_fn_exit $as_status
  377. +} # as_fn_error
  378. +
  379. +if expr a : '\(a\)' >/dev/null 2>&1 &&
  380. + test "X`expr 00001 : '.*\(...\)'`" = X001; then
  381. + as_expr=expr
  382. +else
  383. + as_expr=false
  384. +fi
  385. +
  386. +if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
  387. + as_basename=basename
  388. +else
  389. + as_basename=false
  390. +fi
  391. +
  392. +if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
  393. + as_dirname=dirname
  394. +else
  395. + as_dirname=false
  396. +fi
  397. +
  398. +as_me=`$as_basename -- "$0" ||
  399. +$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
  400. + X"$0" : 'X\(//\)$' \| \
  401. + X"$0" : 'X\(/\)' \| . 2>/dev/null ||
  402. +$as_echo X/"$0" |
  403. + sed '/^.*\/\([^/][^/]*\)\/*$/{
  404. + s//\1/
  405. + q
  406. + }
  407. + /^X\/\(\/\/\)$/{
  408. + s//\1/
  409. + q
  410. + }
  411. + /^X\/\(\/\).*/{
  412. + s//\1/
  413. + q
  414. + }
  415. + s/.*/./; q'`
  416. +
  417. +# Avoid depending upon Character Ranges.
  418. +as_cr_letters='abcdefghijklmnopqrstuvwxyz'
  419. +as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
  420. +as_cr_Letters=$as_cr_letters$as_cr_LETTERS
  421. +as_cr_digits='0123456789'
  422. +as_cr_alnum=$as_cr_Letters$as_cr_digits
  423. +
  424. +
  425. + as_lineno_1=$LINENO as_lineno_1a=$LINENO
  426. + as_lineno_2=$LINENO as_lineno_2a=$LINENO
  427. + eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" &&
  428. + test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || {
  429. + # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-)
  430. + sed -n '
  431. + p
  432. + /[$]LINENO/=
  433. + ' <$as_myself |
  434. + sed '
  435. + s/[$]LINENO.*/&-/
  436. + t lineno
  437. + b
  438. + :lineno
  439. + N
  440. + :loop
  441. + s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/
  442. + t loop
  443. + s/-\n.*//
  444. + ' >$as_me.lineno &&
  445. + chmod +x "$as_me.lineno" ||
  446. + { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; }
  447. +
  448. + # Don't try to exec as it changes $[0], causing all sort of problems
  449. + # (the dirname of $[0] is not the place where we might find the
  450. + # original and so on. Autoconf is especially sensitive to this).
  451. + . "./$as_me.lineno"
  452. + # Exit status is that of the last command.
  453. + exit
  454. +}
  455. +
  456. +ECHO_C= ECHO_N= ECHO_T=
  457. +case `echo -n x` in #(((((
  458. +-n*)
  459. + case `echo 'xy\c'` in
  460. + *c*) ECHO_T=' ';; # ECHO_T is single tab character.
  461. + xy) ECHO_C='\c';;
  462. + *) echo `echo ksh88 bug on AIX 6.1` > /dev/null
  463. + ECHO_T=' ';;
  464. + esac;;
  465. +*)
  466. + ECHO_N='-n';;
  467. +esac
  468. +
  469. +rm -f conf$$ conf$$.exe conf$$.file
  470. +if test -d conf$$.dir; then
  471. + rm -f conf$$.dir/conf$$.file
  472. +else
  473. + rm -f conf$$.dir
  474. + mkdir conf$$.dir 2>/dev/null
  475. +fi
  476. +if (echo >conf$$.file) 2>/dev/null; then
  477. + if ln -s conf$$.file conf$$ 2>/dev/null; then
  478. + as_ln_s='ln -s'
  479. + # ... but there are two gotchas:
  480. + # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
  481. + # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
  482. + # In both cases, we have to default to `cp -p'.
  483. + ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
  484. + as_ln_s='cp -p'
  485. + elif ln conf$$.file conf$$ 2>/dev/null; then
  486. + as_ln_s=ln
  487. + else
  488. + as_ln_s='cp -p'
  489. + fi
  490. +else
  491. + as_ln_s='cp -p'
  492. +fi
  493. +rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
  494. +rmdir conf$$.dir 2>/dev/null
  495. +
  496. +if mkdir -p . 2>/dev/null; then
  497. + as_mkdir_p='mkdir -p "$as_dir"'
  498. +else
  499. + test -d ./-p && rmdir ./-p
  500. + as_mkdir_p=false
  501. +fi
  502. +
  503. +if test -x / >/dev/null 2>&1; then
  504. + as_test_x='test -x'
  505. +else
  506. + if ls -dL / >/dev/null 2>&1; then
  507. + as_ls_L_option=L
  508. + else
  509. + as_ls_L_option=
  510. + fi
  511. + as_test_x='
  512. + eval sh -c '\''
  513. + if test -d "$1"; then
  514. + test -d "$1/.";
  515. + else
  516. + case $1 in #(
  517. + -*)set "./$1";;
  518. + esac;
  519. + case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #((
  520. + ???[sx]*):;;*)false;;esac;fi
  521. + '\'' sh
  522. + '
  523. +fi
  524. +as_executable_p=$as_test_x
  525. +
  526. +# Sed expression to map a string onto a valid CPP name.
  527. +as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
  528. +
  529. +# Sed expression to map a string onto a valid variable name.
  530. +as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
  531. +
  532. +
  533. +test -n "$DJDIR" || exec 7<&0 </dev/null
  534. +exec 6>&1
  535. +
  536. +# Name of the host.
  537. +# hostname on some systems (SVR3.2, Linux) returns a bogus exit status,
  538. +# so uname gets run too.
  539. +ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
  540. +
  541. +#
  542. +# Initializations.
  543. +#
  544. +ac_default_prefix=/usr/local
  545. +ac_clean_files=
  546. +ac_config_libobj_dir=.
  547. +LIBOBJS=
  548. +cross_compiling=no
  549. +subdirs=
  550. +MFLAGS=
  551. +MAKEFLAGS=
  552. +
  553. +# Identity of this package.
  554. +PACKAGE_NAME=
  555. +PACKAGE_TARNAME=
  556. +PACKAGE_VERSION=
  557. +PACKAGE_STRING=
  558. +PACKAGE_BUGREPORT=
  559. +PACKAGE_URL=
  560. +
  561. +ac_unique_file="6tunnel.c"
  562. +# Factoring default headers for most tests.
  563. +ac_includes_default="\
  564. +#include <stdio.h>
  565. +#ifdef HAVE_SYS_TYPES_H
  566. +# include <sys/types.h>
  567. +#endif
  568. +#ifdef HAVE_SYS_STAT_H
  569. +# include <sys/stat.h>
  570. +#endif
  571. +#ifdef STDC_HEADERS
  572. +# include <stdlib.h>
  573. +# include <stddef.h>
  574. +#else
  575. +# ifdef HAVE_STDLIB_H
  576. +# include <stdlib.h>
  577. +# endif
  578. +#endif
  579. +#ifdef HAVE_STRING_H
  580. +# if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  581. +# include <memory.h>
  582. +# endif
  583. +# include <string.h>
  584. +#endif
  585. +#ifdef HAVE_STRINGS_H
  586. +# include <strings.h>
  587. +#endif
  588. +#ifdef HAVE_INTTYPES_H
  589. +# include <inttypes.h>
  590. +#endif
  591. +#ifdef HAVE_STDINT_H
  592. +# include <stdint.h>
  593. +#endif
  594. +#ifdef HAVE_UNISTD_H
  595. +# include <unistd.h>
  596. +#endif"
  597. +
  598. +ac_subst_vars='LTLIBOBJS
  599. +LIBOBJS
  600. +VERSION
  601. +EGREP
  602. +GREP
  603. +CPP
  604. +STRIP
  605. +SET_MAKE
  606. +INSTALL_DATA
  607. +INSTALL_SCRIPT
  608. +INSTALL_PROGRAM
  609. +OBJEXT
  610. +EXEEXT
  611. +ac_ct_CC
  612. +CPPFLAGS
  613. +LDFLAGS
  614. +CFLAGS
  615. +CC
  616. +target_alias
  617. +host_alias
  618. +build_alias
  619. +LIBS
  620. +ECHO_T
  621. +ECHO_N
  622. +ECHO_C
  623. +DEFS
  624. +mandir
  625. +localedir
  626. +libdir
  627. +psdir
  628. +pdfdir
  629. +dvidir
  630. +htmldir
  631. +infodir
  632. +docdir
  633. +oldincludedir
  634. +includedir
  635. +localstatedir
  636. +sharedstatedir
  637. +sysconfdir
  638. +datadir
  639. +datarootdir
  640. +libexecdir
  641. +sbindir
  642. +bindir
  643. +program_transform_name
  644. +prefix
  645. +exec_prefix
  646. +PACKAGE_URL
  647. +PACKAGE_BUGREPORT
  648. +PACKAGE_STRING
  649. +PACKAGE_VERSION
  650. +PACKAGE_TARNAME
  651. +PACKAGE_NAME
  652. +PATH_SEPARATOR
  653. +SHELL'
  654. +ac_subst_files=''
  655. +ac_user_opts='
  656. +enable_option_checking
  657. +'
  658. + ac_precious_vars='build_alias
  659. +host_alias
  660. +target_alias
  661. +CC
  662. +CFLAGS
  663. +LDFLAGS
  664. +LIBS
  665. +CPPFLAGS
  666. +CPP'
  667. +
  668. +
  669. +# Initialize some variables set by options.
  670. +ac_init_help=
  671. +ac_init_version=false
  672. +ac_unrecognized_opts=
  673. +ac_unrecognized_sep=
  674. +# The variables have the same names as the options, with
  675. +# dashes changed to underlines.
  676. +cache_file=/dev/null
  677. +exec_prefix=NONE
  678. +no_create=
  679. +no_recursion=
  680. +prefix=NONE
  681. +program_prefix=NONE
  682. +program_suffix=NONE
  683. +program_transform_name=s,x,x,
  684. +silent=
  685. +site=
  686. +srcdir=
  687. +verbose=
  688. +x_includes=NONE
  689. +x_libraries=NONE
  690. +
  691. +# Installation directory options.
  692. +# These are left unexpanded so users can "make install exec_prefix=/foo"
  693. +# and all the variables that are supposed to be based on exec_prefix
  694. +# by default will actually change.
  695. +# Use braces instead of parens because sh, perl, etc. also accept them.
  696. +# (The list follows the same order as the GNU Coding Standards.)
  697. +bindir='${exec_prefix}/bin'
  698. +sbindir='${exec_prefix}/sbin'
  699. +libexecdir='${exec_prefix}/libexec'
  700. +datarootdir='${prefix}/share'
  701. +datadir='${datarootdir}'
  702. +sysconfdir='${prefix}/etc'
  703. +sharedstatedir='${prefix}/com'
  704. +localstatedir='${prefix}/var'
  705. +includedir='${prefix}/include'
  706. +oldincludedir='/usr/include'
  707. +docdir='${datarootdir}/doc/${PACKAGE}'
  708. +infodir='${datarootdir}/info'
  709. +htmldir='${docdir}'
  710. +dvidir='${docdir}'
  711. +pdfdir='${docdir}'
  712. +psdir='${docdir}'
  713. +libdir='${exec_prefix}/lib'
  714. +localedir='${datarootdir}/locale'
  715. +mandir='${datarootdir}/man'
  716. +
  717. +ac_prev=
  718. +ac_dashdash=
  719. +for ac_option
  720. +do
  721. + # If the previous option needs an argument, assign it.
  722. + if test -n "$ac_prev"; then
  723. + eval $ac_prev=\$ac_option
  724. + ac_prev=
  725. + continue
  726. + fi
  727. +
  728. + case $ac_option in
  729. + *=*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
  730. + *) ac_optarg=yes ;;
  731. + esac
  732. +
  733. + # Accept the important Cygnus configure options, so we can diagnose typos.
  734. +
  735. + case $ac_dashdash$ac_option in
  736. + --)
  737. + ac_dashdash=yes ;;
  738. +
  739. + -bindir | --bindir | --bindi | --bind | --bin | --bi)
  740. + ac_prev=bindir ;;
  741. + -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*)
  742. + bindir=$ac_optarg ;;
  743. +
  744. + -build | --build | --buil | --bui | --bu)
  745. + ac_prev=build_alias ;;
  746. + -build=* | --build=* | --buil=* | --bui=* | --bu=*)
  747. + build_alias=$ac_optarg ;;
  748. +
  749. + -cache-file | --cache-file | --cache-fil | --cache-fi \
  750. + | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
  751. + ac_prev=cache_file ;;
  752. + -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
  753. + | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
  754. + cache_file=$ac_optarg ;;
  755. +
  756. + --config-cache | -C)
  757. + cache_file=config.cache ;;
  758. +
  759. + -datadir | --datadir | --datadi | --datad)
  760. + ac_prev=datadir ;;
  761. + -datadir=* | --datadir=* | --datadi=* | --datad=*)
  762. + datadir=$ac_optarg ;;
  763. +
  764. + -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \
  765. + | --dataroo | --dataro | --datar)
  766. + ac_prev=datarootdir ;;
  767. + -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \
  768. + | --dataroot=* | --dataroo=* | --dataro=* | --datar=*)
  769. + datarootdir=$ac_optarg ;;
  770. +
  771. + -disable-* | --disable-*)
  772. + ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
  773. + # Reject names that are not valid shell variable names.
  774. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
  775. + as_fn_error "invalid feature name: $ac_useropt"
  776. + ac_useropt_orig=$ac_useropt
  777. + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
  778. + case $ac_user_opts in
  779. + *"
  780. +"enable_$ac_useropt"
  781. +"*) ;;
  782. + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig"
  783. + ac_unrecognized_sep=', ';;
  784. + esac
  785. + eval enable_$ac_useropt=no ;;
  786. +
  787. + -docdir | --docdir | --docdi | --doc | --do)
  788. + ac_prev=docdir ;;
  789. + -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*)
  790. + docdir=$ac_optarg ;;
  791. +
  792. + -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv)
  793. + ac_prev=dvidir ;;
  794. + -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*)
  795. + dvidir=$ac_optarg ;;
  796. +
  797. + -enable-* | --enable-*)
  798. + ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
  799. + # Reject names that are not valid shell variable names.
  800. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
  801. + as_fn_error "invalid feature name: $ac_useropt"
  802. + ac_useropt_orig=$ac_useropt
  803. + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
  804. + case $ac_user_opts in
  805. + *"
  806. +"enable_$ac_useropt"
  807. +"*) ;;
  808. + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig"
  809. + ac_unrecognized_sep=', ';;
  810. + esac
  811. + eval enable_$ac_useropt=\$ac_optarg ;;
  812. +
  813. + -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
  814. + | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
  815. + | --exec | --exe | --ex)
  816. + ac_prev=exec_prefix ;;
  817. + -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
  818. + | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
  819. + | --exec=* | --exe=* | --ex=*)
  820. + exec_prefix=$ac_optarg ;;
  821. +
  822. + -gas | --gas | --ga | --g)
  823. + # Obsolete; use --with-gas.
  824. + with_gas=yes ;;
  825. +
  826. + -help | --help | --hel | --he | -h)
  827. + ac_init_help=long ;;
  828. + -help=r* | --help=r* | --hel=r* | --he=r* | -hr*)
  829. + ac_init_help=recursive ;;
  830. + -help=s* | --help=s* | --hel=s* | --he=s* | -hs*)
  831. + ac_init_help=short ;;
  832. +
  833. + -host | --host | --hos | --ho)
  834. + ac_prev=host_alias ;;
  835. + -host=* | --host=* | --hos=* | --ho=*)
  836. + host_alias=$ac_optarg ;;
  837. +
  838. + -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht)
  839. + ac_prev=htmldir ;;
  840. + -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \
  841. + | --ht=*)
  842. + htmldir=$ac_optarg ;;
  843. +
  844. + -includedir | --includedir | --includedi | --included | --include \
  845. + | --includ | --inclu | --incl | --inc)
  846. + ac_prev=includedir ;;
  847. + -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \
  848. + | --includ=* | --inclu=* | --incl=* | --inc=*)
  849. + includedir=$ac_optarg ;;
  850. +
  851. + -infodir | --infodir | --infodi | --infod | --info | --inf)
  852. + ac_prev=infodir ;;
  853. + -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*)
  854. + infodir=$ac_optarg ;;
  855. +
  856. + -libdir | --libdir | --libdi | --libd)
  857. + ac_prev=libdir ;;
  858. + -libdir=* | --libdir=* | --libdi=* | --libd=*)
  859. + libdir=$ac_optarg ;;
  860. +
  861. + -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \
  862. + | --libexe | --libex | --libe)
  863. + ac_prev=libexecdir ;;
  864. + -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \
  865. + | --libexe=* | --libex=* | --libe=*)
  866. + libexecdir=$ac_optarg ;;
  867. +
  868. + -localedir | --localedir | --localedi | --localed | --locale)
  869. + ac_prev=localedir ;;
  870. + -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*)
  871. + localedir=$ac_optarg ;;
  872. +
  873. + -localstatedir | --localstatedir | --localstatedi | --localstated \
  874. + | --localstate | --localstat | --localsta | --localst | --locals)
  875. + ac_prev=localstatedir ;;
  876. + -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \
  877. + | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*)
  878. + localstatedir=$ac_optarg ;;
  879. +
  880. + -mandir | --mandir | --mandi | --mand | --man | --ma | --m)
  881. + ac_prev=mandir ;;
  882. + -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*)
  883. + mandir=$ac_optarg ;;
  884. +
  885. + -nfp | --nfp | --nf)
  886. + # Obsolete; use --without-fp.
  887. + with_fp=no ;;
  888. +
  889. + -no-create | --no-create | --no-creat | --no-crea | --no-cre \
  890. + | --no-cr | --no-c | -n)
  891. + no_create=yes ;;
  892. +
  893. + -no-recursion | --no-recursion | --no-recursio | --no-recursi \
  894. + | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
  895. + no_recursion=yes ;;
  896. +
  897. + -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \
  898. + | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \
  899. + | --oldin | --oldi | --old | --ol | --o)
  900. + ac_prev=oldincludedir ;;
  901. + -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \
  902. + | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \
  903. + | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*)
  904. + oldincludedir=$ac_optarg ;;
  905. +
  906. + -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
  907. + ac_prev=prefix ;;
  908. + -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
  909. + prefix=$ac_optarg ;;
  910. +
  911. + -program-prefix | --program-prefix | --program-prefi | --program-pref \
  912. + | --program-pre | --program-pr | --program-p)
  913. + ac_prev=program_prefix ;;
  914. + -program-prefix=* | --program-prefix=* | --program-prefi=* \
  915. + | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
  916. + program_prefix=$ac_optarg ;;
  917. +
  918. + -program-suffix | --program-suffix | --program-suffi | --program-suff \
  919. + | --program-suf | --program-su | --program-s)
  920. + ac_prev=program_suffix ;;
  921. + -program-suffix=* | --program-suffix=* | --program-suffi=* \
  922. + | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
  923. + program_suffix=$ac_optarg ;;
  924. +
  925. + -program-transform-name | --program-transform-name \
  926. + | --program-transform-nam | --program-transform-na \
  927. + | --program-transform-n | --program-transform- \
  928. + | --program-transform | --program-transfor \
  929. + | --program-transfo | --program-transf \
  930. + | --program-trans | --program-tran \
  931. + | --progr-tra | --program-tr | --program-t)
  932. + ac_prev=program_transform_name ;;
  933. + -program-transform-name=* | --program-transform-name=* \
  934. + | --program-transform-nam=* | --program-transform-na=* \
  935. + | --program-transform-n=* | --program-transform-=* \
  936. + | --program-transform=* | --program-transfor=* \
  937. + | --program-transfo=* | --program-transf=* \
  938. + | --program-trans=* | --program-tran=* \
  939. + | --progr-tra=* | --program-tr=* | --program-t=*)
  940. + program_transform_name=$ac_optarg ;;
  941. +
  942. + -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd)
  943. + ac_prev=pdfdir ;;
  944. + -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*)
  945. + pdfdir=$ac_optarg ;;
  946. +
  947. + -psdir | --psdir | --psdi | --psd | --ps)
  948. + ac_prev=psdir ;;
  949. + -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*)
  950. + psdir=$ac_optarg ;;
  951. +
  952. + -q | -quiet | --quiet | --quie | --qui | --qu | --q \
  953. + | -silent | --silent | --silen | --sile | --sil)
  954. + silent=yes ;;
  955. +
  956. + -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
  957. + ac_prev=sbindir ;;
  958. + -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
  959. + | --sbi=* | --sb=*)
  960. + sbindir=$ac_optarg ;;
  961. +
  962. + -sharedstatedir | --sharedstatedir | --sharedstatedi \
  963. + | --sharedstated | --sharedstate | --sharedstat | --sharedsta \
  964. + | --sharedst | --shareds | --shared | --share | --shar \
  965. + | --sha | --sh)
  966. + ac_prev=sharedstatedir ;;
  967. + -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \
  968. + | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \
  969. + | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \
  970. + | --sha=* | --sh=*)
  971. + sharedstatedir=$ac_optarg ;;
  972. +
  973. + -site | --site | --sit)
  974. + ac_prev=site ;;
  975. + -site=* | --site=* | --sit=*)
  976. + site=$ac_optarg ;;
  977. +
  978. + -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
  979. + ac_prev=srcdir ;;
  980. + -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
  981. + srcdir=$ac_optarg ;;
  982. +
  983. + -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \
  984. + | --syscon | --sysco | --sysc | --sys | --sy)
  985. + ac_prev=sysconfdir ;;
  986. + -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \
  987. + | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*)
  988. + sysconfdir=$ac_optarg ;;
  989. +
  990. + -target | --target | --targe | --targ | --tar | --ta | --t)
  991. + ac_prev=target_alias ;;
  992. + -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
  993. + target_alias=$ac_optarg ;;
  994. +
  995. + -v | -verbose | --verbose | --verbos | --verbo | --verb)
  996. + verbose=yes ;;
  997. +
  998. + -version | --version | --versio | --versi | --vers | -V)
  999. + ac_init_version=: ;;
  1000. +
  1001. + -with-* | --with-*)
  1002. + ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
  1003. + # Reject names that are not valid shell variable names.
  1004. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
  1005. + as_fn_error "invalid package name: $ac_useropt"
  1006. + ac_useropt_orig=$ac_useropt
  1007. + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
  1008. + case $ac_user_opts in
  1009. + *"
  1010. +"with_$ac_useropt"
  1011. +"*) ;;
  1012. + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig"
  1013. + ac_unrecognized_sep=', ';;
  1014. + esac
  1015. + eval with_$ac_useropt=\$ac_optarg ;;
  1016. +
  1017. + -without-* | --without-*)
  1018. + ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
  1019. + # Reject names that are not valid shell variable names.
  1020. + expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
  1021. + as_fn_error "invalid package name: $ac_useropt"
  1022. + ac_useropt_orig=$ac_useropt
  1023. + ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
  1024. + case $ac_user_opts in
  1025. + *"
  1026. +"with_$ac_useropt"
  1027. +"*) ;;
  1028. + *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig"
  1029. + ac_unrecognized_sep=', ';;
  1030. + esac
  1031. + eval with_$ac_useropt=no ;;
  1032. +
  1033. + --x)
  1034. + # Obsolete; use --with-x.
  1035. + with_x=yes ;;
  1036. +
  1037. + -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
  1038. + | --x-incl | --x-inc | --x-in | --x-i)
  1039. + ac_prev=x_includes ;;
  1040. + -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
  1041. + | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
  1042. + x_includes=$ac_optarg ;;
  1043. +
  1044. + -x-libraries | --x-libraries | --x-librarie | --x-librari \
  1045. + | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
  1046. + ac_prev=x_libraries ;;
  1047. + -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
  1048. + | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
  1049. + x_libraries=$ac_optarg ;;
  1050. +
  1051. + -*) as_fn_error "unrecognized option: \`$ac_option'
  1052. +Try \`$0 --help' for more information."
  1053. + ;;
  1054. +
  1055. + *=*)
  1056. + ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
  1057. + # Reject names that are not valid shell variable names.
  1058. + case $ac_envvar in #(
  1059. + '' | [0-9]* | *[!_$as_cr_alnum]* )
  1060. + as_fn_error "invalid variable name: \`$ac_envvar'" ;;
  1061. + esac
  1062. + eval $ac_envvar=\$ac_optarg
  1063. + export $ac_envvar ;;
  1064. +
  1065. + *)
  1066. + # FIXME: should be removed in autoconf 3.0.
  1067. + $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2
  1068. + expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
  1069. + $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2
  1070. + : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}
  1071. + ;;
  1072. +
  1073. + esac
  1074. +done
  1075. +
  1076. +if test -n "$ac_prev"; then
  1077. + ac_option=--`echo $ac_prev | sed 's/_/-/g'`
  1078. + as_fn_error "missing argument to $ac_option"
  1079. +fi
  1080. +
  1081. +if test -n "$ac_unrecognized_opts"; then
  1082. + case $enable_option_checking in
  1083. + no) ;;
  1084. + fatal) as_fn_error "unrecognized options: $ac_unrecognized_opts" ;;
  1085. + *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
  1086. + esac
  1087. +fi
  1088. +
  1089. +# Check all directory arguments for consistency.
  1090. +for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \
  1091. + datadir sysconfdir sharedstatedir localstatedir includedir \
  1092. + oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
  1093. + libdir localedir mandir
  1094. +do
  1095. + eval ac_val=\$$ac_var
  1096. + # Remove trailing slashes.
  1097. + case $ac_val in
  1098. + */ )
  1099. + ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'`
  1100. + eval $ac_var=\$ac_val;;
  1101. + esac
  1102. + # Be sure to have absolute directory names.
  1103. + case $ac_val in
  1104. + [\\/$]* | ?:[\\/]* ) continue;;
  1105. + NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
  1106. + esac
  1107. + as_fn_error "expected an absolute directory name for --$ac_var: $ac_val"
  1108. +done
  1109. +
  1110. +# There might be people who depend on the old broken behavior: `$host'
  1111. +# used to hold the argument of --host etc.
  1112. +# FIXME: To remove some day.
  1113. +build=$build_alias
  1114. +host=$host_alias
  1115. +target=$target_alias
  1116. +
  1117. +# FIXME: To remove some day.
  1118. +if test "x$host_alias" != x; then
  1119. + if test "x$build_alias" = x; then
  1120. + cross_compiling=maybe
  1121. + $as_echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host.
  1122. + If a cross compiler is detected then cross compile mode will be used." >&2
  1123. + elif test "x$build_alias" != "x$host_alias"; then
  1124. + cross_compiling=yes
  1125. + fi
  1126. +fi
  1127. +
  1128. +ac_tool_prefix=
  1129. +test -n "$host_alias" && ac_tool_prefix=$host_alias-
  1130. +
  1131. +test "$silent" = yes && exec 6>/dev/null
  1132. +
  1133. +
  1134. +ac_pwd=`pwd` && test -n "$ac_pwd" &&
  1135. +ac_ls_di=`ls -di .` &&
  1136. +ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
  1137. + as_fn_error "working directory cannot be determined"
  1138. +test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
  1139. + as_fn_error "pwd does not report name of working directory"
  1140. +
  1141. +
  1142. +# Find the source files, if location was not specified.
  1143. +if test -z "$srcdir"; then
  1144. + ac_srcdir_defaulted=yes
  1145. + # Try the directory containing this script, then the parent directory.
  1146. + ac_confdir=`$as_dirname -- "$as_myself" ||
  1147. +$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
  1148. + X"$as_myself" : 'X\(//\)[^/]' \| \
  1149. + X"$as_myself" : 'X\(//\)$' \| \
  1150. + X"$as_myself" : 'X\(/\)' \| . 2>/dev/null ||
  1151. +$as_echo X"$as_myself" |
  1152. + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
  1153. + s//\1/
  1154. + q
  1155. + }
  1156. + /^X\(\/\/\)[^/].*/{
  1157. + s//\1/
  1158. + q
  1159. + }
  1160. + /^X\(\/\/\)$/{
  1161. + s//\1/
  1162. + q
  1163. + }
  1164. + /^X\(\/\).*/{
  1165. + s//\1/
  1166. + q
  1167. + }
  1168. + s/.*/./; q'`
  1169. + srcdir=$ac_confdir
  1170. + if test ! -r "$srcdir/$ac_unique_file"; then
  1171. + srcdir=..
  1172. + fi
  1173. +else
  1174. + ac_srcdir_defaulted=no
  1175. +fi
  1176. +if test ! -r "$srcdir/$ac_unique_file"; then
  1177. + test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
  1178. + as_fn_error "cannot find sources ($ac_unique_file) in $srcdir"
  1179. +fi
  1180. +ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
  1181. +ac_abs_confdir=`(
  1182. + cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error "$ac_msg"
  1183. + pwd)`
  1184. +# When building in place, set srcdir=.
  1185. +if test "$ac_abs_confdir" = "$ac_pwd"; then
  1186. + srcdir=.
  1187. +fi
  1188. +# Remove unnecessary trailing slashes from srcdir.
  1189. +# Double slashes in file names in object file debugging info
  1190. +# mess up M-x gdb in Emacs.
  1191. +case $srcdir in
  1192. +*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
  1193. +esac
  1194. +for ac_var in $ac_precious_vars; do
  1195. + eval ac_env_${ac_var}_set=\${${ac_var}+set}
  1196. + eval ac_env_${ac_var}_value=\$${ac_var}
  1197. + eval ac_cv_env_${ac_var}_set=\${${ac_var}+set}
  1198. + eval ac_cv_env_${ac_var}_value=\$${ac_var}
  1199. +done
  1200. +
  1201. +#
  1202. +# Report the --help message.
  1203. +#
  1204. +if test "$ac_init_help" = "long"; then
  1205. + # Omit some internal or obsolete options to make the list less imposing.
  1206. + # This message is too long to be a string in the A/UX 3.1 sh.
  1207. + cat <<_ACEOF
  1208. +\`configure' configures this package to adapt to many kinds of systems.
  1209. +
  1210. +Usage: $0 [OPTION]... [VAR=VALUE]...
  1211. +
  1212. +To assign environment variables (e.g., CC, CFLAGS...), specify them as
  1213. +VAR=VALUE. See below for descriptions of some of the useful variables.
  1214. +
  1215. +Defaults for the options are specified in brackets.
  1216. +
  1217. +Configuration:
  1218. + -h, --help display this help and exit
  1219. + --help=short display options specific to this package
  1220. + --help=recursive display the short help of all the included packages
  1221. + -V, --version display version information and exit
  1222. + -q, --quiet, --silent do not print \`checking...' messages
  1223. + --cache-file=FILE cache test results in FILE [disabled]
  1224. + -C, --config-cache alias for \`--cache-file=config.cache'
  1225. + -n, --no-create do not create output files
  1226. + --srcdir=DIR find the sources in DIR [configure dir or \`..']
  1227. +
  1228. +Installation directories:
  1229. + --prefix=PREFIX install architecture-independent files in PREFIX
  1230. + [$ac_default_prefix]
  1231. + --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX
  1232. + [PREFIX]
  1233. +
  1234. +By default, \`make install' will install all the files in
  1235. +\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify
  1236. +an installation prefix other than \`$ac_default_prefix' using \`--prefix',
  1237. +for instance \`--prefix=\$HOME'.
  1238. +
  1239. +For better control, use the options below.
  1240. +
  1241. +Fine tuning of the installation directories:
  1242. + --bindir=DIR user executables [EPREFIX/bin]
  1243. + --sbindir=DIR system admin executables [EPREFIX/sbin]
  1244. + --libexecdir=DIR program executables [EPREFIX/libexec]
  1245. + --sysconfdir=DIR read-only single-machine data [PREFIX/etc]
  1246. + --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com]
  1247. + --localstatedir=DIR modifiable single-machine data [PREFIX/var]
  1248. + --libdir=DIR object code libraries [EPREFIX/lib]
  1249. + --includedir=DIR C header files [PREFIX/include]
  1250. + --oldincludedir=DIR C header files for non-gcc [/usr/include]
  1251. + --datarootdir=DIR read-only arch.-independent data root [PREFIX/share]
  1252. + --datadir=DIR read-only architecture-independent data [DATAROOTDIR]
  1253. + --infodir=DIR info documentation [DATAROOTDIR/info]
  1254. + --localedir=DIR locale-dependent data [DATAROOTDIR/locale]
  1255. + --mandir=DIR man documentation [DATAROOTDIR/man]
  1256. + --docdir=DIR documentation root [DATAROOTDIR/doc/PACKAGE]
  1257. + --htmldir=DIR html documentation [DOCDIR]
  1258. + --dvidir=DIR dvi documentation [DOCDIR]
  1259. + --pdfdir=DIR pdf documentation [DOCDIR]
  1260. + --psdir=DIR ps documentation [DOCDIR]
  1261. +_ACEOF
  1262. +
  1263. + cat <<\_ACEOF
  1264. +_ACEOF
  1265. +fi
  1266. +
  1267. +if test -n "$ac_init_help"; then
  1268. +
  1269. + cat <<\_ACEOF
  1270. +
  1271. +Some influential environment variables:
  1272. + CC C compiler command
  1273. + CFLAGS C compiler flags
  1274. + LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a
  1275. + nonstandard directory <lib dir>
  1276. + LIBS libraries to pass to the linker, e.g. -l<library>
  1277. + CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I<include dir> if
  1278. + you have headers in a nonstandard directory <include dir>
  1279. + CPP C preprocessor
  1280. +
  1281. +Use these variables to override the choices made by `configure' or to help
  1282. +it to find libraries and programs with nonstandard names/locations.
  1283. +
  1284. +Report bugs to the package provider.
  1285. +_ACEOF
  1286. +ac_status=$?
  1287. +fi
  1288. +
  1289. +if test "$ac_init_help" = "recursive"; then
  1290. + # If there are subdirs, report their specific --help.
  1291. + for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
  1292. + test -d "$ac_dir" ||
  1293. + { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } ||
  1294. + continue
  1295. + ac_builddir=.
  1296. +
  1297. +case "$ac_dir" in
  1298. +.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
  1299. +*)
  1300. + ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
  1301. + # A ".." for each directory in $ac_dir_suffix.
  1302. + ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
  1303. + case $ac_top_builddir_sub in
  1304. + "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
  1305. + *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
  1306. + esac ;;
  1307. +esac
  1308. +ac_abs_top_builddir=$ac_pwd
  1309. +ac_abs_builddir=$ac_pwd$ac_dir_suffix
  1310. +# for backward compatibility:
  1311. +ac_top_builddir=$ac_top_build_prefix
  1312. +
  1313. +case $srcdir in
  1314. + .) # We are building in place.
  1315. + ac_srcdir=.
  1316. + ac_top_srcdir=$ac_top_builddir_sub
  1317. + ac_abs_top_srcdir=$ac_pwd ;;
  1318. + [\\/]* | ?:[\\/]* ) # Absolute name.
  1319. + ac_srcdir=$srcdir$ac_dir_suffix;
  1320. + ac_top_srcdir=$srcdir
  1321. + ac_abs_top_srcdir=$srcdir ;;
  1322. + *) # Relative name.
  1323. + ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
  1324. + ac_top_srcdir=$ac_top_build_prefix$srcdir
  1325. + ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
  1326. +esac
  1327. +ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
  1328. +
  1329. + cd "$ac_dir" || { ac_status=$?; continue; }
  1330. + # Check for guested configure.
  1331. + if test -f "$ac_srcdir/configure.gnu"; then
  1332. + echo &&
  1333. + $SHELL "$ac_srcdir/configure.gnu" --help=recursive
  1334. + elif test -f "$ac_srcdir/configure"; then
  1335. + echo &&
  1336. + $SHELL "$ac_srcdir/configure" --help=recursive
  1337. + else
  1338. + $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
  1339. + fi || ac_status=$?
  1340. + cd "$ac_pwd" || { ac_status=$?; break; }
  1341. + done
  1342. +fi
  1343. +
  1344. +test -n "$ac_init_help" && exit $ac_status
  1345. +if $ac_init_version; then
  1346. + cat <<\_ACEOF
  1347. +configure
  1348. +generated by GNU Autoconf 2.65
  1349. +
  1350. +Copyright (C) 2009 Free Software Foundation, Inc.
  1351. +This configure script is free software; the Free Software Foundation
  1352. +gives unlimited permission to copy, distribute and modify it.
  1353. +_ACEOF
  1354. + exit
  1355. +fi
  1356. +
  1357. +## ------------------------ ##
  1358. +## Autoconf initialization. ##
  1359. +## ------------------------ ##
  1360. +
  1361. +# ac_fn_c_try_compile LINENO
  1362. +# --------------------------
  1363. +# Try to compile conftest.$ac_ext, and return whether this succeeded.
  1364. +ac_fn_c_try_compile ()
  1365. +{
  1366. + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
  1367. + rm -f conftest.$ac_objext
  1368. + if { { ac_try="$ac_compile"
  1369. +case "(($ac_try" in
  1370. + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1371. + *) ac_try_echo=$ac_try;;
  1372. +esac
  1373. +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
  1374. +$as_echo "$ac_try_echo"; } >&5
  1375. + (eval "$ac_compile") 2>conftest.err
  1376. + ac_status=$?
  1377. + if test -s conftest.err; then
  1378. + grep -v '^ *+' conftest.err >conftest.er1
  1379. + cat conftest.er1 >&5
  1380. + mv -f conftest.er1 conftest.err
  1381. + fi
  1382. + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
  1383. + test $ac_status = 0; } && {
  1384. + test -z "$ac_c_werror_flag" ||
  1385. + test ! -s conftest.err
  1386. + } && test -s conftest.$ac_objext; then :
  1387. + ac_retval=0
  1388. +else
  1389. + $as_echo "$as_me: failed program was:" >&5
  1390. +sed 's/^/| /' conftest.$ac_ext >&5
  1391. +
  1392. + ac_retval=1
  1393. +fi
  1394. + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
  1395. + as_fn_set_status $ac_retval
  1396. +
  1397. +} # ac_fn_c_try_compile
  1398. +
  1399. +# ac_fn_c_try_link LINENO
  1400. +# -----------------------
  1401. +# Try to link conftest.$ac_ext, and return whether this succeeded.
  1402. +ac_fn_c_try_link ()
  1403. +{
  1404. + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
  1405. + rm -f conftest.$ac_objext conftest$ac_exeext
  1406. + if { { ac_try="$ac_link"
  1407. +case "(($ac_try" in
  1408. + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1409. + *) ac_try_echo=$ac_try;;
  1410. +esac
  1411. +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
  1412. +$as_echo "$ac_try_echo"; } >&5
  1413. + (eval "$ac_link") 2>conftest.err
  1414. + ac_status=$?
  1415. + if test -s conftest.err; then
  1416. + grep -v '^ *+' conftest.err >conftest.er1
  1417. + cat conftest.er1 >&5
  1418. + mv -f conftest.er1 conftest.err
  1419. + fi
  1420. + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
  1421. + test $ac_status = 0; } && {
  1422. + test -z "$ac_c_werror_flag" ||
  1423. + test ! -s conftest.err
  1424. + } && test -s conftest$ac_exeext && {
  1425. + test "$cross_compiling" = yes ||
  1426. + $as_test_x conftest$ac_exeext
  1427. + }; then :
  1428. + ac_retval=0
  1429. +else
  1430. + $as_echo "$as_me: failed program was:" >&5
  1431. +sed 's/^/| /' conftest.$ac_ext >&5
  1432. +
  1433. + ac_retval=1
  1434. +fi
  1435. + # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information
  1436. + # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would
  1437. + # interfere with the next link command; also delete a directory that is
  1438. + # left behind by Apple's compiler. We do this before executing the actions.
  1439. + rm -rf conftest.dSYM conftest_ipa8_conftest.oo
  1440. + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
  1441. + as_fn_set_status $ac_retval
  1442. +
  1443. +} # ac_fn_c_try_link
  1444. +
  1445. +# ac_fn_c_try_cpp LINENO
  1446. +# ----------------------
  1447. +# Try to preprocess conftest.$ac_ext, and return whether this succeeded.
  1448. +ac_fn_c_try_cpp ()
  1449. +{
  1450. + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
  1451. + if { { ac_try="$ac_cpp conftest.$ac_ext"
  1452. +case "(($ac_try" in
  1453. + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1454. + *) ac_try_echo=$ac_try;;
  1455. +esac
  1456. +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
  1457. +$as_echo "$ac_try_echo"; } >&5
  1458. + (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err
  1459. + ac_status=$?
  1460. + if test -s conftest.err; then
  1461. + grep -v '^ *+' conftest.err >conftest.er1
  1462. + cat conftest.er1 >&5
  1463. + mv -f conftest.er1 conftest.err
  1464. + fi
  1465. + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
  1466. + test $ac_status = 0; } >/dev/null && {
  1467. + test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
  1468. + test ! -s conftest.err
  1469. + }; then :
  1470. + ac_retval=0
  1471. +else
  1472. + $as_echo "$as_me: failed program was:" >&5
  1473. +sed 's/^/| /' conftest.$ac_ext >&5
  1474. +
  1475. + ac_retval=1
  1476. +fi
  1477. + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
  1478. + as_fn_set_status $ac_retval
  1479. +
  1480. +} # ac_fn_c_try_cpp
  1481. +
  1482. +# ac_fn_c_try_run LINENO
  1483. +# ----------------------
  1484. +# Try to link conftest.$ac_ext, and return whether this succeeded. Assumes
  1485. +# that executables *can* be run.
  1486. +ac_fn_c_try_run ()
  1487. +{
  1488. + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
  1489. + if { { ac_try="$ac_link"
  1490. +case "(($ac_try" in
  1491. + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1492. + *) ac_try_echo=$ac_try;;
  1493. +esac
  1494. +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
  1495. +$as_echo "$ac_try_echo"; } >&5
  1496. + (eval "$ac_link") 2>&5
  1497. + ac_status=$?
  1498. + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
  1499. + test $ac_status = 0; } && { ac_try='./conftest$ac_exeext'
  1500. + { { case "(($ac_try" in
  1501. + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  1502. + *) ac_try_echo=$ac_try;;
  1503. +esac
  1504. +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
  1505. +$as_echo "$ac_try_echo"; } >&5
  1506. + (eval "$ac_try") 2>&5
  1507. + ac_status=$?
  1508. + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
  1509. + test $ac_status = 0; }; }; then :
  1510. + ac_retval=0
  1511. +else
  1512. + $as_echo "$as_me: program exited with status $ac_status" >&5
  1513. + $as_echo "$as_me: failed program was:" >&5
  1514. +sed 's/^/| /' conftest.$ac_ext >&5
  1515. +
  1516. + ac_retval=$ac_status
  1517. +fi
  1518. + rm -rf conftest.dSYM conftest_ipa8_conftest.oo
  1519. + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
  1520. + as_fn_set_status $ac_retval
  1521. +
  1522. +} # ac_fn_c_try_run
  1523. +
  1524. +# ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES
  1525. +# -------------------------------------------------------
  1526. +# Tests whether HEADER exists, giving a warning if it cannot be compiled using
  1527. +# the include files in INCLUDES and setting the cache variable VAR
  1528. +# accordingly.
  1529. +ac_fn_c_check_header_mongrel ()
  1530. +{
  1531. + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
  1532. + if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
  1533. + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
  1534. +$as_echo_n "checking for $2... " >&6; }
  1535. +if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
  1536. + $as_echo_n "(cached) " >&6
  1537. +fi
  1538. +eval ac_res=\$$3
  1539. + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
  1540. +$as_echo "$ac_res" >&6; }
  1541. +else
  1542. + # Is the header compilable?
  1543. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5
  1544. +$as_echo_n "checking $2 usability... " >&6; }
  1545. +cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  1546. +/* end confdefs.h. */
  1547. +$4
  1548. +#include <$2>
  1549. +_ACEOF
  1550. +if ac_fn_c_try_compile "$LINENO"; then :
  1551. + ac_header_compiler=yes
  1552. +else
  1553. + ac_header_compiler=no
  1554. +fi
  1555. +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
  1556. +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5
  1557. +$as_echo "$ac_header_compiler" >&6; }
  1558. +
  1559. +# Is the header present?
  1560. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5
  1561. +$as_echo_n "checking $2 presence... " >&6; }
  1562. +cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  1563. +/* end confdefs.h. */
  1564. +#include <$2>
  1565. +_ACEOF
  1566. +if ac_fn_c_try_cpp "$LINENO"; then :
  1567. + ac_header_preproc=yes
  1568. +else
  1569. + ac_header_preproc=no
  1570. +fi
  1571. +rm -f conftest.err conftest.$ac_ext
  1572. +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5
  1573. +$as_echo "$ac_header_preproc" >&6; }
  1574. +
  1575. +# So? What about this header?
  1576. +case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #((
  1577. + yes:no: )
  1578. + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5
  1579. +$as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;}
  1580. + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5
  1581. +$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
  1582. + ;;
  1583. + no:yes:* )
  1584. + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5
  1585. +$as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;}
  1586. + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5
  1587. +$as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;}
  1588. + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5
  1589. +$as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;}
  1590. + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5
  1591. +$as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;}
  1592. + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5
  1593. +$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
  1594. + ;;
  1595. +esac
  1596. + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
  1597. +$as_echo_n "checking for $2... " >&6; }
  1598. +if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
  1599. + $as_echo_n "(cached) " >&6
  1600. +else
  1601. + eval "$3=\$ac_header_compiler"
  1602. +fi
  1603. +eval ac_res=\$$3
  1604. + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
  1605. +$as_echo "$ac_res" >&6; }
  1606. +fi
  1607. + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
  1608. +
  1609. +} # ac_fn_c_check_header_mongrel
  1610. +
  1611. +# ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES
  1612. +# -------------------------------------------------------
  1613. +# Tests whether HEADER exists and can be compiled using the include files in
  1614. +# INCLUDES, setting the cache variable VAR accordingly.
  1615. +ac_fn_c_check_header_compile ()
  1616. +{
  1617. + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
  1618. + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
  1619. +$as_echo_n "checking for $2... " >&6; }
  1620. +if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
  1621. + $as_echo_n "(cached) " >&6
  1622. +else
  1623. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  1624. +/* end confdefs.h. */
  1625. +$4
  1626. +#include <$2>
  1627. +_ACEOF
  1628. +if ac_fn_c_try_compile "$LINENO"; then :
  1629. + eval "$3=yes"
  1630. +else
  1631. + eval "$3=no"
  1632. +fi
  1633. +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
  1634. +fi
  1635. +eval ac_res=\$$3
  1636. + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
  1637. +$as_echo "$ac_res" >&6; }
  1638. + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
  1639. +
  1640. +} # ac_fn_c_check_header_compile
  1641. +
  1642. +# ac_fn_c_check_func LINENO FUNC VAR
  1643. +# ----------------------------------
  1644. +# Tests whether FUNC exists, setting the cache variable VAR accordingly
  1645. +ac_fn_c_check_func ()
  1646. +{
  1647. + as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
  1648. + { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
  1649. +$as_echo_n "checking for $2... " >&6; }
  1650. +if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
  1651. + $as_echo_n "(cached) " >&6
  1652. +else
  1653. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  1654. +/* end confdefs.h. */
  1655. +/* Define $2 to an innocuous variant, in case <limits.h> declares $2.
  1656. + For example, HP-UX 11i <limits.h> declares gettimeofday. */
  1657. +#define $2 innocuous_$2
  1658. +
  1659. +/* System header to define __stub macros and hopefully few prototypes,
  1660. + which can conflict with char $2 (); below.
  1661. + Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  1662. + <limits.h> exists even on freestanding compilers. */
  1663. +
  1664. +#ifdef __STDC__
  1665. +# include <limits.h>
  1666. +#else
  1667. +# include <assert.h>
  1668. +#endif
  1669. +
  1670. +#undef $2
  1671. +
  1672. +/* Override any GCC internal prototype to avoid an error.
  1673. + Use char because int might match the return type of a GCC
  1674. + builtin and then its argument prototype would still apply. */
  1675. +#ifdef __cplusplus
  1676. +extern "C"
  1677. +#endif
  1678. +char $2 ();
  1679. +/* The GNU C library defines this for functions which it implements
  1680. + to always fail with ENOSYS. Some functions are actually named
  1681. + something starting with __ and the normal name is an alias. */
  1682. +#if defined __stub_$2 || defined __stub___$2
  1683. +choke me
  1684. +#endif
  1685. +
  1686. +int
  1687. +main ()
  1688. +{
  1689. +return $2 ();
  1690. + ;
  1691. + return 0;
  1692. +}
  1693. +_ACEOF
  1694. +if ac_fn_c_try_link "$LINENO"; then :
  1695. + eval "$3=yes"
  1696. +else
  1697. + eval "$3=no"
  1698. +fi
  1699. +rm -f core conftest.err conftest.$ac_objext \
  1700. + conftest$ac_exeext conftest.$ac_ext
  1701. +fi
  1702. +eval ac_res=\$$3
  1703. + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
  1704. +$as_echo "$ac_res" >&6; }
  1705. + eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
  1706. +
  1707. +} # ac_fn_c_check_func
  1708. +cat >config.log <<_ACEOF
  1709. +This file contains any messages produced by compilers while
  1710. +running configure, to aid debugging if configure makes a mistake.
  1711. +
  1712. +It was created by $as_me, which was
  1713. +generated by GNU Autoconf 2.65. Invocation command line was
  1714. +
  1715. + $ $0 $@
  1716. +
  1717. +_ACEOF
  1718. +exec 5>>config.log
  1719. +{
  1720. +cat <<_ASUNAME
  1721. +## --------- ##
  1722. +## Platform. ##
  1723. +## --------- ##
  1724. +
  1725. +hostname = `(hostname || uname -n) 2>/dev/null | sed 1q`
  1726. +uname -m = `(uname -m) 2>/dev/null || echo unknown`
  1727. +uname -r = `(uname -r) 2>/dev/null || echo unknown`
  1728. +uname -s = `(uname -s) 2>/dev/null || echo unknown`
  1729. +uname -v = `(uname -v) 2>/dev/null || echo unknown`
  1730. +
  1731. +/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown`
  1732. +/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown`
  1733. +
  1734. +/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown`
  1735. +/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown`
  1736. +/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown`
  1737. +/usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown`
  1738. +/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown`
  1739. +/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown`
  1740. +/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown`
  1741. +
  1742. +_ASUNAME
  1743. +
  1744. +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  1745. +for as_dir in $PATH
  1746. +do
  1747. + IFS=$as_save_IFS
  1748. + test -z "$as_dir" && as_dir=.
  1749. + $as_echo "PATH: $as_dir"
  1750. + done
  1751. +IFS=$as_save_IFS
  1752. +
  1753. +} >&5
  1754. +
  1755. +cat >&5 <<_ACEOF
  1756. +
  1757. +
  1758. +## ----------- ##
  1759. +## Core tests. ##
  1760. +## ----------- ##
  1761. +
  1762. +_ACEOF
  1763. +
  1764. +
  1765. +# Keep a trace of the command line.
  1766. +# Strip out --no-create and --no-recursion so they do not pile up.
  1767. +# Strip out --silent because we don't want to record it for future runs.
  1768. +# Also quote any args containing shell meta-characters.
  1769. +# Make two passes to allow for proper duplicate-argument suppression.
  1770. +ac_configure_args=
  1771. +ac_configure_args0=
  1772. +ac_configure_args1=
  1773. +ac_must_keep_next=false
  1774. +for ac_pass in 1 2
  1775. +do
  1776. + for ac_arg
  1777. + do
  1778. + case $ac_arg in
  1779. + -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;;
  1780. + -q | -quiet | --quiet | --quie | --qui | --qu | --q \
  1781. + | -silent | --silent | --silen | --sile | --sil)
  1782. + continue ;;
  1783. + *\'*)
  1784. + ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
  1785. + esac
  1786. + case $ac_pass in
  1787. + 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;;
  1788. + 2)
  1789. + as_fn_append ac_configure_args1 " '$ac_arg'"
  1790. + if test $ac_must_keep_next = true; then
  1791. + ac_must_keep_next=false # Got value, back to normal.
  1792. + else
  1793. + case $ac_arg in
  1794. + *=* | --config-cache | -C | -disable-* | --disable-* \
  1795. + | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
  1796. + | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
  1797. + | -with-* | --with-* | -without-* | --without-* | --x)
  1798. + case "$ac_configure_args0 " in
  1799. + "$ac_configure_args1"*" '$ac_arg' "* ) continue ;;
  1800. + esac
  1801. + ;;
  1802. + -* ) ac_must_keep_next=true ;;
  1803. + esac
  1804. + fi
  1805. + as_fn_append ac_configure_args " '$ac_arg'"
  1806. + ;;
  1807. + esac
  1808. + done
  1809. +done
  1810. +{ ac_configure_args0=; unset ac_configure_args0;}
  1811. +{ ac_configure_args1=; unset ac_configure_args1;}
  1812. +
  1813. +# When interrupted or exit'd, cleanup temporary files, and complete
  1814. +# config.log. We remove comments because anyway the quotes in there
  1815. +# would cause problems or look ugly.
  1816. +# WARNING: Use '\'' to represent an apostrophe within the trap.
  1817. +# WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug.
  1818. +trap 'exit_status=$?
  1819. + # Save into config.log some information that might help in debugging.
  1820. + {
  1821. + echo
  1822. +
  1823. + cat <<\_ASBOX
  1824. +## ---------------- ##
  1825. +## Cache variables. ##
  1826. +## ---------------- ##
  1827. +_ASBOX
  1828. + echo
  1829. + # The following way of writing the cache mishandles newlines in values,
  1830. +(
  1831. + for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do
  1832. + eval ac_val=\$$ac_var
  1833. + case $ac_val in #(
  1834. + *${as_nl}*)
  1835. + case $ac_var in #(
  1836. + *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
  1837. +$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
  1838. + esac
  1839. + case $ac_var in #(
  1840. + _ | IFS | as_nl) ;; #(
  1841. + BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
  1842. + *) { eval $ac_var=; unset $ac_var;} ;;
  1843. + esac ;;
  1844. + esac
  1845. + done
  1846. + (set) 2>&1 |
  1847. + case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #(
  1848. + *${as_nl}ac_space=\ *)
  1849. + sed -n \
  1850. + "s/'\''/'\''\\\\'\'''\''/g;
  1851. + s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p"
  1852. + ;; #(
  1853. + *)
  1854. + sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
  1855. + ;;
  1856. + esac |
  1857. + sort
  1858. +)
  1859. + echo
  1860. +
  1861. + cat <<\_ASBOX
  1862. +## ----------------- ##
  1863. +## Output variables. ##
  1864. +## ----------------- ##
  1865. +_ASBOX
  1866. + echo
  1867. + for ac_var in $ac_subst_vars
  1868. + do
  1869. + eval ac_val=\$$ac_var
  1870. + case $ac_val in
  1871. + *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
  1872. + esac
  1873. + $as_echo "$ac_var='\''$ac_val'\''"
  1874. + done | sort
  1875. + echo
  1876. +
  1877. + if test -n "$ac_subst_files"; then
  1878. + cat <<\_ASBOX
  1879. +## ------------------- ##
  1880. +## File substitutions. ##
  1881. +## ------------------- ##
  1882. +_ASBOX
  1883. + echo
  1884. + for ac_var in $ac_subst_files
  1885. + do
  1886. + eval ac_val=\$$ac_var
  1887. + case $ac_val in
  1888. + *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
  1889. + esac
  1890. + $as_echo "$ac_var='\''$ac_val'\''"
  1891. + done | sort
  1892. + echo
  1893. + fi
  1894. +
  1895. + if test -s confdefs.h; then
  1896. + cat <<\_ASBOX
  1897. +## ----------- ##
  1898. +## confdefs.h. ##
  1899. +## ----------- ##
  1900. +_ASBOX
  1901. + echo
  1902. + cat confdefs.h
  1903. + echo
  1904. + fi
  1905. + test "$ac_signal" != 0 &&
  1906. + $as_echo "$as_me: caught signal $ac_signal"
  1907. + $as_echo "$as_me: exit $exit_status"
  1908. + } >&5
  1909. + rm -f core *.core core.conftest.* &&
  1910. + rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&
  1911. + exit $exit_status
  1912. +' 0
  1913. +for ac_signal in 1 2 13 15; do
  1914. + trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal
  1915. +done
  1916. +ac_signal=0
  1917. +
  1918. +# confdefs.h avoids OS command line length limits that DEFS can exceed.
  1919. +rm -f -r conftest* confdefs.h
  1920. +
  1921. +$as_echo "/* confdefs.h */" > confdefs.h
  1922. +
  1923. +# Predefined preprocessor variables.
  1924. +
  1925. +cat >>confdefs.h <<_ACEOF
  1926. +#define PACKAGE_NAME "$PACKAGE_NAME"
  1927. +_ACEOF
  1928. +
  1929. +cat >>confdefs.h <<_ACEOF
  1930. +#define PACKAGE_TARNAME "$PACKAGE_TARNAME"
  1931. +_ACEOF
  1932. +
  1933. +cat >>confdefs.h <<_ACEOF
  1934. +#define PACKAGE_VERSION "$PACKAGE_VERSION"
  1935. +_ACEOF
  1936. +
  1937. +cat >>confdefs.h <<_ACEOF
  1938. +#define PACKAGE_STRING "$PACKAGE_STRING"
  1939. +_ACEOF
  1940. +
  1941. +cat >>confdefs.h <<_ACEOF
  1942. +#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT"
  1943. +_ACEOF
  1944. +
  1945. +cat >>confdefs.h <<_ACEOF
  1946. +#define PACKAGE_URL "$PACKAGE_URL"
  1947. +_ACEOF
  1948. +
  1949. +
  1950. +# Let the site file select an alternate cache file if it wants to.
  1951. +# Prefer an explicitly selected file to automatically selected ones.
  1952. +ac_site_file1=NONE
  1953. +ac_site_file2=NONE
  1954. +if test -n "$CONFIG_SITE"; then
  1955. + ac_site_file1=$CONFIG_SITE
  1956. +elif test "x$prefix" != xNONE; then
  1957. + ac_site_file1=$prefix/share/config.site
  1958. + ac_site_file2=$prefix/etc/config.site
  1959. +else
  1960. + ac_site_file1=$ac_default_prefix/share/config.site
  1961. + ac_site_file2=$ac_default_prefix/etc/config.site
  1962. +fi
  1963. +for ac_site_file in "$ac_site_file1" "$ac_site_file2"
  1964. +do
  1965. + test "x$ac_site_file" = xNONE && continue
  1966. + if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then
  1967. + { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
  1968. +$as_echo "$as_me: loading site script $ac_site_file" >&6;}
  1969. + sed 's/^/| /' "$ac_site_file" >&5
  1970. + . "$ac_site_file"
  1971. + fi
  1972. +done
  1973. +
  1974. +if test -r "$cache_file"; then
  1975. + # Some versions of bash will fail to source /dev/null (special files
  1976. + # actually), so we avoid doing that. DJGPP emulates it as a regular file.
  1977. + if test /dev/null != "$cache_file" && test -f "$cache_file"; then
  1978. + { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5
  1979. +$as_echo "$as_me: loading cache $cache_file" >&6;}
  1980. + case $cache_file in
  1981. + [\\/]* | ?:[\\/]* ) . "$cache_file";;
  1982. + *) . "./$cache_file";;
  1983. + esac
  1984. + fi
  1985. +else
  1986. + { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5
  1987. +$as_echo "$as_me: creating cache $cache_file" >&6;}
  1988. + >$cache_file
  1989. +fi
  1990. +
  1991. +# Check that the precious variables saved in the cache have kept the same
  1992. +# value.
  1993. +ac_cache_corrupted=false
  1994. +for ac_var in $ac_precious_vars; do
  1995. + eval ac_old_set=\$ac_cv_env_${ac_var}_set
  1996. + eval ac_new_set=\$ac_env_${ac_var}_set
  1997. + eval ac_old_val=\$ac_cv_env_${ac_var}_value
  1998. + eval ac_new_val=\$ac_env_${ac_var}_value
  1999. + case $ac_old_set,$ac_new_set in
  2000. + set,)
  2001. + { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
  2002. +$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
  2003. + ac_cache_corrupted=: ;;
  2004. + ,set)
  2005. + { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5
  2006. +$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
  2007. + ac_cache_corrupted=: ;;
  2008. + ,);;
  2009. + *)
  2010. + if test "x$ac_old_val" != "x$ac_new_val"; then
  2011. + # differences in whitespace do not lead to failure.
  2012. + ac_old_val_w=`echo x $ac_old_val`
  2013. + ac_new_val_w=`echo x $ac_new_val`
  2014. + if test "$ac_old_val_w" != "$ac_new_val_w"; then
  2015. + { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5
  2016. +$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
  2017. + ac_cache_corrupted=:
  2018. + else
  2019. + { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5
  2020. +$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;}
  2021. + eval $ac_var=\$ac_old_val
  2022. + fi
  2023. + { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5
  2024. +$as_echo "$as_me: former value: \`$ac_old_val'" >&2;}
  2025. + { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5
  2026. +$as_echo "$as_me: current value: \`$ac_new_val'" >&2;}
  2027. + fi;;
  2028. + esac
  2029. + # Pass precious variables to config.status.
  2030. + if test "$ac_new_set" = set; then
  2031. + case $ac_new_val in
  2032. + *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
  2033. + *) ac_arg=$ac_var=$ac_new_val ;;
  2034. + esac
  2035. + case " $ac_configure_args " in
  2036. + *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy.
  2037. + *) as_fn_append ac_configure_args " '$ac_arg'" ;;
  2038. + esac
  2039. + fi
  2040. +done
  2041. +if $ac_cache_corrupted; then
  2042. + { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
  2043. +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
  2044. + { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
  2045. +$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;}
  2046. + as_fn_error "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5
  2047. +fi
  2048. +## -------------------- ##
  2049. +## Main body of script. ##
  2050. +## -------------------- ##
  2051. +
  2052. +ac_ext=c
  2053. +ac_cpp='$CPP $CPPFLAGS'
  2054. +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
  2055. +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
  2056. +ac_compiler_gnu=$ac_cv_c_compiler_gnu
  2057. +
  2058. +
  2059. +
  2060. +ac_ext=c
  2061. +ac_cpp='$CPP $CPPFLAGS'
  2062. +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
  2063. +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
  2064. +ac_compiler_gnu=$ac_cv_c_compiler_gnu
  2065. +if test -n "$ac_tool_prefix"; then
  2066. + # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
  2067. +set dummy ${ac_tool_prefix}gcc; ac_word=$2
  2068. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  2069. +$as_echo_n "checking for $ac_word... " >&6; }
  2070. +if test "${ac_cv_prog_CC+set}" = set; then :
  2071. + $as_echo_n "(cached) " >&6
  2072. +else
  2073. + if test -n "$CC"; then
  2074. + ac_cv_prog_CC="$CC" # Let the user override the test.
  2075. +else
  2076. +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  2077. +for as_dir in $PATH
  2078. +do
  2079. + IFS=$as_save_IFS
  2080. + test -z "$as_dir" && as_dir=.
  2081. + for ac_exec_ext in '' $ac_executable_extensions; do
  2082. + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
  2083. + ac_cv_prog_CC="${ac_tool_prefix}gcc"
  2084. + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  2085. + break 2
  2086. + fi
  2087. +done
  2088. + done
  2089. +IFS=$as_save_IFS
  2090. +
  2091. +fi
  2092. +fi
  2093. +CC=$ac_cv_prog_CC
  2094. +if test -n "$CC"; then
  2095. + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
  2096. +$as_echo "$CC" >&6; }
  2097. +else
  2098. + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
  2099. +$as_echo "no" >&6; }
  2100. +fi
  2101. +
  2102. +
  2103. +fi
  2104. +if test -z "$ac_cv_prog_CC"; then
  2105. + ac_ct_CC=$CC
  2106. + # Extract the first word of "gcc", so it can be a program name with args.
  2107. +set dummy gcc; ac_word=$2
  2108. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  2109. +$as_echo_n "checking for $ac_word... " >&6; }
  2110. +if test "${ac_cv_prog_ac_ct_CC+set}" = set; then :
  2111. + $as_echo_n "(cached) " >&6
  2112. +else
  2113. + if test -n "$ac_ct_CC"; then
  2114. + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
  2115. +else
  2116. +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  2117. +for as_dir in $PATH
  2118. +do
  2119. + IFS=$as_save_IFS
  2120. + test -z "$as_dir" && as_dir=.
  2121. + for ac_exec_ext in '' $ac_executable_extensions; do
  2122. + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
  2123. + ac_cv_prog_ac_ct_CC="gcc"
  2124. + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  2125. + break 2
  2126. + fi
  2127. +done
  2128. + done
  2129. +IFS=$as_save_IFS
  2130. +
  2131. +fi
  2132. +fi
  2133. +ac_ct_CC=$ac_cv_prog_ac_ct_CC
  2134. +if test -n "$ac_ct_CC"; then
  2135. + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
  2136. +$as_echo "$ac_ct_CC" >&6; }
  2137. +else
  2138. + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
  2139. +$as_echo "no" >&6; }
  2140. +fi
  2141. +
  2142. + if test "x$ac_ct_CC" = x; then
  2143. + CC=""
  2144. + else
  2145. + case $cross_compiling:$ac_tool_warned in
  2146. +yes:)
  2147. +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
  2148. +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
  2149. +ac_tool_warned=yes ;;
  2150. +esac
  2151. + CC=$ac_ct_CC
  2152. + fi
  2153. +else
  2154. + CC="$ac_cv_prog_CC"
  2155. +fi
  2156. +
  2157. +if test -z "$CC"; then
  2158. + if test -n "$ac_tool_prefix"; then
  2159. + # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
  2160. +set dummy ${ac_tool_prefix}cc; ac_word=$2
  2161. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  2162. +$as_echo_n "checking for $ac_word... " >&6; }
  2163. +if test "${ac_cv_prog_CC+set}" = set; then :
  2164. + $as_echo_n "(cached) " >&6
  2165. +else
  2166. + if test -n "$CC"; then
  2167. + ac_cv_prog_CC="$CC" # Let the user override the test.
  2168. +else
  2169. +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  2170. +for as_dir in $PATH
  2171. +do
  2172. + IFS=$as_save_IFS
  2173. + test -z "$as_dir" && as_dir=.
  2174. + for ac_exec_ext in '' $ac_executable_extensions; do
  2175. + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
  2176. + ac_cv_prog_CC="${ac_tool_prefix}cc"
  2177. + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  2178. + break 2
  2179. + fi
  2180. +done
  2181. + done
  2182. +IFS=$as_save_IFS
  2183. +
  2184. +fi
  2185. +fi
  2186. +CC=$ac_cv_prog_CC
  2187. +if test -n "$CC"; then
  2188. + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
  2189. +$as_echo "$CC" >&6; }
  2190. +else
  2191. + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
  2192. +$as_echo "no" >&6; }
  2193. +fi
  2194. +
  2195. +
  2196. + fi
  2197. +fi
  2198. +if test -z "$CC"; then
  2199. + # Extract the first word of "cc", so it can be a program name with args.
  2200. +set dummy cc; ac_word=$2
  2201. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  2202. +$as_echo_n "checking for $ac_word... " >&6; }
  2203. +if test "${ac_cv_prog_CC+set}" = set; then :
  2204. + $as_echo_n "(cached) " >&6
  2205. +else
  2206. + if test -n "$CC"; then
  2207. + ac_cv_prog_CC="$CC" # Let the user override the test.
  2208. +else
  2209. + ac_prog_rejected=no
  2210. +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  2211. +for as_dir in $PATH
  2212. +do
  2213. + IFS=$as_save_IFS
  2214. + test -z "$as_dir" && as_dir=.
  2215. + for ac_exec_ext in '' $ac_executable_extensions; do
  2216. + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
  2217. + if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
  2218. + ac_prog_rejected=yes
  2219. + continue
  2220. + fi
  2221. + ac_cv_prog_CC="cc"
  2222. + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  2223. + break 2
  2224. + fi
  2225. +done
  2226. + done
  2227. +IFS=$as_save_IFS
  2228. +
  2229. +if test $ac_prog_rejected = yes; then
  2230. + # We found a bogon in the path, so make sure we never use it.
  2231. + set dummy $ac_cv_prog_CC
  2232. + shift
  2233. + if test $# != 0; then
  2234. + # We chose a different compiler from the bogus one.
  2235. + # However, it has the same basename, so the bogon will be chosen
  2236. + # first if we set CC to just the basename; use the full file name.
  2237. + shift
  2238. + ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@"
  2239. + fi
  2240. +fi
  2241. +fi
  2242. +fi
  2243. +CC=$ac_cv_prog_CC
  2244. +if test -n "$CC"; then
  2245. + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
  2246. +$as_echo "$CC" >&6; }
  2247. +else
  2248. + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
  2249. +$as_echo "no" >&6; }
  2250. +fi
  2251. +
  2252. +
  2253. +fi
  2254. +if test -z "$CC"; then
  2255. + if test -n "$ac_tool_prefix"; then
  2256. + for ac_prog in cl.exe
  2257. + do
  2258. + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
  2259. +set dummy $ac_tool_prefix$ac_prog; ac_word=$2
  2260. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  2261. +$as_echo_n "checking for $ac_word... " >&6; }
  2262. +if test "${ac_cv_prog_CC+set}" = set; then :
  2263. + $as_echo_n "(cached) " >&6
  2264. +else
  2265. + if test -n "$CC"; then
  2266. + ac_cv_prog_CC="$CC" # Let the user override the test.
  2267. +else
  2268. +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  2269. +for as_dir in $PATH
  2270. +do
  2271. + IFS=$as_save_IFS
  2272. + test -z "$as_dir" && as_dir=.
  2273. + for ac_exec_ext in '' $ac_executable_extensions; do
  2274. + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
  2275. + ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
  2276. + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  2277. + break 2
  2278. + fi
  2279. +done
  2280. + done
  2281. +IFS=$as_save_IFS
  2282. +
  2283. +fi
  2284. +fi
  2285. +CC=$ac_cv_prog_CC
  2286. +if test -n "$CC"; then
  2287. + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5
  2288. +$as_echo "$CC" >&6; }
  2289. +else
  2290. + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
  2291. +$as_echo "no" >&6; }
  2292. +fi
  2293. +
  2294. +
  2295. + test -n "$CC" && break
  2296. + done
  2297. +fi
  2298. +if test -z "$CC"; then
  2299. + ac_ct_CC=$CC
  2300. + for ac_prog in cl.exe
  2301. +do
  2302. + # Extract the first word of "$ac_prog", so it can be a program name with args.
  2303. +set dummy $ac_prog; ac_word=$2
  2304. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  2305. +$as_echo_n "checking for $ac_word... " >&6; }
  2306. +if test "${ac_cv_prog_ac_ct_CC+set}" = set; then :
  2307. + $as_echo_n "(cached) " >&6
  2308. +else
  2309. + if test -n "$ac_ct_CC"; then
  2310. + ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
  2311. +else
  2312. +as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  2313. +for as_dir in $PATH
  2314. +do
  2315. + IFS=$as_save_IFS
  2316. + test -z "$as_dir" && as_dir=.
  2317. + for ac_exec_ext in '' $ac_executable_extensions; do
  2318. + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
  2319. + ac_cv_prog_ac_ct_CC="$ac_prog"
  2320. + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  2321. + break 2
  2322. + fi
  2323. +done
  2324. + done
  2325. +IFS=$as_save_IFS
  2326. +
  2327. +fi
  2328. +fi
  2329. +ac_ct_CC=$ac_cv_prog_ac_ct_CC
  2330. +if test -n "$ac_ct_CC"; then
  2331. + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5
  2332. +$as_echo "$ac_ct_CC" >&6; }
  2333. +else
  2334. + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
  2335. +$as_echo "no" >&6; }
  2336. +fi
  2337. +
  2338. +
  2339. + test -n "$ac_ct_CC" && break
  2340. +done
  2341. +
  2342. + if test "x$ac_ct_CC" = x; then
  2343. + CC=""
  2344. + else
  2345. + case $cross_compiling:$ac_tool_warned in
  2346. +yes:)
  2347. +{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
  2348. +$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
  2349. +ac_tool_warned=yes ;;
  2350. +esac
  2351. + CC=$ac_ct_CC
  2352. + fi
  2353. +fi
  2354. +
  2355. +fi
  2356. +
  2357. +
  2358. +test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
  2359. +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
  2360. +as_fn_error "no acceptable C compiler found in \$PATH
  2361. +See \`config.log' for more details." "$LINENO" 5; }
  2362. +
  2363. +# Provide some information about the compiler.
  2364. +$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5
  2365. +set X $ac_compile
  2366. +ac_compiler=$2
  2367. +for ac_option in --version -v -V -qversion; do
  2368. + { { ac_try="$ac_compiler $ac_option >&5"
  2369. +case "(($ac_try" in
  2370. + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2371. + *) ac_try_echo=$ac_try;;
  2372. +esac
  2373. +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
  2374. +$as_echo "$ac_try_echo"; } >&5
  2375. + (eval "$ac_compiler $ac_option >&5") 2>conftest.err
  2376. + ac_status=$?
  2377. + if test -s conftest.err; then
  2378. + sed '10a\
  2379. +... rest of stderr output deleted ...
  2380. + 10q' conftest.err >conftest.er1
  2381. + cat conftest.er1 >&5
  2382. + fi
  2383. + rm -f conftest.er1 conftest.err
  2384. + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
  2385. + test $ac_status = 0; }
  2386. +done
  2387. +
  2388. +cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  2389. +/* end confdefs.h. */
  2390. +
  2391. +int
  2392. +main ()
  2393. +{
  2394. +
  2395. + ;
  2396. + return 0;
  2397. +}
  2398. +_ACEOF
  2399. +ac_clean_files_save=$ac_clean_files
  2400. +ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out"
  2401. +# Try to create an executable without -o first, disregard a.out.
  2402. +# It will help us diagnose broken compilers, and finding out an intuition
  2403. +# of exeext.
  2404. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5
  2405. +$as_echo_n "checking whether the C compiler works... " >&6; }
  2406. +ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
  2407. +
  2408. +# The possible output files:
  2409. +ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*"
  2410. +
  2411. +ac_rmfiles=
  2412. +for ac_file in $ac_files
  2413. +do
  2414. + case $ac_file in
  2415. + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
  2416. + * ) ac_rmfiles="$ac_rmfiles $ac_file";;
  2417. + esac
  2418. +done
  2419. +rm -f $ac_rmfiles
  2420. +
  2421. +if { { ac_try="$ac_link_default"
  2422. +case "(($ac_try" in
  2423. + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2424. + *) ac_try_echo=$ac_try;;
  2425. +esac
  2426. +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
  2427. +$as_echo "$ac_try_echo"; } >&5
  2428. + (eval "$ac_link_default") 2>&5
  2429. + ac_status=$?
  2430. + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
  2431. + test $ac_status = 0; }; then :
  2432. + # Autoconf-2.13 could set the ac_cv_exeext variable to `no'.
  2433. +# So ignore a value of `no', otherwise this would lead to `EXEEXT = no'
  2434. +# in a Makefile. We should not override ac_cv_exeext if it was cached,
  2435. +# so that the user can short-circuit this test for compilers unknown to
  2436. +# Autoconf.
  2437. +for ac_file in $ac_files ''
  2438. +do
  2439. + test -f "$ac_file" || continue
  2440. + case $ac_file in
  2441. + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj )
  2442. + ;;
  2443. + [ab].out )
  2444. + # We found the default executable, but exeext='' is most
  2445. + # certainly right.
  2446. + break;;
  2447. + *.* )
  2448. + if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no;
  2449. + then :; else
  2450. + ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
  2451. + fi
  2452. + # We set ac_cv_exeext here because the later test for it is not
  2453. + # safe: cross compilers may not add the suffix if given an `-o'
  2454. + # argument, so we may need to know it at that point already.
  2455. + # Even if this section looks crufty: it has the advantage of
  2456. + # actually working.
  2457. + break;;
  2458. + * )
  2459. + break;;
  2460. + esac
  2461. +done
  2462. +test "$ac_cv_exeext" = no && ac_cv_exeext=
  2463. +
  2464. +else
  2465. + ac_file=''
  2466. +fi
  2467. +if test -z "$ac_file"; then :
  2468. + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
  2469. +$as_echo "no" >&6; }
  2470. +$as_echo "$as_me: failed program was:" >&5
  2471. +sed 's/^/| /' conftest.$ac_ext >&5
  2472. +
  2473. +{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
  2474. +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
  2475. +{ as_fn_set_status 77
  2476. +as_fn_error "C compiler cannot create executables
  2477. +See \`config.log' for more details." "$LINENO" 5; }; }
  2478. +else
  2479. + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
  2480. +$as_echo "yes" >&6; }
  2481. +fi
  2482. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5
  2483. +$as_echo_n "checking for C compiler default output file name... " >&6; }
  2484. +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5
  2485. +$as_echo "$ac_file" >&6; }
  2486. +ac_exeext=$ac_cv_exeext
  2487. +
  2488. +rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out
  2489. +ac_clean_files=$ac_clean_files_save
  2490. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5
  2491. +$as_echo_n "checking for suffix of executables... " >&6; }
  2492. +if { { ac_try="$ac_link"
  2493. +case "(($ac_try" in
  2494. + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2495. + *) ac_try_echo=$ac_try;;
  2496. +esac
  2497. +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
  2498. +$as_echo "$ac_try_echo"; } >&5
  2499. + (eval "$ac_link") 2>&5
  2500. + ac_status=$?
  2501. + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
  2502. + test $ac_status = 0; }; then :
  2503. + # If both `conftest.exe' and `conftest' are `present' (well, observable)
  2504. +# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will
  2505. +# work properly (i.e., refer to `conftest.exe'), while it won't with
  2506. +# `rm'.
  2507. +for ac_file in conftest.exe conftest conftest.*; do
  2508. + test -f "$ac_file" || continue
  2509. + case $ac_file in
  2510. + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
  2511. + *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
  2512. + break;;
  2513. + * ) break;;
  2514. + esac
  2515. +done
  2516. +else
  2517. + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
  2518. +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
  2519. +as_fn_error "cannot compute suffix of executables: cannot compile and link
  2520. +See \`config.log' for more details." "$LINENO" 5; }
  2521. +fi
  2522. +rm -f conftest conftest$ac_cv_exeext
  2523. +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5
  2524. +$as_echo "$ac_cv_exeext" >&6; }
  2525. +
  2526. +rm -f conftest.$ac_ext
  2527. +EXEEXT=$ac_cv_exeext
  2528. +ac_exeext=$EXEEXT
  2529. +cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  2530. +/* end confdefs.h. */
  2531. +#include <stdio.h>
  2532. +int
  2533. +main ()
  2534. +{
  2535. +FILE *f = fopen ("conftest.out", "w");
  2536. + return ferror (f) || fclose (f) != 0;
  2537. +
  2538. + ;
  2539. + return 0;
  2540. +}
  2541. +_ACEOF
  2542. +ac_clean_files="$ac_clean_files conftest.out"
  2543. +# Check that the compiler produces executables we can run. If not, either
  2544. +# the compiler is broken, or we cross compile.
  2545. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5
  2546. +$as_echo_n "checking whether we are cross compiling... " >&6; }
  2547. +if test "$cross_compiling" != yes; then
  2548. + { { ac_try="$ac_link"
  2549. +case "(($ac_try" in
  2550. + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2551. + *) ac_try_echo=$ac_try;;
  2552. +esac
  2553. +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
  2554. +$as_echo "$ac_try_echo"; } >&5
  2555. + (eval "$ac_link") 2>&5
  2556. + ac_status=$?
  2557. + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
  2558. + test $ac_status = 0; }
  2559. + if { ac_try='./conftest$ac_cv_exeext'
  2560. + { { case "(($ac_try" in
  2561. + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2562. + *) ac_try_echo=$ac_try;;
  2563. +esac
  2564. +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
  2565. +$as_echo "$ac_try_echo"; } >&5
  2566. + (eval "$ac_try") 2>&5
  2567. + ac_status=$?
  2568. + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
  2569. + test $ac_status = 0; }; }; then
  2570. + cross_compiling=no
  2571. + else
  2572. + if test "$cross_compiling" = maybe; then
  2573. + cross_compiling=yes
  2574. + else
  2575. + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
  2576. +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
  2577. +as_fn_error "cannot run C compiled programs.
  2578. +If you meant to cross compile, use \`--host'.
  2579. +See \`config.log' for more details." "$LINENO" 5; }
  2580. + fi
  2581. + fi
  2582. +fi
  2583. +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5
  2584. +$as_echo "$cross_compiling" >&6; }
  2585. +
  2586. +rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out
  2587. +ac_clean_files=$ac_clean_files_save
  2588. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5
  2589. +$as_echo_n "checking for suffix of object files... " >&6; }
  2590. +if test "${ac_cv_objext+set}" = set; then :
  2591. + $as_echo_n "(cached) " >&6
  2592. +else
  2593. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  2594. +/* end confdefs.h. */
  2595. +
  2596. +int
  2597. +main ()
  2598. +{
  2599. +
  2600. + ;
  2601. + return 0;
  2602. +}
  2603. +_ACEOF
  2604. +rm -f conftest.o conftest.obj
  2605. +if { { ac_try="$ac_compile"
  2606. +case "(($ac_try" in
  2607. + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
  2608. + *) ac_try_echo=$ac_try;;
  2609. +esac
  2610. +eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
  2611. +$as_echo "$ac_try_echo"; } >&5
  2612. + (eval "$ac_compile") 2>&5
  2613. + ac_status=$?
  2614. + $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
  2615. + test $ac_status = 0; }; then :
  2616. + for ac_file in conftest.o conftest.obj conftest.*; do
  2617. + test -f "$ac_file" || continue;
  2618. + case $ac_file in
  2619. + *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;;
  2620. + *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
  2621. + break;;
  2622. + esac
  2623. +done
  2624. +else
  2625. + $as_echo "$as_me: failed program was:" >&5
  2626. +sed 's/^/| /' conftest.$ac_ext >&5
  2627. +
  2628. +{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
  2629. +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
  2630. +as_fn_error "cannot compute suffix of object files: cannot compile
  2631. +See \`config.log' for more details." "$LINENO" 5; }
  2632. +fi
  2633. +rm -f conftest.$ac_cv_objext conftest.$ac_ext
  2634. +fi
  2635. +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5
  2636. +$as_echo "$ac_cv_objext" >&6; }
  2637. +OBJEXT=$ac_cv_objext
  2638. +ac_objext=$OBJEXT
  2639. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5
  2640. +$as_echo_n "checking whether we are using the GNU C compiler... " >&6; }
  2641. +if test "${ac_cv_c_compiler_gnu+set}" = set; then :
  2642. + $as_echo_n "(cached) " >&6
  2643. +else
  2644. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  2645. +/* end confdefs.h. */
  2646. +
  2647. +int
  2648. +main ()
  2649. +{
  2650. +#ifndef __GNUC__
  2651. + choke me
  2652. +#endif
  2653. +
  2654. + ;
  2655. + return 0;
  2656. +}
  2657. +_ACEOF
  2658. +if ac_fn_c_try_compile "$LINENO"; then :
  2659. + ac_compiler_gnu=yes
  2660. +else
  2661. + ac_compiler_gnu=no
  2662. +fi
  2663. +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
  2664. +ac_cv_c_compiler_gnu=$ac_compiler_gnu
  2665. +
  2666. +fi
  2667. +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5
  2668. +$as_echo "$ac_cv_c_compiler_gnu" >&6; }
  2669. +if test $ac_compiler_gnu = yes; then
  2670. + GCC=yes
  2671. +else
  2672. + GCC=
  2673. +fi
  2674. +ac_test_CFLAGS=${CFLAGS+set}
  2675. +ac_save_CFLAGS=$CFLAGS
  2676. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5
  2677. +$as_echo_n "checking whether $CC accepts -g... " >&6; }
  2678. +if test "${ac_cv_prog_cc_g+set}" = set; then :
  2679. + $as_echo_n "(cached) " >&6
  2680. +else
  2681. + ac_save_c_werror_flag=$ac_c_werror_flag
  2682. + ac_c_werror_flag=yes
  2683. + ac_cv_prog_cc_g=no
  2684. + CFLAGS="-g"
  2685. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  2686. +/* end confdefs.h. */
  2687. +
  2688. +int
  2689. +main ()
  2690. +{
  2691. +
  2692. + ;
  2693. + return 0;
  2694. +}
  2695. +_ACEOF
  2696. +if ac_fn_c_try_compile "$LINENO"; then :
  2697. + ac_cv_prog_cc_g=yes
  2698. +else
  2699. + CFLAGS=""
  2700. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  2701. +/* end confdefs.h. */
  2702. +
  2703. +int
  2704. +main ()
  2705. +{
  2706. +
  2707. + ;
  2708. + return 0;
  2709. +}
  2710. +_ACEOF
  2711. +if ac_fn_c_try_compile "$LINENO"; then :
  2712. +
  2713. +else
  2714. + ac_c_werror_flag=$ac_save_c_werror_flag
  2715. + CFLAGS="-g"
  2716. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  2717. +/* end confdefs.h. */
  2718. +
  2719. +int
  2720. +main ()
  2721. +{
  2722. +
  2723. + ;
  2724. + return 0;
  2725. +}
  2726. +_ACEOF
  2727. +if ac_fn_c_try_compile "$LINENO"; then :
  2728. + ac_cv_prog_cc_g=yes
  2729. +fi
  2730. +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
  2731. +fi
  2732. +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
  2733. +fi
  2734. +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
  2735. + ac_c_werror_flag=$ac_save_c_werror_flag
  2736. +fi
  2737. +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5
  2738. +$as_echo "$ac_cv_prog_cc_g" >&6; }
  2739. +if test "$ac_test_CFLAGS" = set; then
  2740. + CFLAGS=$ac_save_CFLAGS
  2741. +elif test $ac_cv_prog_cc_g = yes; then
  2742. + if test "$GCC" = yes; then
  2743. + CFLAGS="-g -O2"
  2744. + else
  2745. + CFLAGS="-g"
  2746. + fi
  2747. +else
  2748. + if test "$GCC" = yes; then
  2749. + CFLAGS="-O2"
  2750. + else
  2751. + CFLAGS=
  2752. + fi
  2753. +fi
  2754. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5
  2755. +$as_echo_n "checking for $CC option to accept ISO C89... " >&6; }
  2756. +if test "${ac_cv_prog_cc_c89+set}" = set; then :
  2757. + $as_echo_n "(cached) " >&6
  2758. +else
  2759. + ac_cv_prog_cc_c89=no
  2760. +ac_save_CC=$CC
  2761. +cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  2762. +/* end confdefs.h. */
  2763. +#include <stdarg.h>
  2764. +#include <stdio.h>
  2765. +#include <sys/types.h>
  2766. +#include <sys/stat.h>
  2767. +/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */
  2768. +struct buf { int x; };
  2769. +FILE * (*rcsopen) (struct buf *, struct stat *, int);
  2770. +static char *e (p, i)
  2771. + char **p;
  2772. + int i;
  2773. +{
  2774. + return p[i];
  2775. +}
  2776. +static char *f (char * (*g) (char **, int), char **p, ...)
  2777. +{
  2778. + char *s;
  2779. + va_list v;
  2780. + va_start (v,p);
  2781. + s = g (p, va_arg (v,int));
  2782. + va_end (v);
  2783. + return s;
  2784. +}
  2785. +
  2786. +/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has
  2787. + function prototypes and stuff, but not '\xHH' hex character constants.
  2788. + These don't provoke an error unfortunately, instead are silently treated
  2789. + as 'x'. The following induces an error, until -std is added to get
  2790. + proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an
  2791. + array size at least. It's necessary to write '\x00'==0 to get something
  2792. + that's true only with -std. */
  2793. +int osf4_cc_array ['\x00' == 0 ? 1 : -1];
  2794. +
  2795. +/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters
  2796. + inside strings and character constants. */
  2797. +#define FOO(x) 'x'
  2798. +int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1];
  2799. +
  2800. +int test (int i, double x);
  2801. +struct s1 {int (*f) (int a);};
  2802. +struct s2 {int (*f) (double a);};
  2803. +int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
  2804. +int argc;
  2805. +char **argv;
  2806. +int
  2807. +main ()
  2808. +{
  2809. +return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1];
  2810. + ;
  2811. + return 0;
  2812. +}
  2813. +_ACEOF
  2814. +for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \
  2815. + -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
  2816. +do
  2817. + CC="$ac_save_CC $ac_arg"
  2818. + if ac_fn_c_try_compile "$LINENO"; then :
  2819. + ac_cv_prog_cc_c89=$ac_arg
  2820. +fi
  2821. +rm -f core conftest.err conftest.$ac_objext
  2822. + test "x$ac_cv_prog_cc_c89" != "xno" && break
  2823. +done
  2824. +rm -f conftest.$ac_ext
  2825. +CC=$ac_save_CC
  2826. +
  2827. +fi
  2828. +# AC_CACHE_VAL
  2829. +case "x$ac_cv_prog_cc_c89" in
  2830. + x)
  2831. + { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5
  2832. +$as_echo "none needed" >&6; } ;;
  2833. + xno)
  2834. + { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5
  2835. +$as_echo "unsupported" >&6; } ;;
  2836. + *)
  2837. + CC="$CC $ac_cv_prog_cc_c89"
  2838. + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5
  2839. +$as_echo "$ac_cv_prog_cc_c89" >&6; } ;;
  2840. +esac
  2841. +if test "x$ac_cv_prog_cc_c89" != xno; then :
  2842. +
  2843. +fi
  2844. +
  2845. +ac_ext=c
  2846. +ac_cpp='$CPP $CPPFLAGS'
  2847. +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
  2848. +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
  2849. +ac_compiler_gnu=$ac_cv_c_compiler_gnu
  2850. +
  2851. +ac_aux_dir=
  2852. +for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
  2853. + for ac_t in install-sh install.sh shtool; do
  2854. + if test -f "$ac_dir/$ac_t"; then
  2855. + ac_aux_dir=$ac_dir
  2856. + ac_install_sh="$ac_aux_dir/$ac_t -c"
  2857. + break 2
  2858. + fi
  2859. + done
  2860. +done
  2861. +if test -z "$ac_aux_dir"; then
  2862. + as_fn_error "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5
  2863. +fi
  2864. +
  2865. +# These three variables are undocumented and unsupported,
  2866. +# and are intended to be withdrawn in a future Autoconf release.
  2867. +# They can cause serious problems if a builder's source tree is in a directory
  2868. +# whose full name contains unusual characters.
  2869. +ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var.
  2870. +ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var.
  2871. +ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var.
  2872. +
  2873. +
  2874. +# Find a good install program. We prefer a C program (faster),
  2875. +# so one script is as good as another. But avoid the broken or
  2876. +# incompatible versions:
  2877. +# SysV /etc/install, /usr/sbin/install
  2878. +# SunOS /usr/etc/install
  2879. +# IRIX /sbin/install
  2880. +# AIX /bin/install
  2881. +# AmigaOS /C/install, which installs bootblocks on floppy discs
  2882. +# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag
  2883. +# AFS /usr/afsws/bin/install, which mishandles nonexistent args
  2884. +# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
  2885. +# OS/2's system install, which has a completely different semantic
  2886. +# ./install, which can be erroneously created by make from ./install.sh.
  2887. +# Reject install programs that cannot install multiple files.
  2888. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5
  2889. +$as_echo_n "checking for a BSD-compatible install... " >&6; }
  2890. +if test -z "$INSTALL"; then
  2891. +if test "${ac_cv_path_install+set}" = set; then :
  2892. + $as_echo_n "(cached) " >&6
  2893. +else
  2894. + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  2895. +for as_dir in $PATH
  2896. +do
  2897. + IFS=$as_save_IFS
  2898. + test -z "$as_dir" && as_dir=.
  2899. + # Account for people who put trailing slashes in PATH elements.
  2900. +case $as_dir/ in #((
  2901. + ./ | .// | /[cC]/* | \
  2902. + /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \
  2903. + ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \
  2904. + /usr/ucb/* ) ;;
  2905. + *)
  2906. + # OSF1 and SCO ODT 3.0 have their own names for install.
  2907. + # Don't use installbsd from OSF since it installs stuff as root
  2908. + # by default.
  2909. + for ac_prog in ginstall scoinst install; do
  2910. + for ac_exec_ext in '' $ac_executable_extensions; do
  2911. + if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then
  2912. + if test $ac_prog = install &&
  2913. + grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
  2914. + # AIX install. It has an incompatible calling convention.
  2915. + :
  2916. + elif test $ac_prog = install &&
  2917. + grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
  2918. + # program-specific install script used by HP pwplus--don't use.
  2919. + :
  2920. + else
  2921. + rm -rf conftest.one conftest.two conftest.dir
  2922. + echo one > conftest.one
  2923. + echo two > conftest.two
  2924. + mkdir conftest.dir
  2925. + if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" &&
  2926. + test -s conftest.one && test -s conftest.two &&
  2927. + test -s conftest.dir/conftest.one &&
  2928. + test -s conftest.dir/conftest.two
  2929. + then
  2930. + ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
  2931. + break 3
  2932. + fi
  2933. + fi
  2934. + fi
  2935. + done
  2936. + done
  2937. + ;;
  2938. +esac
  2939. +
  2940. + done
  2941. +IFS=$as_save_IFS
  2942. +
  2943. +rm -rf conftest.one conftest.two conftest.dir
  2944. +
  2945. +fi
  2946. + if test "${ac_cv_path_install+set}" = set; then
  2947. + INSTALL=$ac_cv_path_install
  2948. + else
  2949. + # As a last resort, use the slow shell script. Don't cache a
  2950. + # value for INSTALL within a source directory, because that will
  2951. + # break other packages using the cache if that directory is
  2952. + # removed, or if the value is a relative name.
  2953. + INSTALL=$ac_install_sh
  2954. + fi
  2955. +fi
  2956. +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5
  2957. +$as_echo "$INSTALL" >&6; }
  2958. +
  2959. +# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
  2960. +# It thinks the first close brace ends the variable substitution.
  2961. +test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
  2962. +
  2963. +test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
  2964. +
  2965. +test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
  2966. +
  2967. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5
  2968. +$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; }
  2969. +set x ${MAKE-make}
  2970. +ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
  2971. +if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then :
  2972. + $as_echo_n "(cached) " >&6
  2973. +else
  2974. + cat >conftest.make <<\_ACEOF
  2975. +SHELL = /bin/sh
  2976. +all:
  2977. + @echo '@@@%%%=$(MAKE)=@@@%%%'
  2978. +_ACEOF
  2979. +# GNU make sometimes prints "make[1]: Entering...", which would confuse us.
  2980. +case `${MAKE-make} -f conftest.make 2>/dev/null` in
  2981. + *@@@%%%=?*=@@@%%%*)
  2982. + eval ac_cv_prog_make_${ac_make}_set=yes;;
  2983. + *)
  2984. + eval ac_cv_prog_make_${ac_make}_set=no;;
  2985. +esac
  2986. +rm -f conftest.make
  2987. +fi
  2988. +if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then
  2989. + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
  2990. +$as_echo "yes" >&6; }
  2991. + SET_MAKE=
  2992. +else
  2993. + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
  2994. +$as_echo "no" >&6; }
  2995. + SET_MAKE="MAKE=${MAKE-make}"
  2996. +fi
  2997. +
  2998. +# Extract the first word of "strip", so it can be a program name with args.
  2999. +set dummy strip; ac_word=$2
  3000. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
  3001. +$as_echo_n "checking for $ac_word... " >&6; }
  3002. +if test "${ac_cv_path_STRIP+set}" = set; then :
  3003. + $as_echo_n "(cached) " >&6
  3004. +else
  3005. + case $STRIP in
  3006. + [\\/]* | ?:[\\/]*)
  3007. + ac_cv_path_STRIP="$STRIP" # Let the user override the test with a path.
  3008. + ;;
  3009. + *)
  3010. + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  3011. +for as_dir in $PATH
  3012. +do
  3013. + IFS=$as_save_IFS
  3014. + test -z "$as_dir" && as_dir=.
  3015. + for ac_exec_ext in '' $ac_executable_extensions; do
  3016. + if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
  3017. + ac_cv_path_STRIP="$as_dir/$ac_word$ac_exec_ext"
  3018. + $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
  3019. + break 2
  3020. + fi
  3021. +done
  3022. + done
  3023. +IFS=$as_save_IFS
  3024. +
  3025. + test -z "$ac_cv_path_STRIP" && ac_cv_path_STRIP=":"
  3026. + ;;
  3027. +esac
  3028. +fi
  3029. +STRIP=$ac_cv_path_STRIP
  3030. +if test -n "$STRIP"; then
  3031. + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5
  3032. +$as_echo "$STRIP" >&6; }
  3033. +else
  3034. + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
  3035. +$as_echo "no" >&6; }
  3036. +fi
  3037. +
  3038. +
  3039. +
  3040. +test -d /usr/local/v6/lib && LIBS="$LIBS -L/usr/local/v6/lib"
  3041. +test -d /usr/inet6/lib && LIBS="$LIBS -L/usr/inet6/lib"
  3042. +test -d /usr/local/inet6/lib && LIBS="$LIBS -L/usr/local/inet6/lib"
  3043. +
  3044. +
  3045. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for t_accept in -lnsl" >&5
  3046. +$as_echo_n "checking for t_accept in -lnsl... " >&6; }
  3047. +if test "${ac_cv_lib_nsl_t_accept+set}" = set; then :
  3048. + $as_echo_n "(cached) " >&6
  3049. +else
  3050. + ac_check_lib_save_LIBS=$LIBS
  3051. +LIBS="-lnsl $LIBS"
  3052. +cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  3053. +/* end confdefs.h. */
  3054. +
  3055. +/* Override any GCC internal prototype to avoid an error.
  3056. + Use char because int might match the return type of a GCC
  3057. + builtin and then its argument prototype would still apply. */
  3058. +#ifdef __cplusplus
  3059. +extern "C"
  3060. +#endif
  3061. +char t_accept ();
  3062. +int
  3063. +main ()
  3064. +{
  3065. +return t_accept ();
  3066. + ;
  3067. + return 0;
  3068. +}
  3069. +_ACEOF
  3070. +if ac_fn_c_try_link "$LINENO"; then :
  3071. + ac_cv_lib_nsl_t_accept=yes
  3072. +else
  3073. + ac_cv_lib_nsl_t_accept=no
  3074. +fi
  3075. +rm -f core conftest.err conftest.$ac_objext \
  3076. + conftest$ac_exeext conftest.$ac_ext
  3077. +LIBS=$ac_check_lib_save_LIBS
  3078. +fi
  3079. +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_nsl_t_accept" >&5
  3080. +$as_echo "$ac_cv_lib_nsl_t_accept" >&6; }
  3081. +if test "x$ac_cv_lib_nsl_t_accept" = x""yes; then :
  3082. + LIBS="$LIBS -lnsl"
  3083. +fi
  3084. +
  3085. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for socket in -lsocket" >&5
  3086. +$as_echo_n "checking for socket in -lsocket... " >&6; }
  3087. +if test "${ac_cv_lib_socket_socket+set}" = set; then :
  3088. + $as_echo_n "(cached) " >&6
  3089. +else
  3090. + ac_check_lib_save_LIBS=$LIBS
  3091. +LIBS="-lsocket $LIBS"
  3092. +cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  3093. +/* end confdefs.h. */
  3094. +
  3095. +/* Override any GCC internal prototype to avoid an error.
  3096. + Use char because int might match the return type of a GCC
  3097. + builtin and then its argument prototype would still apply. */
  3098. +#ifdef __cplusplus
  3099. +extern "C"
  3100. +#endif
  3101. +char socket ();
  3102. +int
  3103. +main ()
  3104. +{
  3105. +return socket ();
  3106. + ;
  3107. + return 0;
  3108. +}
  3109. +_ACEOF
  3110. +if ac_fn_c_try_link "$LINENO"; then :
  3111. + ac_cv_lib_socket_socket=yes
  3112. +else
  3113. + ac_cv_lib_socket_socket=no
  3114. +fi
  3115. +rm -f core conftest.err conftest.$ac_objext \
  3116. + conftest$ac_exeext conftest.$ac_ext
  3117. +LIBS=$ac_check_lib_save_LIBS
  3118. +fi
  3119. +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_socket_socket" >&5
  3120. +$as_echo "$ac_cv_lib_socket_socket" >&6; }
  3121. +if test "x$ac_cv_lib_socket_socket" = x""yes; then :
  3122. + LIBS="$LIBS -lsocket"
  3123. +fi
  3124. +
  3125. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -linet6" >&5
  3126. +$as_echo_n "checking for main in -linet6... " >&6; }
  3127. +if test "${ac_cv_lib_inet6_main+set}" = set; then :
  3128. + $as_echo_n "(cached) " >&6
  3129. +else
  3130. + ac_check_lib_save_LIBS=$LIBS
  3131. +LIBS="-linet6 $LIBS"
  3132. +cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  3133. +/* end confdefs.h. */
  3134. +
  3135. +
  3136. +int
  3137. +main ()
  3138. +{
  3139. +return main ();
  3140. + ;
  3141. + return 0;
  3142. +}
  3143. +_ACEOF
  3144. +if ac_fn_c_try_link "$LINENO"; then :
  3145. + ac_cv_lib_inet6_main=yes
  3146. +else
  3147. + ac_cv_lib_inet6_main=no
  3148. +fi
  3149. +rm -f core conftest.err conftest.$ac_objext \
  3150. + conftest$ac_exeext conftest.$ac_ext
  3151. +LIBS=$ac_check_lib_save_LIBS
  3152. +fi
  3153. +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_inet6_main" >&5
  3154. +$as_echo "$ac_cv_lib_inet6_main" >&6; }
  3155. +if test "x$ac_cv_lib_inet6_main" = x""yes; then :
  3156. + LIBS="$LIBS -linet6"
  3157. +fi
  3158. +
  3159. +
  3160. +ac_ext=c
  3161. +ac_cpp='$CPP $CPPFLAGS'
  3162. +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
  3163. +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
  3164. +ac_compiler_gnu=$ac_cv_c_compiler_gnu
  3165. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5
  3166. +$as_echo_n "checking how to run the C preprocessor... " >&6; }
  3167. +# On Suns, sometimes $CPP names a directory.
  3168. +if test -n "$CPP" && test -d "$CPP"; then
  3169. + CPP=
  3170. +fi
  3171. +if test -z "$CPP"; then
  3172. + if test "${ac_cv_prog_CPP+set}" = set; then :
  3173. + $as_echo_n "(cached) " >&6
  3174. +else
  3175. + # Double quotes because CPP needs to be expanded
  3176. + for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp"
  3177. + do
  3178. + ac_preproc_ok=false
  3179. +for ac_c_preproc_warn_flag in '' yes
  3180. +do
  3181. + # Use a header file that comes with gcc, so configuring glibc
  3182. + # with a fresh cross-compiler works.
  3183. + # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  3184. + # <limits.h> exists even on freestanding compilers.
  3185. + # On the NeXT, cc -E runs the code through the compiler's parser,
  3186. + # not just through cpp. "Syntax error" is here to catch this case.
  3187. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  3188. +/* end confdefs.h. */
  3189. +#ifdef __STDC__
  3190. +# include <limits.h>
  3191. +#else
  3192. +# include <assert.h>
  3193. +#endif
  3194. + Syntax error
  3195. +_ACEOF
  3196. +if ac_fn_c_try_cpp "$LINENO"; then :
  3197. +
  3198. +else
  3199. + # Broken: fails on valid input.
  3200. +continue
  3201. +fi
  3202. +rm -f conftest.err conftest.$ac_ext
  3203. +
  3204. + # OK, works on sane cases. Now check whether nonexistent headers
  3205. + # can be detected and how.
  3206. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  3207. +/* end confdefs.h. */
  3208. +#include <ac_nonexistent.h>
  3209. +_ACEOF
  3210. +if ac_fn_c_try_cpp "$LINENO"; then :
  3211. + # Broken: success on invalid input.
  3212. +continue
  3213. +else
  3214. + # Passes both tests.
  3215. +ac_preproc_ok=:
  3216. +break
  3217. +fi
  3218. +rm -f conftest.err conftest.$ac_ext
  3219. +
  3220. +done
  3221. +# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
  3222. +rm -f conftest.err conftest.$ac_ext
  3223. +if $ac_preproc_ok; then :
  3224. + break
  3225. +fi
  3226. +
  3227. + done
  3228. + ac_cv_prog_CPP=$CPP
  3229. +
  3230. +fi
  3231. + CPP=$ac_cv_prog_CPP
  3232. +else
  3233. + ac_cv_prog_CPP=$CPP
  3234. +fi
  3235. +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5
  3236. +$as_echo "$CPP" >&6; }
  3237. +ac_preproc_ok=false
  3238. +for ac_c_preproc_warn_flag in '' yes
  3239. +do
  3240. + # Use a header file that comes with gcc, so configuring glibc
  3241. + # with a fresh cross-compiler works.
  3242. + # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  3243. + # <limits.h> exists even on freestanding compilers.
  3244. + # On the NeXT, cc -E runs the code through the compiler's parser,
  3245. + # not just through cpp. "Syntax error" is here to catch this case.
  3246. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  3247. +/* end confdefs.h. */
  3248. +#ifdef __STDC__
  3249. +# include <limits.h>
  3250. +#else
  3251. +# include <assert.h>
  3252. +#endif
  3253. + Syntax error
  3254. +_ACEOF
  3255. +if ac_fn_c_try_cpp "$LINENO"; then :
  3256. +
  3257. +else
  3258. + # Broken: fails on valid input.
  3259. +continue
  3260. +fi
  3261. +rm -f conftest.err conftest.$ac_ext
  3262. +
  3263. + # OK, works on sane cases. Now check whether nonexistent headers
  3264. + # can be detected and how.
  3265. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  3266. +/* end confdefs.h. */
  3267. +#include <ac_nonexistent.h>
  3268. +_ACEOF
  3269. +if ac_fn_c_try_cpp "$LINENO"; then :
  3270. + # Broken: success on invalid input.
  3271. +continue
  3272. +else
  3273. + # Passes both tests.
  3274. +ac_preproc_ok=:
  3275. +break
  3276. +fi
  3277. +rm -f conftest.err conftest.$ac_ext
  3278. +
  3279. +done
  3280. +# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
  3281. +rm -f conftest.err conftest.$ac_ext
  3282. +if $ac_preproc_ok; then :
  3283. +
  3284. +else
  3285. + { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
  3286. +$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
  3287. +as_fn_error "C preprocessor \"$CPP\" fails sanity check
  3288. +See \`config.log' for more details." "$LINENO" 5; }
  3289. +fi
  3290. +
  3291. +ac_ext=c
  3292. +ac_cpp='$CPP $CPPFLAGS'
  3293. +ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
  3294. +ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
  3295. +ac_compiler_gnu=$ac_cv_c_compiler_gnu
  3296. +
  3297. +
  3298. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5
  3299. +$as_echo_n "checking for grep that handles long lines and -e... " >&6; }
  3300. +if test "${ac_cv_path_GREP+set}" = set; then :
  3301. + $as_echo_n "(cached) " >&6
  3302. +else
  3303. + if test -z "$GREP"; then
  3304. + ac_path_GREP_found=false
  3305. + # Loop through the user's path and test for each of PROGNAME-LIST
  3306. + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  3307. +for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin
  3308. +do
  3309. + IFS=$as_save_IFS
  3310. + test -z "$as_dir" && as_dir=.
  3311. + for ac_prog in grep ggrep; do
  3312. + for ac_exec_ext in '' $ac_executable_extensions; do
  3313. + ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext"
  3314. + { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue
  3315. +# Check for GNU ac_path_GREP and select it if it is found.
  3316. + # Check for GNU $ac_path_GREP
  3317. +case `"$ac_path_GREP" --version 2>&1` in
  3318. +*GNU*)
  3319. + ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;;
  3320. +*)
  3321. + ac_count=0
  3322. + $as_echo_n 0123456789 >"conftest.in"
  3323. + while :
  3324. + do
  3325. + cat "conftest.in" "conftest.in" >"conftest.tmp"
  3326. + mv "conftest.tmp" "conftest.in"
  3327. + cp "conftest.in" "conftest.nl"
  3328. + $as_echo 'GREP' >> "conftest.nl"
  3329. + "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break
  3330. + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
  3331. + as_fn_arith $ac_count + 1 && ac_count=$as_val
  3332. + if test $ac_count -gt ${ac_path_GREP_max-0}; then
  3333. + # Best one so far, save it but keep looking for a better one
  3334. + ac_cv_path_GREP="$ac_path_GREP"
  3335. + ac_path_GREP_max=$ac_count
  3336. + fi
  3337. + # 10*(2^10) chars as input seems more than enough
  3338. + test $ac_count -gt 10 && break
  3339. + done
  3340. + rm -f conftest.in conftest.tmp conftest.nl conftest.out;;
  3341. +esac
  3342. +
  3343. + $ac_path_GREP_found && break 3
  3344. + done
  3345. + done
  3346. + done
  3347. +IFS=$as_save_IFS
  3348. + if test -z "$ac_cv_path_GREP"; then
  3349. + as_fn_error "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
  3350. + fi
  3351. +else
  3352. + ac_cv_path_GREP=$GREP
  3353. +fi
  3354. +
  3355. +fi
  3356. +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5
  3357. +$as_echo "$ac_cv_path_GREP" >&6; }
  3358. + GREP="$ac_cv_path_GREP"
  3359. +
  3360. +
  3361. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5
  3362. +$as_echo_n "checking for egrep... " >&6; }
  3363. +if test "${ac_cv_path_EGREP+set}" = set; then :
  3364. + $as_echo_n "(cached) " >&6
  3365. +else
  3366. + if echo a | $GREP -E '(a|b)' >/dev/null 2>&1
  3367. + then ac_cv_path_EGREP="$GREP -E"
  3368. + else
  3369. + if test -z "$EGREP"; then
  3370. + ac_path_EGREP_found=false
  3371. + # Loop through the user's path and test for each of PROGNAME-LIST
  3372. + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  3373. +for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin
  3374. +do
  3375. + IFS=$as_save_IFS
  3376. + test -z "$as_dir" && as_dir=.
  3377. + for ac_prog in egrep; do
  3378. + for ac_exec_ext in '' $ac_executable_extensions; do
  3379. + ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext"
  3380. + { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue
  3381. +# Check for GNU ac_path_EGREP and select it if it is found.
  3382. + # Check for GNU $ac_path_EGREP
  3383. +case `"$ac_path_EGREP" --version 2>&1` in
  3384. +*GNU*)
  3385. + ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;;
  3386. +*)
  3387. + ac_count=0
  3388. + $as_echo_n 0123456789 >"conftest.in"
  3389. + while :
  3390. + do
  3391. + cat "conftest.in" "conftest.in" >"conftest.tmp"
  3392. + mv "conftest.tmp" "conftest.in"
  3393. + cp "conftest.in" "conftest.nl"
  3394. + $as_echo 'EGREP' >> "conftest.nl"
  3395. + "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break
  3396. + diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break
  3397. + as_fn_arith $ac_count + 1 && ac_count=$as_val
  3398. + if test $ac_count -gt ${ac_path_EGREP_max-0}; then
  3399. + # Best one so far, save it but keep looking for a better one
  3400. + ac_cv_path_EGREP="$ac_path_EGREP"
  3401. + ac_path_EGREP_max=$ac_count
  3402. + fi
  3403. + # 10*(2^10) chars as input seems more than enough
  3404. + test $ac_count -gt 10 && break
  3405. + done
  3406. + rm -f conftest.in conftest.tmp conftest.nl conftest.out;;
  3407. +esac
  3408. +
  3409. + $ac_path_EGREP_found && break 3
  3410. + done
  3411. + done
  3412. + done
  3413. +IFS=$as_save_IFS
  3414. + if test -z "$ac_cv_path_EGREP"; then
  3415. + as_fn_error "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
  3416. + fi
  3417. +else
  3418. + ac_cv_path_EGREP=$EGREP
  3419. +fi
  3420. +
  3421. + fi
  3422. +fi
  3423. +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5
  3424. +$as_echo "$ac_cv_path_EGREP" >&6; }
  3425. + EGREP="$ac_cv_path_EGREP"
  3426. +
  3427. +
  3428. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5
  3429. +$as_echo_n "checking for ANSI C header files... " >&6; }
  3430. +if test "${ac_cv_header_stdc+set}" = set; then :
  3431. + $as_echo_n "(cached) " >&6
  3432. +else
  3433. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  3434. +/* end confdefs.h. */
  3435. +#include <stdlib.h>
  3436. +#include <stdarg.h>
  3437. +#include <string.h>
  3438. +#include <float.h>
  3439. +
  3440. +int
  3441. +main ()
  3442. +{
  3443. +
  3444. + ;
  3445. + return 0;
  3446. +}
  3447. +_ACEOF
  3448. +if ac_fn_c_try_compile "$LINENO"; then :
  3449. + ac_cv_header_stdc=yes
  3450. +else
  3451. + ac_cv_header_stdc=no
  3452. +fi
  3453. +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
  3454. +
  3455. +if test $ac_cv_header_stdc = yes; then
  3456. + # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
  3457. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  3458. +/* end confdefs.h. */
  3459. +#include <string.h>
  3460. +
  3461. +_ACEOF
  3462. +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  3463. + $EGREP "memchr" >/dev/null 2>&1; then :
  3464. +
  3465. +else
  3466. + ac_cv_header_stdc=no
  3467. +fi
  3468. +rm -f conftest*
  3469. +
  3470. +fi
  3471. +
  3472. +if test $ac_cv_header_stdc = yes; then
  3473. + # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
  3474. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  3475. +/* end confdefs.h. */
  3476. +#include <stdlib.h>
  3477. +
  3478. +_ACEOF
  3479. +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  3480. + $EGREP "free" >/dev/null 2>&1; then :
  3481. +
  3482. +else
  3483. + ac_cv_header_stdc=no
  3484. +fi
  3485. +rm -f conftest*
  3486. +
  3487. +fi
  3488. +
  3489. +if test $ac_cv_header_stdc = yes; then
  3490. + # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
  3491. + if test "$cross_compiling" = yes; then :
  3492. + :
  3493. +else
  3494. + cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  3495. +/* end confdefs.h. */
  3496. +#include <ctype.h>
  3497. +#include <stdlib.h>
  3498. +#if ((' ' & 0x0FF) == 0x020)
  3499. +# define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
  3500. +# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
  3501. +#else
  3502. +# define ISLOWER(c) \
  3503. + (('a' <= (c) && (c) <= 'i') \
  3504. + || ('j' <= (c) && (c) <= 'r') \
  3505. + || ('s' <= (c) && (c) <= 'z'))
  3506. +# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
  3507. +#endif
  3508. +
  3509. +#define XOR(e, f) (((e) && !(f)) || (!(e) && (f)))
  3510. +int
  3511. +main ()
  3512. +{
  3513. + int i;
  3514. + for (i = 0; i < 256; i++)
  3515. + if (XOR (islower (i), ISLOWER (i))
  3516. + || toupper (i) != TOUPPER (i))
  3517. + return 2;
  3518. + return 0;
  3519. +}
  3520. +_ACEOF
  3521. +if ac_fn_c_try_run "$LINENO"; then :
  3522. +
  3523. +else
  3524. + ac_cv_header_stdc=no
  3525. +fi
  3526. +rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
  3527. + conftest.$ac_objext conftest.beam conftest.$ac_ext
  3528. +fi
  3529. +
  3530. +fi
  3531. +fi
  3532. +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5
  3533. +$as_echo "$ac_cv_header_stdc" >&6; }
  3534. +if test $ac_cv_header_stdc = yes; then
  3535. +
  3536. +$as_echo "#define STDC_HEADERS 1" >>confdefs.h
  3537. +
  3538. +fi
  3539. +
  3540. +# On IRIX 5.3, sys/types and inttypes.h are conflicting.
  3541. +for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \
  3542. + inttypes.h stdint.h unistd.h
  3543. +do :
  3544. + as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
  3545. +ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default
  3546. +"
  3547. +eval as_val=\$$as_ac_Header
  3548. + if test "x$as_val" = x""yes; then :
  3549. + cat >>confdefs.h <<_ACEOF
  3550. +#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
  3551. +_ACEOF
  3552. +
  3553. +fi
  3554. +
  3555. +done
  3556. +
  3557. +
  3558. +for ac_header in sys/socket.h netinet/in.h arpa/inet.h netdb.h
  3559. +do :
  3560. + as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
  3561. +ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
  3562. +eval as_val=\$$as_ac_Header
  3563. + if test "x$as_val" = x""yes; then :
  3564. + cat >>confdefs.h <<_ACEOF
  3565. +#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
  3566. +_ACEOF
  3567. +
  3568. +else
  3569. + as_fn_error "Socket related headers missing." "$LINENO" 5
  3570. +fi
  3571. +
  3572. +done
  3573. +
  3574. +for ac_func in getaddrinfo
  3575. +do :
  3576. + ac_fn_c_check_func "$LINENO" "getaddrinfo" "ac_cv_func_getaddrinfo"
  3577. +if test "x$ac_cv_func_getaddrinfo" = x""yes; then :
  3578. + cat >>confdefs.h <<_ACEOF
  3579. +#define HAVE_GETADDRINFO 1
  3580. +_ACEOF
  3581. +
  3582. +else
  3583. + as_fn_error "Your system doesn't support IPv6." "$LINENO" 5
  3584. +fi
  3585. +done
  3586. +
  3587. +
  3588. +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for AF_INET6" >&5
  3589. +$as_echo_n "checking for AF_INET6... " >&6; }
  3590. +cat confdefs.h - <<_ACEOF >conftest.$ac_ext
  3591. +/* end confdefs.h. */
  3592. +#include <netinet/in.h>
  3593. +int
  3594. +main ()
  3595. +{
  3596. +int x = AF_INET6;
  3597. + ;
  3598. + return 0;
  3599. +}
  3600. +_ACEOF
  3601. +if ac_fn_c_try_compile "$LINENO"; then :
  3602. +
  3603. + { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
  3604. +$as_echo "yes" >&6; }
  3605. +
  3606. +else
  3607. +
  3608. + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
  3609. +$as_echo "no" >&6; }
  3610. + as_fn_error "Your system doesn't support IPv6." "$LINENO" 5
  3611. +
  3612. +fi
  3613. +rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
  3614. +
  3615. +
  3616. +VERSION=`grep '6tunnel v' 6tunnel.c | sed 's/.*v//'`
  3617. +
  3618. +ac_config_files="$ac_config_files Makefile"
  3619. +
  3620. +cat >confcache <<\_ACEOF
  3621. +# This file is a shell script that caches the results of configure
  3622. +# tests run on this system so they can be shared between configure
  3623. +# scripts and configure runs, see configure's option --config-cache.
  3624. +# It is not useful on other systems. If it contains results you don't
  3625. +# want to keep, you may remove or edit it.
  3626. +#
  3627. +# config.status only pays attention to the cache file if you give it
  3628. +# the --recheck option to rerun configure.
  3629. +#
  3630. +# `ac_cv_env_foo' variables (set or unset) will be overridden when
  3631. +# loading this file, other *unset* `ac_cv_foo' will be assigned the
  3632. +# following values.
  3633. +
  3634. +_ACEOF
  3635. +
  3636. +# The following way of writing the cache mishandles newlines in values,
  3637. +# but we know of no workaround that is simple, portable, and efficient.
  3638. +# So, we kill variables containing newlines.
  3639. +# Ultrix sh set writes to stderr and can't be redirected directly,
  3640. +# and sets the high bit in the cache file unless we assign to the vars.
  3641. +(
  3642. + for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do
  3643. + eval ac_val=\$$ac_var
  3644. + case $ac_val in #(
  3645. + *${as_nl}*)
  3646. + case $ac_var in #(
  3647. + *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5
  3648. +$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
  3649. + esac
  3650. + case $ac_var in #(
  3651. + _ | IFS | as_nl) ;; #(
  3652. + BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
  3653. + *) { eval $ac_var=; unset $ac_var;} ;;
  3654. + esac ;;
  3655. + esac
  3656. + done
  3657. +
  3658. + (set) 2>&1 |
  3659. + case $as_nl`(ac_space=' '; set) 2>&1` in #(
  3660. + *${as_nl}ac_space=\ *)
  3661. + # `set' does not quote correctly, so add quotes: double-quote
  3662. + # substitution turns \\\\ into \\, and sed turns \\ into \.
  3663. + sed -n \
  3664. + "s/'/'\\\\''/g;
  3665. + s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
  3666. + ;; #(
  3667. + *)
  3668. + # `set' quotes correctly as required by POSIX, so do not add quotes.
  3669. + sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
  3670. + ;;
  3671. + esac |
  3672. + sort
  3673. +) |
  3674. + sed '
  3675. + /^ac_cv_env_/b end
  3676. + t clear
  3677. + :clear
  3678. + s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/
  3679. + t end
  3680. + s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
  3681. + :end' >>confcache
  3682. +if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
  3683. + if test -w "$cache_file"; then
  3684. + test "x$cache_file" != "x/dev/null" &&
  3685. + { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
  3686. +$as_echo "$as_me: updating cache $cache_file" >&6;}
  3687. + cat confcache >$cache_file
  3688. + else
  3689. + { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
  3690. +$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}
  3691. + fi
  3692. +fi
  3693. +rm -f confcache
  3694. +
  3695. +test "x$prefix" = xNONE && prefix=$ac_default_prefix
  3696. +# Let make expand exec_prefix.
  3697. +test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
  3698. +
  3699. +# Transform confdefs.h into DEFS.
  3700. +# Protect against shell expansion while executing Makefile rules.
  3701. +# Protect against Makefile macro expansion.
  3702. +#
  3703. +# If the first sed substitution is executed (which looks for macros that
  3704. +# take arguments), then branch to the quote section. Otherwise,
  3705. +# look for a macro that doesn't take arguments.
  3706. +ac_script='
  3707. +:mline
  3708. +/\\$/{
  3709. + N
  3710. + s,\\\n,,
  3711. + b mline
  3712. +}
  3713. +t clear
  3714. +:clear
  3715. +s/^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*([^)]*)\)[ ]*\(.*\)/-D\1=\2/g
  3716. +t quote
  3717. +s/^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\)/-D\1=\2/g
  3718. +t quote
  3719. +b any
  3720. +:quote
  3721. +s/[ `~#$^&*(){}\\|;'\''"<>?]/\\&/g
  3722. +s/\[/\\&/g
  3723. +s/\]/\\&/g
  3724. +s/\$/$$/g
  3725. +H
  3726. +:any
  3727. +${
  3728. + g
  3729. + s/^\n//
  3730. + s/\n/ /g
  3731. + p
  3732. +}
  3733. +'
  3734. +DEFS=`sed -n "$ac_script" confdefs.h`
  3735. +
  3736. +
  3737. +ac_libobjs=
  3738. +ac_ltlibobjs=
  3739. +for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
  3740. + # 1. Remove the extension, and $U if already installed.
  3741. + ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
  3742. + ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
  3743. + # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR
  3744. + # will be set to the directory where LIBOBJS objects are built.
  3745. + as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext"
  3746. + as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo'
  3747. +done
  3748. +LIBOBJS=$ac_libobjs
  3749. +
  3750. +LTLIBOBJS=$ac_ltlibobjs
  3751. +
  3752. +
  3753. +
  3754. +: ${CONFIG_STATUS=./config.status}
  3755. +ac_write_fail=0
  3756. +ac_clean_files_save=$ac_clean_files
  3757. +ac_clean_files="$ac_clean_files $CONFIG_STATUS"
  3758. +{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5
  3759. +$as_echo "$as_me: creating $CONFIG_STATUS" >&6;}
  3760. +as_write_fail=0
  3761. +cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1
  3762. +#! $SHELL
  3763. +# Generated by $as_me.
  3764. +# Run this file to recreate the current configuration.
  3765. +# Compiler output produced by configure, useful for debugging
  3766. +# configure, is in config.log if it exists.
  3767. +
  3768. +debug=false
  3769. +ac_cs_recheck=false
  3770. +ac_cs_silent=false
  3771. +
  3772. +SHELL=\${CONFIG_SHELL-$SHELL}
  3773. +export SHELL
  3774. +_ASEOF
  3775. +cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1
  3776. +## -------------------- ##
  3777. +## M4sh Initialization. ##
  3778. +## -------------------- ##
  3779. +
  3780. +# Be more Bourne compatible
  3781. +DUALCASE=1; export DUALCASE # for MKS sh
  3782. +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
  3783. + emulate sh
  3784. + NULLCMD=:
  3785. + # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
  3786. + # is contrary to our usage. Disable this feature.
  3787. + alias -g '${1+"$@"}'='"$@"'
  3788. + setopt NO_GLOB_SUBST
  3789. +else
  3790. + case `(set -o) 2>/dev/null` in #(
  3791. + *posix*) :
  3792. + set -o posix ;; #(
  3793. + *) :
  3794. + ;;
  3795. +esac
  3796. +fi
  3797. +
  3798. +
  3799. +as_nl='
  3800. +'
  3801. +export as_nl
  3802. +# Printing a long string crashes Solaris 7 /usr/bin/printf.
  3803. +as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
  3804. +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
  3805. +as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
  3806. +# Prefer a ksh shell builtin over an external printf program on Solaris,
  3807. +# but without wasting forks for bash or zsh.
  3808. +if test -z "$BASH_VERSION$ZSH_VERSION" \
  3809. + && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
  3810. + as_echo='print -r --'
  3811. + as_echo_n='print -rn --'
  3812. +elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
  3813. + as_echo='printf %s\n'
  3814. + as_echo_n='printf %s'
  3815. +else
  3816. + if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
  3817. + as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
  3818. + as_echo_n='/usr/ucb/echo -n'
  3819. + else
  3820. + as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
  3821. + as_echo_n_body='eval
  3822. + arg=$1;
  3823. + case $arg in #(
  3824. + *"$as_nl"*)
  3825. + expr "X$arg" : "X\\(.*\\)$as_nl";
  3826. + arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
  3827. + esac;
  3828. + expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
  3829. + '
  3830. + export as_echo_n_body
  3831. + as_echo_n='sh -c $as_echo_n_body as_echo'
  3832. + fi
  3833. + export as_echo_body
  3834. + as_echo='sh -c $as_echo_body as_echo'
  3835. +fi
  3836. +
  3837. +# The user is always right.
  3838. +if test "${PATH_SEPARATOR+set}" != set; then
  3839. + PATH_SEPARATOR=:
  3840. + (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
  3841. + (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
  3842. + PATH_SEPARATOR=';'
  3843. + }
  3844. +fi
  3845. +
  3846. +
  3847. +# IFS
  3848. +# We need space, tab and new line, in precisely that order. Quoting is
  3849. +# there to prevent editors from complaining about space-tab.
  3850. +# (If _AS_PATH_WALK were called with IFS unset, it would disable word
  3851. +# splitting by setting IFS to empty value.)
  3852. +IFS=" "" $as_nl"
  3853. +
  3854. +# Find who we are. Look in the path if we contain no directory separator.
  3855. +case $0 in #((
  3856. + *[\\/]* ) as_myself=$0 ;;
  3857. + *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  3858. +for as_dir in $PATH
  3859. +do
  3860. + IFS=$as_save_IFS
  3861. + test -z "$as_dir" && as_dir=.
  3862. + test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
  3863. + done
  3864. +IFS=$as_save_IFS
  3865. +
  3866. + ;;
  3867. +esac
  3868. +# We did not find ourselves, most probably we were run as `sh COMMAND'
  3869. +# in which case we are not to be found in the path.
  3870. +if test "x$as_myself" = x; then
  3871. + as_myself=$0
  3872. +fi
  3873. +if test ! -f "$as_myself"; then
  3874. + $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
  3875. + exit 1
  3876. +fi
  3877. +
  3878. +# Unset variables that we do not need and which cause bugs (e.g. in
  3879. +# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1"
  3880. +# suppresses any "Segmentation fault" message there. '((' could
  3881. +# trigger a bug in pdksh 5.2.14.
  3882. +for as_var in BASH_ENV ENV MAIL MAILPATH
  3883. +do eval test x\${$as_var+set} = xset \
  3884. + && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
  3885. +done
  3886. +PS1='$ '
  3887. +PS2='> '
  3888. +PS4='+ '
  3889. +
  3890. +# NLS nuisances.
  3891. +LC_ALL=C
  3892. +export LC_ALL
  3893. +LANGUAGE=C
  3894. +export LANGUAGE
  3895. +
  3896. +# CDPATH.
  3897. +(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
  3898. +
  3899. +
  3900. +# as_fn_error ERROR [LINENO LOG_FD]
  3901. +# ---------------------------------
  3902. +# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
  3903. +# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
  3904. +# script with status $?, using 1 if that was 0.
  3905. +as_fn_error ()
  3906. +{
  3907. + as_status=$?; test $as_status -eq 0 && as_status=1
  3908. + if test "$3"; then
  3909. + as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
  3910. + $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3
  3911. + fi
  3912. + $as_echo "$as_me: error: $1" >&2
  3913. + as_fn_exit $as_status
  3914. +} # as_fn_error
  3915. +
  3916. +
  3917. +# as_fn_set_status STATUS
  3918. +# -----------------------
  3919. +# Set $? to STATUS, without forking.
  3920. +as_fn_set_status ()
  3921. +{
  3922. + return $1
  3923. +} # as_fn_set_status
  3924. +
  3925. +# as_fn_exit STATUS
  3926. +# -----------------
  3927. +# Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
  3928. +as_fn_exit ()
  3929. +{
  3930. + set +e
  3931. + as_fn_set_status $1
  3932. + exit $1
  3933. +} # as_fn_exit
  3934. +
  3935. +# as_fn_unset VAR
  3936. +# ---------------
  3937. +# Portably unset VAR.
  3938. +as_fn_unset ()
  3939. +{
  3940. + { eval $1=; unset $1;}
  3941. +}
  3942. +as_unset=as_fn_unset
  3943. +# as_fn_append VAR VALUE
  3944. +# ----------------------
  3945. +# Append the text in VALUE to the end of the definition contained in VAR. Take
  3946. +# advantage of any shell optimizations that allow amortized linear growth over
  3947. +# repeated appends, instead of the typical quadratic growth present in naive
  3948. +# implementations.
  3949. +if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
  3950. + eval 'as_fn_append ()
  3951. + {
  3952. + eval $1+=\$2
  3953. + }'
  3954. +else
  3955. + as_fn_append ()
  3956. + {
  3957. + eval $1=\$$1\$2
  3958. + }
  3959. +fi # as_fn_append
  3960. +
  3961. +# as_fn_arith ARG...
  3962. +# ------------------
  3963. +# Perform arithmetic evaluation on the ARGs, and store the result in the
  3964. +# global $as_val. Take advantage of shells that can avoid forks. The arguments
  3965. +# must be portable across $(()) and expr.
  3966. +if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
  3967. + eval 'as_fn_arith ()
  3968. + {
  3969. + as_val=$(( $* ))
  3970. + }'
  3971. +else
  3972. + as_fn_arith ()
  3973. + {
  3974. + as_val=`expr "$@" || test $? -eq 1`
  3975. + }
  3976. +fi # as_fn_arith
  3977. +
  3978. +
  3979. +if expr a : '\(a\)' >/dev/null 2>&1 &&
  3980. + test "X`expr 00001 : '.*\(...\)'`" = X001; then
  3981. + as_expr=expr
  3982. +else
  3983. + as_expr=false
  3984. +fi
  3985. +
  3986. +if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
  3987. + as_basename=basename
  3988. +else
  3989. + as_basename=false
  3990. +fi
  3991. +
  3992. +if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
  3993. + as_dirname=dirname
  3994. +else
  3995. + as_dirname=false
  3996. +fi
  3997. +
  3998. +as_me=`$as_basename -- "$0" ||
  3999. +$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
  4000. + X"$0" : 'X\(//\)$' \| \
  4001. + X"$0" : 'X\(/\)' \| . 2>/dev/null ||
  4002. +$as_echo X/"$0" |
  4003. + sed '/^.*\/\([^/][^/]*\)\/*$/{
  4004. + s//\1/
  4005. + q
  4006. + }
  4007. + /^X\/\(\/\/\)$/{
  4008. + s//\1/
  4009. + q
  4010. + }
  4011. + /^X\/\(\/\).*/{
  4012. + s//\1/
  4013. + q
  4014. + }
  4015. + s/.*/./; q'`
  4016. +
  4017. +# Avoid depending upon Character Ranges.
  4018. +as_cr_letters='abcdefghijklmnopqrstuvwxyz'
  4019. +as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
  4020. +as_cr_Letters=$as_cr_letters$as_cr_LETTERS
  4021. +as_cr_digits='0123456789'
  4022. +as_cr_alnum=$as_cr_Letters$as_cr_digits
  4023. +
  4024. +ECHO_C= ECHO_N= ECHO_T=
  4025. +case `echo -n x` in #(((((
  4026. +-n*)
  4027. + case `echo 'xy\c'` in
  4028. + *c*) ECHO_T=' ';; # ECHO_T is single tab character.
  4029. + xy) ECHO_C='\c';;
  4030. + *) echo `echo ksh88 bug on AIX 6.1` > /dev/null
  4031. + ECHO_T=' ';;
  4032. + esac;;
  4033. +*)
  4034. + ECHO_N='-n';;
  4035. +esac
  4036. +
  4037. +rm -f conf$$ conf$$.exe conf$$.file
  4038. +if test -d conf$$.dir; then
  4039. + rm -f conf$$.dir/conf$$.file
  4040. +else
  4041. + rm -f conf$$.dir
  4042. + mkdir conf$$.dir 2>/dev/null
  4043. +fi
  4044. +if (echo >conf$$.file) 2>/dev/null; then
  4045. + if ln -s conf$$.file conf$$ 2>/dev/null; then
  4046. + as_ln_s='ln -s'
  4047. + # ... but there are two gotchas:
  4048. + # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
  4049. + # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
  4050. + # In both cases, we have to default to `cp -p'.
  4051. + ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
  4052. + as_ln_s='cp -p'
  4053. + elif ln conf$$.file conf$$ 2>/dev/null; then
  4054. + as_ln_s=ln
  4055. + else
  4056. + as_ln_s='cp -p'
  4057. + fi
  4058. +else
  4059. + as_ln_s='cp -p'
  4060. +fi
  4061. +rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
  4062. +rmdir conf$$.dir 2>/dev/null
  4063. +
  4064. +
  4065. +# as_fn_mkdir_p
  4066. +# -------------
  4067. +# Create "$as_dir" as a directory, including parents if necessary.
  4068. +as_fn_mkdir_p ()
  4069. +{
  4070. +
  4071. + case $as_dir in #(
  4072. + -*) as_dir=./$as_dir;;
  4073. + esac
  4074. + test -d "$as_dir" || eval $as_mkdir_p || {
  4075. + as_dirs=
  4076. + while :; do
  4077. + case $as_dir in #(
  4078. + *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
  4079. + *) as_qdir=$as_dir;;
  4080. + esac
  4081. + as_dirs="'$as_qdir' $as_dirs"
  4082. + as_dir=`$as_dirname -- "$as_dir" ||
  4083. +$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
  4084. + X"$as_dir" : 'X\(//\)[^/]' \| \
  4085. + X"$as_dir" : 'X\(//\)$' \| \
  4086. + X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
  4087. +$as_echo X"$as_dir" |
  4088. + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
  4089. + s//\1/
  4090. + q
  4091. + }
  4092. + /^X\(\/\/\)[^/].*/{
  4093. + s//\1/
  4094. + q
  4095. + }
  4096. + /^X\(\/\/\)$/{
  4097. + s//\1/
  4098. + q
  4099. + }
  4100. + /^X\(\/\).*/{
  4101. + s//\1/
  4102. + q
  4103. + }
  4104. + s/.*/./; q'`
  4105. + test -d "$as_dir" && break
  4106. + done
  4107. + test -z "$as_dirs" || eval "mkdir $as_dirs"
  4108. + } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir"
  4109. +
  4110. +
  4111. +} # as_fn_mkdir_p
  4112. +if mkdir -p . 2>/dev/null; then
  4113. + as_mkdir_p='mkdir -p "$as_dir"'
  4114. +else
  4115. + test -d ./-p && rmdir ./-p
  4116. + as_mkdir_p=false
  4117. +fi
  4118. +
  4119. +if test -x / >/dev/null 2>&1; then
  4120. + as_test_x='test -x'
  4121. +else
  4122. + if ls -dL / >/dev/null 2>&1; then
  4123. + as_ls_L_option=L
  4124. + else
  4125. + as_ls_L_option=
  4126. + fi
  4127. + as_test_x='
  4128. + eval sh -c '\''
  4129. + if test -d "$1"; then
  4130. + test -d "$1/.";
  4131. + else
  4132. + case $1 in #(
  4133. + -*)set "./$1";;
  4134. + esac;
  4135. + case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #((
  4136. + ???[sx]*):;;*)false;;esac;fi
  4137. + '\'' sh
  4138. + '
  4139. +fi
  4140. +as_executable_p=$as_test_x
  4141. +
  4142. +# Sed expression to map a string onto a valid CPP name.
  4143. +as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
  4144. +
  4145. +# Sed expression to map a string onto a valid variable name.
  4146. +as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
  4147. +
  4148. +
  4149. +exec 6>&1
  4150. +## ----------------------------------- ##
  4151. +## Main body of $CONFIG_STATUS script. ##
  4152. +## ----------------------------------- ##
  4153. +_ASEOF
  4154. +test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1
  4155. +
  4156. +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
  4157. +# Save the log message, to keep $0 and so on meaningful, and to
  4158. +# report actual input values of CONFIG_FILES etc. instead of their
  4159. +# values after options handling.
  4160. +ac_log="
  4161. +This file was extended by $as_me, which was
  4162. +generated by GNU Autoconf 2.65. Invocation command line was
  4163. +
  4164. + CONFIG_FILES = $CONFIG_FILES
  4165. + CONFIG_HEADERS = $CONFIG_HEADERS
  4166. + CONFIG_LINKS = $CONFIG_LINKS
  4167. + CONFIG_COMMANDS = $CONFIG_COMMANDS
  4168. + $ $0 $@
  4169. +
  4170. +on `(hostname || uname -n) 2>/dev/null | sed 1q`
  4171. +"
  4172. +
  4173. +_ACEOF
  4174. +
  4175. +case $ac_config_files in *"
  4176. +"*) set x $ac_config_files; shift; ac_config_files=$*;;
  4177. +esac
  4178. +
  4179. +
  4180. +
  4181. +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  4182. +# Files that config.status was made for.
  4183. +config_files="$ac_config_files"
  4184. +
  4185. +_ACEOF
  4186. +
  4187. +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
  4188. +ac_cs_usage="\
  4189. +\`$as_me' instantiates files and other configuration actions
  4190. +from templates according to the current configuration. Unless the files
  4191. +and actions are specified as TAGs, all are instantiated by default.
  4192. +
  4193. +Usage: $0 [OPTION]... [TAG]...
  4194. +
  4195. + -h, --help print this help, then exit
  4196. + -V, --version print version number and configuration settings, then exit
  4197. + --config print configuration, then exit
  4198. + -q, --quiet, --silent
  4199. + do not print progress messages
  4200. + -d, --debug don't remove temporary files
  4201. + --recheck update $as_me by reconfiguring in the same conditions
  4202. + --file=FILE[:TEMPLATE]
  4203. + instantiate the configuration file FILE
  4204. +
  4205. +Configuration files:
  4206. +$config_files
  4207. +
  4208. +Report bugs to the package provider."
  4209. +
  4210. +_ACEOF
  4211. +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  4212. +ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
  4213. +ac_cs_version="\\
  4214. +config.status
  4215. +configured by $0, generated by GNU Autoconf 2.65,
  4216. + with options \\"\$ac_cs_config\\"
  4217. +
  4218. +Copyright (C) 2009 Free Software Foundation, Inc.
  4219. +This config.status script is free software; the Free Software Foundation
  4220. +gives unlimited permission to copy, distribute and modify it."
  4221. +
  4222. +ac_pwd='$ac_pwd'
  4223. +srcdir='$srcdir'
  4224. +INSTALL='$INSTALL'
  4225. +test -n "\$AWK" || AWK=awk
  4226. +_ACEOF
  4227. +
  4228. +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
  4229. +# The default lists apply if the user does not specify any file.
  4230. +ac_need_defaults=:
  4231. +while test $# != 0
  4232. +do
  4233. + case $1 in
  4234. + --*=*)
  4235. + ac_option=`expr "X$1" : 'X\([^=]*\)='`
  4236. + ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
  4237. + ac_shift=:
  4238. + ;;
  4239. + *)
  4240. + ac_option=$1
  4241. + ac_optarg=$2
  4242. + ac_shift=shift
  4243. + ;;
  4244. + esac
  4245. +
  4246. + case $ac_option in
  4247. + # Handling of the options.
  4248. + -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
  4249. + ac_cs_recheck=: ;;
  4250. + --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
  4251. + $as_echo "$ac_cs_version"; exit ;;
  4252. + --config | --confi | --conf | --con | --co | --c )
  4253. + $as_echo "$ac_cs_config"; exit ;;
  4254. + --debug | --debu | --deb | --de | --d | -d )
  4255. + debug=: ;;
  4256. + --file | --fil | --fi | --f )
  4257. + $ac_shift
  4258. + case $ac_optarg in
  4259. + *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
  4260. + esac
  4261. + as_fn_append CONFIG_FILES " '$ac_optarg'"
  4262. + ac_need_defaults=false;;
  4263. + --he | --h | --help | --hel | -h )
  4264. + $as_echo "$ac_cs_usage"; exit ;;
  4265. + -q | -quiet | --quiet | --quie | --qui | --qu | --q \
  4266. + | -silent | --silent | --silen | --sile | --sil | --si | --s)
  4267. + ac_cs_silent=: ;;
  4268. +
  4269. + # This is an error.
  4270. + -*) as_fn_error "unrecognized option: \`$1'
  4271. +Try \`$0 --help' for more information." ;;
  4272. +
  4273. + *) as_fn_append ac_config_targets " $1"
  4274. + ac_need_defaults=false ;;
  4275. +
  4276. + esac
  4277. + shift
  4278. +done
  4279. +
  4280. +ac_configure_extra_args=
  4281. +
  4282. +if $ac_cs_silent; then
  4283. + exec 6>/dev/null
  4284. + ac_configure_extra_args="$ac_configure_extra_args --silent"
  4285. +fi
  4286. +
  4287. +_ACEOF
  4288. +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  4289. +if \$ac_cs_recheck; then
  4290. + set X '$SHELL' '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
  4291. + shift
  4292. + \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6
  4293. + CONFIG_SHELL='$SHELL'
  4294. + export CONFIG_SHELL
  4295. + exec "\$@"
  4296. +fi
  4297. +
  4298. +_ACEOF
  4299. +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
  4300. +exec 5>>config.log
  4301. +{
  4302. + echo
  4303. + sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
  4304. +## Running $as_me. ##
  4305. +_ASBOX
  4306. + $as_echo "$ac_log"
  4307. +} >&5
  4308. +
  4309. +_ACEOF
  4310. +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  4311. +_ACEOF
  4312. +
  4313. +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
  4314. +
  4315. +# Handling of arguments.
  4316. +for ac_config_target in $ac_config_targets
  4317. +do
  4318. + case $ac_config_target in
  4319. + "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
  4320. +
  4321. + *) as_fn_error "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
  4322. + esac
  4323. +done
  4324. +
  4325. +
  4326. +# If the user did not use the arguments to specify the items to instantiate,
  4327. +# then the envvar interface is used. Set only those that are not.
  4328. +# We use the long form for the default assignment because of an extremely
  4329. +# bizarre bug on SunOS 4.1.3.
  4330. +if $ac_need_defaults; then
  4331. + test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
  4332. +fi
  4333. +
  4334. +# Have a temporary directory for convenience. Make it in the build tree
  4335. +# simply because there is no reason against having it here, and in addition,
  4336. +# creating and moving files from /tmp can sometimes cause problems.
  4337. +# Hook for its removal unless debugging.
  4338. +# Note that there is a small window in which the directory will not be cleaned:
  4339. +# after its creation but before its name has been assigned to `$tmp'.
  4340. +$debug ||
  4341. +{
  4342. + tmp=
  4343. + trap 'exit_status=$?
  4344. + { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status
  4345. +' 0
  4346. + trap 'as_fn_exit 1' 1 2 13 15
  4347. +}
  4348. +# Create a (secure) tmp directory for tmp files.
  4349. +
  4350. +{
  4351. + tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
  4352. + test -n "$tmp" && test -d "$tmp"
  4353. +} ||
  4354. +{
  4355. + tmp=./conf$$-$RANDOM
  4356. + (umask 077 && mkdir "$tmp")
  4357. +} || as_fn_error "cannot create a temporary directory in ." "$LINENO" 5
  4358. +
  4359. +# Set up the scripts for CONFIG_FILES section.
  4360. +# No need to generate them if there are no CONFIG_FILES.
  4361. +# This happens for instance with `./config.status config.h'.
  4362. +if test -n "$CONFIG_FILES"; then
  4363. +
  4364. +
  4365. +ac_cr=`echo X | tr X '\015'`
  4366. +# On cygwin, bash can eat \r inside `` if the user requested igncr.
  4367. +# But we know of no other shell where ac_cr would be empty at this
  4368. +# point, so we can use a bashism as a fallback.
  4369. +if test "x$ac_cr" = x; then
  4370. + eval ac_cr=\$\'\\r\'
  4371. +fi
  4372. +ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
  4373. +if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
  4374. + ac_cs_awk_cr='\r'
  4375. +else
  4376. + ac_cs_awk_cr=$ac_cr
  4377. +fi
  4378. +
  4379. +echo 'BEGIN {' >"$tmp/subs1.awk" &&
  4380. +_ACEOF
  4381. +
  4382. +
  4383. +{
  4384. + echo "cat >conf$$subs.awk <<_ACEOF" &&
  4385. + echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' &&
  4386. + echo "_ACEOF"
  4387. +} >conf$$subs.sh ||
  4388. + as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5
  4389. +ac_delim_num=`echo "$ac_subst_vars" | grep -c '$'`
  4390. +ac_delim='%!_!# '
  4391. +for ac_last_try in false false false false false :; do
  4392. + . ./conf$$subs.sh ||
  4393. + as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5
  4394. +
  4395. + ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
  4396. + if test $ac_delim_n = $ac_delim_num; then
  4397. + break
  4398. + elif $ac_last_try; then
  4399. + as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5
  4400. + else
  4401. + ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
  4402. + fi
  4403. +done
  4404. +rm -f conf$$subs.sh
  4405. +
  4406. +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  4407. +cat >>"\$tmp/subs1.awk" <<\\_ACAWK &&
  4408. +_ACEOF
  4409. +sed -n '
  4410. +h
  4411. +s/^/S["/; s/!.*/"]=/
  4412. +p
  4413. +g
  4414. +s/^[^!]*!//
  4415. +:repl
  4416. +t repl
  4417. +s/'"$ac_delim"'$//
  4418. +t delim
  4419. +:nl
  4420. +h
  4421. +s/\(.\{148\}\)..*/\1/
  4422. +t more1
  4423. +s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/
  4424. +p
  4425. +n
  4426. +b repl
  4427. +:more1
  4428. +s/["\\]/\\&/g; s/^/"/; s/$/"\\/
  4429. +p
  4430. +g
  4431. +s/.\{148\}//
  4432. +t nl
  4433. +:delim
  4434. +h
  4435. +s/\(.\{148\}\)..*/\1/
  4436. +t more2
  4437. +s/["\\]/\\&/g; s/^/"/; s/$/"/
  4438. +p
  4439. +b
  4440. +:more2
  4441. +s/["\\]/\\&/g; s/^/"/; s/$/"\\/
  4442. +p
  4443. +g
  4444. +s/.\{148\}//
  4445. +t delim
  4446. +' <conf$$subs.awk | sed '
  4447. +/^[^""]/{
  4448. + N
  4449. + s/\n//
  4450. +}
  4451. +' >>$CONFIG_STATUS || ac_write_fail=1
  4452. +rm -f conf$$subs.awk
  4453. +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  4454. +_ACAWK
  4455. +cat >>"\$tmp/subs1.awk" <<_ACAWK &&
  4456. + for (key in S) S_is_set[key] = 1
  4457. + FS = ""
  4458. +
  4459. +}
  4460. +{
  4461. + line = $ 0
  4462. + nfields = split(line, field, "@")
  4463. + substed = 0
  4464. + len = length(field[1])
  4465. + for (i = 2; i < nfields; i++) {
  4466. + key = field[i]
  4467. + keylen = length(key)
  4468. + if (S_is_set[key]) {
  4469. + value = S[key]
  4470. + line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
  4471. + len += length(value) + length(field[++i])
  4472. + substed = 1
  4473. + } else
  4474. + len += 1 + keylen
  4475. + }
  4476. +
  4477. + print line
  4478. +}
  4479. +
  4480. +_ACAWK
  4481. +_ACEOF
  4482. +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
  4483. +if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
  4484. + sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
  4485. +else
  4486. + cat
  4487. +fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \
  4488. + || as_fn_error "could not setup config files machinery" "$LINENO" 5
  4489. +_ACEOF
  4490. +
  4491. +# VPATH may cause trouble with some makes, so we remove $(srcdir),
  4492. +# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and
  4493. +# trailing colons and then remove the whole line if VPATH becomes empty
  4494. +# (actually we leave an empty line to preserve line numbers).
  4495. +if test "x$srcdir" = x.; then
  4496. + ac_vpsub='/^[ ]*VPATH[ ]*=/{
  4497. +s/:*\$(srcdir):*/:/
  4498. +s/:*\${srcdir}:*/:/
  4499. +s/:*@srcdir@:*/:/
  4500. +s/^\([^=]*=[ ]*\):*/\1/
  4501. +s/:*$//
  4502. +s/^[^=]*=[ ]*$//
  4503. +}'
  4504. +fi
  4505. +
  4506. +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
  4507. +fi # test -n "$CONFIG_FILES"
  4508. +
  4509. +
  4510. +eval set X " :F $CONFIG_FILES "
  4511. +shift
  4512. +for ac_tag
  4513. +do
  4514. + case $ac_tag in
  4515. + :[FHLC]) ac_mode=$ac_tag; continue;;
  4516. + esac
  4517. + case $ac_mode$ac_tag in
  4518. + :[FHL]*:*);;
  4519. + :L* | :C*:*) as_fn_error "invalid tag \`$ac_tag'" "$LINENO" 5;;
  4520. + :[FH]-) ac_tag=-:-;;
  4521. + :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
  4522. + esac
  4523. + ac_save_IFS=$IFS
  4524. + IFS=:
  4525. + set x $ac_tag
  4526. + IFS=$ac_save_IFS
  4527. + shift
  4528. + ac_file=$1
  4529. + shift
  4530. +
  4531. + case $ac_mode in
  4532. + :L) ac_source=$1;;
  4533. + :[FH])
  4534. + ac_file_inputs=
  4535. + for ac_f
  4536. + do
  4537. + case $ac_f in
  4538. + -) ac_f="$tmp/stdin";;
  4539. + *) # Look for the file first in the build tree, then in the source tree
  4540. + # (if the path is not absolute). The absolute path cannot be DOS-style,
  4541. + # because $ac_f cannot contain `:'.
  4542. + test -f "$ac_f" ||
  4543. + case $ac_f in
  4544. + [\\/$]*) false;;
  4545. + *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
  4546. + esac ||
  4547. + as_fn_error "cannot find input file: \`$ac_f'" "$LINENO" 5;;
  4548. + esac
  4549. + case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
  4550. + as_fn_append ac_file_inputs " '$ac_f'"
  4551. + done
  4552. +
  4553. + # Let's still pretend it is `configure' which instantiates (i.e., don't
  4554. + # use $as_me), people would be surprised to read:
  4555. + # /* config.h. Generated by config.status. */
  4556. + configure_input='Generated from '`
  4557. + $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
  4558. + `' by configure.'
  4559. + if test x"$ac_file" != x-; then
  4560. + configure_input="$ac_file. $configure_input"
  4561. + { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
  4562. +$as_echo "$as_me: creating $ac_file" >&6;}
  4563. + fi
  4564. + # Neutralize special characters interpreted by sed in replacement strings.
  4565. + case $configure_input in #(
  4566. + *\&* | *\|* | *\\* )
  4567. + ac_sed_conf_input=`$as_echo "$configure_input" |
  4568. + sed 's/[\\\\&|]/\\\\&/g'`;; #(
  4569. + *) ac_sed_conf_input=$configure_input;;
  4570. + esac
  4571. +
  4572. + case $ac_tag in
  4573. + *:-:* | *:-) cat >"$tmp/stdin" \
  4574. + || as_fn_error "could not create $ac_file" "$LINENO" 5 ;;
  4575. + esac
  4576. + ;;
  4577. + esac
  4578. +
  4579. + ac_dir=`$as_dirname -- "$ac_file" ||
  4580. +$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
  4581. + X"$ac_file" : 'X\(//\)[^/]' \| \
  4582. + X"$ac_file" : 'X\(//\)$' \| \
  4583. + X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
  4584. +$as_echo X"$ac_file" |
  4585. + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
  4586. + s//\1/
  4587. + q
  4588. + }
  4589. + /^X\(\/\/\)[^/].*/{
  4590. + s//\1/
  4591. + q
  4592. + }
  4593. + /^X\(\/\/\)$/{
  4594. + s//\1/
  4595. + q
  4596. + }
  4597. + /^X\(\/\).*/{
  4598. + s//\1/
  4599. + q
  4600. + }
  4601. + s/.*/./; q'`
  4602. + as_dir="$ac_dir"; as_fn_mkdir_p
  4603. + ac_builddir=.
  4604. +
  4605. +case "$ac_dir" in
  4606. +.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
  4607. +*)
  4608. + ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
  4609. + # A ".." for each directory in $ac_dir_suffix.
  4610. + ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
  4611. + case $ac_top_builddir_sub in
  4612. + "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
  4613. + *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
  4614. + esac ;;
  4615. +esac
  4616. +ac_abs_top_builddir=$ac_pwd
  4617. +ac_abs_builddir=$ac_pwd$ac_dir_suffix
  4618. +# for backward compatibility:
  4619. +ac_top_builddir=$ac_top_build_prefix
  4620. +
  4621. +case $srcdir in
  4622. + .) # We are building in place.
  4623. + ac_srcdir=.
  4624. + ac_top_srcdir=$ac_top_builddir_sub
  4625. + ac_abs_top_srcdir=$ac_pwd ;;
  4626. + [\\/]* | ?:[\\/]* ) # Absolute name.
  4627. + ac_srcdir=$srcdir$ac_dir_suffix;
  4628. + ac_top_srcdir=$srcdir
  4629. + ac_abs_top_srcdir=$srcdir ;;
  4630. + *) # Relative name.
  4631. + ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
  4632. + ac_top_srcdir=$ac_top_build_prefix$srcdir
  4633. + ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
  4634. +esac
  4635. +ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
  4636. +
  4637. +
  4638. + case $ac_mode in
  4639. + :F)
  4640. + #
  4641. + # CONFIG_FILE
  4642. + #
  4643. +
  4644. + case $INSTALL in
  4645. + [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
  4646. + *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
  4647. + esac
  4648. +_ACEOF
  4649. +
  4650. +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
  4651. +# If the template does not know about datarootdir, expand it.
  4652. +# FIXME: This hack should be removed a few years after 2.60.
  4653. +ac_datarootdir_hack=; ac_datarootdir_seen=
  4654. +ac_sed_dataroot='
  4655. +/datarootdir/ {
  4656. + p
  4657. + q
  4658. +}
  4659. +/@datadir@/p
  4660. +/@docdir@/p
  4661. +/@infodir@/p
  4662. +/@localedir@/p
  4663. +/@mandir@/p'
  4664. +case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
  4665. +*datarootdir*) ac_datarootdir_seen=yes;;
  4666. +*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
  4667. + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
  4668. +$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
  4669. +_ACEOF
  4670. +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  4671. + ac_datarootdir_hack='
  4672. + s&@datadir@&$datadir&g
  4673. + s&@docdir@&$docdir&g
  4674. + s&@infodir@&$infodir&g
  4675. + s&@localedir@&$localedir&g
  4676. + s&@mandir@&$mandir&g
  4677. + s&\\\${datarootdir}&$datarootdir&g' ;;
  4678. +esac
  4679. +_ACEOF
  4680. +
  4681. +# Neutralize VPATH when `$srcdir' = `.'.
  4682. +# Shell code in configure.ac might set extrasub.
  4683. +# FIXME: do we really want to maintain this feature?
  4684. +cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
  4685. +ac_sed_extra="$ac_vpsub
  4686. +$extrasub
  4687. +_ACEOF
  4688. +cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
  4689. +:t
  4690. +/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
  4691. +s|@configure_input@|$ac_sed_conf_input|;t t
  4692. +s&@top_builddir@&$ac_top_builddir_sub&;t t
  4693. +s&@top_build_prefix@&$ac_top_build_prefix&;t t
  4694. +s&@srcdir@&$ac_srcdir&;t t
  4695. +s&@abs_srcdir@&$ac_abs_srcdir&;t t
  4696. +s&@top_srcdir@&$ac_top_srcdir&;t t
  4697. +s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
  4698. +s&@builddir@&$ac_builddir&;t t
  4699. +s&@abs_builddir@&$ac_abs_builddir&;t t
  4700. +s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
  4701. +s&@INSTALL@&$ac_INSTALL&;t t
  4702. +$ac_datarootdir_hack
  4703. +"
  4704. +eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \
  4705. + || as_fn_error "could not create $ac_file" "$LINENO" 5
  4706. +
  4707. +test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
  4708. + { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&
  4709. + { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&
  4710. + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
  4711. +which seems to be undefined. Please make sure it is defined." >&5
  4712. +$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
  4713. +which seems to be undefined. Please make sure it is defined." >&2;}
  4714. +
  4715. + rm -f "$tmp/stdin"
  4716. + case $ac_file in
  4717. + -) cat "$tmp/out" && rm -f "$tmp/out";;
  4718. + *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";;
  4719. + esac \
  4720. + || as_fn_error "could not create $ac_file" "$LINENO" 5
  4721. + ;;
  4722. +
  4723. +
  4724. +
  4725. + esac
  4726. +
  4727. +done # for ac_tag
  4728. +
  4729. +
  4730. +as_fn_exit 0
  4731. +_ACEOF
  4732. +ac_clean_files=$ac_clean_files_save
  4733. +
  4734. +test $ac_write_fail = 0 ||
  4735. + as_fn_error "write failure creating $CONFIG_STATUS" "$LINENO" 5
  4736. +
  4737. +
  4738. +# configure is writing to config.log, and then calls config.status.
  4739. +# config.status does its own redirection, appending to config.log.
  4740. +# Unfortunately, on DOS this fails, as config.log is still kept open
  4741. +# by configure, so config.status won't be able to write to it; its
  4742. +# output is simply discarded. So we exec the FD to /dev/null,
  4743. +# effectively closing config.log, so it can be properly (re)opened and
  4744. +# appended to by config.status. When coming back to configure, we
  4745. +# need to make the FD available again.
  4746. +if test "$no_create" != yes; then
  4747. + ac_cs_success=:
  4748. + ac_config_status_args=
  4749. + test "$silent" = yes &&
  4750. + ac_config_status_args="$ac_config_status_args --quiet"
  4751. + exec 5>/dev/null
  4752. + $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false
  4753. + exec 5>>config.log
  4754. + # Use ||, not &&, to avoid exiting from the if with $? = 1, which
  4755. + # would make configure fail if this is the last instruction.
  4756. + $ac_cs_success || as_fn_exit $?
  4757. +fi
  4758. +if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
  4759. + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
  4760. +$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
  4761. +fi
  4762. +
  4763. +
  4764. diff -Nur 6tunnel-0.11rc2.orig/Makefile.in 6tunnel-0.11rc2/Makefile.in
  4765. --- 6tunnel-0.11rc2.orig/Makefile.in 2002-11-24 02:18:47.000000000 +0100
  4766. +++ 6tunnel-0.11rc2/Makefile.in 2010-02-18 20:34:51.688855777 +0100
  4767. @@ -10,19 +10,18 @@
  4768. STRIP = @STRIP@
  4769. VERSION = @VERSION@
  4770. -default: 6tunnel
  4771. +all: 6tunnel
  4772. 6tunnel: 6tunnel.c
  4773. .PHONY: install
  4774. install:
  4775. - $(STRIP) 6tunnel
  4776. - $(INSTALL) -d $(bindir)
  4777. - $(INSTALL) 6tunnel $(bindir)
  4778. + $(INSTALL) -d $(DESTDIR)$(bindir)
  4779. + $(INSTALL) 6tunnel $(DESTDIR)$(bindir)
  4780. - $(INSTALL) -d $(mandir)/man1
  4781. - $(INSTALL) 6tunnel.1 $(mandir)/man1
  4782. + $(INSTALL) -d $(DESTDIR)$(mandir)/man1
  4783. + $(INSTALL) 6tunnel.1 $(DESTDIR)$(mandir)/man1
  4784. .PHONY: clean