patch-config_log 248 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831
  1. --- nfs-utils-1.2.3.orig/config.log 2010-09-28 14:25:03.000000000 +0200
  2. +++ nfs-utils-1.2.3/config.log 2011-01-21 17:33:44.714914032 +0100
  3. @@ -4,22 +4,22 @@ running configure, to aid debugging if c
  4. It was created by linux nfs-utils configure 1.2.3, which was
  5. generated by GNU Autoconf 2.65. Invocation command line was
  6. - $ ./configure --disable-gss
  7. + $ /home/wbx/adk/openadk/build_ibm-x40_i686_uclibc/w-nfs-utils-1.2.3-3/nfs-utils-1.2.3/configure --build=x86_64-linux-gnu --host=i686-openadk-linux --target=i686-openadk-linux --program-prefix= --program-suffix= --prefix=/usr --bindir=/usr/bin --datadir=/usr/share --mandir=/usr/share/man --libexecdir=/usr/libexec --localstatedir=/var --sysconfdir=/etc --disable-nls --enable-shared --enable-static --disable-dependency-tracking --disable-libtool-lock --enable-nfsv4 --with-krb5=/home/wbx/adk/openadk/target_i686_uclibc/usr/ --enable-gss --enable-tirpc --with-tirpcinclude=/home/wbx/adk/openadk/target_i686_uclibc/usr/include/tirpc --without-tcp-wrappers --with-rpcgen=internal --disable-uuid
  8. ## --------- ##
  9. ## Platform. ##
  10. ## --------- ##
  11. -hostname = TopHat.home.4dicksons.org
  12. +hostname = chrom
  13. uname -m = x86_64
  14. -uname -r = 2.6.34.6-54.fc13.x86_64
  15. +uname -r = 2.6.31-22-server
  16. uname -s = Linux
  17. -uname -v = #1 SMP Sun Sep 5 17:16:27 UTC 2010
  18. +uname -v = #70-Ubuntu SMP Thu Dec 2 00:00:57 UTC 2010
  19. /usr/bin/uname -p = unknown
  20. /bin/uname -X = unknown
  21. -/bin/arch = x86_64
  22. +/bin/arch = unknown
  23. /usr/bin/arch -k = unknown
  24. /usr/convex/getsysinfo = unknown
  25. /usr/bin/hostinfo = unknown
  26. @@ -27,23 +27,18 @@ uname -v = #1 SMP Sun Sep 5 17:16:27 UTC
  27. /usr/bin/oslevel = unknown
  28. /bin/universe = unknown
  29. -PATH: /usr/lib64/qt-3.3/bin
  30. -PATH: /usr/kerberos/sbin
  31. -PATH: /usr/kerberos/bin
  32. -PATH: /usr/lib64/ccache
  33. -PATH: /usr/local/bin
  34. -PATH: /bin
  35. -PATH: /usr/bin
  36. +PATH: /home/wbx/adk/openadk/scripts
  37. +PATH: /home/wbx/adk/openadk/bin/tools
  38. +PATH: /home/wbx/adk/openadk/host_i686_uclibc/bin
  39. +PATH: /home/wbx/adk/openadk/host_i686_uclibc/usr/bin
  40. +PATH: /home/wbx/adk/openadk/target_i686_uclibc/scripts
  41. PATH: /usr/local/sbin
  42. +PATH: /usr/local/bin
  43. PATH: /usr/sbin
  44. -PATH: /sbin
  45. -PATH: /sbin
  46. PATH: /usr/bin
  47. -PATH: /usr/sbin
  48. -PATH: /usr/local/bin
  49. -PATH: /usr/local/kde/bin
  50. -PATH: /home/steved/bin
  51. -PATH: /home/steved/bin
  52. +PATH: /sbin
  53. +PATH: /bin
  54. +PATH: /usr/games
  55. ## ----------- ##
  56. @@ -51,17 +46,19 @@ PATH: /home/steved/bin
  57. ## ----------- ##
  58. configure:2864: checking build system type
  59. -configure:2878: result: x86_64-unknown-linux-gnu
  60. +configure:2878: result: x86_64-pc-linux-gnu
  61. configure:2898: checking host system type
  62. -configure:2911: result: x86_64-unknown-linux-gnu
  63. +configure:2911: result: i686-openadk-linux-gnu
  64. configure:2948: checking for a BSD-compatible install
  65. -configure:3016: result: /usr/bin/install -c
  66. +configure:3016: result: /home/wbx/adk/openadk/scripts/install -c
  67. configure:3027: checking whether build environment is sane
  68. configure:3077: result: yes
  69. +configure:3126: checking for i686-openadk-linux-strip
  70. +configure:3153: result: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-strip
  71. configure:3218: checking for a thread-safe mkdir -p
  72. configure:3257: result: /bin/mkdir -p
  73. configure:3270: checking for gawk
  74. -configure:3286: found /bin/gawk
  75. +configure:3286: found /usr/bin/gawk
  76. configure:3297: result: gawk
  77. configure:3308: checking whether make sets $(MAKE)
  78. configure:3330: result: yes
  79. @@ -69,70 +66,70 @@ configure:3413: checking whether to enab
  80. configure:3422: result: no
  81. configure:3727: checking for style of include used by make
  82. configure:3755: result: GNU
  83. -configure:3825: checking for gcc
  84. -configure:3841: found /usr/lib64/ccache/gcc
  85. -configure:3852: result: gcc
  86. +configure:3785: checking for i686-openadk-linux-gcc
  87. +configure:3812: result: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc
  88. configure:4081: checking for C compiler version
  89. -configure:4090: gcc --version >&5
  90. -gcc (GCC) 4.4.4 20100630 (Red Hat 4.4.4-10)
  91. +configure:4090: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc --version >&5
  92. +i686-openadk-linux-uclibc-gcc (GCC) 4.5.2
  93. Copyright (C) 2010 Free Software Foundation, Inc.
  94. This is free software; see the source for copying conditions. There is NO
  95. warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  96. configure:4101: $? = 0
  97. -configure:4090: gcc -v >&5
  98. +configure:4090: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -v >&5
  99. Using built-in specs.
  100. -Target: x86_64-redhat-linux
  101. -Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk --disable-dssi --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-1.5.0.0/jre --enable-libgcj-multifile --enable-java-maintainer-mode --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --disable-libjava-multilib --with-ppl --with-cloog --with-tune=generic --with-arch_32=i686 --build=x86_64-redhat-linux
  102. +COLLECT_GCC=/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc
  103. +COLLECT_LTO_WRAPPER=/home/wbx/adk/openadk/host_i686_uclibc/libexec/gcc/i686-openadk-linux-uclibc/4.5.2/lto-wrapper
  104. +Target: i686-openadk-linux-uclibc
  105. +Configured with: /home/wbx/adk/openadk/toolchain_build_i686_uclibc/w-gcc-4.5.2-1/gcc-4.5.2/configure --prefix=/home/wbx/adk/openadk/host_i686_uclibc --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=i686-openadk-linux-uclibc --with-gmp=/home/wbx/adk/openadk/host_i686_uclibc --with-mpfr=/home/wbx/adk/openadk/host_i686_uclibc --with-libelf=/home/wbx/adk/openadk/host_i686_uclibc --disable-__cxa_atexit --with-gnu-ld --disable-libmudflap --disable-libgomp --disable-biarch --disable-decimal-float --disable-multilib --disable-sjlj-exceptions --disable-libstdcxx-pch --disable-ppl-version-check --disable-cloog-version-check --without-ppl --without-cloog --disable-nls --enable-libssp --enable-lto --enable-tls --enable-target-optspace --enable-languages=c,c++ --with-sysroot='/home/wbx/adk/openadk/host_i686_uclibc/../target_i686_uclibc' --with-slibdir=/home/wbx/adk/openadk/target_i686_uclibc/lib --enable-shared
  106. Thread model: posix
  107. -gcc version 4.4.4 20100630 (Red Hat 4.4.4-10) (GCC)
  108. +gcc version 4.5.2 (GCC)
  109. configure:4101: $? = 0
  110. -configure:4090: gcc -V >&5
  111. -gcc: '-V' option must have argument
  112. +configure:4090: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -V >&5
  113. +i686-openadk-linux-uclibc-gcc: '-V' option must have argument
  114. configure:4101: $? = 1
  115. -configure:4090: gcc -qversion >&5
  116. -gcc: unrecognized option '-qversion'
  117. -gcc: no input files
  118. +configure:4090: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -qversion >&5
  119. +i686-openadk-linux-uclibc-gcc: unrecognized option '-qversion'
  120. +i686-openadk-linux-uclibc-gcc: no input files
  121. configure:4101: $? = 1
  122. configure:4121: checking whether the C compiler works
  123. -configure:4143: gcc conftest.c >&5
  124. +configure:4143: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -lrpcsecgss >&5
  125. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/librpcsecgss.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  126. configure:4147: $? = 0
  127. configure:4196: result: yes
  128. configure:4199: checking for C compiler default output file name
  129. configure:4201: result: a.out
  130. configure:4207: checking for suffix of executables
  131. -configure:4214: gcc -o conftest conftest.c >&5
  132. +configure:4214: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -lrpcsecgss >&5
  133. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/librpcsecgss.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  134. configure:4218: $? = 0
  135. configure:4240: result:
  136. configure:4262: checking whether we are cross compiling
  137. -configure:4270: gcc -o conftest conftest.c >&5
  138. -configure:4274: $? = 0
  139. -configure:4281: ./conftest
  140. -configure:4285: $? = 0
  141. -configure:4300: result: no
  142. +configure:4300: result: yes
  143. configure:4305: checking for suffix of object files
  144. -configure:4327: gcc -c conftest.c >&5
  145. +configure:4327: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c >&5
  146. configure:4331: $? = 0
  147. configure:4352: result: o
  148. configure:4356: checking whether we are using the GNU C compiler
  149. -configure:4375: gcc -c conftest.c >&5
  150. +configure:4375: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c >&5
  151. configure:4375: $? = 0
  152. configure:4384: result: yes
  153. -configure:4393: checking whether gcc accepts -g
  154. -configure:4413: gcc -c -g conftest.c >&5
  155. +configure:4393: checking whether /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc accepts -g
  156. +configure:4413: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -g -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c >&5
  157. configure:4413: $? = 0
  158. configure:4454: result: yes
  159. -configure:4471: checking for gcc option to accept ISO C89
  160. -configure:4535: gcc -c -g -O2 conftest.c >&5
  161. +configure:4471: checking for /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc option to accept ISO C89
  162. +configure:4535: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c >&5
  163. configure:4535: $? = 0
  164. configure:4548: result: none needed
  165. -configure:4570: checking dependency style of gcc
  166. -configure:4680: result: gcc3
  167. +configure:4570: checking dependency style of /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc
  168. +configure:4680: result: none
  169. configure:4701: checking how to run the C preprocessor
  170. -configure:4732: gcc -E conftest.c
  171. +configure:4732: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c
  172. configure:4732: $? = 0
  173. -configure:4746: gcc -E conftest.c
  174. -conftest.c:14:28: error: ac_nonexistent.h: No such file or directory
  175. +configure:4746: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c
  176. +conftest.c:15:28: fatal error: ac_nonexistent.h: No such file or directory
  177. +compilation terminated.
  178. configure:4746: $? = 1
  179. configure: failed program was:
  180. | /* confdefs.h */
  181. @@ -147,13 +144,15 @@ configure: failed program was:
  182. | #define START_STATD "/usr/sbin/start-statd"
  183. | #define NFS3_SUPPORTED 1
  184. | #define NFS4_SUPPORTED 1
  185. +| #define GSS_SUPPORTED 1
  186. | /* end confdefs.h. */
  187. | #include <ac_nonexistent.h>
  188. -configure:4771: result: gcc -E
  189. -configure:4791: gcc -E conftest.c
  190. +configure:4771: result: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E
  191. +configure:4791: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c
  192. configure:4791: $? = 0
  193. -configure:4805: gcc -E conftest.c
  194. -conftest.c:14:28: error: ac_nonexistent.h: No such file or directory
  195. +configure:4805: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c
  196. +conftest.c:15:28: fatal error: ac_nonexistent.h: No such file or directory
  197. +compilation terminated.
  198. configure:4805: $? = 1
  199. configure: failed program was:
  200. | /* confdefs.h */
  201. @@ -168,6 +167,7 @@ configure: failed program was:
  202. | #define START_STATD "/usr/sbin/start-statd"
  203. | #define NFS3_SUPPORTED 1
  204. | #define NFS4_SUPPORTED 1
  205. +| #define GSS_SUPPORTED 1
  206. | /* end confdefs.h. */
  207. | #include <ac_nonexistent.h>
  208. configure:4834: checking for grep that handles long lines and -e
  209. @@ -175,152 +175,5230 @@ configure:4892: result: /bin/grep
  210. configure:4897: checking for egrep
  211. configure:4959: result: /bin/grep -E
  212. configure:4964: checking for ANSI C header files
  213. -configure:4984: gcc -c -g -O2 conftest.c >&5
  214. +configure:4984: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c >&5
  215. configure:4984: $? = 0
  216. -configure:5057: gcc -o conftest -g -O2 conftest.c >&5
  217. -configure:5057: $? = 0
  218. -configure:5057: ./conftest
  219. -configure:5057: $? = 0
  220. configure:5068: result: yes
  221. configure:5081: checking for sys/types.h
  222. -configure:5081: gcc -c -g -O2 conftest.c >&5
  223. +configure:5081: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c >&5
  224. configure:5081: $? = 0
  225. configure:5081: result: yes
  226. configure:5081: checking for sys/stat.h
  227. -configure:5081: gcc -c -g -O2 conftest.c >&5
  228. +configure:5081: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c >&5
  229. configure:5081: $? = 0
  230. configure:5081: result: yes
  231. configure:5081: checking for stdlib.h
  232. -configure:5081: gcc -c -g -O2 conftest.c >&5
  233. +configure:5081: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c >&5
  234. configure:5081: $? = 0
  235. configure:5081: result: yes
  236. configure:5081: checking for string.h
  237. -configure:5081: gcc -c -g -O2 conftest.c >&5
  238. +configure:5081: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c >&5
  239. configure:5081: $? = 0
  240. configure:5081: result: yes
  241. configure:5081: checking for memory.h
  242. -configure:5081: gcc -c -g -O2 conftest.c >&5
  243. +configure:5081: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c >&5
  244. configure:5081: $? = 0
  245. configure:5081: result: yes
  246. configure:5081: checking for strings.h
  247. -configure:5081: gcc -c -g -O2 conftest.c >&5
  248. +configure:5081: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c >&5
  249. configure:5081: $? = 0
  250. configure:5081: result: yes
  251. configure:5081: checking for inttypes.h
  252. -configure:5081: gcc -c -g -O2 conftest.c >&5
  253. +configure:5081: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c >&5
  254. configure:5081: $? = 0
  255. configure:5081: result: yes
  256. configure:5081: checking for stdint.h
  257. -configure:5081: gcc -c -g -O2 conftest.c >&5
  258. +configure:5081: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c >&5
  259. configure:5081: $? = 0
  260. configure:5081: result: yes
  261. configure:5081: checking for unistd.h
  262. -configure:5081: gcc -c -g -O2 conftest.c >&5
  263. +configure:5081: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c >&5
  264. configure:5081: $? = 0
  265. configure:5081: result: yes
  266. configure:5108: checking for clnt_tli_create in -ltirpc
  267. -configure:5133: gcc -o conftest -g -O2 conftest.c -ltirpc >&5
  268. +configure:5133: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
  269. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  270. configure:5133: $? = 0
  271. configure:5142: result: yes
  272. -configure:5167: checking /usr/include/tirpc/netconfig.h usability
  273. -configure:5167: gcc -c -g -O2 conftest.c >&5
  274. +configure:5167: checking /home/wbx/adk/openadk/target_i686_uclibc/usr/include/tirpc/netconfig.h usability
  275. +configure:5167: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c >&5
  276. configure:5167: $? = 0
  277. configure:5167: result: yes
  278. -configure:5167: checking /usr/include/tirpc/netconfig.h presence
  279. -configure:5167: gcc -E conftest.c
  280. +configure:5167: checking /home/wbx/adk/openadk/target_i686_uclibc/usr/include/tirpc/netconfig.h presence
  281. +configure:5167: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c
  282. +configure:5167: $? = 0
  283. +configure:5167: result: yes
  284. +configure:5167: checking for /home/wbx/adk/openadk/target_i686_uclibc/usr/include/tirpc/netconfig.h
  285. +configure:5167: result: yes
  286. +configure:5194: checking for prctl
  287. +configure:5194: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
  288. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  289. +configure:5194: $? = 0
  290. +configure:5194: result: yes
  291. +configure:5209: checking for cap_get_proc in -lcap
  292. +configure:5234: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -lcap -ltirpc -lrpcsecgss >&5
  293. +/home/wbx/adk/openadk/host_i686_uclibc/lib/gcc/i686-openadk-linux-uclibc/4.5.2/../../../../i686-openadk-linux-uclibc/bin/ld: cannot find -lcap
  294. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  295. +collect2: ld returned 1 exit status
  296. +configure:5234: $? = 1
  297. +configure: failed program was:
  298. +| /* confdefs.h */
  299. +| #define PACKAGE_NAME "linux nfs-utils"
  300. +| #define PACKAGE_TARNAME "nfs-utils"
  301. +| #define PACKAGE_VERSION "1.2.3"
  302. +| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
  303. +| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
  304. +| #define PACKAGE_URL ""
  305. +| #define PACKAGE "nfs-utils"
  306. +| #define VERSION "1.2.3"
  307. +| #define START_STATD "/usr/sbin/start-statd"
  308. +| #define NFS3_SUPPORTED 1
  309. +| #define NFS4_SUPPORTED 1
  310. +| #define GSS_SUPPORTED 1
  311. +| #define STDC_HEADERS 1
  312. +| #define HAVE_SYS_TYPES_H 1
  313. +| #define HAVE_SYS_STAT_H 1
  314. +| #define HAVE_STDLIB_H 1
  315. +| #define HAVE_STRING_H 1
  316. +| #define HAVE_MEMORY_H 1
  317. +| #define HAVE_STRINGS_H 1
  318. +| #define HAVE_INTTYPES_H 1
  319. +| #define HAVE_STDINT_H 1
  320. +| #define HAVE_UNISTD_H 1
  321. +| #define HAVE_LIBTIRPC 1
  322. +| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
  323. +| /* end confdefs.h. */
  324. +|
  325. +| /* Override any GCC internal prototype to avoid an error.
  326. +| Use char because int might match the return type of a GCC
  327. +| builtin and then its argument prototype would still apply. */
  328. +| #ifdef __cplusplus
  329. +| extern "C"
  330. +| #endif
  331. +| char cap_get_proc ();
  332. +| int
  333. +| main ()
  334. +| {
  335. +| return cap_get_proc ();
  336. +| ;
  337. +| return 0;
  338. +| }
  339. +configure:5243: result: no
  340. +configure:5252: checking sys/capability.h usability
  341. +configure:5252: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c >&5
  342. +conftest.c:60:28: fatal error: sys/capability.h: No such file or directory
  343. +compilation terminated.
  344. +configure:5252: $? = 1
  345. +configure: failed program was:
  346. +| /* confdefs.h */
  347. +| #define PACKAGE_NAME "linux nfs-utils"
  348. +| #define PACKAGE_TARNAME "nfs-utils"
  349. +| #define PACKAGE_VERSION "1.2.3"
  350. +| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
  351. +| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
  352. +| #define PACKAGE_URL ""
  353. +| #define PACKAGE "nfs-utils"
  354. +| #define VERSION "1.2.3"
  355. +| #define START_STATD "/usr/sbin/start-statd"
  356. +| #define NFS3_SUPPORTED 1
  357. +| #define NFS4_SUPPORTED 1
  358. +| #define GSS_SUPPORTED 1
  359. +| #define STDC_HEADERS 1
  360. +| #define HAVE_SYS_TYPES_H 1
  361. +| #define HAVE_SYS_STAT_H 1
  362. +| #define HAVE_STDLIB_H 1
  363. +| #define HAVE_STRING_H 1
  364. +| #define HAVE_MEMORY_H 1
  365. +| #define HAVE_STRINGS_H 1
  366. +| #define HAVE_INTTYPES_H 1
  367. +| #define HAVE_STDINT_H 1
  368. +| #define HAVE_UNISTD_H 1
  369. +| #define HAVE_LIBTIRPC 1
  370. +| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
  371. +| /* end confdefs.h. */
  372. +| #include <stdio.h>
  373. +| #ifdef HAVE_SYS_TYPES_H
  374. +| # include <sys/types.h>
  375. +| #endif
  376. +| #ifdef HAVE_SYS_STAT_H
  377. +| # include <sys/stat.h>
  378. +| #endif
  379. +| #ifdef STDC_HEADERS
  380. +| # include <stdlib.h>
  381. +| # include <stddef.h>
  382. +| #else
  383. +| # ifdef HAVE_STDLIB_H
  384. +| # include <stdlib.h>
  385. +| # endif
  386. +| #endif
  387. +| #ifdef HAVE_STRING_H
  388. +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  389. +| # include <memory.h>
  390. +| # endif
  391. +| # include <string.h>
  392. +| #endif
  393. +| #ifdef HAVE_STRINGS_H
  394. +| # include <strings.h>
  395. +| #endif
  396. +| #ifdef HAVE_INTTYPES_H
  397. +| # include <inttypes.h>
  398. +| #endif
  399. +| #ifdef HAVE_STDINT_H
  400. +| # include <stdint.h>
  401. +| #endif
  402. +| #ifdef HAVE_UNISTD_H
  403. +| # include <unistd.h>
  404. +| #endif
  405. +| #include <sys/capability.h>
  406. +configure:5252: result: no
  407. +configure:5252: checking sys/capability.h presence
  408. +configure:5252: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c
  409. +conftest.c:27:28: fatal error: sys/capability.h: No such file or directory
  410. +compilation terminated.
  411. +configure:5252: $? = 1
  412. +configure: failed program was:
  413. +| /* confdefs.h */
  414. +| #define PACKAGE_NAME "linux nfs-utils"
  415. +| #define PACKAGE_TARNAME "nfs-utils"
  416. +| #define PACKAGE_VERSION "1.2.3"
  417. +| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
  418. +| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
  419. +| #define PACKAGE_URL ""
  420. +| #define PACKAGE "nfs-utils"
  421. +| #define VERSION "1.2.3"
  422. +| #define START_STATD "/usr/sbin/start-statd"
  423. +| #define NFS3_SUPPORTED 1
  424. +| #define NFS4_SUPPORTED 1
  425. +| #define GSS_SUPPORTED 1
  426. +| #define STDC_HEADERS 1
  427. +| #define HAVE_SYS_TYPES_H 1
  428. +| #define HAVE_SYS_STAT_H 1
  429. +| #define HAVE_STDLIB_H 1
  430. +| #define HAVE_STRING_H 1
  431. +| #define HAVE_MEMORY_H 1
  432. +| #define HAVE_STRINGS_H 1
  433. +| #define HAVE_INTTYPES_H 1
  434. +| #define HAVE_STDINT_H 1
  435. +| #define HAVE_UNISTD_H 1
  436. +| #define HAVE_LIBTIRPC 1
  437. +| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
  438. +| /* end confdefs.h. */
  439. +| #include <sys/capability.h>
  440. +configure:5252: result: no
  441. +configure:5252: checking for sys/capability.h
  442. +configure:5252: result: no
  443. +configure:5362: checking for special C compiler options needed for large files
  444. +configure:5407: result: no
  445. +configure:5413: checking for _FILE_OFFSET_BITS value needed for large files
  446. +configure:5438: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c >&5
  447. +conftest.c:33:3: warning: left shift count >= width of type
  448. +conftest.c:33:3: warning: left shift count >= width of type
  449. +conftest.c:34:10: warning: left shift count >= width of type
  450. +conftest.c:34:10: warning: left shift count >= width of type
  451. +conftest.c:33:7: error: size of array 'off_t_is_large' is negative
  452. +conftest.c:35:9: warning: variably modified 'off_t_is_large' at file scope
  453. +configure:5438: $? = 1
  454. +configure: failed program was:
  455. +| /* confdefs.h */
  456. +| #define PACKAGE_NAME "linux nfs-utils"
  457. +| #define PACKAGE_TARNAME "nfs-utils"
  458. +| #define PACKAGE_VERSION "1.2.3"
  459. +| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
  460. +| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
  461. +| #define PACKAGE_URL ""
  462. +| #define PACKAGE "nfs-utils"
  463. +| #define VERSION "1.2.3"
  464. +| #define START_STATD "/usr/sbin/start-statd"
  465. +| #define NFS3_SUPPORTED 1
  466. +| #define NFS4_SUPPORTED 1
  467. +| #define GSS_SUPPORTED 1
  468. +| #define STDC_HEADERS 1
  469. +| #define HAVE_SYS_TYPES_H 1
  470. +| #define HAVE_SYS_STAT_H 1
  471. +| #define HAVE_STDLIB_H 1
  472. +| #define HAVE_STRING_H 1
  473. +| #define HAVE_MEMORY_H 1
  474. +| #define HAVE_STRINGS_H 1
  475. +| #define HAVE_INTTYPES_H 1
  476. +| #define HAVE_STDINT_H 1
  477. +| #define HAVE_UNISTD_H 1
  478. +| #define HAVE_LIBTIRPC 1
  479. +| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
  480. +| /* end confdefs.h. */
  481. +| #include <sys/types.h>
  482. +| /* Check that off_t can represent 2**63 - 1 correctly.
  483. +| We can't simply define LARGE_OFF_T to be 9223372036854775807,
  484. +| since some C++ compilers masquerading as C compilers
  485. +| incorrectly reject 9223372036854775807. */
  486. +| #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62))
  487. +| int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
  488. +| && LARGE_OFF_T % 2147483647 == 1)
  489. +| ? 1 : -1];
  490. +| int
  491. +| main ()
  492. +| {
  493. +|
  494. +| ;
  495. +| return 0;
  496. +| }
  497. +configure:5462: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c >&5
  498. +configure:5462: $? = 0
  499. +configure:5470: result: 64
  500. +configure:5671: checking for C++ compiler version
  501. +configure:5680: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ --version >&5
  502. +i686-openadk-linux-uclibc-g++ (GCC) 4.5.2
  503. +Copyright (C) 2010 Free Software Foundation, Inc.
  504. +This is free software; see the source for copying conditions. There is NO
  505. +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  506. +
  507. +configure:5691: $? = 0
  508. +configure:5680: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ -v >&5
  509. +Using built-in specs.
  510. +COLLECT_GCC=/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++
  511. +COLLECT_LTO_WRAPPER=/home/wbx/adk/openadk/host_i686_uclibc/libexec/gcc/i686-openadk-linux-uclibc/4.5.2/lto-wrapper
  512. +Target: i686-openadk-linux-uclibc
  513. +Configured with: /home/wbx/adk/openadk/toolchain_build_i686_uclibc/w-gcc-4.5.2-1/gcc-4.5.2/configure --prefix=/home/wbx/adk/openadk/host_i686_uclibc --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=i686-openadk-linux-uclibc --with-gmp=/home/wbx/adk/openadk/host_i686_uclibc --with-mpfr=/home/wbx/adk/openadk/host_i686_uclibc --with-libelf=/home/wbx/adk/openadk/host_i686_uclibc --disable-__cxa_atexit --with-gnu-ld --disable-libmudflap --disable-libgomp --disable-biarch --disable-decimal-float --disable-multilib --disable-sjlj-exceptions --disable-libstdcxx-pch --disable-ppl-version-check --disable-cloog-version-check --without-ppl --without-cloog --disable-nls --enable-libssp --enable-lto --enable-tls --enable-target-optspace --enable-languages=c,c++ --with-sysroot='/home/wbx/adk/openadk/host_i686_uclibc/../target_i686_uclibc' --with-slibdir=/home/wbx/adk/openadk/target_i686_uclibc/lib --enable-shared
  514. +Thread model: posix
  515. +gcc version 4.5.2 (GCC)
  516. +configure:5691: $? = 0
  517. +configure:5680: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ -V >&5
  518. +i686-openadk-linux-uclibc-g++: '-V' option must have argument
  519. +configure:5691: $? = 1
  520. +configure:5680: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ -qversion >&5
  521. +i686-openadk-linux-uclibc-g++: unrecognized option '-qversion'
  522. +i686-openadk-linux-uclibc-g++: no input files
  523. +configure:5691: $? = 1
  524. +configure:5695: checking whether we are using the GNU C++ compiler
  525. +configure:5714: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ -c -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.cpp >&5
  526. +configure:5714: $? = 0
  527. +configure:5723: result: yes
  528. +configure:5732: checking whether /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ accepts -g
  529. +configure:5752: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ -c -g -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.cpp >&5
  530. +configure:5752: $? = 0
  531. +configure:5793: result: yes
  532. +configure:5818: checking dependency style of /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++
  533. +configure:5928: result: none
  534. +configure:5951: checking for i686-openadk-linux-gcc
  535. +configure:5978: result: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc
  536. +configure:6247: checking for C compiler version
  537. +configure:6256: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc --version >&5
  538. +i686-openadk-linux-uclibc-gcc (GCC) 4.5.2
  539. +Copyright (C) 2010 Free Software Foundation, Inc.
  540. +This is free software; see the source for copying conditions. There is NO
  541. +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  542. +
  543. +configure:6267: $? = 0
  544. +configure:6256: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -v >&5
  545. +Using built-in specs.
  546. +COLLECT_GCC=/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc
  547. +COLLECT_LTO_WRAPPER=/home/wbx/adk/openadk/host_i686_uclibc/libexec/gcc/i686-openadk-linux-uclibc/4.5.2/lto-wrapper
  548. +Target: i686-openadk-linux-uclibc
  549. +Configured with: /home/wbx/adk/openadk/toolchain_build_i686_uclibc/w-gcc-4.5.2-1/gcc-4.5.2/configure --prefix=/home/wbx/adk/openadk/host_i686_uclibc --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=i686-openadk-linux-uclibc --with-gmp=/home/wbx/adk/openadk/host_i686_uclibc --with-mpfr=/home/wbx/adk/openadk/host_i686_uclibc --with-libelf=/home/wbx/adk/openadk/host_i686_uclibc --disable-__cxa_atexit --with-gnu-ld --disable-libmudflap --disable-libgomp --disable-biarch --disable-decimal-float --disable-multilib --disable-sjlj-exceptions --disable-libstdcxx-pch --disable-ppl-version-check --disable-cloog-version-check --without-ppl --without-cloog --disable-nls --enable-libssp --enable-lto --enable-tls --enable-target-optspace --enable-languages=c,c++ --with-sysroot='/home/wbx/adk/openadk/host_i686_uclibc/../target_i686_uclibc' --with-slibdir=/home/wbx/adk/openadk/target_i686_uclibc/lib --enable-shared
  550. +Thread model: posix
  551. +gcc version 4.5.2 (GCC)
  552. +configure:6267: $? = 0
  553. +configure:6256: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -V >&5
  554. +i686-openadk-linux-uclibc-gcc: '-V' option must have argument
  555. +configure:6267: $? = 1
  556. +configure:6256: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -qversion >&5
  557. +i686-openadk-linux-uclibc-gcc: unrecognized option '-qversion'
  558. +i686-openadk-linux-uclibc-gcc: no input files
  559. +configure:6267: $? = 1
  560. +configure:6271: checking whether we are using the GNU C compiler
  561. +configure:6299: result: yes
  562. +configure:6308: checking whether /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc accepts -g
  563. +configure:6369: result: yes
  564. +configure:6386: checking for /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc option to accept ISO C89
  565. +configure:6463: result: none needed
  566. +configure:6485: checking dependency style of /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc
  567. +configure:6595: result: none
  568. +configure:6615: checking how to run the C preprocessor
  569. +configure:6685: result: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E
  570. +configure:6705: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c
  571. +configure:6705: $? = 0
  572. +configure:6719: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c
  573. +conftest.c:28:28: fatal error: ac_nonexistent.h: No such file or directory
  574. +compilation terminated.
  575. +configure:6719: $? = 1
  576. +configure: failed program was:
  577. +| /* confdefs.h */
  578. +| #define PACKAGE_NAME "linux nfs-utils"
  579. +| #define PACKAGE_TARNAME "nfs-utils"
  580. +| #define PACKAGE_VERSION "1.2.3"
  581. +| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
  582. +| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
  583. +| #define PACKAGE_URL ""
  584. +| #define PACKAGE "nfs-utils"
  585. +| #define VERSION "1.2.3"
  586. +| #define START_STATD "/usr/sbin/start-statd"
  587. +| #define NFS3_SUPPORTED 1
  588. +| #define NFS4_SUPPORTED 1
  589. +| #define GSS_SUPPORTED 1
  590. +| #define STDC_HEADERS 1
  591. +| #define HAVE_SYS_TYPES_H 1
  592. +| #define HAVE_SYS_STAT_H 1
  593. +| #define HAVE_STDLIB_H 1
  594. +| #define HAVE_STRING_H 1
  595. +| #define HAVE_MEMORY_H 1
  596. +| #define HAVE_STRINGS_H 1
  597. +| #define HAVE_INTTYPES_H 1
  598. +| #define HAVE_STDINT_H 1
  599. +| #define HAVE_UNISTD_H 1
  600. +| #define HAVE_LIBTIRPC 1
  601. +| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
  602. +| #define _FILE_OFFSET_BITS 64
  603. +| /* end confdefs.h. */
  604. +| #include <ac_nonexistent.h>
  605. +configure:6748: checking whether ln -s works
  606. +configure:6752: result: yes
  607. +configure:6759: checking whether make sets $(MAKE)
  608. +configure:6781: result: yes
  609. +configure:6815: checking for a sed that does not truncate output
  610. +configure:6879: result: /home/wbx/adk/openadk/scripts/sed
  611. +configure:6897: checking for fgrep
  612. +configure:6959: result: /bin/grep -F
  613. +configure:6994: checking for ld used by /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc
  614. +configure:7061: result: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-ld
  615. +configure:7068: checking if the linker (/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-ld) is GNU ld
  616. +configure:7083: result: yes
  617. +configure:7095: checking for BSD- or MS-compatible name lister (nm)
  618. +configure:7144: result: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-nm
  619. +configure:7262: checking the name lister (/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-nm) interface
  620. +configure:7269: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c >&5
  621. +configure:7272: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-nm "conftest.o"
  622. +configure:7275: output
  623. +00000000 B some_variable
  624. +configure:7282: result: BSD nm
  625. +configure:7286: checking the maximum length of command line arguments
  626. +configure:7406: result: 3458764513820540925
  627. +configure:7423: checking whether the shell understands some XSI constructs
  628. +configure:7433: result: yes
  629. +configure:7437: checking whether the shell understands "+="
  630. +configure:7443: result: yes
  631. +configure:7478: checking for /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-ld option to reload object files
  632. +configure:7485: result: -r
  633. +configure:7514: checking for i686-openadk-linux-objdump
  634. +configure:7530: found /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-objdump
  635. +configure:7541: result: i686-openadk-linux-objdump
  636. +configure:7613: checking how to recognize dependent libraries
  637. +configure:7809: result: pass_all
  638. +configure:7829: checking for i686-openadk-linux-ar
  639. +configure:7856: result: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-ar
  640. +configure:7934: checking for i686-openadk-linux-strip
  641. +configure:7961: result: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-strip
  642. +configure:8033: checking for i686-openadk-linux-ranlib
  643. +configure:8060: result: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-ranlib
  644. +configure:8190: checking command to parse /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-nm output from /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc object
  645. +configure:8308: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c >&5
  646. +configure:8311: $? = 0
  647. +configure:8315: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-nm conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' \> conftest.nm
  648. +configure:8318: $? = 0
  649. +configure:8372: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c conftstm.o >&5
  650. +configure:8375: $? = 0
  651. +configure:8413: result: ok
  652. +configure:9218: checking for dlfcn.h
  653. +configure:9218: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c >&5
  654. +configure:9218: $? = 0
  655. +configure:9218: result: yes
  656. +configure:9343: checking for C++ compiler version
  657. +configure:9352: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ --version >&5
  658. +i686-openadk-linux-uclibc-g++ (GCC) 4.5.2
  659. +Copyright (C) 2010 Free Software Foundation, Inc.
  660. +This is free software; see the source for copying conditions. There is NO
  661. +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  662. +
  663. +configure:9363: $? = 0
  664. +configure:9352: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ -v >&5
  665. +Using built-in specs.
  666. +COLLECT_GCC=/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++
  667. +COLLECT_LTO_WRAPPER=/home/wbx/adk/openadk/host_i686_uclibc/libexec/gcc/i686-openadk-linux-uclibc/4.5.2/lto-wrapper
  668. +Target: i686-openadk-linux-uclibc
  669. +Configured with: /home/wbx/adk/openadk/toolchain_build_i686_uclibc/w-gcc-4.5.2-1/gcc-4.5.2/configure --prefix=/home/wbx/adk/openadk/host_i686_uclibc --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=i686-openadk-linux-uclibc --with-gmp=/home/wbx/adk/openadk/host_i686_uclibc --with-mpfr=/home/wbx/adk/openadk/host_i686_uclibc --with-libelf=/home/wbx/adk/openadk/host_i686_uclibc --disable-__cxa_atexit --with-gnu-ld --disable-libmudflap --disable-libgomp --disable-biarch --disable-decimal-float --disable-multilib --disable-sjlj-exceptions --disable-libstdcxx-pch --disable-ppl-version-check --disable-cloog-version-check --without-ppl --without-cloog --disable-nls --enable-libssp --enable-lto --enable-tls --enable-target-optspace --enable-languages=c,c++ --with-sysroot='/home/wbx/adk/openadk/host_i686_uclibc/../target_i686_uclibc' --with-slibdir=/home/wbx/adk/openadk/target_i686_uclibc/lib --enable-shared
  670. +Thread model: posix
  671. +gcc version 4.5.2 (GCC)
  672. +configure:9363: $? = 0
  673. +configure:9352: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ -V >&5
  674. +i686-openadk-linux-uclibc-g++: '-V' option must have argument
  675. +configure:9363: $? = 1
  676. +configure:9352: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ -qversion >&5
  677. +i686-openadk-linux-uclibc-g++: unrecognized option '-qversion'
  678. +i686-openadk-linux-uclibc-g++: no input files
  679. +configure:9363: $? = 1
  680. +configure:9367: checking whether we are using the GNU C++ compiler
  681. +configure:9395: result: yes
  682. +configure:9404: checking whether /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ accepts -g
  683. +configure:9465: result: yes
  684. +configure:9490: checking dependency style of /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++
  685. +configure:9600: result: none
  686. +configure:9623: checking how to run the C++ preprocessor
  687. +configure:9650: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.cpp
  688. +configure:9650: $? = 0
  689. +configure:9664: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.cpp
  690. +conftest.cpp:29:28: fatal error: ac_nonexistent.h: No such file or directory
  691. +compilation terminated.
  692. +configure:9664: $? = 1
  693. +configure: failed program was:
  694. +| /* confdefs.h */
  695. +| #define PACKAGE_NAME "linux nfs-utils"
  696. +| #define PACKAGE_TARNAME "nfs-utils"
  697. +| #define PACKAGE_VERSION "1.2.3"
  698. +| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
  699. +| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
  700. +| #define PACKAGE_URL ""
  701. +| #define PACKAGE "nfs-utils"
  702. +| #define VERSION "1.2.3"
  703. +| #define START_STATD "/usr/sbin/start-statd"
  704. +| #define NFS3_SUPPORTED 1
  705. +| #define NFS4_SUPPORTED 1
  706. +| #define GSS_SUPPORTED 1
  707. +| #define STDC_HEADERS 1
  708. +| #define HAVE_SYS_TYPES_H 1
  709. +| #define HAVE_SYS_STAT_H 1
  710. +| #define HAVE_STDLIB_H 1
  711. +| #define HAVE_STRING_H 1
  712. +| #define HAVE_MEMORY_H 1
  713. +| #define HAVE_STRINGS_H 1
  714. +| #define HAVE_INTTYPES_H 1
  715. +| #define HAVE_STDINT_H 1
  716. +| #define HAVE_UNISTD_H 1
  717. +| #define HAVE_LIBTIRPC 1
  718. +| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
  719. +| #define _FILE_OFFSET_BITS 64
  720. +| #define HAVE_DLFCN_H 1
  721. +| /* end confdefs.h. */
  722. +| #include <ac_nonexistent.h>
  723. +configure:9689: result: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ -E
  724. +configure:9709: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.cpp
  725. +configure:9709: $? = 0
  726. +configure:9723: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.cpp
  727. +conftest.cpp:29:28: fatal error: ac_nonexistent.h: No such file or directory
  728. +compilation terminated.
  729. +configure:9723: $? = 1
  730. +configure: failed program was:
  731. +| /* confdefs.h */
  732. +| #define PACKAGE_NAME "linux nfs-utils"
  733. +| #define PACKAGE_TARNAME "nfs-utils"
  734. +| #define PACKAGE_VERSION "1.2.3"
  735. +| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
  736. +| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
  737. +| #define PACKAGE_URL ""
  738. +| #define PACKAGE "nfs-utils"
  739. +| #define VERSION "1.2.3"
  740. +| #define START_STATD "/usr/sbin/start-statd"
  741. +| #define NFS3_SUPPORTED 1
  742. +| #define NFS4_SUPPORTED 1
  743. +| #define GSS_SUPPORTED 1
  744. +| #define STDC_HEADERS 1
  745. +| #define HAVE_SYS_TYPES_H 1
  746. +| #define HAVE_SYS_STAT_H 1
  747. +| #define HAVE_STDLIB_H 1
  748. +| #define HAVE_STRING_H 1
  749. +| #define HAVE_MEMORY_H 1
  750. +| #define HAVE_STRINGS_H 1
  751. +| #define HAVE_INTTYPES_H 1
  752. +| #define HAVE_STDINT_H 1
  753. +| #define HAVE_UNISTD_H 1
  754. +| #define HAVE_LIBTIRPC 1
  755. +| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
  756. +| #define _FILE_OFFSET_BITS 64
  757. +| #define HAVE_DLFCN_H 1
  758. +| /* end confdefs.h. */
  759. +| #include <ac_nonexistent.h>
  760. +configure:9929: checking for objdir
  761. +configure:9944: result: .libs
  762. +configure:10240: checking if /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc supports -fno-rtti -fno-exceptions
  763. +configure:10258: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -fno-rtti -fno-exceptions conftest.c >&5
  764. +cc1: warning: command line option "-fno-rtti" is valid for C++/ObjC++ but not for C
  765. +configure:10262: $? = 0
  766. +configure:10275: result: no
  767. +configure:10295: checking for /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc option to produce PIC
  768. +configure:10567: result: -fPIC -DPIC
  769. +configure:10579: checking if /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc PIC flag -fPIC -DPIC works
  770. +configure:10597: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -fPIC -DPIC -DPIC conftest.c >&5
  771. +configure:10601: $? = 0
  772. +configure:10614: result: yes
  773. +configure:10638: checking if /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc static flag -static works
  774. +configure:10666: result: yes
  775. +configure:10681: checking if /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc supports -c -o file.o
  776. +configure:10702: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -o out/conftest2.o conftest.c >&5
  777. +configure:10706: $? = 0
  778. +configure:10728: result: yes
  779. +configure:10736: checking if /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc supports -c -o file.o
  780. +configure:10783: result: yes
  781. +configure:10816: checking whether the /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc linker (/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-ld) supports shared libraries
  782. +configure:11802: result: yes
  783. +configure:11839: checking whether -lc should be explicitly linked in
  784. +configure:11844: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c >&5
  785. +configure:11847: $? = 0
  786. +configure:11862: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -shared conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| /bin/grep -lc \>/dev/null 2\>\&1
  787. +configure:11865: $? = 0
  788. +configure:11877: result: no
  789. +configure:12041: checking dynamic linker characteristics
  790. +configure:12474: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -Wl,-rpath -Wl,/foo conftest.c -ltirpc -lrpcsecgss >&5
  791. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  792. +configure:12474: $? = 0
  793. +configure:12695: result: GNU/Linux ld.so
  794. +configure:12797: checking how to hardcode library paths into programs
  795. +configure:12822: result: immediate
  796. +configure:13342: checking whether stripping libraries is possible
  797. +configure:13347: result: yes
  798. +configure:13382: checking if libtool supports shared libraries
  799. +configure:13384: result: yes
  800. +configure:13387: checking whether to build shared libraries
  801. +configure:13408: result: yes
  802. +configure:13411: checking whether to build static libraries
  803. +configure:13415: result: yes
  804. +configure:13565: checking for ld used by /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++
  805. +configure:13632: result: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-ld
  806. +configure:13639: checking if the linker (/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-ld) is GNU ld
  807. +configure:13654: result: yes
  808. +configure:13709: checking whether the /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ linker (/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-ld) supports shared libraries
  809. +configure:14622: result: yes
  810. +configure:14650: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ -c -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.cpp >&5
  811. +configure:14653: $? = 0
  812. +configure:14835: checking for /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ option to produce PIC
  813. +configure:15152: result: -fPIC -DPIC
  814. +configure:15161: checking if /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ PIC flag -fPIC -DPIC works
  815. +configure:15179: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ -c -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -fPIC -DPIC -DPIC conftest.cpp >&5
  816. +configure:15183: $? = 0
  817. +configure:15196: result: yes
  818. +configure:15217: checking if /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ static flag -static works
  819. +configure:15245: result: yes
  820. +configure:15257: checking if /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ supports -c -o file.o
  821. +configure:15278: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ -c -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -o out/conftest2.o conftest.cpp >&5
  822. +configure:15282: $? = 0
  823. +configure:15304: result: yes
  824. +configure:15309: checking if /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ supports -c -o file.o
  825. +configure:15356: result: yes
  826. +configure:15386: checking whether the /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ linker (/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-ld) supports shared libraries
  827. +configure:15412: result: yes
  828. +configure:15549: checking dynamic linker characteristics
  829. +configure:15930: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ -o conftest -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -Wl,-rpath -Wl,/foo conftest.cpp -ltirpc -lrpcsecgss >&5
  830. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  831. +configure:15930: $? = 0
  832. +configure:16151: result: GNU/Linux ld.so
  833. +configure:16202: checking how to hardcode library paths into programs
  834. +configure:16227: result: immediate
  835. +configure:16286: checking whether /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc and cc understand -c and -o together
  836. +configure:16317: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c conftest.c -o conftest2.o >&5
  837. +configure:16321: $? = 0
  838. +configure:16327: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c conftest.c -o conftest2.o >&5
  839. +configure:16331: $? = 0
  840. +configure:16342: cc -c conftest.c >&5
  841. +configure:16346: $? = 0
  842. +configure:16354: cc -c conftest.c -o conftest2.o >&5
  843. +configure:16358: $? = 0
  844. +configure:16364: cc -c conftest.c -o conftest2.o >&5
  845. +configure:16368: $? = 0
  846. +configure:16386: result: yes
  847. +configure:16423: checking for i686-openadk-linux-ar
  848. +configure:16450: result: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-ar
  849. +configure:16515: checking for i686-openadk-linux-ld
  850. +configure:16542: result: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-ld
  851. +configure:16605: checking for ANSI C header files
  852. +configure:16709: result: yes
  853. +configure:16718: checking for GNU libc2
  854. +configure:16732: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c
  855. +configure:16732: $? = 0
  856. +configure:16740: result: yes
  857. +configure:16748: checking for BSD signal semantics
  858. +configure:16797: result: no
  859. +configure:16805: checking for gethostbyname
  860. +configure:16805: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
  861. +/tmp/ccoPHc9A.o: In function `main':
  862. +conftest.c:(.text+0x12): warning: gethostbyname is obsolescent, use getnameinfo() instead.
  863. +configure:16805: $? = 0
  864. +configure:16805: result: yes
  865. +configure:16853: checking for connect
  866. +configure:16853: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
  867. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  868. +configure:16853: $? = 0
  869. +configure:16853: result: yes
  870. +configure:16902: checking for getaddrinfo
  871. +configure:16902: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
  872. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  873. +configure:16902: $? = 0
  874. +configure:16902: result: yes
  875. +configure:16910: checking for getrpcbynumber
  876. +configure:16910: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
  877. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  878. +configure:16910: $? = 0
  879. +configure:16910: result: yes
  880. +configure:16918: checking for getservbyname
  881. +configure:16918: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
  882. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  883. +configure:16918: $? = 0
  884. +configure:16918: result: yes
  885. +configure:16926: checking for crypt in -lcrypt
  886. +configure:16951: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -lcrypt -ltirpc -lrpcsecgss >&5
  887. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  888. +configure:16951: $? = 0
  889. +configure:16960: result: yes
  890. +configure:16970: checking for event_dispatch in -levent
  891. +configure:16995: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -levent -ltirpc -lrpcsecgss >&5
  892. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  893. +configure:16995: $? = 0
  894. +configure:17004: result: yes
  895. +configure:17015: checking event.h usability
  896. +configure:17015: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  897. +configure:17015: $? = 0
  898. +configure:17015: result: yes
  899. +configure:17015: checking event.h presence
  900. +configure:17015: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c
  901. +configure:17015: $? = 0
  902. +configure:17015: result: yes
  903. +configure:17015: checking for event.h
  904. +configure:17015: result: yes
  905. +configure:17032: checking for nfs4_init_name_mapping in -lnfsidmap
  906. +configure:17057: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -lnfsidmap -ltirpc -lrpcsecgss >&5
  907. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libnfsidmap.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  908. +configure:17057: $? = 0
  909. +configure:17066: result: yes
  910. +configure:17077: checking nfsidmap.h usability
  911. +configure:17077: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  912. +configure:17077: $? = 0
  913. +configure:17077: result: yes
  914. +configure:17077: checking nfsidmap.h presence
  915. +configure:17077: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c
  916. +configure:17077: $? = 0
  917. +configure:17077: result: yes
  918. +configure:17077: checking for nfsidmap.h
  919. +configure:17077: result: yes
  920. +configure:17090: checking for nfs4_set_debug in -lnfsidmap
  921. +configure:17115: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -lnfsidmap -ltirpc -lrpcsecgss >&5
  922. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libnfsidmap.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  923. +configure:17115: $? = 0
  924. +configure:17124: result: yes
  925. +configure:17142: checking for i686-openadk-linux-pkg-config
  926. +configure:17175: result: no
  927. +configure:17185: checking for pkg-config
  928. +configure:17203: found /usr/bin/pkg-config
  929. +configure:17215: result: /usr/bin/pkg-config
  930. +configure:17227: WARNING: using cross tools not prefixed with host triplet
  931. +configure:17240: checking pkg-config is at least version 0.9.0
  932. +configure:17243: result: yes
  933. +configure:17256: checking for GSSGLUE
  934. +configure:17263: $PKG_CONFIG --exists --print-errors "libgssglue >= 0.1"
  935. +configure:17266: $? = 0
  936. +configure:17279: $PKG_CONFIG --exists --print-errors "libgssglue >= 0.1"
  937. +configure:17282: $? = 0
  938. +configure:17336: result: yes
  939. +configure:17590: checking for getnameinfo
  940. +configure:17590: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
  941. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  942. +configure:17590: $? = 0
  943. +configure:17590: result: yes
  944. +configure:17600: checking for nfs4_init_name_mapping in -lnfsidmap
  945. +configure:17634: result: yes
  946. +configure:17645: checking for nfsidmap.h
  947. +configure:17645: result: yes
  948. +configure:17658: checking for nfs4_set_debug in -lnfsidmap
  949. +configure:17692: result: yes
  950. +configure:17705: checking spkm3.h usability
  951. +configure:17705: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  952. +conftest.c:69:19: fatal error: spkm3.h: No such file or directory
  953. +compilation terminated.
  954. +configure:17705: $? = 1
  955. +configure: failed program was:
  956. +| /* confdefs.h */
  957. +| #define PACKAGE_NAME "linux nfs-utils"
  958. +| #define PACKAGE_TARNAME "nfs-utils"
  959. +| #define PACKAGE_VERSION "1.2.3"
  960. +| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
  961. +| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
  962. +| #define PACKAGE_URL ""
  963. +| #define PACKAGE "nfs-utils"
  964. +| #define VERSION "1.2.3"
  965. +| #define START_STATD "/usr/sbin/start-statd"
  966. +| #define NFS3_SUPPORTED 1
  967. +| #define NFS4_SUPPORTED 1
  968. +| #define GSS_SUPPORTED 1
  969. +| #define STDC_HEADERS 1
  970. +| #define HAVE_SYS_TYPES_H 1
  971. +| #define HAVE_SYS_STAT_H 1
  972. +| #define HAVE_STDLIB_H 1
  973. +| #define HAVE_STRING_H 1
  974. +| #define HAVE_MEMORY_H 1
  975. +| #define HAVE_STRINGS_H 1
  976. +| #define HAVE_INTTYPES_H 1
  977. +| #define HAVE_STDINT_H 1
  978. +| #define HAVE_UNISTD_H 1
  979. +| #define HAVE_LIBTIRPC 1
  980. +| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
  981. +| #define _FILE_OFFSET_BITS 64
  982. +| #define HAVE_DLFCN_H 1
  983. +| #define LT_OBJDIR ".libs/"
  984. +| #define STDC_HEADERS 1
  985. +| #define HAVE_EVENT_H 1
  986. +| #define HAVE_NFSIDMAP_H 1
  987. +| #define HAVE_NFS4_SET_DEBUG 1
  988. +| #define HAVE_NFSIDMAP_H 1
  989. +| #define HAVE_NFS4_SET_DEBUG 1
  990. +| /* end confdefs.h. */
  991. +| #include <stdio.h>
  992. +| #ifdef HAVE_SYS_TYPES_H
  993. +| # include <sys/types.h>
  994. +| #endif
  995. +| #ifdef HAVE_SYS_STAT_H
  996. +| # include <sys/stat.h>
  997. +| #endif
  998. +| #ifdef STDC_HEADERS
  999. +| # include <stdlib.h>
  1000. +| # include <stddef.h>
  1001. +| #else
  1002. +| # ifdef HAVE_STDLIB_H
  1003. +| # include <stdlib.h>
  1004. +| # endif
  1005. +| #endif
  1006. +| #ifdef HAVE_STRING_H
  1007. +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  1008. +| # include <memory.h>
  1009. +| # endif
  1010. +| # include <string.h>
  1011. +| #endif
  1012. +| #ifdef HAVE_STRINGS_H
  1013. +| # include <strings.h>
  1014. +| #endif
  1015. +| #ifdef HAVE_INTTYPES_H
  1016. +| # include <inttypes.h>
  1017. +| #endif
  1018. +| #ifdef HAVE_STDINT_H
  1019. +| # include <stdint.h>
  1020. +| #endif
  1021. +| #ifdef HAVE_UNISTD_H
  1022. +| # include <unistd.h>
  1023. +| #endif
  1024. +| #include <spkm3.h>
  1025. +configure:17705: result: no
  1026. +configure:17705: checking spkm3.h presence
  1027. +configure:17705: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c
  1028. +conftest.c:36:19: fatal error: spkm3.h: No such file or directory
  1029. +compilation terminated.
  1030. +configure:17705: $? = 1
  1031. +configure: failed program was:
  1032. +| /* confdefs.h */
  1033. +| #define PACKAGE_NAME "linux nfs-utils"
  1034. +| #define PACKAGE_TARNAME "nfs-utils"
  1035. +| #define PACKAGE_VERSION "1.2.3"
  1036. +| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
  1037. +| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
  1038. +| #define PACKAGE_URL ""
  1039. +| #define PACKAGE "nfs-utils"
  1040. +| #define VERSION "1.2.3"
  1041. +| #define START_STATD "/usr/sbin/start-statd"
  1042. +| #define NFS3_SUPPORTED 1
  1043. +| #define NFS4_SUPPORTED 1
  1044. +| #define GSS_SUPPORTED 1
  1045. +| #define STDC_HEADERS 1
  1046. +| #define HAVE_SYS_TYPES_H 1
  1047. +| #define HAVE_SYS_STAT_H 1
  1048. +| #define HAVE_STDLIB_H 1
  1049. +| #define HAVE_STRING_H 1
  1050. +| #define HAVE_MEMORY_H 1
  1051. +| #define HAVE_STRINGS_H 1
  1052. +| #define HAVE_INTTYPES_H 1
  1053. +| #define HAVE_STDINT_H 1
  1054. +| #define HAVE_UNISTD_H 1
  1055. +| #define HAVE_LIBTIRPC 1
  1056. +| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
  1057. +| #define _FILE_OFFSET_BITS 64
  1058. +| #define HAVE_DLFCN_H 1
  1059. +| #define LT_OBJDIR ".libs/"
  1060. +| #define STDC_HEADERS 1
  1061. +| #define HAVE_EVENT_H 1
  1062. +| #define HAVE_NFSIDMAP_H 1
  1063. +| #define HAVE_NFS4_SET_DEBUG 1
  1064. +| #define HAVE_NFSIDMAP_H 1
  1065. +| #define HAVE_NFS4_SET_DEBUG 1
  1066. +| /* end confdefs.h. */
  1067. +| #include <spkm3.h>
  1068. +configure:17705: result: no
  1069. +configure:17705: checking for spkm3.h
  1070. +configure:17705: result: no
  1071. +configure:17712: WARNING: Could not locate SPKM3 header; will not have SPKM3 support
  1072. +configure:17720: checking for Kerberos v5
  1073. +configure:17791: result: /home/wbx/adk/openadk/target_i686_uclibc/usr/
  1074. +configure:17805: checking for gss_krb5_export_lucid_sec_context in -lgssapi_krb5
  1075. +configure:17830: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -lgssapi_krb5 -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib $(PROG_RPATH_FLAGS) -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lresolv -ldl -ltirpc -lrpcsecgss >&5
  1076. +i686-openadk-linux-uclibc-gcc: $(PROG_RPATH_FLAGS): No such file or directory
  1077. +configure:17830: $? = 1
  1078. +configure: failed program was:
  1079. +| /* confdefs.h */
  1080. +| #define PACKAGE_NAME "linux nfs-utils"
  1081. +| #define PACKAGE_TARNAME "nfs-utils"
  1082. +| #define PACKAGE_VERSION "1.2.3"
  1083. +| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
  1084. +| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
  1085. +| #define PACKAGE_URL ""
  1086. +| #define PACKAGE "nfs-utils"
  1087. +| #define VERSION "1.2.3"
  1088. +| #define START_STATD "/usr/sbin/start-statd"
  1089. +| #define NFS3_SUPPORTED 1
  1090. +| #define NFS4_SUPPORTED 1
  1091. +| #define GSS_SUPPORTED 1
  1092. +| #define STDC_HEADERS 1
  1093. +| #define HAVE_SYS_TYPES_H 1
  1094. +| #define HAVE_SYS_STAT_H 1
  1095. +| #define HAVE_STDLIB_H 1
  1096. +| #define HAVE_STRING_H 1
  1097. +| #define HAVE_MEMORY_H 1
  1098. +| #define HAVE_STRINGS_H 1
  1099. +| #define HAVE_INTTYPES_H 1
  1100. +| #define HAVE_STDINT_H 1
  1101. +| #define HAVE_UNISTD_H 1
  1102. +| #define HAVE_LIBTIRPC 1
  1103. +| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
  1104. +| #define _FILE_OFFSET_BITS 64
  1105. +| #define HAVE_DLFCN_H 1
  1106. +| #define LT_OBJDIR ".libs/"
  1107. +| #define STDC_HEADERS 1
  1108. +| #define HAVE_EVENT_H 1
  1109. +| #define HAVE_NFSIDMAP_H 1
  1110. +| #define HAVE_NFS4_SET_DEBUG 1
  1111. +| #define HAVE_NFSIDMAP_H 1
  1112. +| #define HAVE_NFS4_SET_DEBUG 1
  1113. +| #define KRB5_VERSION 181
  1114. +| #define HAVE_KRB5 1
  1115. +| /* end confdefs.h. */
  1116. +|
  1117. +| /* Override any GCC internal prototype to avoid an error.
  1118. +| Use char because int might match the return type of a GCC
  1119. +| builtin and then its argument prototype would still apply. */
  1120. +| #ifdef __cplusplus
  1121. +| extern "C"
  1122. +| #endif
  1123. +| char gss_krb5_export_lucid_sec_context ();
  1124. +| int
  1125. +| main ()
  1126. +| {
  1127. +| return gss_krb5_export_lucid_sec_context ();
  1128. +| ;
  1129. +| return 0;
  1130. +| }
  1131. +configure:17840: result: no
  1132. +configure:17850: checking for gss_krb5_set_allowable_enctypes in -lgssapi_krb5
  1133. +configure:17875: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -lgssapi_krb5 -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib $(PROG_RPATH_FLAGS) -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lresolv -ldl -ltirpc -lrpcsecgss >&5
  1134. +i686-openadk-linux-uclibc-gcc: $(PROG_RPATH_FLAGS): No such file or directory
  1135. +configure:17875: $? = 1
  1136. +configure: failed program was:
  1137. +| /* confdefs.h */
  1138. +| #define PACKAGE_NAME "linux nfs-utils"
  1139. +| #define PACKAGE_TARNAME "nfs-utils"
  1140. +| #define PACKAGE_VERSION "1.2.3"
  1141. +| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
  1142. +| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
  1143. +| #define PACKAGE_URL ""
  1144. +| #define PACKAGE "nfs-utils"
  1145. +| #define VERSION "1.2.3"
  1146. +| #define START_STATD "/usr/sbin/start-statd"
  1147. +| #define NFS3_SUPPORTED 1
  1148. +| #define NFS4_SUPPORTED 1
  1149. +| #define GSS_SUPPORTED 1
  1150. +| #define STDC_HEADERS 1
  1151. +| #define HAVE_SYS_TYPES_H 1
  1152. +| #define HAVE_SYS_STAT_H 1
  1153. +| #define HAVE_STDLIB_H 1
  1154. +| #define HAVE_STRING_H 1
  1155. +| #define HAVE_MEMORY_H 1
  1156. +| #define HAVE_STRINGS_H 1
  1157. +| #define HAVE_INTTYPES_H 1
  1158. +| #define HAVE_STDINT_H 1
  1159. +| #define HAVE_UNISTD_H 1
  1160. +| #define HAVE_LIBTIRPC 1
  1161. +| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
  1162. +| #define _FILE_OFFSET_BITS 64
  1163. +| #define HAVE_DLFCN_H 1
  1164. +| #define LT_OBJDIR ".libs/"
  1165. +| #define STDC_HEADERS 1
  1166. +| #define HAVE_EVENT_H 1
  1167. +| #define HAVE_NFSIDMAP_H 1
  1168. +| #define HAVE_NFS4_SET_DEBUG 1
  1169. +| #define HAVE_NFSIDMAP_H 1
  1170. +| #define HAVE_NFS4_SET_DEBUG 1
  1171. +| #define KRB5_VERSION 181
  1172. +| #define HAVE_KRB5 1
  1173. +| /* end confdefs.h. */
  1174. +|
  1175. +| /* Override any GCC internal prototype to avoid an error.
  1176. +| Use char because int might match the return type of a GCC
  1177. +| builtin and then its argument prototype would still apply. */
  1178. +| #ifdef __cplusplus
  1179. +| extern "C"
  1180. +| #endif
  1181. +| char gss_krb5_set_allowable_enctypes ();
  1182. +| int
  1183. +| main ()
  1184. +| {
  1185. +| return gss_krb5_set_allowable_enctypes ();
  1186. +| ;
  1187. +| return 0;
  1188. +| }
  1189. +configure:17885: result: no
  1190. +configure:17895: checking for gss_krb5_ccache_name in -lgssapi_krb5
  1191. +configure:17920: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -lgssapi_krb5 -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib $(PROG_RPATH_FLAGS) -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lresolv -ldl -ltirpc -lrpcsecgss >&5
  1192. +i686-openadk-linux-uclibc-gcc: $(PROG_RPATH_FLAGS): No such file or directory
  1193. +configure:17920: $? = 1
  1194. +configure: failed program was:
  1195. +| /* confdefs.h */
  1196. +| #define PACKAGE_NAME "linux nfs-utils"
  1197. +| #define PACKAGE_TARNAME "nfs-utils"
  1198. +| #define PACKAGE_VERSION "1.2.3"
  1199. +| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
  1200. +| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
  1201. +| #define PACKAGE_URL ""
  1202. +| #define PACKAGE "nfs-utils"
  1203. +| #define VERSION "1.2.3"
  1204. +| #define START_STATD "/usr/sbin/start-statd"
  1205. +| #define NFS3_SUPPORTED 1
  1206. +| #define NFS4_SUPPORTED 1
  1207. +| #define GSS_SUPPORTED 1
  1208. +| #define STDC_HEADERS 1
  1209. +| #define HAVE_SYS_TYPES_H 1
  1210. +| #define HAVE_SYS_STAT_H 1
  1211. +| #define HAVE_STDLIB_H 1
  1212. +| #define HAVE_STRING_H 1
  1213. +| #define HAVE_MEMORY_H 1
  1214. +| #define HAVE_STRINGS_H 1
  1215. +| #define HAVE_INTTYPES_H 1
  1216. +| #define HAVE_STDINT_H 1
  1217. +| #define HAVE_UNISTD_H 1
  1218. +| #define HAVE_LIBTIRPC 1
  1219. +| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
  1220. +| #define _FILE_OFFSET_BITS 64
  1221. +| #define HAVE_DLFCN_H 1
  1222. +| #define LT_OBJDIR ".libs/"
  1223. +| #define STDC_HEADERS 1
  1224. +| #define HAVE_EVENT_H 1
  1225. +| #define HAVE_NFSIDMAP_H 1
  1226. +| #define HAVE_NFS4_SET_DEBUG 1
  1227. +| #define HAVE_NFSIDMAP_H 1
  1228. +| #define HAVE_NFS4_SET_DEBUG 1
  1229. +| #define KRB5_VERSION 181
  1230. +| #define HAVE_KRB5 1
  1231. +| /* end confdefs.h. */
  1232. +|
  1233. +| /* Override any GCC internal prototype to avoid an error.
  1234. +| Use char because int might match the return type of a GCC
  1235. +| builtin and then its argument prototype would still apply. */
  1236. +| #ifdef __cplusplus
  1237. +| extern "C"
  1238. +| #endif
  1239. +| char gss_krb5_ccache_name ();
  1240. +| int
  1241. +| main ()
  1242. +| {
  1243. +| return gss_krb5_ccache_name ();
  1244. +| ;
  1245. +| return 0;
  1246. +| }
  1247. +configure:17930: result: no
  1248. +configure:17941: checking for krb5_get_error_message in -lgssapi_krb5
  1249. +configure:17966: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -lgssapi_krb5 -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib $(PROG_RPATH_FLAGS) -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lresolv -ldl -ltirpc -lrpcsecgss >&5
  1250. +i686-openadk-linux-uclibc-gcc: $(PROG_RPATH_FLAGS): No such file or directory
  1251. +configure:17966: $? = 1
  1252. +configure: failed program was:
  1253. +| /* confdefs.h */
  1254. +| #define PACKAGE_NAME "linux nfs-utils"
  1255. +| #define PACKAGE_TARNAME "nfs-utils"
  1256. +| #define PACKAGE_VERSION "1.2.3"
  1257. +| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
  1258. +| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
  1259. +| #define PACKAGE_URL ""
  1260. +| #define PACKAGE "nfs-utils"
  1261. +| #define VERSION "1.2.3"
  1262. +| #define START_STATD "/usr/sbin/start-statd"
  1263. +| #define NFS3_SUPPORTED 1
  1264. +| #define NFS4_SUPPORTED 1
  1265. +| #define GSS_SUPPORTED 1
  1266. +| #define STDC_HEADERS 1
  1267. +| #define HAVE_SYS_TYPES_H 1
  1268. +| #define HAVE_SYS_STAT_H 1
  1269. +| #define HAVE_STDLIB_H 1
  1270. +| #define HAVE_STRING_H 1
  1271. +| #define HAVE_MEMORY_H 1
  1272. +| #define HAVE_STRINGS_H 1
  1273. +| #define HAVE_INTTYPES_H 1
  1274. +| #define HAVE_STDINT_H 1
  1275. +| #define HAVE_UNISTD_H 1
  1276. +| #define HAVE_LIBTIRPC 1
  1277. +| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
  1278. +| #define _FILE_OFFSET_BITS 64
  1279. +| #define HAVE_DLFCN_H 1
  1280. +| #define LT_OBJDIR ".libs/"
  1281. +| #define STDC_HEADERS 1
  1282. +| #define HAVE_EVENT_H 1
  1283. +| #define HAVE_NFSIDMAP_H 1
  1284. +| #define HAVE_NFS4_SET_DEBUG 1
  1285. +| #define HAVE_NFSIDMAP_H 1
  1286. +| #define HAVE_NFS4_SET_DEBUG 1
  1287. +| #define KRB5_VERSION 181
  1288. +| #define HAVE_KRB5 1
  1289. +| /* end confdefs.h. */
  1290. +|
  1291. +| /* Override any GCC internal prototype to avoid an error.
  1292. +| Use char because int might match the return type of a GCC
  1293. +| builtin and then its argument prototype would still apply. */
  1294. +| #ifdef __cplusplus
  1295. +| extern "C"
  1296. +| #endif
  1297. +| char krb5_get_error_message ();
  1298. +| int
  1299. +| main ()
  1300. +| {
  1301. +| return krb5_get_error_message ();
  1302. +| ;
  1303. +| return 0;
  1304. +| }
  1305. +configure:17976: result: no
  1306. +configure:17987: checking for krb5_get_init_creds_opt_set_addressless in -lgssapi_krb5
  1307. +configure:18012: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -lgssapi_krb5 -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib $(PROG_RPATH_FLAGS) -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lresolv -ldl -ltirpc -lrpcsecgss >&5
  1308. +i686-openadk-linux-uclibc-gcc: $(PROG_RPATH_FLAGS): No such file or directory
  1309. +configure:18012: $? = 1
  1310. +configure: failed program was:
  1311. +| /* confdefs.h */
  1312. +| #define PACKAGE_NAME "linux nfs-utils"
  1313. +| #define PACKAGE_TARNAME "nfs-utils"
  1314. +| #define PACKAGE_VERSION "1.2.3"
  1315. +| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
  1316. +| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
  1317. +| #define PACKAGE_URL ""
  1318. +| #define PACKAGE "nfs-utils"
  1319. +| #define VERSION "1.2.3"
  1320. +| #define START_STATD "/usr/sbin/start-statd"
  1321. +| #define NFS3_SUPPORTED 1
  1322. +| #define NFS4_SUPPORTED 1
  1323. +| #define GSS_SUPPORTED 1
  1324. +| #define STDC_HEADERS 1
  1325. +| #define HAVE_SYS_TYPES_H 1
  1326. +| #define HAVE_SYS_STAT_H 1
  1327. +| #define HAVE_STDLIB_H 1
  1328. +| #define HAVE_STRING_H 1
  1329. +| #define HAVE_MEMORY_H 1
  1330. +| #define HAVE_STRINGS_H 1
  1331. +| #define HAVE_INTTYPES_H 1
  1332. +| #define HAVE_STDINT_H 1
  1333. +| #define HAVE_UNISTD_H 1
  1334. +| #define HAVE_LIBTIRPC 1
  1335. +| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
  1336. +| #define _FILE_OFFSET_BITS 64
  1337. +| #define HAVE_DLFCN_H 1
  1338. +| #define LT_OBJDIR ".libs/"
  1339. +| #define STDC_HEADERS 1
  1340. +| #define HAVE_EVENT_H 1
  1341. +| #define HAVE_NFSIDMAP_H 1
  1342. +| #define HAVE_NFS4_SET_DEBUG 1
  1343. +| #define HAVE_NFSIDMAP_H 1
  1344. +| #define HAVE_NFS4_SET_DEBUG 1
  1345. +| #define KRB5_VERSION 181
  1346. +| #define HAVE_KRB5 1
  1347. +| /* end confdefs.h. */
  1348. +|
  1349. +| /* Override any GCC internal prototype to avoid an error.
  1350. +| Use char because int might match the return type of a GCC
  1351. +| builtin and then its argument prototype would still apply. */
  1352. +| #ifdef __cplusplus
  1353. +| extern "C"
  1354. +| #endif
  1355. +| char krb5_get_init_creds_opt_set_addressless ();
  1356. +| int
  1357. +| main ()
  1358. +| {
  1359. +| return krb5_get_init_creds_opt_set_addressless ();
  1360. +| ;
  1361. +| return 0;
  1362. +| }
  1363. +configure:18022: result: no
  1364. +configure:18143: checking whether AI_ADDRCONFIG is declared
  1365. +configure:18143: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  1366. +configure:18143: $? = 0
  1367. +configure:18143: result: yes
  1368. +configure:18195: checking arpa/inet.h usability
  1369. +configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  1370. +configure:18195: $? = 0
  1371. +configure:18195: result: yes
  1372. +configure:18195: checking arpa/inet.h presence
  1373. +configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c
  1374. +configure:18195: $? = 0
  1375. +configure:18195: result: yes
  1376. +configure:18195: checking for arpa/inet.h
  1377. +configure:18195: result: yes
  1378. +configure:18195: checking fcntl.h usability
  1379. +configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  1380. +configure:18195: $? = 0
  1381. +configure:18195: result: yes
  1382. +configure:18195: checking fcntl.h presence
  1383. +configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c
  1384. +configure:18195: $? = 0
  1385. +configure:18195: result: yes
  1386. +configure:18195: checking for fcntl.h
  1387. +configure:18195: result: yes
  1388. +configure:18195: checking libintl.h usability
  1389. +configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  1390. +configure:18195: $? = 0
  1391. +configure:18195: result: yes
  1392. +configure:18195: checking libintl.h presence
  1393. +configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c
  1394. +configure:18195: $? = 0
  1395. +configure:18195: result: yes
  1396. +configure:18195: checking for libintl.h
  1397. +configure:18195: result: yes
  1398. +configure:18195: checking limits.h usability
  1399. +configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  1400. +configure:18195: $? = 0
  1401. +configure:18195: result: yes
  1402. +configure:18195: checking limits.h presence
  1403. +configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c
  1404. +configure:18195: $? = 0
  1405. +configure:18195: result: yes
  1406. +configure:18195: checking for limits.h
  1407. +configure:18195: result: yes
  1408. +configure:18195: checking malloc.h usability
  1409. +configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  1410. +configure:18195: $? = 0
  1411. +configure:18195: result: yes
  1412. +configure:18195: checking malloc.h presence
  1413. +configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c
  1414. +configure:18195: $? = 0
  1415. +configure:18195: result: yes
  1416. +configure:18195: checking for malloc.h
  1417. +configure:18195: result: yes
  1418. +configure:18195: checking for memory.h
  1419. +configure:18195: result: yes
  1420. +configure:18195: checking netdb.h usability
  1421. +configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  1422. +configure:18195: $? = 0
  1423. +configure:18195: result: yes
  1424. +configure:18195: checking netdb.h presence
  1425. +configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c
  1426. +configure:18195: $? = 0
  1427. +configure:18195: result: yes
  1428. +configure:18195: checking for netdb.h
  1429. +configure:18195: result: yes
  1430. +configure:18195: checking netinet/in.h usability
  1431. +configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  1432. +configure:18195: $? = 0
  1433. +configure:18195: result: yes
  1434. +configure:18195: checking netinet/in.h presence
  1435. +configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c
  1436. +configure:18195: $? = 0
  1437. +configure:18195: result: yes
  1438. +configure:18195: checking for netinet/in.h
  1439. +configure:18195: result: yes
  1440. +configure:18195: checking paths.h usability
  1441. +configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  1442. +configure:18195: $? = 0
  1443. +configure:18195: result: yes
  1444. +configure:18195: checking paths.h presence
  1445. +configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c
  1446. +configure:18195: $? = 0
  1447. +configure:18195: result: yes
  1448. +configure:18195: checking for paths.h
  1449. +configure:18195: result: yes
  1450. +configure:18195: checking for stdlib.h
  1451. +configure:18195: result: yes
  1452. +configure:18195: checking for string.h
  1453. +configure:18195: result: yes
  1454. +configure:18195: checking sys/file.h usability
  1455. +configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  1456. +configure:18195: $? = 0
  1457. +configure:18195: result: yes
  1458. +configure:18195: checking sys/file.h presence
  1459. +configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c
  1460. +configure:18195: $? = 0
  1461. +configure:18195: result: yes
  1462. +configure:18195: checking for sys/file.h
  1463. +configure:18195: result: yes
  1464. +configure:18195: checking sys/ioctl.h usability
  1465. +configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  1466. +configure:18195: $? = 0
  1467. +configure:18195: result: yes
  1468. +configure:18195: checking sys/ioctl.h presence
  1469. +configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c
  1470. +configure:18195: $? = 0
  1471. +configure:18195: result: yes
  1472. +configure:18195: checking for sys/ioctl.h
  1473. +configure:18195: result: yes
  1474. +configure:18195: checking sys/mount.h usability
  1475. +configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  1476. +configure:18195: $? = 0
  1477. +configure:18195: result: yes
  1478. +configure:18195: checking sys/mount.h presence
  1479. +configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c
  1480. +configure:18195: $? = 0
  1481. +configure:18195: result: yes
  1482. +configure:18195: checking for sys/mount.h
  1483. +configure:18195: result: yes
  1484. +configure:18195: checking sys/param.h usability
  1485. +configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  1486. +configure:18195: $? = 0
  1487. +configure:18195: result: yes
  1488. +configure:18195: checking sys/param.h presence
  1489. +configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c
  1490. +configure:18195: $? = 0
  1491. +configure:18195: result: yes
  1492. +configure:18195: checking for sys/param.h
  1493. +configure:18195: result: yes
  1494. +configure:18195: checking sys/socket.h usability
  1495. +configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  1496. +configure:18195: $? = 0
  1497. +configure:18195: result: yes
  1498. +configure:18195: checking sys/socket.h presence
  1499. +configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c
  1500. +configure:18195: $? = 0
  1501. +configure:18195: result: yes
  1502. +configure:18195: checking for sys/socket.h
  1503. +configure:18195: result: yes
  1504. +configure:18195: checking sys/time.h usability
  1505. +configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  1506. +configure:18195: $? = 0
  1507. +configure:18195: result: yes
  1508. +configure:18195: checking sys/time.h presence
  1509. +configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c
  1510. +configure:18195: $? = 0
  1511. +configure:18195: result: yes
  1512. +configure:18195: checking for sys/time.h
  1513. +configure:18195: result: yes
  1514. +configure:18195: checking sys/vfs.h usability
  1515. +configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  1516. +configure:18195: $? = 0
  1517. +configure:18195: result: yes
  1518. +configure:18195: checking sys/vfs.h presence
  1519. +configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c
  1520. +configure:18195: $? = 0
  1521. +configure:18195: result: yes
  1522. +configure:18195: checking for sys/vfs.h
  1523. +configure:18195: result: yes
  1524. +configure:18195: checking syslog.h usability
  1525. +configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  1526. +configure:18195: $? = 0
  1527. +configure:18195: result: yes
  1528. +configure:18195: checking syslog.h presence
  1529. +configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c
  1530. +configure:18195: $? = 0
  1531. +configure:18195: result: yes
  1532. +configure:18195: checking for syslog.h
  1533. +configure:18195: result: yes
  1534. +configure:18195: checking for unistd.h
  1535. +configure:18195: result: yes
  1536. +configure:18195: checking com_err.h usability
  1537. +configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  1538. +conftest.c:92:21: fatal error: com_err.h: No such file or directory
  1539. +compilation terminated.
  1540. +configure:18195: $? = 1
  1541. +configure: failed program was:
  1542. +| /* confdefs.h */
  1543. +| #define PACKAGE_NAME "linux nfs-utils"
  1544. +| #define PACKAGE_TARNAME "nfs-utils"
  1545. +| #define PACKAGE_VERSION "1.2.3"
  1546. +| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
  1547. +| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
  1548. +| #define PACKAGE_URL ""
  1549. +| #define PACKAGE "nfs-utils"
  1550. +| #define VERSION "1.2.3"
  1551. +| #define START_STATD "/usr/sbin/start-statd"
  1552. +| #define NFS3_SUPPORTED 1
  1553. +| #define NFS4_SUPPORTED 1
  1554. +| #define GSS_SUPPORTED 1
  1555. +| #define STDC_HEADERS 1
  1556. +| #define HAVE_SYS_TYPES_H 1
  1557. +| #define HAVE_SYS_STAT_H 1
  1558. +| #define HAVE_STDLIB_H 1
  1559. +| #define HAVE_STRING_H 1
  1560. +| #define HAVE_MEMORY_H 1
  1561. +| #define HAVE_STRINGS_H 1
  1562. +| #define HAVE_INTTYPES_H 1
  1563. +| #define HAVE_STDINT_H 1
  1564. +| #define HAVE_UNISTD_H 1
  1565. +| #define HAVE_LIBTIRPC 1
  1566. +| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
  1567. +| #define _FILE_OFFSET_BITS 64
  1568. +| #define HAVE_DLFCN_H 1
  1569. +| #define LT_OBJDIR ".libs/"
  1570. +| #define STDC_HEADERS 1
  1571. +| #define HAVE_EVENT_H 1
  1572. +| #define HAVE_NFSIDMAP_H 1
  1573. +| #define HAVE_NFS4_SET_DEBUG 1
  1574. +| #define HAVE_NFSIDMAP_H 1
  1575. +| #define HAVE_NFS4_SET_DEBUG 1
  1576. +| #define KRB5_VERSION 181
  1577. +| #define HAVE_KRB5 1
  1578. +| #define HAVE_DECL_AI_ADDRCONFIG 1
  1579. +| #define HAVE_ARPA_INET_H 1
  1580. +| #define HAVE_FCNTL_H 1
  1581. +| #define HAVE_LIBINTL_H 1
  1582. +| #define HAVE_LIMITS_H 1
  1583. +| #define HAVE_MALLOC_H 1
  1584. +| #define HAVE_MEMORY_H 1
  1585. +| #define HAVE_NETDB_H 1
  1586. +| #define HAVE_NETINET_IN_H 1
  1587. +| #define HAVE_PATHS_H 1
  1588. +| #define HAVE_STDLIB_H 1
  1589. +| #define HAVE_STRING_H 1
  1590. +| #define HAVE_SYS_FILE_H 1
  1591. +| #define HAVE_SYS_IOCTL_H 1
  1592. +| #define HAVE_SYS_MOUNT_H 1
  1593. +| #define HAVE_SYS_PARAM_H 1
  1594. +| #define HAVE_SYS_SOCKET_H 1
  1595. +| #define HAVE_SYS_TIME_H 1
  1596. +| #define HAVE_SYS_VFS_H 1
  1597. +| #define HAVE_SYSLOG_H 1
  1598. +| #define HAVE_UNISTD_H 1
  1599. +| /* end confdefs.h. */
  1600. +| #include <stdio.h>
  1601. +| #ifdef HAVE_SYS_TYPES_H
  1602. +| # include <sys/types.h>
  1603. +| #endif
  1604. +| #ifdef HAVE_SYS_STAT_H
  1605. +| # include <sys/stat.h>
  1606. +| #endif
  1607. +| #ifdef STDC_HEADERS
  1608. +| # include <stdlib.h>
  1609. +| # include <stddef.h>
  1610. +| #else
  1611. +| # ifdef HAVE_STDLIB_H
  1612. +| # include <stdlib.h>
  1613. +| # endif
  1614. +| #endif
  1615. +| #ifdef HAVE_STRING_H
  1616. +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  1617. +| # include <memory.h>
  1618. +| # endif
  1619. +| # include <string.h>
  1620. +| #endif
  1621. +| #ifdef HAVE_STRINGS_H
  1622. +| # include <strings.h>
  1623. +| #endif
  1624. +| #ifdef HAVE_INTTYPES_H
  1625. +| # include <inttypes.h>
  1626. +| #endif
  1627. +| #ifdef HAVE_STDINT_H
  1628. +| # include <stdint.h>
  1629. +| #endif
  1630. +| #ifdef HAVE_UNISTD_H
  1631. +| # include <unistd.h>
  1632. +| #endif
  1633. +| #include <com_err.h>
  1634. +configure:18195: result: no
  1635. +configure:18195: checking com_err.h presence
  1636. +configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c
  1637. +conftest.c:59:21: fatal error: com_err.h: No such file or directory
  1638. +compilation terminated.
  1639. +configure:18195: $? = 1
  1640. +configure: failed program was:
  1641. +| /* confdefs.h */
  1642. +| #define PACKAGE_NAME "linux nfs-utils"
  1643. +| #define PACKAGE_TARNAME "nfs-utils"
  1644. +| #define PACKAGE_VERSION "1.2.3"
  1645. +| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
  1646. +| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
  1647. +| #define PACKAGE_URL ""
  1648. +| #define PACKAGE "nfs-utils"
  1649. +| #define VERSION "1.2.3"
  1650. +| #define START_STATD "/usr/sbin/start-statd"
  1651. +| #define NFS3_SUPPORTED 1
  1652. +| #define NFS4_SUPPORTED 1
  1653. +| #define GSS_SUPPORTED 1
  1654. +| #define STDC_HEADERS 1
  1655. +| #define HAVE_SYS_TYPES_H 1
  1656. +| #define HAVE_SYS_STAT_H 1
  1657. +| #define HAVE_STDLIB_H 1
  1658. +| #define HAVE_STRING_H 1
  1659. +| #define HAVE_MEMORY_H 1
  1660. +| #define HAVE_STRINGS_H 1
  1661. +| #define HAVE_INTTYPES_H 1
  1662. +| #define HAVE_STDINT_H 1
  1663. +| #define HAVE_UNISTD_H 1
  1664. +| #define HAVE_LIBTIRPC 1
  1665. +| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
  1666. +| #define _FILE_OFFSET_BITS 64
  1667. +| #define HAVE_DLFCN_H 1
  1668. +| #define LT_OBJDIR ".libs/"
  1669. +| #define STDC_HEADERS 1
  1670. +| #define HAVE_EVENT_H 1
  1671. +| #define HAVE_NFSIDMAP_H 1
  1672. +| #define HAVE_NFS4_SET_DEBUG 1
  1673. +| #define HAVE_NFSIDMAP_H 1
  1674. +| #define HAVE_NFS4_SET_DEBUG 1
  1675. +| #define KRB5_VERSION 181
  1676. +| #define HAVE_KRB5 1
  1677. +| #define HAVE_DECL_AI_ADDRCONFIG 1
  1678. +| #define HAVE_ARPA_INET_H 1
  1679. +| #define HAVE_FCNTL_H 1
  1680. +| #define HAVE_LIBINTL_H 1
  1681. +| #define HAVE_LIMITS_H 1
  1682. +| #define HAVE_MALLOC_H 1
  1683. +| #define HAVE_MEMORY_H 1
  1684. +| #define HAVE_NETDB_H 1
  1685. +| #define HAVE_NETINET_IN_H 1
  1686. +| #define HAVE_PATHS_H 1
  1687. +| #define HAVE_STDLIB_H 1
  1688. +| #define HAVE_STRING_H 1
  1689. +| #define HAVE_SYS_FILE_H 1
  1690. +| #define HAVE_SYS_IOCTL_H 1
  1691. +| #define HAVE_SYS_MOUNT_H 1
  1692. +| #define HAVE_SYS_PARAM_H 1
  1693. +| #define HAVE_SYS_SOCKET_H 1
  1694. +| #define HAVE_SYS_TIME_H 1
  1695. +| #define HAVE_SYS_VFS_H 1
  1696. +| #define HAVE_SYSLOG_H 1
  1697. +| #define HAVE_UNISTD_H 1
  1698. +| /* end confdefs.h. */
  1699. +| #include <com_err.h>
  1700. +configure:18195: result: no
  1701. +configure:18195: checking for com_err.h
  1702. +configure:18195: result: no
  1703. +configure:18195: checking et/com_err.h usability
  1704. +configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  1705. +configure:18195: $? = 0
  1706. +configure:18195: result: yes
  1707. +configure:18195: checking et/com_err.h presence
  1708. +configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c
  1709. +configure:18195: $? = 0
  1710. +configure:18195: result: yes
  1711. +configure:18195: checking for et/com_err.h
  1712. +configure:18195: result: yes
  1713. +configure:18195: checking ifaddrs.h usability
  1714. +configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  1715. +configure:18195: $? = 0
  1716. +configure:18195: result: yes
  1717. +configure:18195: checking ifaddrs.h presence
  1718. +configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c
  1719. +configure:18195: $? = 0
  1720. +configure:18195: result: yes
  1721. +configure:18195: checking for ifaddrs.h
  1722. +configure:18195: result: yes
  1723. +configure:18207: checking for an ANSI C-conforming const
  1724. +configure:18272: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  1725. +configure:18272: $? = 0
  1726. +configure:18279: result: yes
  1727. +configure:18287: checking for uid_t in sys/types.h
  1728. +configure:18306: result: yes
  1729. +configure:18317: checking for inline
  1730. +configure:18333: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  1731. +configure:18333: $? = 0
  1732. +configure:18341: result: inline
  1733. +configure:18359: checking for off_t
  1734. +configure:18359: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  1735. +configure:18359: $? = 0
  1736. +configure:18359: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  1737. +conftest.c: In function 'main':
  1738. +conftest.c:97:20: error: expected expression before ')' token
  1739. +configure:18359: $? = 1
  1740. +configure: failed program was:
  1741. +| /* confdefs.h */
  1742. +| #define PACKAGE_NAME "linux nfs-utils"
  1743. +| #define PACKAGE_TARNAME "nfs-utils"
  1744. +| #define PACKAGE_VERSION "1.2.3"
  1745. +| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
  1746. +| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
  1747. +| #define PACKAGE_URL ""
  1748. +| #define PACKAGE "nfs-utils"
  1749. +| #define VERSION "1.2.3"
  1750. +| #define START_STATD "/usr/sbin/start-statd"
  1751. +| #define NFS3_SUPPORTED 1
  1752. +| #define NFS4_SUPPORTED 1
  1753. +| #define GSS_SUPPORTED 1
  1754. +| #define STDC_HEADERS 1
  1755. +| #define HAVE_SYS_TYPES_H 1
  1756. +| #define HAVE_SYS_STAT_H 1
  1757. +| #define HAVE_STDLIB_H 1
  1758. +| #define HAVE_STRING_H 1
  1759. +| #define HAVE_MEMORY_H 1
  1760. +| #define HAVE_STRINGS_H 1
  1761. +| #define HAVE_INTTYPES_H 1
  1762. +| #define HAVE_STDINT_H 1
  1763. +| #define HAVE_UNISTD_H 1
  1764. +| #define HAVE_LIBTIRPC 1
  1765. +| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
  1766. +| #define _FILE_OFFSET_BITS 64
  1767. +| #define HAVE_DLFCN_H 1
  1768. +| #define LT_OBJDIR ".libs/"
  1769. +| #define STDC_HEADERS 1
  1770. +| #define HAVE_EVENT_H 1
  1771. +| #define HAVE_NFSIDMAP_H 1
  1772. +| #define HAVE_NFS4_SET_DEBUG 1
  1773. +| #define HAVE_NFSIDMAP_H 1
  1774. +| #define HAVE_NFS4_SET_DEBUG 1
  1775. +| #define KRB5_VERSION 181
  1776. +| #define HAVE_KRB5 1
  1777. +| #define HAVE_DECL_AI_ADDRCONFIG 1
  1778. +| #define HAVE_ARPA_INET_H 1
  1779. +| #define HAVE_FCNTL_H 1
  1780. +| #define HAVE_LIBINTL_H 1
  1781. +| #define HAVE_LIMITS_H 1
  1782. +| #define HAVE_MALLOC_H 1
  1783. +| #define HAVE_MEMORY_H 1
  1784. +| #define HAVE_NETDB_H 1
  1785. +| #define HAVE_NETINET_IN_H 1
  1786. +| #define HAVE_PATHS_H 1
  1787. +| #define HAVE_STDLIB_H 1
  1788. +| #define HAVE_STRING_H 1
  1789. +| #define HAVE_SYS_FILE_H 1
  1790. +| #define HAVE_SYS_IOCTL_H 1
  1791. +| #define HAVE_SYS_MOUNT_H 1
  1792. +| #define HAVE_SYS_PARAM_H 1
  1793. +| #define HAVE_SYS_SOCKET_H 1
  1794. +| #define HAVE_SYS_TIME_H 1
  1795. +| #define HAVE_SYS_VFS_H 1
  1796. +| #define HAVE_SYSLOG_H 1
  1797. +| #define HAVE_UNISTD_H 1
  1798. +| #define HAVE_ET_COM_ERR_H 1
  1799. +| #define HAVE_IFADDRS_H 1
  1800. +| /* end confdefs.h. */
  1801. +| #include <stdio.h>
  1802. +| #ifdef HAVE_SYS_TYPES_H
  1803. +| # include <sys/types.h>
  1804. +| #endif
  1805. +| #ifdef HAVE_SYS_STAT_H
  1806. +| # include <sys/stat.h>
  1807. +| #endif
  1808. +| #ifdef STDC_HEADERS
  1809. +| # include <stdlib.h>
  1810. +| # include <stddef.h>
  1811. +| #else
  1812. +| # ifdef HAVE_STDLIB_H
  1813. +| # include <stdlib.h>
  1814. +| # endif
  1815. +| #endif
  1816. +| #ifdef HAVE_STRING_H
  1817. +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  1818. +| # include <memory.h>
  1819. +| # endif
  1820. +| # include <string.h>
  1821. +| #endif
  1822. +| #ifdef HAVE_STRINGS_H
  1823. +| # include <strings.h>
  1824. +| #endif
  1825. +| #ifdef HAVE_INTTYPES_H
  1826. +| # include <inttypes.h>
  1827. +| #endif
  1828. +| #ifdef HAVE_STDINT_H
  1829. +| # include <stdint.h>
  1830. +| #endif
  1831. +| #ifdef HAVE_UNISTD_H
  1832. +| # include <unistd.h>
  1833. +| #endif
  1834. +| int
  1835. +| main ()
  1836. +| {
  1837. +| if (sizeof ((off_t)))
  1838. +| return 0;
  1839. +| ;
  1840. +| return 0;
  1841. +| }
  1842. +configure:18359: result: yes
  1843. +configure:18370: checking for pid_t
  1844. +configure:18370: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  1845. +configure:18370: $? = 0
  1846. +configure:18370: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  1847. +conftest.c: In function 'main':
  1848. +conftest.c:97:20: error: expected expression before ')' token
  1849. +configure:18370: $? = 1
  1850. +configure: failed program was:
  1851. +| /* confdefs.h */
  1852. +| #define PACKAGE_NAME "linux nfs-utils"
  1853. +| #define PACKAGE_TARNAME "nfs-utils"
  1854. +| #define PACKAGE_VERSION "1.2.3"
  1855. +| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
  1856. +| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
  1857. +| #define PACKAGE_URL ""
  1858. +| #define PACKAGE "nfs-utils"
  1859. +| #define VERSION "1.2.3"
  1860. +| #define START_STATD "/usr/sbin/start-statd"
  1861. +| #define NFS3_SUPPORTED 1
  1862. +| #define NFS4_SUPPORTED 1
  1863. +| #define GSS_SUPPORTED 1
  1864. +| #define STDC_HEADERS 1
  1865. +| #define HAVE_SYS_TYPES_H 1
  1866. +| #define HAVE_SYS_STAT_H 1
  1867. +| #define HAVE_STDLIB_H 1
  1868. +| #define HAVE_STRING_H 1
  1869. +| #define HAVE_MEMORY_H 1
  1870. +| #define HAVE_STRINGS_H 1
  1871. +| #define HAVE_INTTYPES_H 1
  1872. +| #define HAVE_STDINT_H 1
  1873. +| #define HAVE_UNISTD_H 1
  1874. +| #define HAVE_LIBTIRPC 1
  1875. +| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
  1876. +| #define _FILE_OFFSET_BITS 64
  1877. +| #define HAVE_DLFCN_H 1
  1878. +| #define LT_OBJDIR ".libs/"
  1879. +| #define STDC_HEADERS 1
  1880. +| #define HAVE_EVENT_H 1
  1881. +| #define HAVE_NFSIDMAP_H 1
  1882. +| #define HAVE_NFS4_SET_DEBUG 1
  1883. +| #define HAVE_NFSIDMAP_H 1
  1884. +| #define HAVE_NFS4_SET_DEBUG 1
  1885. +| #define KRB5_VERSION 181
  1886. +| #define HAVE_KRB5 1
  1887. +| #define HAVE_DECL_AI_ADDRCONFIG 1
  1888. +| #define HAVE_ARPA_INET_H 1
  1889. +| #define HAVE_FCNTL_H 1
  1890. +| #define HAVE_LIBINTL_H 1
  1891. +| #define HAVE_LIMITS_H 1
  1892. +| #define HAVE_MALLOC_H 1
  1893. +| #define HAVE_MEMORY_H 1
  1894. +| #define HAVE_NETDB_H 1
  1895. +| #define HAVE_NETINET_IN_H 1
  1896. +| #define HAVE_PATHS_H 1
  1897. +| #define HAVE_STDLIB_H 1
  1898. +| #define HAVE_STRING_H 1
  1899. +| #define HAVE_SYS_FILE_H 1
  1900. +| #define HAVE_SYS_IOCTL_H 1
  1901. +| #define HAVE_SYS_MOUNT_H 1
  1902. +| #define HAVE_SYS_PARAM_H 1
  1903. +| #define HAVE_SYS_SOCKET_H 1
  1904. +| #define HAVE_SYS_TIME_H 1
  1905. +| #define HAVE_SYS_VFS_H 1
  1906. +| #define HAVE_SYSLOG_H 1
  1907. +| #define HAVE_UNISTD_H 1
  1908. +| #define HAVE_ET_COM_ERR_H 1
  1909. +| #define HAVE_IFADDRS_H 1
  1910. +| /* end confdefs.h. */
  1911. +| #include <stdio.h>
  1912. +| #ifdef HAVE_SYS_TYPES_H
  1913. +| # include <sys/types.h>
  1914. +| #endif
  1915. +| #ifdef HAVE_SYS_STAT_H
  1916. +| # include <sys/stat.h>
  1917. +| #endif
  1918. +| #ifdef STDC_HEADERS
  1919. +| # include <stdlib.h>
  1920. +| # include <stddef.h>
  1921. +| #else
  1922. +| # ifdef HAVE_STDLIB_H
  1923. +| # include <stdlib.h>
  1924. +| # endif
  1925. +| #endif
  1926. +| #ifdef HAVE_STRING_H
  1927. +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  1928. +| # include <memory.h>
  1929. +| # endif
  1930. +| # include <string.h>
  1931. +| #endif
  1932. +| #ifdef HAVE_STRINGS_H
  1933. +| # include <strings.h>
  1934. +| #endif
  1935. +| #ifdef HAVE_INTTYPES_H
  1936. +| # include <inttypes.h>
  1937. +| #endif
  1938. +| #ifdef HAVE_STDINT_H
  1939. +| # include <stdint.h>
  1940. +| #endif
  1941. +| #ifdef HAVE_UNISTD_H
  1942. +| # include <unistd.h>
  1943. +| #endif
  1944. +| int
  1945. +| main ()
  1946. +| {
  1947. +| if (sizeof ((pid_t)))
  1948. +| return 0;
  1949. +| ;
  1950. +| return 0;
  1951. +| }
  1952. +configure:18370: result: yes
  1953. +configure:18381: checking for size_t
  1954. +configure:18381: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  1955. +configure:18381: $? = 0
  1956. +configure:18381: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  1957. +conftest.c: In function 'main':
  1958. +conftest.c:97:21: error: expected expression before ')' token
  1959. +configure:18381: $? = 1
  1960. +configure: failed program was:
  1961. +| /* confdefs.h */
  1962. +| #define PACKAGE_NAME "linux nfs-utils"
  1963. +| #define PACKAGE_TARNAME "nfs-utils"
  1964. +| #define PACKAGE_VERSION "1.2.3"
  1965. +| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
  1966. +| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
  1967. +| #define PACKAGE_URL ""
  1968. +| #define PACKAGE "nfs-utils"
  1969. +| #define VERSION "1.2.3"
  1970. +| #define START_STATD "/usr/sbin/start-statd"
  1971. +| #define NFS3_SUPPORTED 1
  1972. +| #define NFS4_SUPPORTED 1
  1973. +| #define GSS_SUPPORTED 1
  1974. +| #define STDC_HEADERS 1
  1975. +| #define HAVE_SYS_TYPES_H 1
  1976. +| #define HAVE_SYS_STAT_H 1
  1977. +| #define HAVE_STDLIB_H 1
  1978. +| #define HAVE_STRING_H 1
  1979. +| #define HAVE_MEMORY_H 1
  1980. +| #define HAVE_STRINGS_H 1
  1981. +| #define HAVE_INTTYPES_H 1
  1982. +| #define HAVE_STDINT_H 1
  1983. +| #define HAVE_UNISTD_H 1
  1984. +| #define HAVE_LIBTIRPC 1
  1985. +| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
  1986. +| #define _FILE_OFFSET_BITS 64
  1987. +| #define HAVE_DLFCN_H 1
  1988. +| #define LT_OBJDIR ".libs/"
  1989. +| #define STDC_HEADERS 1
  1990. +| #define HAVE_EVENT_H 1
  1991. +| #define HAVE_NFSIDMAP_H 1
  1992. +| #define HAVE_NFS4_SET_DEBUG 1
  1993. +| #define HAVE_NFSIDMAP_H 1
  1994. +| #define HAVE_NFS4_SET_DEBUG 1
  1995. +| #define KRB5_VERSION 181
  1996. +| #define HAVE_KRB5 1
  1997. +| #define HAVE_DECL_AI_ADDRCONFIG 1
  1998. +| #define HAVE_ARPA_INET_H 1
  1999. +| #define HAVE_FCNTL_H 1
  2000. +| #define HAVE_LIBINTL_H 1
  2001. +| #define HAVE_LIMITS_H 1
  2002. +| #define HAVE_MALLOC_H 1
  2003. +| #define HAVE_MEMORY_H 1
  2004. +| #define HAVE_NETDB_H 1
  2005. +| #define HAVE_NETINET_IN_H 1
  2006. +| #define HAVE_PATHS_H 1
  2007. +| #define HAVE_STDLIB_H 1
  2008. +| #define HAVE_STRING_H 1
  2009. +| #define HAVE_SYS_FILE_H 1
  2010. +| #define HAVE_SYS_IOCTL_H 1
  2011. +| #define HAVE_SYS_MOUNT_H 1
  2012. +| #define HAVE_SYS_PARAM_H 1
  2013. +| #define HAVE_SYS_SOCKET_H 1
  2014. +| #define HAVE_SYS_TIME_H 1
  2015. +| #define HAVE_SYS_VFS_H 1
  2016. +| #define HAVE_SYSLOG_H 1
  2017. +| #define HAVE_UNISTD_H 1
  2018. +| #define HAVE_ET_COM_ERR_H 1
  2019. +| #define HAVE_IFADDRS_H 1
  2020. +| /* end confdefs.h. */
  2021. +| #include <stdio.h>
  2022. +| #ifdef HAVE_SYS_TYPES_H
  2023. +| # include <sys/types.h>
  2024. +| #endif
  2025. +| #ifdef HAVE_SYS_STAT_H
  2026. +| # include <sys/stat.h>
  2027. +| #endif
  2028. +| #ifdef STDC_HEADERS
  2029. +| # include <stdlib.h>
  2030. +| # include <stddef.h>
  2031. +| #else
  2032. +| # ifdef HAVE_STDLIB_H
  2033. +| # include <stdlib.h>
  2034. +| # endif
  2035. +| #endif
  2036. +| #ifdef HAVE_STRING_H
  2037. +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  2038. +| # include <memory.h>
  2039. +| # endif
  2040. +| # include <string.h>
  2041. +| #endif
  2042. +| #ifdef HAVE_STRINGS_H
  2043. +| # include <strings.h>
  2044. +| #endif
  2045. +| #ifdef HAVE_INTTYPES_H
  2046. +| # include <inttypes.h>
  2047. +| #endif
  2048. +| #ifdef HAVE_STDINT_H
  2049. +| # include <stdint.h>
  2050. +| #endif
  2051. +| #ifdef HAVE_UNISTD_H
  2052. +| # include <unistd.h>
  2053. +| #endif
  2054. +| int
  2055. +| main ()
  2056. +| {
  2057. +| if (sizeof ((size_t)))
  2058. +| return 0;
  2059. +| ;
  2060. +| return 0;
  2061. +| }
  2062. +configure:18381: result: yes
  2063. +configure:18392: checking whether time.h and sys/time.h may both be included
  2064. +configure:18412: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  2065. +configure:18412: $? = 0
  2066. +configure:18419: result: yes
  2067. +configure:18427: checking whether struct tm is in sys/time.h or time.h
  2068. +configure:18447: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  2069. +configure:18447: $? = 0
  2070. +configure:18454: result: time.h
  2071. +configure:18465: checking for working alloca.h
  2072. +configure:18482: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
  2073. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  2074. +configure:18482: $? = 0
  2075. +configure:18490: result: yes
  2076. +configure:18498: checking for alloca
  2077. +configure:18535: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
  2078. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  2079. +configure:18535: $? = 0
  2080. +configure:18543: result: yes
  2081. +configure:18656: checking for dirent.h that defines DIR
  2082. +configure:18675: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  2083. +configure:18675: $? = 0
  2084. +configure:18683: result: yes
  2085. +configure:18697: checking for library containing opendir
  2086. +configure:18728: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
  2087. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  2088. +configure:18728: $? = 0
  2089. +configure:18745: result: none required
  2090. +configure:18812: checking whether closedir returns void
  2091. +configure:18846: result: yes
  2092. +configure:18854: checking for error_at_line
  2093. +configure:18870: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
  2094. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  2095. +configure:18870: $? = 0
  2096. +configure:18878: result: yes
  2097. +configure:18891: checking vfork.h usability
  2098. +configure:18891: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  2099. +conftest.c:99:19: fatal error: vfork.h: No such file or directory
  2100. +compilation terminated.
  2101. +configure:18891: $? = 1
  2102. +configure: failed program was:
  2103. +| /* confdefs.h */
  2104. +| #define PACKAGE_NAME "linux nfs-utils"
  2105. +| #define PACKAGE_TARNAME "nfs-utils"
  2106. +| #define PACKAGE_VERSION "1.2.3"
  2107. +| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
  2108. +| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
  2109. +| #define PACKAGE_URL ""
  2110. +| #define PACKAGE "nfs-utils"
  2111. +| #define VERSION "1.2.3"
  2112. +| #define START_STATD "/usr/sbin/start-statd"
  2113. +| #define NFS3_SUPPORTED 1
  2114. +| #define NFS4_SUPPORTED 1
  2115. +| #define GSS_SUPPORTED 1
  2116. +| #define STDC_HEADERS 1
  2117. +| #define HAVE_SYS_TYPES_H 1
  2118. +| #define HAVE_SYS_STAT_H 1
  2119. +| #define HAVE_STDLIB_H 1
  2120. +| #define HAVE_STRING_H 1
  2121. +| #define HAVE_MEMORY_H 1
  2122. +| #define HAVE_STRINGS_H 1
  2123. +| #define HAVE_INTTYPES_H 1
  2124. +| #define HAVE_STDINT_H 1
  2125. +| #define HAVE_UNISTD_H 1
  2126. +| #define HAVE_LIBTIRPC 1
  2127. +| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
  2128. +| #define _FILE_OFFSET_BITS 64
  2129. +| #define HAVE_DLFCN_H 1
  2130. +| #define LT_OBJDIR ".libs/"
  2131. +| #define STDC_HEADERS 1
  2132. +| #define HAVE_EVENT_H 1
  2133. +| #define HAVE_NFSIDMAP_H 1
  2134. +| #define HAVE_NFS4_SET_DEBUG 1
  2135. +| #define HAVE_NFSIDMAP_H 1
  2136. +| #define HAVE_NFS4_SET_DEBUG 1
  2137. +| #define KRB5_VERSION 181
  2138. +| #define HAVE_KRB5 1
  2139. +| #define HAVE_DECL_AI_ADDRCONFIG 1
  2140. +| #define HAVE_ARPA_INET_H 1
  2141. +| #define HAVE_FCNTL_H 1
  2142. +| #define HAVE_LIBINTL_H 1
  2143. +| #define HAVE_LIMITS_H 1
  2144. +| #define HAVE_MALLOC_H 1
  2145. +| #define HAVE_MEMORY_H 1
  2146. +| #define HAVE_NETDB_H 1
  2147. +| #define HAVE_NETINET_IN_H 1
  2148. +| #define HAVE_PATHS_H 1
  2149. +| #define HAVE_STDLIB_H 1
  2150. +| #define HAVE_STRING_H 1
  2151. +| #define HAVE_SYS_FILE_H 1
  2152. +| #define HAVE_SYS_IOCTL_H 1
  2153. +| #define HAVE_SYS_MOUNT_H 1
  2154. +| #define HAVE_SYS_PARAM_H 1
  2155. +| #define HAVE_SYS_SOCKET_H 1
  2156. +| #define HAVE_SYS_TIME_H 1
  2157. +| #define HAVE_SYS_VFS_H 1
  2158. +| #define HAVE_SYSLOG_H 1
  2159. +| #define HAVE_UNISTD_H 1
  2160. +| #define HAVE_ET_COM_ERR_H 1
  2161. +| #define HAVE_IFADDRS_H 1
  2162. +| #define TIME_WITH_SYS_TIME 1
  2163. +| #define HAVE_ALLOCA_H 1
  2164. +| #define HAVE_ALLOCA 1
  2165. +| #define HAVE_DIRENT_H 1
  2166. +| #define CLOSEDIR_VOID 1
  2167. +| /* end confdefs.h. */
  2168. +| #include <stdio.h>
  2169. +| #ifdef HAVE_SYS_TYPES_H
  2170. +| # include <sys/types.h>
  2171. +| #endif
  2172. +| #ifdef HAVE_SYS_STAT_H
  2173. +| # include <sys/stat.h>
  2174. +| #endif
  2175. +| #ifdef STDC_HEADERS
  2176. +| # include <stdlib.h>
  2177. +| # include <stddef.h>
  2178. +| #else
  2179. +| # ifdef HAVE_STDLIB_H
  2180. +| # include <stdlib.h>
  2181. +| # endif
  2182. +| #endif
  2183. +| #ifdef HAVE_STRING_H
  2184. +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  2185. +| # include <memory.h>
  2186. +| # endif
  2187. +| # include <string.h>
  2188. +| #endif
  2189. +| #ifdef HAVE_STRINGS_H
  2190. +| # include <strings.h>
  2191. +| #endif
  2192. +| #ifdef HAVE_INTTYPES_H
  2193. +| # include <inttypes.h>
  2194. +| #endif
  2195. +| #ifdef HAVE_STDINT_H
  2196. +| # include <stdint.h>
  2197. +| #endif
  2198. +| #ifdef HAVE_UNISTD_H
  2199. +| # include <unistd.h>
  2200. +| #endif
  2201. +| #include <vfork.h>
  2202. +configure:18891: result: no
  2203. +configure:18891: checking vfork.h presence
  2204. +configure:18891: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c
  2205. +conftest.c:66:19: fatal error: vfork.h: No such file or directory
  2206. +compilation terminated.
  2207. +configure:18891: $? = 1
  2208. +configure: failed program was:
  2209. +| /* confdefs.h */
  2210. +| #define PACKAGE_NAME "linux nfs-utils"
  2211. +| #define PACKAGE_TARNAME "nfs-utils"
  2212. +| #define PACKAGE_VERSION "1.2.3"
  2213. +| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
  2214. +| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
  2215. +| #define PACKAGE_URL ""
  2216. +| #define PACKAGE "nfs-utils"
  2217. +| #define VERSION "1.2.3"
  2218. +| #define START_STATD "/usr/sbin/start-statd"
  2219. +| #define NFS3_SUPPORTED 1
  2220. +| #define NFS4_SUPPORTED 1
  2221. +| #define GSS_SUPPORTED 1
  2222. +| #define STDC_HEADERS 1
  2223. +| #define HAVE_SYS_TYPES_H 1
  2224. +| #define HAVE_SYS_STAT_H 1
  2225. +| #define HAVE_STDLIB_H 1
  2226. +| #define HAVE_STRING_H 1
  2227. +| #define HAVE_MEMORY_H 1
  2228. +| #define HAVE_STRINGS_H 1
  2229. +| #define HAVE_INTTYPES_H 1
  2230. +| #define HAVE_STDINT_H 1
  2231. +| #define HAVE_UNISTD_H 1
  2232. +| #define HAVE_LIBTIRPC 1
  2233. +| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
  2234. +| #define _FILE_OFFSET_BITS 64
  2235. +| #define HAVE_DLFCN_H 1
  2236. +| #define LT_OBJDIR ".libs/"
  2237. +| #define STDC_HEADERS 1
  2238. +| #define HAVE_EVENT_H 1
  2239. +| #define HAVE_NFSIDMAP_H 1
  2240. +| #define HAVE_NFS4_SET_DEBUG 1
  2241. +| #define HAVE_NFSIDMAP_H 1
  2242. +| #define HAVE_NFS4_SET_DEBUG 1
  2243. +| #define KRB5_VERSION 181
  2244. +| #define HAVE_KRB5 1
  2245. +| #define HAVE_DECL_AI_ADDRCONFIG 1
  2246. +| #define HAVE_ARPA_INET_H 1
  2247. +| #define HAVE_FCNTL_H 1
  2248. +| #define HAVE_LIBINTL_H 1
  2249. +| #define HAVE_LIMITS_H 1
  2250. +| #define HAVE_MALLOC_H 1
  2251. +| #define HAVE_MEMORY_H 1
  2252. +| #define HAVE_NETDB_H 1
  2253. +| #define HAVE_NETINET_IN_H 1
  2254. +| #define HAVE_PATHS_H 1
  2255. +| #define HAVE_STDLIB_H 1
  2256. +| #define HAVE_STRING_H 1
  2257. +| #define HAVE_SYS_FILE_H 1
  2258. +| #define HAVE_SYS_IOCTL_H 1
  2259. +| #define HAVE_SYS_MOUNT_H 1
  2260. +| #define HAVE_SYS_PARAM_H 1
  2261. +| #define HAVE_SYS_SOCKET_H 1
  2262. +| #define HAVE_SYS_TIME_H 1
  2263. +| #define HAVE_SYS_VFS_H 1
  2264. +| #define HAVE_SYSLOG_H 1
  2265. +| #define HAVE_UNISTD_H 1
  2266. +| #define HAVE_ET_COM_ERR_H 1
  2267. +| #define HAVE_IFADDRS_H 1
  2268. +| #define TIME_WITH_SYS_TIME 1
  2269. +| #define HAVE_ALLOCA_H 1
  2270. +| #define HAVE_ALLOCA 1
  2271. +| #define HAVE_DIRENT_H 1
  2272. +| #define CLOSEDIR_VOID 1
  2273. +| /* end confdefs.h. */
  2274. +| #include <vfork.h>
  2275. +configure:18891: result: no
  2276. +configure:18891: checking for vfork.h
  2277. +configure:18891: result: no
  2278. +configure:18904: checking for fork
  2279. +configure:18904: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
  2280. +conftest.c:89:6: warning: conflicting types for built-in function 'fork'
  2281. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  2282. +configure:18904: $? = 0
  2283. +configure:18904: result: yes
  2284. +configure:18904: checking for vfork
  2285. +configure:18904: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
  2286. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  2287. +configure:18904: $? = 0
  2288. +configure:18904: result: yes
  2289. +configure:18915: checking for working fork
  2290. +configure:18947: result: cross
  2291. +configure:18963: WARNING: result yes guessed because of cross compilation
  2292. +configure:18968: checking for working vfork
  2293. +configure:19078: result: yes
  2294. +configure:19103: checking type of array argument to getgroups
  2295. +configure:19162: result: gid_t
  2296. +configure:19170: checking for getgroups
  2297. +configure:19170: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
  2298. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  2299. +configure:19170: $? = 0
  2300. +configure:19170: result: yes
  2301. +configure:19225: checking for working getgroups
  2302. +configure:19256: result: no
  2303. +configure:19270: checking for library containing getmntent
  2304. +configure:19301: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
  2305. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  2306. +configure:19301: $? = 0
  2307. +configure:19318: result: none required
  2308. +configure:19333: checking whether /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc needs -traditional
  2309. +configure:19367: result: no
  2310. +configure:19374: checking whether lstat correctly handles trailing slash
  2311. +configure:19417: result: no
  2312. +configure:19436: checking whether lstat accepts an empty string
  2313. +configure:19466: result: yes
  2314. +configure:19482: checking whether lstat correctly handles trailing slash
  2315. +configure:19525: result: no
  2316. +configure:19544: checking whether sys/types.h defines makedev
  2317. +configure:19560: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
  2318. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  2319. +configure:19560: $? = 0
  2320. +configure:19569: result: yes
  2321. +configure:19595: checking for working memcmp
  2322. +configure:19648: result: no
  2323. +configure:19661: checking sys/select.h usability
  2324. +configure:19661: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  2325. +configure:19661: $? = 0
  2326. +configure:19661: result: yes
  2327. +configure:19661: checking sys/select.h presence
  2328. +configure:19661: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c
  2329. +configure:19661: $? = 0
  2330. +configure:19661: result: yes
  2331. +configure:19661: checking for sys/select.h
  2332. +configure:19661: result: yes
  2333. +configure:19661: checking for sys/socket.h
  2334. +configure:19661: result: yes
  2335. +configure:19672: checking types of arguments for select
  2336. +configure:19700: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  2337. +configure:19700: $? = 0
  2338. +configure:19711: result: int,fd_set *,struct timeval *
  2339. +configure:19734: checking return type of signal handlers
  2340. +configure:19752: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  2341. +conftest.c: In function 'main':
  2342. +conftest.c:84:1: error: void value not ignored as it ought to be
  2343. +configure:19752: $? = 1
  2344. +configure: failed program was:
  2345. +| /* confdefs.h */
  2346. +| #define PACKAGE_NAME "linux nfs-utils"
  2347. +| #define PACKAGE_TARNAME "nfs-utils"
  2348. +| #define PACKAGE_VERSION "1.2.3"
  2349. +| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
  2350. +| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
  2351. +| #define PACKAGE_URL ""
  2352. +| #define PACKAGE "nfs-utils"
  2353. +| #define VERSION "1.2.3"
  2354. +| #define START_STATD "/usr/sbin/start-statd"
  2355. +| #define NFS3_SUPPORTED 1
  2356. +| #define NFS4_SUPPORTED 1
  2357. +| #define GSS_SUPPORTED 1
  2358. +| #define STDC_HEADERS 1
  2359. +| #define HAVE_SYS_TYPES_H 1
  2360. +| #define HAVE_SYS_STAT_H 1
  2361. +| #define HAVE_STDLIB_H 1
  2362. +| #define HAVE_STRING_H 1
  2363. +| #define HAVE_MEMORY_H 1
  2364. +| #define HAVE_STRINGS_H 1
  2365. +| #define HAVE_INTTYPES_H 1
  2366. +| #define HAVE_STDINT_H 1
  2367. +| #define HAVE_UNISTD_H 1
  2368. +| #define HAVE_LIBTIRPC 1
  2369. +| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
  2370. +| #define _FILE_OFFSET_BITS 64
  2371. +| #define HAVE_DLFCN_H 1
  2372. +| #define LT_OBJDIR ".libs/"
  2373. +| #define STDC_HEADERS 1
  2374. +| #define HAVE_EVENT_H 1
  2375. +| #define HAVE_NFSIDMAP_H 1
  2376. +| #define HAVE_NFS4_SET_DEBUG 1
  2377. +| #define HAVE_NFSIDMAP_H 1
  2378. +| #define HAVE_NFS4_SET_DEBUG 1
  2379. +| #define KRB5_VERSION 181
  2380. +| #define HAVE_KRB5 1
  2381. +| #define HAVE_DECL_AI_ADDRCONFIG 1
  2382. +| #define HAVE_ARPA_INET_H 1
  2383. +| #define HAVE_FCNTL_H 1
  2384. +| #define HAVE_LIBINTL_H 1
  2385. +| #define HAVE_LIMITS_H 1
  2386. +| #define HAVE_MALLOC_H 1
  2387. +| #define HAVE_MEMORY_H 1
  2388. +| #define HAVE_NETDB_H 1
  2389. +| #define HAVE_NETINET_IN_H 1
  2390. +| #define HAVE_PATHS_H 1
  2391. +| #define HAVE_STDLIB_H 1
  2392. +| #define HAVE_STRING_H 1
  2393. +| #define HAVE_SYS_FILE_H 1
  2394. +| #define HAVE_SYS_IOCTL_H 1
  2395. +| #define HAVE_SYS_MOUNT_H 1
  2396. +| #define HAVE_SYS_PARAM_H 1
  2397. +| #define HAVE_SYS_SOCKET_H 1
  2398. +| #define HAVE_SYS_TIME_H 1
  2399. +| #define HAVE_SYS_VFS_H 1
  2400. +| #define HAVE_SYSLOG_H 1
  2401. +| #define HAVE_UNISTD_H 1
  2402. +| #define HAVE_ET_COM_ERR_H 1
  2403. +| #define HAVE_IFADDRS_H 1
  2404. +| #define TIME_WITH_SYS_TIME 1
  2405. +| #define HAVE_ALLOCA_H 1
  2406. +| #define HAVE_ALLOCA 1
  2407. +| #define HAVE_DIRENT_H 1
  2408. +| #define CLOSEDIR_VOID 1
  2409. +| #define HAVE_FORK 1
  2410. +| #define HAVE_VFORK 1
  2411. +| #define HAVE_WORKING_VFORK 1
  2412. +| #define HAVE_WORKING_FORK 1
  2413. +| #define GETGROUPS_T gid_t
  2414. +| #define HAVE_GETMNTENT 1
  2415. +| #define HAVE_LSTAT_EMPTY_STRING_BUG 1
  2416. +| #define HAVE_SYS_SELECT_H 1
  2417. +| #define HAVE_SYS_SOCKET_H 1
  2418. +| #define SELECT_TYPE_ARG1 int
  2419. +| #define SELECT_TYPE_ARG234 (fd_set *)
  2420. +| #define SELECT_TYPE_ARG5 (struct timeval *)
  2421. +| /* end confdefs.h. */
  2422. +| #include <sys/types.h>
  2423. +| #include <signal.h>
  2424. +|
  2425. +| int
  2426. +| main ()
  2427. +| {
  2428. +| return *(signal (0, 0)) (0) == 1;
  2429. +| ;
  2430. +| return 0;
  2431. +| }
  2432. +configure:19759: result: void
  2433. +configure:19767: checking whether stat accepts an empty string
  2434. +configure:19797: result: yes
  2435. +configure:19815: checking for vprintf
  2436. +configure:19815: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
  2437. +conftest.c:103:6: warning: conflicting types for built-in function 'vprintf'
  2438. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  2439. +configure:19815: $? = 0
  2440. +configure:19815: result: yes
  2441. +configure:19821: checking for _doprnt
  2442. +configure:19821: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
  2443. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  2444. +/tmp/ccFobr1P.o: In function `main':
  2445. +conftest.c:(.text+0x12): undefined reference to `_doprnt'
  2446. +collect2: ld returned 1 exit status
  2447. +configure:19821: $? = 1
  2448. +configure: failed program was:
  2449. +| /* confdefs.h */
  2450. +| #define PACKAGE_NAME "linux nfs-utils"
  2451. +| #define PACKAGE_TARNAME "nfs-utils"
  2452. +| #define PACKAGE_VERSION "1.2.3"
  2453. +| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
  2454. +| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
  2455. +| #define PACKAGE_URL ""
  2456. +| #define PACKAGE "nfs-utils"
  2457. +| #define VERSION "1.2.3"
  2458. +| #define START_STATD "/usr/sbin/start-statd"
  2459. +| #define NFS3_SUPPORTED 1
  2460. +| #define NFS4_SUPPORTED 1
  2461. +| #define GSS_SUPPORTED 1
  2462. +| #define STDC_HEADERS 1
  2463. +| #define HAVE_SYS_TYPES_H 1
  2464. +| #define HAVE_SYS_STAT_H 1
  2465. +| #define HAVE_STDLIB_H 1
  2466. +| #define HAVE_STRING_H 1
  2467. +| #define HAVE_MEMORY_H 1
  2468. +| #define HAVE_STRINGS_H 1
  2469. +| #define HAVE_INTTYPES_H 1
  2470. +| #define HAVE_STDINT_H 1
  2471. +| #define HAVE_UNISTD_H 1
  2472. +| #define HAVE_LIBTIRPC 1
  2473. +| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
  2474. +| #define _FILE_OFFSET_BITS 64
  2475. +| #define HAVE_DLFCN_H 1
  2476. +| #define LT_OBJDIR ".libs/"
  2477. +| #define STDC_HEADERS 1
  2478. +| #define HAVE_EVENT_H 1
  2479. +| #define HAVE_NFSIDMAP_H 1
  2480. +| #define HAVE_NFS4_SET_DEBUG 1
  2481. +| #define HAVE_NFSIDMAP_H 1
  2482. +| #define HAVE_NFS4_SET_DEBUG 1
  2483. +| #define KRB5_VERSION 181
  2484. +| #define HAVE_KRB5 1
  2485. +| #define HAVE_DECL_AI_ADDRCONFIG 1
  2486. +| #define HAVE_ARPA_INET_H 1
  2487. +| #define HAVE_FCNTL_H 1
  2488. +| #define HAVE_LIBINTL_H 1
  2489. +| #define HAVE_LIMITS_H 1
  2490. +| #define HAVE_MALLOC_H 1
  2491. +| #define HAVE_MEMORY_H 1
  2492. +| #define HAVE_NETDB_H 1
  2493. +| #define HAVE_NETINET_IN_H 1
  2494. +| #define HAVE_PATHS_H 1
  2495. +| #define HAVE_STDLIB_H 1
  2496. +| #define HAVE_STRING_H 1
  2497. +| #define HAVE_SYS_FILE_H 1
  2498. +| #define HAVE_SYS_IOCTL_H 1
  2499. +| #define HAVE_SYS_MOUNT_H 1
  2500. +| #define HAVE_SYS_PARAM_H 1
  2501. +| #define HAVE_SYS_SOCKET_H 1
  2502. +| #define HAVE_SYS_TIME_H 1
  2503. +| #define HAVE_SYS_VFS_H 1
  2504. +| #define HAVE_SYSLOG_H 1
  2505. +| #define HAVE_UNISTD_H 1
  2506. +| #define HAVE_ET_COM_ERR_H 1
  2507. +| #define HAVE_IFADDRS_H 1
  2508. +| #define TIME_WITH_SYS_TIME 1
  2509. +| #define HAVE_ALLOCA_H 1
  2510. +| #define HAVE_ALLOCA 1
  2511. +| #define HAVE_DIRENT_H 1
  2512. +| #define CLOSEDIR_VOID 1
  2513. +| #define HAVE_FORK 1
  2514. +| #define HAVE_VFORK 1
  2515. +| #define HAVE_WORKING_VFORK 1
  2516. +| #define HAVE_WORKING_FORK 1
  2517. +| #define GETGROUPS_T gid_t
  2518. +| #define HAVE_GETMNTENT 1
  2519. +| #define HAVE_LSTAT_EMPTY_STRING_BUG 1
  2520. +| #define HAVE_SYS_SELECT_H 1
  2521. +| #define HAVE_SYS_SOCKET_H 1
  2522. +| #define SELECT_TYPE_ARG1 int
  2523. +| #define SELECT_TYPE_ARG234 (fd_set *)
  2524. +| #define SELECT_TYPE_ARG5 (struct timeval *)
  2525. +| #define RETSIGTYPE void
  2526. +| #define HAVE_STAT_EMPTY_STRING_BUG 1
  2527. +| #define HAVE_VPRINTF 1
  2528. +| /* end confdefs.h. */
  2529. +| /* Define _doprnt to an innocuous variant, in case <limits.h> declares _doprnt.
  2530. +| For example, HP-UX 11i <limits.h> declares gettimeofday. */
  2531. +| #define _doprnt innocuous__doprnt
  2532. +|
  2533. +| /* System header to define __stub macros and hopefully few prototypes,
  2534. +| which can conflict with char _doprnt (); below.
  2535. +| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  2536. +| <limits.h> exists even on freestanding compilers. */
  2537. +|
  2538. +| #ifdef __STDC__
  2539. +| # include <limits.h>
  2540. +| #else
  2541. +| # include <assert.h>
  2542. +| #endif
  2543. +|
  2544. +| #undef _doprnt
  2545. +|
  2546. +| /* Override any GCC internal prototype to avoid an error.
  2547. +| Use char because int might match the return type of a GCC
  2548. +| builtin and then its argument prototype would still apply. */
  2549. +| #ifdef __cplusplus
  2550. +| extern "C"
  2551. +| #endif
  2552. +| char _doprnt ();
  2553. +| /* The GNU C library defines this for functions which it implements
  2554. +| to always fail with ENOSYS. Some functions are actually named
  2555. +| something starting with __ and the normal name is an alias. */
  2556. +| #if defined __stub__doprnt || defined __stub____doprnt
  2557. +| choke me
  2558. +| #endif
  2559. +|
  2560. +| int
  2561. +| main ()
  2562. +| {
  2563. +| return _doprnt ();
  2564. +| ;
  2565. +| return 0;
  2566. +| }
  2567. +configure:19821: result: no
  2568. +configure:19840: checking for alarm
  2569. +configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
  2570. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  2571. +configure:19840: $? = 0
  2572. +configure:19840: result: yes
  2573. +configure:19840: checking for atexit
  2574. +configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
  2575. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  2576. +configure:19840: $? = 0
  2577. +configure:19840: result: yes
  2578. +configure:19840: checking for dup2
  2579. +configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
  2580. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  2581. +configure:19840: $? = 0
  2582. +configure:19840: result: yes
  2583. +configure:19840: checking for fdatasync
  2584. +configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
  2585. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  2586. +configure:19840: $? = 0
  2587. +configure:19840: result: yes
  2588. +configure:19840: checking for ftruncate
  2589. +configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
  2590. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  2591. +configure:19840: $? = 0
  2592. +configure:19840: result: yes
  2593. +configure:19840: checking for getcwd
  2594. +configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
  2595. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  2596. +configure:19840: $? = 0
  2597. +configure:19840: result: yes
  2598. +configure:19840: checking for gethostbyaddr
  2599. +configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
  2600. +/tmp/ccMsHpoy.o: In function `main':
  2601. +conftest.c:(.text+0x12): warning: gethostbyaddr is obsolescent, use getaddrinfo() instead.
  2602. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  2603. +configure:19840: $? = 0
  2604. +configure:19840: result: yes
  2605. +configure:19840: checking for gethostbyname
  2606. +configure:19840: result: yes
  2607. +configure:19840: checking for gethostname
  2608. +configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
  2609. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  2610. +configure:19840: $? = 0
  2611. +configure:19840: result: yes
  2612. +configure:19840: checking for getmntent
  2613. +configure:19840: result: yes
  2614. +configure:19840: checking for getnameinfo
  2615. +configure:19840: result: yes
  2616. +configure:19840: checking for getrpcbyname
  2617. +configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
  2618. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  2619. +configure:19840: $? = 0
  2620. +configure:19840: result: yes
  2621. +configure:19840: checking for getifaddrs
  2622. +configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
  2623. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  2624. +configure:19840: $? = 0
  2625. +configure:19840: result: yes
  2626. +configure:19840: checking for gettimeofday
  2627. +configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
  2628. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  2629. +configure:19840: $? = 0
  2630. +configure:19840: result: yes
  2631. +configure:19840: checking for hasmntopt
  2632. +configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
  2633. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  2634. +configure:19840: $? = 0
  2635. +configure:19840: result: yes
  2636. +configure:19840: checking for inet_ntoa
  2637. +configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
  2638. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  2639. +configure:19840: $? = 0
  2640. +configure:19840: result: yes
  2641. +configure:19840: checking for innetgr
  2642. +configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
  2643. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  2644. +/tmp/cc8RLUnr.o: In function `main':
  2645. +conftest.c:(.text+0x12): undefined reference to `innetgr'
  2646. +collect2: ld returned 1 exit status
  2647. +configure:19840: $? = 1
  2648. +configure: failed program was:
  2649. +| /* confdefs.h */
  2650. +| #define PACKAGE_NAME "linux nfs-utils"
  2651. +| #define PACKAGE_TARNAME "nfs-utils"
  2652. +| #define PACKAGE_VERSION "1.2.3"
  2653. +| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
  2654. +| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
  2655. +| #define PACKAGE_URL ""
  2656. +| #define PACKAGE "nfs-utils"
  2657. +| #define VERSION "1.2.3"
  2658. +| #define START_STATD "/usr/sbin/start-statd"
  2659. +| #define NFS3_SUPPORTED 1
  2660. +| #define NFS4_SUPPORTED 1
  2661. +| #define GSS_SUPPORTED 1
  2662. +| #define STDC_HEADERS 1
  2663. +| #define HAVE_SYS_TYPES_H 1
  2664. +| #define HAVE_SYS_STAT_H 1
  2665. +| #define HAVE_STDLIB_H 1
  2666. +| #define HAVE_STRING_H 1
  2667. +| #define HAVE_MEMORY_H 1
  2668. +| #define HAVE_STRINGS_H 1
  2669. +| #define HAVE_INTTYPES_H 1
  2670. +| #define HAVE_STDINT_H 1
  2671. +| #define HAVE_UNISTD_H 1
  2672. +| #define HAVE_LIBTIRPC 1
  2673. +| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
  2674. +| #define _FILE_OFFSET_BITS 64
  2675. +| #define HAVE_DLFCN_H 1
  2676. +| #define LT_OBJDIR ".libs/"
  2677. +| #define STDC_HEADERS 1
  2678. +| #define HAVE_EVENT_H 1
  2679. +| #define HAVE_NFSIDMAP_H 1
  2680. +| #define HAVE_NFS4_SET_DEBUG 1
  2681. +| #define HAVE_NFSIDMAP_H 1
  2682. +| #define HAVE_NFS4_SET_DEBUG 1
  2683. +| #define KRB5_VERSION 181
  2684. +| #define HAVE_KRB5 1
  2685. +| #define HAVE_DECL_AI_ADDRCONFIG 1
  2686. +| #define HAVE_ARPA_INET_H 1
  2687. +| #define HAVE_FCNTL_H 1
  2688. +| #define HAVE_LIBINTL_H 1
  2689. +| #define HAVE_LIMITS_H 1
  2690. +| #define HAVE_MALLOC_H 1
  2691. +| #define HAVE_MEMORY_H 1
  2692. +| #define HAVE_NETDB_H 1
  2693. +| #define HAVE_NETINET_IN_H 1
  2694. +| #define HAVE_PATHS_H 1
  2695. +| #define HAVE_STDLIB_H 1
  2696. +| #define HAVE_STRING_H 1
  2697. +| #define HAVE_SYS_FILE_H 1
  2698. +| #define HAVE_SYS_IOCTL_H 1
  2699. +| #define HAVE_SYS_MOUNT_H 1
  2700. +| #define HAVE_SYS_PARAM_H 1
  2701. +| #define HAVE_SYS_SOCKET_H 1
  2702. +| #define HAVE_SYS_TIME_H 1
  2703. +| #define HAVE_SYS_VFS_H 1
  2704. +| #define HAVE_SYSLOG_H 1
  2705. +| #define HAVE_UNISTD_H 1
  2706. +| #define HAVE_ET_COM_ERR_H 1
  2707. +| #define HAVE_IFADDRS_H 1
  2708. +| #define TIME_WITH_SYS_TIME 1
  2709. +| #define HAVE_ALLOCA_H 1
  2710. +| #define HAVE_ALLOCA 1
  2711. +| #define HAVE_DIRENT_H 1
  2712. +| #define CLOSEDIR_VOID 1
  2713. +| #define HAVE_FORK 1
  2714. +| #define HAVE_VFORK 1
  2715. +| #define HAVE_WORKING_VFORK 1
  2716. +| #define HAVE_WORKING_FORK 1
  2717. +| #define GETGROUPS_T gid_t
  2718. +| #define HAVE_GETMNTENT 1
  2719. +| #define HAVE_LSTAT_EMPTY_STRING_BUG 1
  2720. +| #define HAVE_SYS_SELECT_H 1
  2721. +| #define HAVE_SYS_SOCKET_H 1
  2722. +| #define SELECT_TYPE_ARG1 int
  2723. +| #define SELECT_TYPE_ARG234 (fd_set *)
  2724. +| #define SELECT_TYPE_ARG5 (struct timeval *)
  2725. +| #define RETSIGTYPE void
  2726. +| #define HAVE_STAT_EMPTY_STRING_BUG 1
  2727. +| #define HAVE_VPRINTF 1
  2728. +| #define HAVE_ALARM 1
  2729. +| #define HAVE_ATEXIT 1
  2730. +| #define HAVE_DUP2 1
  2731. +| #define HAVE_FDATASYNC 1
  2732. +| #define HAVE_FTRUNCATE 1
  2733. +| #define HAVE_GETCWD 1
  2734. +| #define HAVE_GETHOSTBYADDR 1
  2735. +| #define HAVE_GETHOSTBYNAME 1
  2736. +| #define HAVE_GETHOSTNAME 1
  2737. +| #define HAVE_GETMNTENT 1
  2738. +| #define HAVE_GETNAMEINFO 1
  2739. +| #define HAVE_GETRPCBYNAME 1
  2740. +| #define HAVE_GETIFADDRS 1
  2741. +| #define HAVE_GETTIMEOFDAY 1
  2742. +| #define HAVE_HASMNTOPT 1
  2743. +| #define HAVE_INET_NTOA 1
  2744. +| /* end confdefs.h. */
  2745. +| /* Define innetgr to an innocuous variant, in case <limits.h> declares innetgr.
  2746. +| For example, HP-UX 11i <limits.h> declares gettimeofday. */
  2747. +| #define innetgr innocuous_innetgr
  2748. +|
  2749. +| /* System header to define __stub macros and hopefully few prototypes,
  2750. +| which can conflict with char innetgr (); below.
  2751. +| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  2752. +| <limits.h> exists even on freestanding compilers. */
  2753. +|
  2754. +| #ifdef __STDC__
  2755. +| # include <limits.h>
  2756. +| #else
  2757. +| # include <assert.h>
  2758. +| #endif
  2759. +|
  2760. +| #undef innetgr
  2761. +|
  2762. +| /* Override any GCC internal prototype to avoid an error.
  2763. +| Use char because int might match the return type of a GCC
  2764. +| builtin and then its argument prototype would still apply. */
  2765. +| #ifdef __cplusplus
  2766. +| extern "C"
  2767. +| #endif
  2768. +| char innetgr ();
  2769. +| /* The GNU C library defines this for functions which it implements
  2770. +| to always fail with ENOSYS. Some functions are actually named
  2771. +| something starting with __ and the normal name is an alias. */
  2772. +| #if defined __stub_innetgr || defined __stub___innetgr
  2773. +| choke me
  2774. +| #endif
  2775. +|
  2776. +| int
  2777. +| main ()
  2778. +| {
  2779. +| return innetgr ();
  2780. +| ;
  2781. +| return 0;
  2782. +| }
  2783. +configure:19840: result: no
  2784. +configure:19840: checking for memset
  2785. +configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
  2786. +conftest.c:120:6: warning: conflicting types for built-in function 'memset'
  2787. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  2788. +configure:19840: $? = 0
  2789. +configure:19840: result: yes
  2790. +configure:19840: checking for mkdir
  2791. +configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
  2792. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  2793. +configure:19840: $? = 0
  2794. +configure:19840: result: yes
  2795. +configure:19840: checking for pathconf
  2796. +configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
  2797. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  2798. +configure:19840: $? = 0
  2799. +configure:19840: result: yes
  2800. +configure:19840: checking for realpath
  2801. +configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
  2802. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  2803. +configure:19840: $? = 0
  2804. +configure:19840: result: yes
  2805. +configure:19840: checking for rmdir
  2806. +configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
  2807. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  2808. +configure:19840: $? = 0
  2809. +configure:19840: result: yes
  2810. +configure:19840: checking for select
  2811. +configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
  2812. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  2813. +configure:19840: $? = 0
  2814. +configure:19840: result: yes
  2815. +configure:19840: checking for socket
  2816. +configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
  2817. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  2818. +configure:19840: $? = 0
  2819. +configure:19840: result: yes
  2820. +configure:19840: checking for strcasecmp
  2821. +configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
  2822. +conftest.c:127:6: warning: conflicting types for built-in function 'strcasecmp'
  2823. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  2824. +configure:19840: $? = 0
  2825. +configure:19840: result: yes
  2826. +configure:19840: checking for strchr
  2827. +configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
  2828. +conftest.c:128:6: warning: conflicting types for built-in function 'strchr'
  2829. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  2830. +configure:19840: $? = 0
  2831. +configure:19840: result: yes
  2832. +configure:19840: checking for strdup
  2833. +configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
  2834. +conftest.c:129:6: warning: conflicting types for built-in function 'strdup'
  2835. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  2836. +configure:19840: $? = 0
  2837. +configure:19840: result: yes
  2838. +configure:19840: checking for strerror
  2839. +configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
  2840. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  2841. +configure:19840: $? = 0
  2842. +configure:19840: result: yes
  2843. +configure:19840: checking for strrchr
  2844. +configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
  2845. +conftest.c:131:6: warning: conflicting types for built-in function 'strrchr'
  2846. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  2847. +configure:19840: $? = 0
  2848. +configure:19840: result: yes
  2849. +configure:19840: checking for strtol
  2850. +configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
  2851. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  2852. +configure:19840: $? = 0
  2853. +configure:19840: result: yes
  2854. +configure:19840: checking for strtoul
  2855. +configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
  2856. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  2857. +configure:19840: $? = 0
  2858. +configure:19840: result: yes
  2859. +configure:19840: checking for sigprocmask
  2860. +configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
  2861. +/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
  2862. +configure:19840: $? = 0
  2863. +configure:19840: result: yes
  2864. +configure:19856: checking size of short
  2865. +configure:19861: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  2866. +configure:19861: $? = 0
  2867. +configure:19861: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  2868. +conftest.c: In function 'main':
  2869. +conftest.c:148:12: error: size of array 'test_array' is negative
  2870. +configure:19861: $? = 1
  2871. +configure: failed program was:
  2872. +| /* confdefs.h */
  2873. +| #define PACKAGE_NAME "linux nfs-utils"
  2874. +| #define PACKAGE_TARNAME "nfs-utils"
  2875. +| #define PACKAGE_VERSION "1.2.3"
  2876. +| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
  2877. +| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
  2878. +| #define PACKAGE_URL ""
  2879. +| #define PACKAGE "nfs-utils"
  2880. +| #define VERSION "1.2.3"
  2881. +| #define START_STATD "/usr/sbin/start-statd"
  2882. +| #define NFS3_SUPPORTED 1
  2883. +| #define NFS4_SUPPORTED 1
  2884. +| #define GSS_SUPPORTED 1
  2885. +| #define STDC_HEADERS 1
  2886. +| #define HAVE_SYS_TYPES_H 1
  2887. +| #define HAVE_SYS_STAT_H 1
  2888. +| #define HAVE_STDLIB_H 1
  2889. +| #define HAVE_STRING_H 1
  2890. +| #define HAVE_MEMORY_H 1
  2891. +| #define HAVE_STRINGS_H 1
  2892. +| #define HAVE_INTTYPES_H 1
  2893. +| #define HAVE_STDINT_H 1
  2894. +| #define HAVE_UNISTD_H 1
  2895. +| #define HAVE_LIBTIRPC 1
  2896. +| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
  2897. +| #define _FILE_OFFSET_BITS 64
  2898. +| #define HAVE_DLFCN_H 1
  2899. +| #define LT_OBJDIR ".libs/"
  2900. +| #define STDC_HEADERS 1
  2901. +| #define HAVE_EVENT_H 1
  2902. +| #define HAVE_NFSIDMAP_H 1
  2903. +| #define HAVE_NFS4_SET_DEBUG 1
  2904. +| #define HAVE_NFSIDMAP_H 1
  2905. +| #define HAVE_NFS4_SET_DEBUG 1
  2906. +| #define KRB5_VERSION 181
  2907. +| #define HAVE_KRB5 1
  2908. +| #define HAVE_DECL_AI_ADDRCONFIG 1
  2909. +| #define HAVE_ARPA_INET_H 1
  2910. +| #define HAVE_FCNTL_H 1
  2911. +| #define HAVE_LIBINTL_H 1
  2912. +| #define HAVE_LIMITS_H 1
  2913. +| #define HAVE_MALLOC_H 1
  2914. +| #define HAVE_MEMORY_H 1
  2915. +| #define HAVE_NETDB_H 1
  2916. +| #define HAVE_NETINET_IN_H 1
  2917. +| #define HAVE_PATHS_H 1
  2918. +| #define HAVE_STDLIB_H 1
  2919. +| #define HAVE_STRING_H 1
  2920. +| #define HAVE_SYS_FILE_H 1
  2921. +| #define HAVE_SYS_IOCTL_H 1
  2922. +| #define HAVE_SYS_MOUNT_H 1
  2923. +| #define HAVE_SYS_PARAM_H 1
  2924. +| #define HAVE_SYS_SOCKET_H 1
  2925. +| #define HAVE_SYS_TIME_H 1
  2926. +| #define HAVE_SYS_VFS_H 1
  2927. +| #define HAVE_SYSLOG_H 1
  2928. +| #define HAVE_UNISTD_H 1
  2929. +| #define HAVE_ET_COM_ERR_H 1
  2930. +| #define HAVE_IFADDRS_H 1
  2931. +| #define TIME_WITH_SYS_TIME 1
  2932. +| #define HAVE_ALLOCA_H 1
  2933. +| #define HAVE_ALLOCA 1
  2934. +| #define HAVE_DIRENT_H 1
  2935. +| #define CLOSEDIR_VOID 1
  2936. +| #define HAVE_FORK 1
  2937. +| #define HAVE_VFORK 1
  2938. +| #define HAVE_WORKING_VFORK 1
  2939. +| #define HAVE_WORKING_FORK 1
  2940. +| #define GETGROUPS_T gid_t
  2941. +| #define HAVE_GETMNTENT 1
  2942. +| #define HAVE_LSTAT_EMPTY_STRING_BUG 1
  2943. +| #define HAVE_SYS_SELECT_H 1
  2944. +| #define HAVE_SYS_SOCKET_H 1
  2945. +| #define SELECT_TYPE_ARG1 int
  2946. +| #define SELECT_TYPE_ARG234 (fd_set *)
  2947. +| #define SELECT_TYPE_ARG5 (struct timeval *)
  2948. +| #define RETSIGTYPE void
  2949. +| #define HAVE_STAT_EMPTY_STRING_BUG 1
  2950. +| #define HAVE_VPRINTF 1
  2951. +| #define HAVE_ALARM 1
  2952. +| #define HAVE_ATEXIT 1
  2953. +| #define HAVE_DUP2 1
  2954. +| #define HAVE_FDATASYNC 1
  2955. +| #define HAVE_FTRUNCATE 1
  2956. +| #define HAVE_GETCWD 1
  2957. +| #define HAVE_GETHOSTBYADDR 1
  2958. +| #define HAVE_GETHOSTBYNAME 1
  2959. +| #define HAVE_GETHOSTNAME 1
  2960. +| #define HAVE_GETMNTENT 1
  2961. +| #define HAVE_GETNAMEINFO 1
  2962. +| #define HAVE_GETRPCBYNAME 1
  2963. +| #define HAVE_GETIFADDRS 1
  2964. +| #define HAVE_GETTIMEOFDAY 1
  2965. +| #define HAVE_HASMNTOPT 1
  2966. +| #define HAVE_INET_NTOA 1
  2967. +| #define HAVE_MEMSET 1
  2968. +| #define HAVE_MKDIR 1
  2969. +| #define HAVE_PATHCONF 1
  2970. +| #define HAVE_REALPATH 1
  2971. +| #define HAVE_RMDIR 1
  2972. +| #define HAVE_SELECT 1
  2973. +| #define HAVE_SOCKET 1
  2974. +| #define HAVE_STRCASECMP 1
  2975. +| #define HAVE_STRCHR 1
  2976. +| #define HAVE_STRDUP 1
  2977. +| #define HAVE_STRERROR 1
  2978. +| #define HAVE_STRRCHR 1
  2979. +| #define HAVE_STRTOL 1
  2980. +| #define HAVE_STRTOUL 1
  2981. +| #define HAVE_SIGPROCMASK 1
  2982. +| /* end confdefs.h. */
  2983. +| #include <stdio.h>
  2984. +| #ifdef HAVE_SYS_TYPES_H
  2985. +| # include <sys/types.h>
  2986. +| #endif
  2987. +| #ifdef HAVE_SYS_STAT_H
  2988. +| # include <sys/stat.h>
  2989. +| #endif
  2990. +| #ifdef STDC_HEADERS
  2991. +| # include <stdlib.h>
  2992. +| # include <stddef.h>
  2993. +| #else
  2994. +| # ifdef HAVE_STDLIB_H
  2995. +| # include <stdlib.h>
  2996. +| # endif
  2997. +| #endif
  2998. +| #ifdef HAVE_STRING_H
  2999. +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  3000. +| # include <memory.h>
  3001. +| # endif
  3002. +| # include <string.h>
  3003. +| #endif
  3004. +| #ifdef HAVE_STRINGS_H
  3005. +| # include <strings.h>
  3006. +| #endif
  3007. +| #ifdef HAVE_INTTYPES_H
  3008. +| # include <inttypes.h>
  3009. +| #endif
  3010. +| #ifdef HAVE_STDINT_H
  3011. +| # include <stdint.h>
  3012. +| #endif
  3013. +| #ifdef HAVE_UNISTD_H
  3014. +| # include <unistd.h>
  3015. +| #endif
  3016. +| int
  3017. +| main ()
  3018. +| {
  3019. +| static int test_array [1 - 2 * !(((long int) (sizeof (short))) <= 0)];
  3020. +| test_array [0] = 0
  3021. +|
  3022. +| ;
  3023. +| return 0;
  3024. +| }
  3025. +configure:19861: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  3026. +conftest.c: In function 'main':
  3027. +conftest.c:148:12: error: size of array 'test_array' is negative
  3028. +configure:19861: $? = 1
  3029. +configure: failed program was:
  3030. +| /* confdefs.h */
  3031. +| #define PACKAGE_NAME "linux nfs-utils"
  3032. +| #define PACKAGE_TARNAME "nfs-utils"
  3033. +| #define PACKAGE_VERSION "1.2.3"
  3034. +| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
  3035. +| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
  3036. +| #define PACKAGE_URL ""
  3037. +| #define PACKAGE "nfs-utils"
  3038. +| #define VERSION "1.2.3"
  3039. +| #define START_STATD "/usr/sbin/start-statd"
  3040. +| #define NFS3_SUPPORTED 1
  3041. +| #define NFS4_SUPPORTED 1
  3042. +| #define GSS_SUPPORTED 1
  3043. +| #define STDC_HEADERS 1
  3044. +| #define HAVE_SYS_TYPES_H 1
  3045. +| #define HAVE_SYS_STAT_H 1
  3046. +| #define HAVE_STDLIB_H 1
  3047. +| #define HAVE_STRING_H 1
  3048. +| #define HAVE_MEMORY_H 1
  3049. +| #define HAVE_STRINGS_H 1
  3050. +| #define HAVE_INTTYPES_H 1
  3051. +| #define HAVE_STDINT_H 1
  3052. +| #define HAVE_UNISTD_H 1
  3053. +| #define HAVE_LIBTIRPC 1
  3054. +| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
  3055. +| #define _FILE_OFFSET_BITS 64
  3056. +| #define HAVE_DLFCN_H 1
  3057. +| #define LT_OBJDIR ".libs/"
  3058. +| #define STDC_HEADERS 1
  3059. +| #define HAVE_EVENT_H 1
  3060. +| #define HAVE_NFSIDMAP_H 1
  3061. +| #define HAVE_NFS4_SET_DEBUG 1
  3062. +| #define HAVE_NFSIDMAP_H 1
  3063. +| #define HAVE_NFS4_SET_DEBUG 1
  3064. +| #define KRB5_VERSION 181
  3065. +| #define HAVE_KRB5 1
  3066. +| #define HAVE_DECL_AI_ADDRCONFIG 1
  3067. +| #define HAVE_ARPA_INET_H 1
  3068. +| #define HAVE_FCNTL_H 1
  3069. +| #define HAVE_LIBINTL_H 1
  3070. +| #define HAVE_LIMITS_H 1
  3071. +| #define HAVE_MALLOC_H 1
  3072. +| #define HAVE_MEMORY_H 1
  3073. +| #define HAVE_NETDB_H 1
  3074. +| #define HAVE_NETINET_IN_H 1
  3075. +| #define HAVE_PATHS_H 1
  3076. +| #define HAVE_STDLIB_H 1
  3077. +| #define HAVE_STRING_H 1
  3078. +| #define HAVE_SYS_FILE_H 1
  3079. +| #define HAVE_SYS_IOCTL_H 1
  3080. +| #define HAVE_SYS_MOUNT_H 1
  3081. +| #define HAVE_SYS_PARAM_H 1
  3082. +| #define HAVE_SYS_SOCKET_H 1
  3083. +| #define HAVE_SYS_TIME_H 1
  3084. +| #define HAVE_SYS_VFS_H 1
  3085. +| #define HAVE_SYSLOG_H 1
  3086. +| #define HAVE_UNISTD_H 1
  3087. +| #define HAVE_ET_COM_ERR_H 1
  3088. +| #define HAVE_IFADDRS_H 1
  3089. +| #define TIME_WITH_SYS_TIME 1
  3090. +| #define HAVE_ALLOCA_H 1
  3091. +| #define HAVE_ALLOCA 1
  3092. +| #define HAVE_DIRENT_H 1
  3093. +| #define CLOSEDIR_VOID 1
  3094. +| #define HAVE_FORK 1
  3095. +| #define HAVE_VFORK 1
  3096. +| #define HAVE_WORKING_VFORK 1
  3097. +| #define HAVE_WORKING_FORK 1
  3098. +| #define GETGROUPS_T gid_t
  3099. +| #define HAVE_GETMNTENT 1
  3100. +| #define HAVE_LSTAT_EMPTY_STRING_BUG 1
  3101. +| #define HAVE_SYS_SELECT_H 1
  3102. +| #define HAVE_SYS_SOCKET_H 1
  3103. +| #define SELECT_TYPE_ARG1 int
  3104. +| #define SELECT_TYPE_ARG234 (fd_set *)
  3105. +| #define SELECT_TYPE_ARG5 (struct timeval *)
  3106. +| #define RETSIGTYPE void
  3107. +| #define HAVE_STAT_EMPTY_STRING_BUG 1
  3108. +| #define HAVE_VPRINTF 1
  3109. +| #define HAVE_ALARM 1
  3110. +| #define HAVE_ATEXIT 1
  3111. +| #define HAVE_DUP2 1
  3112. +| #define HAVE_FDATASYNC 1
  3113. +| #define HAVE_FTRUNCATE 1
  3114. +| #define HAVE_GETCWD 1
  3115. +| #define HAVE_GETHOSTBYADDR 1
  3116. +| #define HAVE_GETHOSTBYNAME 1
  3117. +| #define HAVE_GETHOSTNAME 1
  3118. +| #define HAVE_GETMNTENT 1
  3119. +| #define HAVE_GETNAMEINFO 1
  3120. +| #define HAVE_GETRPCBYNAME 1
  3121. +| #define HAVE_GETIFADDRS 1
  3122. +| #define HAVE_GETTIMEOFDAY 1
  3123. +| #define HAVE_HASMNTOPT 1
  3124. +| #define HAVE_INET_NTOA 1
  3125. +| #define HAVE_MEMSET 1
  3126. +| #define HAVE_MKDIR 1
  3127. +| #define HAVE_PATHCONF 1
  3128. +| #define HAVE_REALPATH 1
  3129. +| #define HAVE_RMDIR 1
  3130. +| #define HAVE_SELECT 1
  3131. +| #define HAVE_SOCKET 1
  3132. +| #define HAVE_STRCASECMP 1
  3133. +| #define HAVE_STRCHR 1
  3134. +| #define HAVE_STRDUP 1
  3135. +| #define HAVE_STRERROR 1
  3136. +| #define HAVE_STRRCHR 1
  3137. +| #define HAVE_STRTOL 1
  3138. +| #define HAVE_STRTOUL 1
  3139. +| #define HAVE_SIGPROCMASK 1
  3140. +| /* end confdefs.h. */
  3141. +| #include <stdio.h>
  3142. +| #ifdef HAVE_SYS_TYPES_H
  3143. +| # include <sys/types.h>
  3144. +| #endif
  3145. +| #ifdef HAVE_SYS_STAT_H
  3146. +| # include <sys/stat.h>
  3147. +| #endif
  3148. +| #ifdef STDC_HEADERS
  3149. +| # include <stdlib.h>
  3150. +| # include <stddef.h>
  3151. +| #else
  3152. +| # ifdef HAVE_STDLIB_H
  3153. +| # include <stdlib.h>
  3154. +| # endif
  3155. +| #endif
  3156. +| #ifdef HAVE_STRING_H
  3157. +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  3158. +| # include <memory.h>
  3159. +| # endif
  3160. +| # include <string.h>
  3161. +| #endif
  3162. +| #ifdef HAVE_STRINGS_H
  3163. +| # include <strings.h>
  3164. +| #endif
  3165. +| #ifdef HAVE_INTTYPES_H
  3166. +| # include <inttypes.h>
  3167. +| #endif
  3168. +| #ifdef HAVE_STDINT_H
  3169. +| # include <stdint.h>
  3170. +| #endif
  3171. +| #ifdef HAVE_UNISTD_H
  3172. +| # include <unistd.h>
  3173. +| #endif
  3174. +| int
  3175. +| main ()
  3176. +| {
  3177. +| static int test_array [1 - 2 * !(((long int) (sizeof (short))) <= 1)];
  3178. +| test_array [0] = 0
  3179. +|
  3180. +| ;
  3181. +| return 0;
  3182. +| }
  3183. +configure:19861: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  3184. +configure:19861: $? = 0
  3185. +configure:19861: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  3186. +configure:19861: $? = 0
  3187. +configure:19876: result: 2
  3188. +configure:19890: checking size of int
  3189. +configure:19895: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  3190. +configure:19895: $? = 0
  3191. +configure:19895: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  3192. +conftest.c: In function 'main':
  3193. +conftest.c:149:12: error: size of array 'test_array' is negative
  3194. +configure:19895: $? = 1
  3195. +configure: failed program was:
  3196. +| /* confdefs.h */
  3197. +| #define PACKAGE_NAME "linux nfs-utils"
  3198. +| #define PACKAGE_TARNAME "nfs-utils"
  3199. +| #define PACKAGE_VERSION "1.2.3"
  3200. +| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
  3201. +| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
  3202. +| #define PACKAGE_URL ""
  3203. +| #define PACKAGE "nfs-utils"
  3204. +| #define VERSION "1.2.3"
  3205. +| #define START_STATD "/usr/sbin/start-statd"
  3206. +| #define NFS3_SUPPORTED 1
  3207. +| #define NFS4_SUPPORTED 1
  3208. +| #define GSS_SUPPORTED 1
  3209. +| #define STDC_HEADERS 1
  3210. +| #define HAVE_SYS_TYPES_H 1
  3211. +| #define HAVE_SYS_STAT_H 1
  3212. +| #define HAVE_STDLIB_H 1
  3213. +| #define HAVE_STRING_H 1
  3214. +| #define HAVE_MEMORY_H 1
  3215. +| #define HAVE_STRINGS_H 1
  3216. +| #define HAVE_INTTYPES_H 1
  3217. +| #define HAVE_STDINT_H 1
  3218. +| #define HAVE_UNISTD_H 1
  3219. +| #define HAVE_LIBTIRPC 1
  3220. +| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
  3221. +| #define _FILE_OFFSET_BITS 64
  3222. +| #define HAVE_DLFCN_H 1
  3223. +| #define LT_OBJDIR ".libs/"
  3224. +| #define STDC_HEADERS 1
  3225. +| #define HAVE_EVENT_H 1
  3226. +| #define HAVE_NFSIDMAP_H 1
  3227. +| #define HAVE_NFS4_SET_DEBUG 1
  3228. +| #define HAVE_NFSIDMAP_H 1
  3229. +| #define HAVE_NFS4_SET_DEBUG 1
  3230. +| #define KRB5_VERSION 181
  3231. +| #define HAVE_KRB5 1
  3232. +| #define HAVE_DECL_AI_ADDRCONFIG 1
  3233. +| #define HAVE_ARPA_INET_H 1
  3234. +| #define HAVE_FCNTL_H 1
  3235. +| #define HAVE_LIBINTL_H 1
  3236. +| #define HAVE_LIMITS_H 1
  3237. +| #define HAVE_MALLOC_H 1
  3238. +| #define HAVE_MEMORY_H 1
  3239. +| #define HAVE_NETDB_H 1
  3240. +| #define HAVE_NETINET_IN_H 1
  3241. +| #define HAVE_PATHS_H 1
  3242. +| #define HAVE_STDLIB_H 1
  3243. +| #define HAVE_STRING_H 1
  3244. +| #define HAVE_SYS_FILE_H 1
  3245. +| #define HAVE_SYS_IOCTL_H 1
  3246. +| #define HAVE_SYS_MOUNT_H 1
  3247. +| #define HAVE_SYS_PARAM_H 1
  3248. +| #define HAVE_SYS_SOCKET_H 1
  3249. +| #define HAVE_SYS_TIME_H 1
  3250. +| #define HAVE_SYS_VFS_H 1
  3251. +| #define HAVE_SYSLOG_H 1
  3252. +| #define HAVE_UNISTD_H 1
  3253. +| #define HAVE_ET_COM_ERR_H 1
  3254. +| #define HAVE_IFADDRS_H 1
  3255. +| #define TIME_WITH_SYS_TIME 1
  3256. +| #define HAVE_ALLOCA_H 1
  3257. +| #define HAVE_ALLOCA 1
  3258. +| #define HAVE_DIRENT_H 1
  3259. +| #define CLOSEDIR_VOID 1
  3260. +| #define HAVE_FORK 1
  3261. +| #define HAVE_VFORK 1
  3262. +| #define HAVE_WORKING_VFORK 1
  3263. +| #define HAVE_WORKING_FORK 1
  3264. +| #define GETGROUPS_T gid_t
  3265. +| #define HAVE_GETMNTENT 1
  3266. +| #define HAVE_LSTAT_EMPTY_STRING_BUG 1
  3267. +| #define HAVE_SYS_SELECT_H 1
  3268. +| #define HAVE_SYS_SOCKET_H 1
  3269. +| #define SELECT_TYPE_ARG1 int
  3270. +| #define SELECT_TYPE_ARG234 (fd_set *)
  3271. +| #define SELECT_TYPE_ARG5 (struct timeval *)
  3272. +| #define RETSIGTYPE void
  3273. +| #define HAVE_STAT_EMPTY_STRING_BUG 1
  3274. +| #define HAVE_VPRINTF 1
  3275. +| #define HAVE_ALARM 1
  3276. +| #define HAVE_ATEXIT 1
  3277. +| #define HAVE_DUP2 1
  3278. +| #define HAVE_FDATASYNC 1
  3279. +| #define HAVE_FTRUNCATE 1
  3280. +| #define HAVE_GETCWD 1
  3281. +| #define HAVE_GETHOSTBYADDR 1
  3282. +| #define HAVE_GETHOSTBYNAME 1
  3283. +| #define HAVE_GETHOSTNAME 1
  3284. +| #define HAVE_GETMNTENT 1
  3285. +| #define HAVE_GETNAMEINFO 1
  3286. +| #define HAVE_GETRPCBYNAME 1
  3287. +| #define HAVE_GETIFADDRS 1
  3288. +| #define HAVE_GETTIMEOFDAY 1
  3289. +| #define HAVE_HASMNTOPT 1
  3290. +| #define HAVE_INET_NTOA 1
  3291. +| #define HAVE_MEMSET 1
  3292. +| #define HAVE_MKDIR 1
  3293. +| #define HAVE_PATHCONF 1
  3294. +| #define HAVE_REALPATH 1
  3295. +| #define HAVE_RMDIR 1
  3296. +| #define HAVE_SELECT 1
  3297. +| #define HAVE_SOCKET 1
  3298. +| #define HAVE_STRCASECMP 1
  3299. +| #define HAVE_STRCHR 1
  3300. +| #define HAVE_STRDUP 1
  3301. +| #define HAVE_STRERROR 1
  3302. +| #define HAVE_STRRCHR 1
  3303. +| #define HAVE_STRTOL 1
  3304. +| #define HAVE_STRTOUL 1
  3305. +| #define HAVE_SIGPROCMASK 1
  3306. +| #define SIZEOF_SHORT 2
  3307. +| /* end confdefs.h. */
  3308. +| #include <stdio.h>
  3309. +| #ifdef HAVE_SYS_TYPES_H
  3310. +| # include <sys/types.h>
  3311. +| #endif
  3312. +| #ifdef HAVE_SYS_STAT_H
  3313. +| # include <sys/stat.h>
  3314. +| #endif
  3315. +| #ifdef STDC_HEADERS
  3316. +| # include <stdlib.h>
  3317. +| # include <stddef.h>
  3318. +| #else
  3319. +| # ifdef HAVE_STDLIB_H
  3320. +| # include <stdlib.h>
  3321. +| # endif
  3322. +| #endif
  3323. +| #ifdef HAVE_STRING_H
  3324. +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  3325. +| # include <memory.h>
  3326. +| # endif
  3327. +| # include <string.h>
  3328. +| #endif
  3329. +| #ifdef HAVE_STRINGS_H
  3330. +| # include <strings.h>
  3331. +| #endif
  3332. +| #ifdef HAVE_INTTYPES_H
  3333. +| # include <inttypes.h>
  3334. +| #endif
  3335. +| #ifdef HAVE_STDINT_H
  3336. +| # include <stdint.h>
  3337. +| #endif
  3338. +| #ifdef HAVE_UNISTD_H
  3339. +| # include <unistd.h>
  3340. +| #endif
  3341. +| int
  3342. +| main ()
  3343. +| {
  3344. +| static int test_array [1 - 2 * !(((long int) (sizeof (int))) <= 0)];
  3345. +| test_array [0] = 0
  3346. +|
  3347. +| ;
  3348. +| return 0;
  3349. +| }
  3350. +configure:19895: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  3351. +conftest.c: In function 'main':
  3352. +conftest.c:149:12: error: size of array 'test_array' is negative
  3353. +configure:19895: $? = 1
  3354. +configure: failed program was:
  3355. +| /* confdefs.h */
  3356. +| #define PACKAGE_NAME "linux nfs-utils"
  3357. +| #define PACKAGE_TARNAME "nfs-utils"
  3358. +| #define PACKAGE_VERSION "1.2.3"
  3359. +| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
  3360. +| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
  3361. +| #define PACKAGE_URL ""
  3362. +| #define PACKAGE "nfs-utils"
  3363. +| #define VERSION "1.2.3"
  3364. +| #define START_STATD "/usr/sbin/start-statd"
  3365. +| #define NFS3_SUPPORTED 1
  3366. +| #define NFS4_SUPPORTED 1
  3367. +| #define GSS_SUPPORTED 1
  3368. +| #define STDC_HEADERS 1
  3369. +| #define HAVE_SYS_TYPES_H 1
  3370. +| #define HAVE_SYS_STAT_H 1
  3371. +| #define HAVE_STDLIB_H 1
  3372. +| #define HAVE_STRING_H 1
  3373. +| #define HAVE_MEMORY_H 1
  3374. +| #define HAVE_STRINGS_H 1
  3375. +| #define HAVE_INTTYPES_H 1
  3376. +| #define HAVE_STDINT_H 1
  3377. +| #define HAVE_UNISTD_H 1
  3378. +| #define HAVE_LIBTIRPC 1
  3379. +| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
  3380. +| #define _FILE_OFFSET_BITS 64
  3381. +| #define HAVE_DLFCN_H 1
  3382. +| #define LT_OBJDIR ".libs/"
  3383. +| #define STDC_HEADERS 1
  3384. +| #define HAVE_EVENT_H 1
  3385. +| #define HAVE_NFSIDMAP_H 1
  3386. +| #define HAVE_NFS4_SET_DEBUG 1
  3387. +| #define HAVE_NFSIDMAP_H 1
  3388. +| #define HAVE_NFS4_SET_DEBUG 1
  3389. +| #define KRB5_VERSION 181
  3390. +| #define HAVE_KRB5 1
  3391. +| #define HAVE_DECL_AI_ADDRCONFIG 1
  3392. +| #define HAVE_ARPA_INET_H 1
  3393. +| #define HAVE_FCNTL_H 1
  3394. +| #define HAVE_LIBINTL_H 1
  3395. +| #define HAVE_LIMITS_H 1
  3396. +| #define HAVE_MALLOC_H 1
  3397. +| #define HAVE_MEMORY_H 1
  3398. +| #define HAVE_NETDB_H 1
  3399. +| #define HAVE_NETINET_IN_H 1
  3400. +| #define HAVE_PATHS_H 1
  3401. +| #define HAVE_STDLIB_H 1
  3402. +| #define HAVE_STRING_H 1
  3403. +| #define HAVE_SYS_FILE_H 1
  3404. +| #define HAVE_SYS_IOCTL_H 1
  3405. +| #define HAVE_SYS_MOUNT_H 1
  3406. +| #define HAVE_SYS_PARAM_H 1
  3407. +| #define HAVE_SYS_SOCKET_H 1
  3408. +| #define HAVE_SYS_TIME_H 1
  3409. +| #define HAVE_SYS_VFS_H 1
  3410. +| #define HAVE_SYSLOG_H 1
  3411. +| #define HAVE_UNISTD_H 1
  3412. +| #define HAVE_ET_COM_ERR_H 1
  3413. +| #define HAVE_IFADDRS_H 1
  3414. +| #define TIME_WITH_SYS_TIME 1
  3415. +| #define HAVE_ALLOCA_H 1
  3416. +| #define HAVE_ALLOCA 1
  3417. +| #define HAVE_DIRENT_H 1
  3418. +| #define CLOSEDIR_VOID 1
  3419. +| #define HAVE_FORK 1
  3420. +| #define HAVE_VFORK 1
  3421. +| #define HAVE_WORKING_VFORK 1
  3422. +| #define HAVE_WORKING_FORK 1
  3423. +| #define GETGROUPS_T gid_t
  3424. +| #define HAVE_GETMNTENT 1
  3425. +| #define HAVE_LSTAT_EMPTY_STRING_BUG 1
  3426. +| #define HAVE_SYS_SELECT_H 1
  3427. +| #define HAVE_SYS_SOCKET_H 1
  3428. +| #define SELECT_TYPE_ARG1 int
  3429. +| #define SELECT_TYPE_ARG234 (fd_set *)
  3430. +| #define SELECT_TYPE_ARG5 (struct timeval *)
  3431. +| #define RETSIGTYPE void
  3432. +| #define HAVE_STAT_EMPTY_STRING_BUG 1
  3433. +| #define HAVE_VPRINTF 1
  3434. +| #define HAVE_ALARM 1
  3435. +| #define HAVE_ATEXIT 1
  3436. +| #define HAVE_DUP2 1
  3437. +| #define HAVE_FDATASYNC 1
  3438. +| #define HAVE_FTRUNCATE 1
  3439. +| #define HAVE_GETCWD 1
  3440. +| #define HAVE_GETHOSTBYADDR 1
  3441. +| #define HAVE_GETHOSTBYNAME 1
  3442. +| #define HAVE_GETHOSTNAME 1
  3443. +| #define HAVE_GETMNTENT 1
  3444. +| #define HAVE_GETNAMEINFO 1
  3445. +| #define HAVE_GETRPCBYNAME 1
  3446. +| #define HAVE_GETIFADDRS 1
  3447. +| #define HAVE_GETTIMEOFDAY 1
  3448. +| #define HAVE_HASMNTOPT 1
  3449. +| #define HAVE_INET_NTOA 1
  3450. +| #define HAVE_MEMSET 1
  3451. +| #define HAVE_MKDIR 1
  3452. +| #define HAVE_PATHCONF 1
  3453. +| #define HAVE_REALPATH 1
  3454. +| #define HAVE_RMDIR 1
  3455. +| #define HAVE_SELECT 1
  3456. +| #define HAVE_SOCKET 1
  3457. +| #define HAVE_STRCASECMP 1
  3458. +| #define HAVE_STRCHR 1
  3459. +| #define HAVE_STRDUP 1
  3460. +| #define HAVE_STRERROR 1
  3461. +| #define HAVE_STRRCHR 1
  3462. +| #define HAVE_STRTOL 1
  3463. +| #define HAVE_STRTOUL 1
  3464. +| #define HAVE_SIGPROCMASK 1
  3465. +| #define SIZEOF_SHORT 2
  3466. +| /* end confdefs.h. */
  3467. +| #include <stdio.h>
  3468. +| #ifdef HAVE_SYS_TYPES_H
  3469. +| # include <sys/types.h>
  3470. +| #endif
  3471. +| #ifdef HAVE_SYS_STAT_H
  3472. +| # include <sys/stat.h>
  3473. +| #endif
  3474. +| #ifdef STDC_HEADERS
  3475. +| # include <stdlib.h>
  3476. +| # include <stddef.h>
  3477. +| #else
  3478. +| # ifdef HAVE_STDLIB_H
  3479. +| # include <stdlib.h>
  3480. +| # endif
  3481. +| #endif
  3482. +| #ifdef HAVE_STRING_H
  3483. +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  3484. +| # include <memory.h>
  3485. +| # endif
  3486. +| # include <string.h>
  3487. +| #endif
  3488. +| #ifdef HAVE_STRINGS_H
  3489. +| # include <strings.h>
  3490. +| #endif
  3491. +| #ifdef HAVE_INTTYPES_H
  3492. +| # include <inttypes.h>
  3493. +| #endif
  3494. +| #ifdef HAVE_STDINT_H
  3495. +| # include <stdint.h>
  3496. +| #endif
  3497. +| #ifdef HAVE_UNISTD_H
  3498. +| # include <unistd.h>
  3499. +| #endif
  3500. +| int
  3501. +| main ()
  3502. +| {
  3503. +| static int test_array [1 - 2 * !(((long int) (sizeof (int))) <= 1)];
  3504. +| test_array [0] = 0
  3505. +|
  3506. +| ;
  3507. +| return 0;
  3508. +| }
  3509. +configure:19895: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  3510. +conftest.c: In function 'main':
  3511. +conftest.c:149:12: error: size of array 'test_array' is negative
  3512. +configure:19895: $? = 1
  3513. +configure: failed program was:
  3514. +| /* confdefs.h */
  3515. +| #define PACKAGE_NAME "linux nfs-utils"
  3516. +| #define PACKAGE_TARNAME "nfs-utils"
  3517. +| #define PACKAGE_VERSION "1.2.3"
  3518. +| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
  3519. +| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
  3520. +| #define PACKAGE_URL ""
  3521. +| #define PACKAGE "nfs-utils"
  3522. +| #define VERSION "1.2.3"
  3523. +| #define START_STATD "/usr/sbin/start-statd"
  3524. +| #define NFS3_SUPPORTED 1
  3525. +| #define NFS4_SUPPORTED 1
  3526. +| #define GSS_SUPPORTED 1
  3527. +| #define STDC_HEADERS 1
  3528. +| #define HAVE_SYS_TYPES_H 1
  3529. +| #define HAVE_SYS_STAT_H 1
  3530. +| #define HAVE_STDLIB_H 1
  3531. +| #define HAVE_STRING_H 1
  3532. +| #define HAVE_MEMORY_H 1
  3533. +| #define HAVE_STRINGS_H 1
  3534. +| #define HAVE_INTTYPES_H 1
  3535. +| #define HAVE_STDINT_H 1
  3536. +| #define HAVE_UNISTD_H 1
  3537. +| #define HAVE_LIBTIRPC 1
  3538. +| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
  3539. +| #define _FILE_OFFSET_BITS 64
  3540. +| #define HAVE_DLFCN_H 1
  3541. +| #define LT_OBJDIR ".libs/"
  3542. +| #define STDC_HEADERS 1
  3543. +| #define HAVE_EVENT_H 1
  3544. +| #define HAVE_NFSIDMAP_H 1
  3545. +| #define HAVE_NFS4_SET_DEBUG 1
  3546. +| #define HAVE_NFSIDMAP_H 1
  3547. +| #define HAVE_NFS4_SET_DEBUG 1
  3548. +| #define KRB5_VERSION 181
  3549. +| #define HAVE_KRB5 1
  3550. +| #define HAVE_DECL_AI_ADDRCONFIG 1
  3551. +| #define HAVE_ARPA_INET_H 1
  3552. +| #define HAVE_FCNTL_H 1
  3553. +| #define HAVE_LIBINTL_H 1
  3554. +| #define HAVE_LIMITS_H 1
  3555. +| #define HAVE_MALLOC_H 1
  3556. +| #define HAVE_MEMORY_H 1
  3557. +| #define HAVE_NETDB_H 1
  3558. +| #define HAVE_NETINET_IN_H 1
  3559. +| #define HAVE_PATHS_H 1
  3560. +| #define HAVE_STDLIB_H 1
  3561. +| #define HAVE_STRING_H 1
  3562. +| #define HAVE_SYS_FILE_H 1
  3563. +| #define HAVE_SYS_IOCTL_H 1
  3564. +| #define HAVE_SYS_MOUNT_H 1
  3565. +| #define HAVE_SYS_PARAM_H 1
  3566. +| #define HAVE_SYS_SOCKET_H 1
  3567. +| #define HAVE_SYS_TIME_H 1
  3568. +| #define HAVE_SYS_VFS_H 1
  3569. +| #define HAVE_SYSLOG_H 1
  3570. +| #define HAVE_UNISTD_H 1
  3571. +| #define HAVE_ET_COM_ERR_H 1
  3572. +| #define HAVE_IFADDRS_H 1
  3573. +| #define TIME_WITH_SYS_TIME 1
  3574. +| #define HAVE_ALLOCA_H 1
  3575. +| #define HAVE_ALLOCA 1
  3576. +| #define HAVE_DIRENT_H 1
  3577. +| #define CLOSEDIR_VOID 1
  3578. +| #define HAVE_FORK 1
  3579. +| #define HAVE_VFORK 1
  3580. +| #define HAVE_WORKING_VFORK 1
  3581. +| #define HAVE_WORKING_FORK 1
  3582. +| #define GETGROUPS_T gid_t
  3583. +| #define HAVE_GETMNTENT 1
  3584. +| #define HAVE_LSTAT_EMPTY_STRING_BUG 1
  3585. +| #define HAVE_SYS_SELECT_H 1
  3586. +| #define HAVE_SYS_SOCKET_H 1
  3587. +| #define SELECT_TYPE_ARG1 int
  3588. +| #define SELECT_TYPE_ARG234 (fd_set *)
  3589. +| #define SELECT_TYPE_ARG5 (struct timeval *)
  3590. +| #define RETSIGTYPE void
  3591. +| #define HAVE_STAT_EMPTY_STRING_BUG 1
  3592. +| #define HAVE_VPRINTF 1
  3593. +| #define HAVE_ALARM 1
  3594. +| #define HAVE_ATEXIT 1
  3595. +| #define HAVE_DUP2 1
  3596. +| #define HAVE_FDATASYNC 1
  3597. +| #define HAVE_FTRUNCATE 1
  3598. +| #define HAVE_GETCWD 1
  3599. +| #define HAVE_GETHOSTBYADDR 1
  3600. +| #define HAVE_GETHOSTBYNAME 1
  3601. +| #define HAVE_GETHOSTNAME 1
  3602. +| #define HAVE_GETMNTENT 1
  3603. +| #define HAVE_GETNAMEINFO 1
  3604. +| #define HAVE_GETRPCBYNAME 1
  3605. +| #define HAVE_GETIFADDRS 1
  3606. +| #define HAVE_GETTIMEOFDAY 1
  3607. +| #define HAVE_HASMNTOPT 1
  3608. +| #define HAVE_INET_NTOA 1
  3609. +| #define HAVE_MEMSET 1
  3610. +| #define HAVE_MKDIR 1
  3611. +| #define HAVE_PATHCONF 1
  3612. +| #define HAVE_REALPATH 1
  3613. +| #define HAVE_RMDIR 1
  3614. +| #define HAVE_SELECT 1
  3615. +| #define HAVE_SOCKET 1
  3616. +| #define HAVE_STRCASECMP 1
  3617. +| #define HAVE_STRCHR 1
  3618. +| #define HAVE_STRDUP 1
  3619. +| #define HAVE_STRERROR 1
  3620. +| #define HAVE_STRRCHR 1
  3621. +| #define HAVE_STRTOL 1
  3622. +| #define HAVE_STRTOUL 1
  3623. +| #define HAVE_SIGPROCMASK 1
  3624. +| #define SIZEOF_SHORT 2
  3625. +| /* end confdefs.h. */
  3626. +| #include <stdio.h>
  3627. +| #ifdef HAVE_SYS_TYPES_H
  3628. +| # include <sys/types.h>
  3629. +| #endif
  3630. +| #ifdef HAVE_SYS_STAT_H
  3631. +| # include <sys/stat.h>
  3632. +| #endif
  3633. +| #ifdef STDC_HEADERS
  3634. +| # include <stdlib.h>
  3635. +| # include <stddef.h>
  3636. +| #else
  3637. +| # ifdef HAVE_STDLIB_H
  3638. +| # include <stdlib.h>
  3639. +| # endif
  3640. +| #endif
  3641. +| #ifdef HAVE_STRING_H
  3642. +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  3643. +| # include <memory.h>
  3644. +| # endif
  3645. +| # include <string.h>
  3646. +| #endif
  3647. +| #ifdef HAVE_STRINGS_H
  3648. +| # include <strings.h>
  3649. +| #endif
  3650. +| #ifdef HAVE_INTTYPES_H
  3651. +| # include <inttypes.h>
  3652. +| #endif
  3653. +| #ifdef HAVE_STDINT_H
  3654. +| # include <stdint.h>
  3655. +| #endif
  3656. +| #ifdef HAVE_UNISTD_H
  3657. +| # include <unistd.h>
  3658. +| #endif
  3659. +| int
  3660. +| main ()
  3661. +| {
  3662. +| static int test_array [1 - 2 * !(((long int) (sizeof (int))) <= 3)];
  3663. +| test_array [0] = 0
  3664. +|
  3665. +| ;
  3666. +| return 0;
  3667. +| }
  3668. +configure:19895: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  3669. +configure:19895: $? = 0
  3670. +configure:19895: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  3671. +configure:19895: $? = 0
  3672. +configure:19895: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  3673. +configure:19895: $? = 0
  3674. +configure:19910: result: 4
  3675. +configure:19924: checking size of long
  3676. +configure:19929: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  3677. +configure:19929: $? = 0
  3678. +configure:19929: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  3679. +conftest.c: In function 'main':
  3680. +conftest.c:150:12: error: size of array 'test_array' is negative
  3681. +configure:19929: $? = 1
  3682. +configure: failed program was:
  3683. +| /* confdefs.h */
  3684. +| #define PACKAGE_NAME "linux nfs-utils"
  3685. +| #define PACKAGE_TARNAME "nfs-utils"
  3686. +| #define PACKAGE_VERSION "1.2.3"
  3687. +| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
  3688. +| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
  3689. +| #define PACKAGE_URL ""
  3690. +| #define PACKAGE "nfs-utils"
  3691. +| #define VERSION "1.2.3"
  3692. +| #define START_STATD "/usr/sbin/start-statd"
  3693. +| #define NFS3_SUPPORTED 1
  3694. +| #define NFS4_SUPPORTED 1
  3695. +| #define GSS_SUPPORTED 1
  3696. +| #define STDC_HEADERS 1
  3697. +| #define HAVE_SYS_TYPES_H 1
  3698. +| #define HAVE_SYS_STAT_H 1
  3699. +| #define HAVE_STDLIB_H 1
  3700. +| #define HAVE_STRING_H 1
  3701. +| #define HAVE_MEMORY_H 1
  3702. +| #define HAVE_STRINGS_H 1
  3703. +| #define HAVE_INTTYPES_H 1
  3704. +| #define HAVE_STDINT_H 1
  3705. +| #define HAVE_UNISTD_H 1
  3706. +| #define HAVE_LIBTIRPC 1
  3707. +| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
  3708. +| #define _FILE_OFFSET_BITS 64
  3709. +| #define HAVE_DLFCN_H 1
  3710. +| #define LT_OBJDIR ".libs/"
  3711. +| #define STDC_HEADERS 1
  3712. +| #define HAVE_EVENT_H 1
  3713. +| #define HAVE_NFSIDMAP_H 1
  3714. +| #define HAVE_NFS4_SET_DEBUG 1
  3715. +| #define HAVE_NFSIDMAP_H 1
  3716. +| #define HAVE_NFS4_SET_DEBUG 1
  3717. +| #define KRB5_VERSION 181
  3718. +| #define HAVE_KRB5 1
  3719. +| #define HAVE_DECL_AI_ADDRCONFIG 1
  3720. +| #define HAVE_ARPA_INET_H 1
  3721. +| #define HAVE_FCNTL_H 1
  3722. +| #define HAVE_LIBINTL_H 1
  3723. +| #define HAVE_LIMITS_H 1
  3724. +| #define HAVE_MALLOC_H 1
  3725. +| #define HAVE_MEMORY_H 1
  3726. +| #define HAVE_NETDB_H 1
  3727. +| #define HAVE_NETINET_IN_H 1
  3728. +| #define HAVE_PATHS_H 1
  3729. +| #define HAVE_STDLIB_H 1
  3730. +| #define HAVE_STRING_H 1
  3731. +| #define HAVE_SYS_FILE_H 1
  3732. +| #define HAVE_SYS_IOCTL_H 1
  3733. +| #define HAVE_SYS_MOUNT_H 1
  3734. +| #define HAVE_SYS_PARAM_H 1
  3735. +| #define HAVE_SYS_SOCKET_H 1
  3736. +| #define HAVE_SYS_TIME_H 1
  3737. +| #define HAVE_SYS_VFS_H 1
  3738. +| #define HAVE_SYSLOG_H 1
  3739. +| #define HAVE_UNISTD_H 1
  3740. +| #define HAVE_ET_COM_ERR_H 1
  3741. +| #define HAVE_IFADDRS_H 1
  3742. +| #define TIME_WITH_SYS_TIME 1
  3743. +| #define HAVE_ALLOCA_H 1
  3744. +| #define HAVE_ALLOCA 1
  3745. +| #define HAVE_DIRENT_H 1
  3746. +| #define CLOSEDIR_VOID 1
  3747. +| #define HAVE_FORK 1
  3748. +| #define HAVE_VFORK 1
  3749. +| #define HAVE_WORKING_VFORK 1
  3750. +| #define HAVE_WORKING_FORK 1
  3751. +| #define GETGROUPS_T gid_t
  3752. +| #define HAVE_GETMNTENT 1
  3753. +| #define HAVE_LSTAT_EMPTY_STRING_BUG 1
  3754. +| #define HAVE_SYS_SELECT_H 1
  3755. +| #define HAVE_SYS_SOCKET_H 1
  3756. +| #define SELECT_TYPE_ARG1 int
  3757. +| #define SELECT_TYPE_ARG234 (fd_set *)
  3758. +| #define SELECT_TYPE_ARG5 (struct timeval *)
  3759. +| #define RETSIGTYPE void
  3760. +| #define HAVE_STAT_EMPTY_STRING_BUG 1
  3761. +| #define HAVE_VPRINTF 1
  3762. +| #define HAVE_ALARM 1
  3763. +| #define HAVE_ATEXIT 1
  3764. +| #define HAVE_DUP2 1
  3765. +| #define HAVE_FDATASYNC 1
  3766. +| #define HAVE_FTRUNCATE 1
  3767. +| #define HAVE_GETCWD 1
  3768. +| #define HAVE_GETHOSTBYADDR 1
  3769. +| #define HAVE_GETHOSTBYNAME 1
  3770. +| #define HAVE_GETHOSTNAME 1
  3771. +| #define HAVE_GETMNTENT 1
  3772. +| #define HAVE_GETNAMEINFO 1
  3773. +| #define HAVE_GETRPCBYNAME 1
  3774. +| #define HAVE_GETIFADDRS 1
  3775. +| #define HAVE_GETTIMEOFDAY 1
  3776. +| #define HAVE_HASMNTOPT 1
  3777. +| #define HAVE_INET_NTOA 1
  3778. +| #define HAVE_MEMSET 1
  3779. +| #define HAVE_MKDIR 1
  3780. +| #define HAVE_PATHCONF 1
  3781. +| #define HAVE_REALPATH 1
  3782. +| #define HAVE_RMDIR 1
  3783. +| #define HAVE_SELECT 1
  3784. +| #define HAVE_SOCKET 1
  3785. +| #define HAVE_STRCASECMP 1
  3786. +| #define HAVE_STRCHR 1
  3787. +| #define HAVE_STRDUP 1
  3788. +| #define HAVE_STRERROR 1
  3789. +| #define HAVE_STRRCHR 1
  3790. +| #define HAVE_STRTOL 1
  3791. +| #define HAVE_STRTOUL 1
  3792. +| #define HAVE_SIGPROCMASK 1
  3793. +| #define SIZEOF_SHORT 2
  3794. +| #define SIZEOF_INT 4
  3795. +| /* end confdefs.h. */
  3796. +| #include <stdio.h>
  3797. +| #ifdef HAVE_SYS_TYPES_H
  3798. +| # include <sys/types.h>
  3799. +| #endif
  3800. +| #ifdef HAVE_SYS_STAT_H
  3801. +| # include <sys/stat.h>
  3802. +| #endif
  3803. +| #ifdef STDC_HEADERS
  3804. +| # include <stdlib.h>
  3805. +| # include <stddef.h>
  3806. +| #else
  3807. +| # ifdef HAVE_STDLIB_H
  3808. +| # include <stdlib.h>
  3809. +| # endif
  3810. +| #endif
  3811. +| #ifdef HAVE_STRING_H
  3812. +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  3813. +| # include <memory.h>
  3814. +| # endif
  3815. +| # include <string.h>
  3816. +| #endif
  3817. +| #ifdef HAVE_STRINGS_H
  3818. +| # include <strings.h>
  3819. +| #endif
  3820. +| #ifdef HAVE_INTTYPES_H
  3821. +| # include <inttypes.h>
  3822. +| #endif
  3823. +| #ifdef HAVE_STDINT_H
  3824. +| # include <stdint.h>
  3825. +| #endif
  3826. +| #ifdef HAVE_UNISTD_H
  3827. +| # include <unistd.h>
  3828. +| #endif
  3829. +| int
  3830. +| main ()
  3831. +| {
  3832. +| static int test_array [1 - 2 * !(((long int) (sizeof (long))) <= 0)];
  3833. +| test_array [0] = 0
  3834. +|
  3835. +| ;
  3836. +| return 0;
  3837. +| }
  3838. +configure:19929: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  3839. +conftest.c: In function 'main':
  3840. +conftest.c:150:12: error: size of array 'test_array' is negative
  3841. +configure:19929: $? = 1
  3842. +configure: failed program was:
  3843. +| /* confdefs.h */
  3844. +| #define PACKAGE_NAME "linux nfs-utils"
  3845. +| #define PACKAGE_TARNAME "nfs-utils"
  3846. +| #define PACKAGE_VERSION "1.2.3"
  3847. +| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
  3848. +| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
  3849. +| #define PACKAGE_URL ""
  3850. +| #define PACKAGE "nfs-utils"
  3851. +| #define VERSION "1.2.3"
  3852. +| #define START_STATD "/usr/sbin/start-statd"
  3853. +| #define NFS3_SUPPORTED 1
  3854. +| #define NFS4_SUPPORTED 1
  3855. +| #define GSS_SUPPORTED 1
  3856. +| #define STDC_HEADERS 1
  3857. +| #define HAVE_SYS_TYPES_H 1
  3858. +| #define HAVE_SYS_STAT_H 1
  3859. +| #define HAVE_STDLIB_H 1
  3860. +| #define HAVE_STRING_H 1
  3861. +| #define HAVE_MEMORY_H 1
  3862. +| #define HAVE_STRINGS_H 1
  3863. +| #define HAVE_INTTYPES_H 1
  3864. +| #define HAVE_STDINT_H 1
  3865. +| #define HAVE_UNISTD_H 1
  3866. +| #define HAVE_LIBTIRPC 1
  3867. +| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
  3868. +| #define _FILE_OFFSET_BITS 64
  3869. +| #define HAVE_DLFCN_H 1
  3870. +| #define LT_OBJDIR ".libs/"
  3871. +| #define STDC_HEADERS 1
  3872. +| #define HAVE_EVENT_H 1
  3873. +| #define HAVE_NFSIDMAP_H 1
  3874. +| #define HAVE_NFS4_SET_DEBUG 1
  3875. +| #define HAVE_NFSIDMAP_H 1
  3876. +| #define HAVE_NFS4_SET_DEBUG 1
  3877. +| #define KRB5_VERSION 181
  3878. +| #define HAVE_KRB5 1
  3879. +| #define HAVE_DECL_AI_ADDRCONFIG 1
  3880. +| #define HAVE_ARPA_INET_H 1
  3881. +| #define HAVE_FCNTL_H 1
  3882. +| #define HAVE_LIBINTL_H 1
  3883. +| #define HAVE_LIMITS_H 1
  3884. +| #define HAVE_MALLOC_H 1
  3885. +| #define HAVE_MEMORY_H 1
  3886. +| #define HAVE_NETDB_H 1
  3887. +| #define HAVE_NETINET_IN_H 1
  3888. +| #define HAVE_PATHS_H 1
  3889. +| #define HAVE_STDLIB_H 1
  3890. +| #define HAVE_STRING_H 1
  3891. +| #define HAVE_SYS_FILE_H 1
  3892. +| #define HAVE_SYS_IOCTL_H 1
  3893. +| #define HAVE_SYS_MOUNT_H 1
  3894. +| #define HAVE_SYS_PARAM_H 1
  3895. +| #define HAVE_SYS_SOCKET_H 1
  3896. +| #define HAVE_SYS_TIME_H 1
  3897. +| #define HAVE_SYS_VFS_H 1
  3898. +| #define HAVE_SYSLOG_H 1
  3899. +| #define HAVE_UNISTD_H 1
  3900. +| #define HAVE_ET_COM_ERR_H 1
  3901. +| #define HAVE_IFADDRS_H 1
  3902. +| #define TIME_WITH_SYS_TIME 1
  3903. +| #define HAVE_ALLOCA_H 1
  3904. +| #define HAVE_ALLOCA 1
  3905. +| #define HAVE_DIRENT_H 1
  3906. +| #define CLOSEDIR_VOID 1
  3907. +| #define HAVE_FORK 1
  3908. +| #define HAVE_VFORK 1
  3909. +| #define HAVE_WORKING_VFORK 1
  3910. +| #define HAVE_WORKING_FORK 1
  3911. +| #define GETGROUPS_T gid_t
  3912. +| #define HAVE_GETMNTENT 1
  3913. +| #define HAVE_LSTAT_EMPTY_STRING_BUG 1
  3914. +| #define HAVE_SYS_SELECT_H 1
  3915. +| #define HAVE_SYS_SOCKET_H 1
  3916. +| #define SELECT_TYPE_ARG1 int
  3917. +| #define SELECT_TYPE_ARG234 (fd_set *)
  3918. +| #define SELECT_TYPE_ARG5 (struct timeval *)
  3919. +| #define RETSIGTYPE void
  3920. +| #define HAVE_STAT_EMPTY_STRING_BUG 1
  3921. +| #define HAVE_VPRINTF 1
  3922. +| #define HAVE_ALARM 1
  3923. +| #define HAVE_ATEXIT 1
  3924. +| #define HAVE_DUP2 1
  3925. +| #define HAVE_FDATASYNC 1
  3926. +| #define HAVE_FTRUNCATE 1
  3927. +| #define HAVE_GETCWD 1
  3928. +| #define HAVE_GETHOSTBYADDR 1
  3929. +| #define HAVE_GETHOSTBYNAME 1
  3930. +| #define HAVE_GETHOSTNAME 1
  3931. +| #define HAVE_GETMNTENT 1
  3932. +| #define HAVE_GETNAMEINFO 1
  3933. +| #define HAVE_GETRPCBYNAME 1
  3934. +| #define HAVE_GETIFADDRS 1
  3935. +| #define HAVE_GETTIMEOFDAY 1
  3936. +| #define HAVE_HASMNTOPT 1
  3937. +| #define HAVE_INET_NTOA 1
  3938. +| #define HAVE_MEMSET 1
  3939. +| #define HAVE_MKDIR 1
  3940. +| #define HAVE_PATHCONF 1
  3941. +| #define HAVE_REALPATH 1
  3942. +| #define HAVE_RMDIR 1
  3943. +| #define HAVE_SELECT 1
  3944. +| #define HAVE_SOCKET 1
  3945. +| #define HAVE_STRCASECMP 1
  3946. +| #define HAVE_STRCHR 1
  3947. +| #define HAVE_STRDUP 1
  3948. +| #define HAVE_STRERROR 1
  3949. +| #define HAVE_STRRCHR 1
  3950. +| #define HAVE_STRTOL 1
  3951. +| #define HAVE_STRTOUL 1
  3952. +| #define HAVE_SIGPROCMASK 1
  3953. +| #define SIZEOF_SHORT 2
  3954. +| #define SIZEOF_INT 4
  3955. +| /* end confdefs.h. */
  3956. +| #include <stdio.h>
  3957. +| #ifdef HAVE_SYS_TYPES_H
  3958. +| # include <sys/types.h>
  3959. +| #endif
  3960. +| #ifdef HAVE_SYS_STAT_H
  3961. +| # include <sys/stat.h>
  3962. +| #endif
  3963. +| #ifdef STDC_HEADERS
  3964. +| # include <stdlib.h>
  3965. +| # include <stddef.h>
  3966. +| #else
  3967. +| # ifdef HAVE_STDLIB_H
  3968. +| # include <stdlib.h>
  3969. +| # endif
  3970. +| #endif
  3971. +| #ifdef HAVE_STRING_H
  3972. +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  3973. +| # include <memory.h>
  3974. +| # endif
  3975. +| # include <string.h>
  3976. +| #endif
  3977. +| #ifdef HAVE_STRINGS_H
  3978. +| # include <strings.h>
  3979. +| #endif
  3980. +| #ifdef HAVE_INTTYPES_H
  3981. +| # include <inttypes.h>
  3982. +| #endif
  3983. +| #ifdef HAVE_STDINT_H
  3984. +| # include <stdint.h>
  3985. +| #endif
  3986. +| #ifdef HAVE_UNISTD_H
  3987. +| # include <unistd.h>
  3988. +| #endif
  3989. +| int
  3990. +| main ()
  3991. +| {
  3992. +| static int test_array [1 - 2 * !(((long int) (sizeof (long))) <= 1)];
  3993. +| test_array [0] = 0
  3994. +|
  3995. +| ;
  3996. +| return 0;
  3997. +| }
  3998. +configure:19929: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  3999. +conftest.c: In function 'main':
  4000. +conftest.c:150:12: error: size of array 'test_array' is negative
  4001. +configure:19929: $? = 1
  4002. +configure: failed program was:
  4003. +| /* confdefs.h */
  4004. +| #define PACKAGE_NAME "linux nfs-utils"
  4005. +| #define PACKAGE_TARNAME "nfs-utils"
  4006. +| #define PACKAGE_VERSION "1.2.3"
  4007. +| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
  4008. +| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
  4009. +| #define PACKAGE_URL ""
  4010. +| #define PACKAGE "nfs-utils"
  4011. +| #define VERSION "1.2.3"
  4012. +| #define START_STATD "/usr/sbin/start-statd"
  4013. +| #define NFS3_SUPPORTED 1
  4014. +| #define NFS4_SUPPORTED 1
  4015. +| #define GSS_SUPPORTED 1
  4016. +| #define STDC_HEADERS 1
  4017. +| #define HAVE_SYS_TYPES_H 1
  4018. +| #define HAVE_SYS_STAT_H 1
  4019. +| #define HAVE_STDLIB_H 1
  4020. +| #define HAVE_STRING_H 1
  4021. +| #define HAVE_MEMORY_H 1
  4022. +| #define HAVE_STRINGS_H 1
  4023. +| #define HAVE_INTTYPES_H 1
  4024. +| #define HAVE_STDINT_H 1
  4025. +| #define HAVE_UNISTD_H 1
  4026. +| #define HAVE_LIBTIRPC 1
  4027. +| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
  4028. +| #define _FILE_OFFSET_BITS 64
  4029. +| #define HAVE_DLFCN_H 1
  4030. +| #define LT_OBJDIR ".libs/"
  4031. +| #define STDC_HEADERS 1
  4032. +| #define HAVE_EVENT_H 1
  4033. +| #define HAVE_NFSIDMAP_H 1
  4034. +| #define HAVE_NFS4_SET_DEBUG 1
  4035. +| #define HAVE_NFSIDMAP_H 1
  4036. +| #define HAVE_NFS4_SET_DEBUG 1
  4037. +| #define KRB5_VERSION 181
  4038. +| #define HAVE_KRB5 1
  4039. +| #define HAVE_DECL_AI_ADDRCONFIG 1
  4040. +| #define HAVE_ARPA_INET_H 1
  4041. +| #define HAVE_FCNTL_H 1
  4042. +| #define HAVE_LIBINTL_H 1
  4043. +| #define HAVE_LIMITS_H 1
  4044. +| #define HAVE_MALLOC_H 1
  4045. +| #define HAVE_MEMORY_H 1
  4046. +| #define HAVE_NETDB_H 1
  4047. +| #define HAVE_NETINET_IN_H 1
  4048. +| #define HAVE_PATHS_H 1
  4049. +| #define HAVE_STDLIB_H 1
  4050. +| #define HAVE_STRING_H 1
  4051. +| #define HAVE_SYS_FILE_H 1
  4052. +| #define HAVE_SYS_IOCTL_H 1
  4053. +| #define HAVE_SYS_MOUNT_H 1
  4054. +| #define HAVE_SYS_PARAM_H 1
  4055. +| #define HAVE_SYS_SOCKET_H 1
  4056. +| #define HAVE_SYS_TIME_H 1
  4057. +| #define HAVE_SYS_VFS_H 1
  4058. +| #define HAVE_SYSLOG_H 1
  4059. +| #define HAVE_UNISTD_H 1
  4060. +| #define HAVE_ET_COM_ERR_H 1
  4061. +| #define HAVE_IFADDRS_H 1
  4062. +| #define TIME_WITH_SYS_TIME 1
  4063. +| #define HAVE_ALLOCA_H 1
  4064. +| #define HAVE_ALLOCA 1
  4065. +| #define HAVE_DIRENT_H 1
  4066. +| #define CLOSEDIR_VOID 1
  4067. +| #define HAVE_FORK 1
  4068. +| #define HAVE_VFORK 1
  4069. +| #define HAVE_WORKING_VFORK 1
  4070. +| #define HAVE_WORKING_FORK 1
  4071. +| #define GETGROUPS_T gid_t
  4072. +| #define HAVE_GETMNTENT 1
  4073. +| #define HAVE_LSTAT_EMPTY_STRING_BUG 1
  4074. +| #define HAVE_SYS_SELECT_H 1
  4075. +| #define HAVE_SYS_SOCKET_H 1
  4076. +| #define SELECT_TYPE_ARG1 int
  4077. +| #define SELECT_TYPE_ARG234 (fd_set *)
  4078. +| #define SELECT_TYPE_ARG5 (struct timeval *)
  4079. +| #define RETSIGTYPE void
  4080. +| #define HAVE_STAT_EMPTY_STRING_BUG 1
  4081. +| #define HAVE_VPRINTF 1
  4082. +| #define HAVE_ALARM 1
  4083. +| #define HAVE_ATEXIT 1
  4084. +| #define HAVE_DUP2 1
  4085. +| #define HAVE_FDATASYNC 1
  4086. +| #define HAVE_FTRUNCATE 1
  4087. +| #define HAVE_GETCWD 1
  4088. +| #define HAVE_GETHOSTBYADDR 1
  4089. +| #define HAVE_GETHOSTBYNAME 1
  4090. +| #define HAVE_GETHOSTNAME 1
  4091. +| #define HAVE_GETMNTENT 1
  4092. +| #define HAVE_GETNAMEINFO 1
  4093. +| #define HAVE_GETRPCBYNAME 1
  4094. +| #define HAVE_GETIFADDRS 1
  4095. +| #define HAVE_GETTIMEOFDAY 1
  4096. +| #define HAVE_HASMNTOPT 1
  4097. +| #define HAVE_INET_NTOA 1
  4098. +| #define HAVE_MEMSET 1
  4099. +| #define HAVE_MKDIR 1
  4100. +| #define HAVE_PATHCONF 1
  4101. +| #define HAVE_REALPATH 1
  4102. +| #define HAVE_RMDIR 1
  4103. +| #define HAVE_SELECT 1
  4104. +| #define HAVE_SOCKET 1
  4105. +| #define HAVE_STRCASECMP 1
  4106. +| #define HAVE_STRCHR 1
  4107. +| #define HAVE_STRDUP 1
  4108. +| #define HAVE_STRERROR 1
  4109. +| #define HAVE_STRRCHR 1
  4110. +| #define HAVE_STRTOL 1
  4111. +| #define HAVE_STRTOUL 1
  4112. +| #define HAVE_SIGPROCMASK 1
  4113. +| #define SIZEOF_SHORT 2
  4114. +| #define SIZEOF_INT 4
  4115. +| /* end confdefs.h. */
  4116. +| #include <stdio.h>
  4117. +| #ifdef HAVE_SYS_TYPES_H
  4118. +| # include <sys/types.h>
  4119. +| #endif
  4120. +| #ifdef HAVE_SYS_STAT_H
  4121. +| # include <sys/stat.h>
  4122. +| #endif
  4123. +| #ifdef STDC_HEADERS
  4124. +| # include <stdlib.h>
  4125. +| # include <stddef.h>
  4126. +| #else
  4127. +| # ifdef HAVE_STDLIB_H
  4128. +| # include <stdlib.h>
  4129. +| # endif
  4130. +| #endif
  4131. +| #ifdef HAVE_STRING_H
  4132. +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  4133. +| # include <memory.h>
  4134. +| # endif
  4135. +| # include <string.h>
  4136. +| #endif
  4137. +| #ifdef HAVE_STRINGS_H
  4138. +| # include <strings.h>
  4139. +| #endif
  4140. +| #ifdef HAVE_INTTYPES_H
  4141. +| # include <inttypes.h>
  4142. +| #endif
  4143. +| #ifdef HAVE_STDINT_H
  4144. +| # include <stdint.h>
  4145. +| #endif
  4146. +| #ifdef HAVE_UNISTD_H
  4147. +| # include <unistd.h>
  4148. +| #endif
  4149. +| int
  4150. +| main ()
  4151. +| {
  4152. +| static int test_array [1 - 2 * !(((long int) (sizeof (long))) <= 3)];
  4153. +| test_array [0] = 0
  4154. +|
  4155. +| ;
  4156. +| return 0;
  4157. +| }
  4158. +configure:19929: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  4159. +configure:19929: $? = 0
  4160. +configure:19929: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  4161. +configure:19929: $? = 0
  4162. +configure:19929: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  4163. +configure:19929: $? = 0
  4164. +configure:19944: result: 4
  4165. +configure:19958: checking size of size_t
  4166. +configure:19963: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  4167. +configure:19963: $? = 0
  4168. +configure:19963: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  4169. +conftest.c: In function 'main':
  4170. +conftest.c:151:12: error: size of array 'test_array' is negative
  4171. +configure:19963: $? = 1
  4172. +configure: failed program was:
  4173. +| /* confdefs.h */
  4174. +| #define PACKAGE_NAME "linux nfs-utils"
  4175. +| #define PACKAGE_TARNAME "nfs-utils"
  4176. +| #define PACKAGE_VERSION "1.2.3"
  4177. +| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
  4178. +| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
  4179. +| #define PACKAGE_URL ""
  4180. +| #define PACKAGE "nfs-utils"
  4181. +| #define VERSION "1.2.3"
  4182. +| #define START_STATD "/usr/sbin/start-statd"
  4183. +| #define NFS3_SUPPORTED 1
  4184. +| #define NFS4_SUPPORTED 1
  4185. +| #define GSS_SUPPORTED 1
  4186. +| #define STDC_HEADERS 1
  4187. +| #define HAVE_SYS_TYPES_H 1
  4188. +| #define HAVE_SYS_STAT_H 1
  4189. +| #define HAVE_STDLIB_H 1
  4190. +| #define HAVE_STRING_H 1
  4191. +| #define HAVE_MEMORY_H 1
  4192. +| #define HAVE_STRINGS_H 1
  4193. +| #define HAVE_INTTYPES_H 1
  4194. +| #define HAVE_STDINT_H 1
  4195. +| #define HAVE_UNISTD_H 1
  4196. +| #define HAVE_LIBTIRPC 1
  4197. +| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
  4198. +| #define _FILE_OFFSET_BITS 64
  4199. +| #define HAVE_DLFCN_H 1
  4200. +| #define LT_OBJDIR ".libs/"
  4201. +| #define STDC_HEADERS 1
  4202. +| #define HAVE_EVENT_H 1
  4203. +| #define HAVE_NFSIDMAP_H 1
  4204. +| #define HAVE_NFS4_SET_DEBUG 1
  4205. +| #define HAVE_NFSIDMAP_H 1
  4206. +| #define HAVE_NFS4_SET_DEBUG 1
  4207. +| #define KRB5_VERSION 181
  4208. +| #define HAVE_KRB5 1
  4209. +| #define HAVE_DECL_AI_ADDRCONFIG 1
  4210. +| #define HAVE_ARPA_INET_H 1
  4211. +| #define HAVE_FCNTL_H 1
  4212. +| #define HAVE_LIBINTL_H 1
  4213. +| #define HAVE_LIMITS_H 1
  4214. +| #define HAVE_MALLOC_H 1
  4215. +| #define HAVE_MEMORY_H 1
  4216. +| #define HAVE_NETDB_H 1
  4217. +| #define HAVE_NETINET_IN_H 1
  4218. +| #define HAVE_PATHS_H 1
  4219. +| #define HAVE_STDLIB_H 1
  4220. +| #define HAVE_STRING_H 1
  4221. +| #define HAVE_SYS_FILE_H 1
  4222. +| #define HAVE_SYS_IOCTL_H 1
  4223. +| #define HAVE_SYS_MOUNT_H 1
  4224. +| #define HAVE_SYS_PARAM_H 1
  4225. +| #define HAVE_SYS_SOCKET_H 1
  4226. +| #define HAVE_SYS_TIME_H 1
  4227. +| #define HAVE_SYS_VFS_H 1
  4228. +| #define HAVE_SYSLOG_H 1
  4229. +| #define HAVE_UNISTD_H 1
  4230. +| #define HAVE_ET_COM_ERR_H 1
  4231. +| #define HAVE_IFADDRS_H 1
  4232. +| #define TIME_WITH_SYS_TIME 1
  4233. +| #define HAVE_ALLOCA_H 1
  4234. +| #define HAVE_ALLOCA 1
  4235. +| #define HAVE_DIRENT_H 1
  4236. +| #define CLOSEDIR_VOID 1
  4237. +| #define HAVE_FORK 1
  4238. +| #define HAVE_VFORK 1
  4239. +| #define HAVE_WORKING_VFORK 1
  4240. +| #define HAVE_WORKING_FORK 1
  4241. +| #define GETGROUPS_T gid_t
  4242. +| #define HAVE_GETMNTENT 1
  4243. +| #define HAVE_LSTAT_EMPTY_STRING_BUG 1
  4244. +| #define HAVE_SYS_SELECT_H 1
  4245. +| #define HAVE_SYS_SOCKET_H 1
  4246. +| #define SELECT_TYPE_ARG1 int
  4247. +| #define SELECT_TYPE_ARG234 (fd_set *)
  4248. +| #define SELECT_TYPE_ARG5 (struct timeval *)
  4249. +| #define RETSIGTYPE void
  4250. +| #define HAVE_STAT_EMPTY_STRING_BUG 1
  4251. +| #define HAVE_VPRINTF 1
  4252. +| #define HAVE_ALARM 1
  4253. +| #define HAVE_ATEXIT 1
  4254. +| #define HAVE_DUP2 1
  4255. +| #define HAVE_FDATASYNC 1
  4256. +| #define HAVE_FTRUNCATE 1
  4257. +| #define HAVE_GETCWD 1
  4258. +| #define HAVE_GETHOSTBYADDR 1
  4259. +| #define HAVE_GETHOSTBYNAME 1
  4260. +| #define HAVE_GETHOSTNAME 1
  4261. +| #define HAVE_GETMNTENT 1
  4262. +| #define HAVE_GETNAMEINFO 1
  4263. +| #define HAVE_GETRPCBYNAME 1
  4264. +| #define HAVE_GETIFADDRS 1
  4265. +| #define HAVE_GETTIMEOFDAY 1
  4266. +| #define HAVE_HASMNTOPT 1
  4267. +| #define HAVE_INET_NTOA 1
  4268. +| #define HAVE_MEMSET 1
  4269. +| #define HAVE_MKDIR 1
  4270. +| #define HAVE_PATHCONF 1
  4271. +| #define HAVE_REALPATH 1
  4272. +| #define HAVE_RMDIR 1
  4273. +| #define HAVE_SELECT 1
  4274. +| #define HAVE_SOCKET 1
  4275. +| #define HAVE_STRCASECMP 1
  4276. +| #define HAVE_STRCHR 1
  4277. +| #define HAVE_STRDUP 1
  4278. +| #define HAVE_STRERROR 1
  4279. +| #define HAVE_STRRCHR 1
  4280. +| #define HAVE_STRTOL 1
  4281. +| #define HAVE_STRTOUL 1
  4282. +| #define HAVE_SIGPROCMASK 1
  4283. +| #define SIZEOF_SHORT 2
  4284. +| #define SIZEOF_INT 4
  4285. +| #define SIZEOF_LONG 4
  4286. +| /* end confdefs.h. */
  4287. +| #include <stdio.h>
  4288. +| #ifdef HAVE_SYS_TYPES_H
  4289. +| # include <sys/types.h>
  4290. +| #endif
  4291. +| #ifdef HAVE_SYS_STAT_H
  4292. +| # include <sys/stat.h>
  4293. +| #endif
  4294. +| #ifdef STDC_HEADERS
  4295. +| # include <stdlib.h>
  4296. +| # include <stddef.h>
  4297. +| #else
  4298. +| # ifdef HAVE_STDLIB_H
  4299. +| # include <stdlib.h>
  4300. +| # endif
  4301. +| #endif
  4302. +| #ifdef HAVE_STRING_H
  4303. +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  4304. +| # include <memory.h>
  4305. +| # endif
  4306. +| # include <string.h>
  4307. +| #endif
  4308. +| #ifdef HAVE_STRINGS_H
  4309. +| # include <strings.h>
  4310. +| #endif
  4311. +| #ifdef HAVE_INTTYPES_H
  4312. +| # include <inttypes.h>
  4313. +| #endif
  4314. +| #ifdef HAVE_STDINT_H
  4315. +| # include <stdint.h>
  4316. +| #endif
  4317. +| #ifdef HAVE_UNISTD_H
  4318. +| # include <unistd.h>
  4319. +| #endif
  4320. +| int
  4321. +| main ()
  4322. +| {
  4323. +| static int test_array [1 - 2 * !(((long int) (sizeof (size_t))) <= 0)];
  4324. +| test_array [0] = 0
  4325. +|
  4326. +| ;
  4327. +| return 0;
  4328. +| }
  4329. +configure:19963: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  4330. +conftest.c: In function 'main':
  4331. +conftest.c:151:12: error: size of array 'test_array' is negative
  4332. +configure:19963: $? = 1
  4333. +configure: failed program was:
  4334. +| /* confdefs.h */
  4335. +| #define PACKAGE_NAME "linux nfs-utils"
  4336. +| #define PACKAGE_TARNAME "nfs-utils"
  4337. +| #define PACKAGE_VERSION "1.2.3"
  4338. +| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
  4339. +| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
  4340. +| #define PACKAGE_URL ""
  4341. +| #define PACKAGE "nfs-utils"
  4342. +| #define VERSION "1.2.3"
  4343. +| #define START_STATD "/usr/sbin/start-statd"
  4344. +| #define NFS3_SUPPORTED 1
  4345. +| #define NFS4_SUPPORTED 1
  4346. +| #define GSS_SUPPORTED 1
  4347. +| #define STDC_HEADERS 1
  4348. +| #define HAVE_SYS_TYPES_H 1
  4349. +| #define HAVE_SYS_STAT_H 1
  4350. +| #define HAVE_STDLIB_H 1
  4351. +| #define HAVE_STRING_H 1
  4352. +| #define HAVE_MEMORY_H 1
  4353. +| #define HAVE_STRINGS_H 1
  4354. +| #define HAVE_INTTYPES_H 1
  4355. +| #define HAVE_STDINT_H 1
  4356. +| #define HAVE_UNISTD_H 1
  4357. +| #define HAVE_LIBTIRPC 1
  4358. +| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
  4359. +| #define _FILE_OFFSET_BITS 64
  4360. +| #define HAVE_DLFCN_H 1
  4361. +| #define LT_OBJDIR ".libs/"
  4362. +| #define STDC_HEADERS 1
  4363. +| #define HAVE_EVENT_H 1
  4364. +| #define HAVE_NFSIDMAP_H 1
  4365. +| #define HAVE_NFS4_SET_DEBUG 1
  4366. +| #define HAVE_NFSIDMAP_H 1
  4367. +| #define HAVE_NFS4_SET_DEBUG 1
  4368. +| #define KRB5_VERSION 181
  4369. +| #define HAVE_KRB5 1
  4370. +| #define HAVE_DECL_AI_ADDRCONFIG 1
  4371. +| #define HAVE_ARPA_INET_H 1
  4372. +| #define HAVE_FCNTL_H 1
  4373. +| #define HAVE_LIBINTL_H 1
  4374. +| #define HAVE_LIMITS_H 1
  4375. +| #define HAVE_MALLOC_H 1
  4376. +| #define HAVE_MEMORY_H 1
  4377. +| #define HAVE_NETDB_H 1
  4378. +| #define HAVE_NETINET_IN_H 1
  4379. +| #define HAVE_PATHS_H 1
  4380. +| #define HAVE_STDLIB_H 1
  4381. +| #define HAVE_STRING_H 1
  4382. +| #define HAVE_SYS_FILE_H 1
  4383. +| #define HAVE_SYS_IOCTL_H 1
  4384. +| #define HAVE_SYS_MOUNT_H 1
  4385. +| #define HAVE_SYS_PARAM_H 1
  4386. +| #define HAVE_SYS_SOCKET_H 1
  4387. +| #define HAVE_SYS_TIME_H 1
  4388. +| #define HAVE_SYS_VFS_H 1
  4389. +| #define HAVE_SYSLOG_H 1
  4390. +| #define HAVE_UNISTD_H 1
  4391. +| #define HAVE_ET_COM_ERR_H 1
  4392. +| #define HAVE_IFADDRS_H 1
  4393. +| #define TIME_WITH_SYS_TIME 1
  4394. +| #define HAVE_ALLOCA_H 1
  4395. +| #define HAVE_ALLOCA 1
  4396. +| #define HAVE_DIRENT_H 1
  4397. +| #define CLOSEDIR_VOID 1
  4398. +| #define HAVE_FORK 1
  4399. +| #define HAVE_VFORK 1
  4400. +| #define HAVE_WORKING_VFORK 1
  4401. +| #define HAVE_WORKING_FORK 1
  4402. +| #define GETGROUPS_T gid_t
  4403. +| #define HAVE_GETMNTENT 1
  4404. +| #define HAVE_LSTAT_EMPTY_STRING_BUG 1
  4405. +| #define HAVE_SYS_SELECT_H 1
  4406. +| #define HAVE_SYS_SOCKET_H 1
  4407. +| #define SELECT_TYPE_ARG1 int
  4408. +| #define SELECT_TYPE_ARG234 (fd_set *)
  4409. +| #define SELECT_TYPE_ARG5 (struct timeval *)
  4410. +| #define RETSIGTYPE void
  4411. +| #define HAVE_STAT_EMPTY_STRING_BUG 1
  4412. +| #define HAVE_VPRINTF 1
  4413. +| #define HAVE_ALARM 1
  4414. +| #define HAVE_ATEXIT 1
  4415. +| #define HAVE_DUP2 1
  4416. +| #define HAVE_FDATASYNC 1
  4417. +| #define HAVE_FTRUNCATE 1
  4418. +| #define HAVE_GETCWD 1
  4419. +| #define HAVE_GETHOSTBYADDR 1
  4420. +| #define HAVE_GETHOSTBYNAME 1
  4421. +| #define HAVE_GETHOSTNAME 1
  4422. +| #define HAVE_GETMNTENT 1
  4423. +| #define HAVE_GETNAMEINFO 1
  4424. +| #define HAVE_GETRPCBYNAME 1
  4425. +| #define HAVE_GETIFADDRS 1
  4426. +| #define HAVE_GETTIMEOFDAY 1
  4427. +| #define HAVE_HASMNTOPT 1
  4428. +| #define HAVE_INET_NTOA 1
  4429. +| #define HAVE_MEMSET 1
  4430. +| #define HAVE_MKDIR 1
  4431. +| #define HAVE_PATHCONF 1
  4432. +| #define HAVE_REALPATH 1
  4433. +| #define HAVE_RMDIR 1
  4434. +| #define HAVE_SELECT 1
  4435. +| #define HAVE_SOCKET 1
  4436. +| #define HAVE_STRCASECMP 1
  4437. +| #define HAVE_STRCHR 1
  4438. +| #define HAVE_STRDUP 1
  4439. +| #define HAVE_STRERROR 1
  4440. +| #define HAVE_STRRCHR 1
  4441. +| #define HAVE_STRTOL 1
  4442. +| #define HAVE_STRTOUL 1
  4443. +| #define HAVE_SIGPROCMASK 1
  4444. +| #define SIZEOF_SHORT 2
  4445. +| #define SIZEOF_INT 4
  4446. +| #define SIZEOF_LONG 4
  4447. +| /* end confdefs.h. */
  4448. +| #include <stdio.h>
  4449. +| #ifdef HAVE_SYS_TYPES_H
  4450. +| # include <sys/types.h>
  4451. +| #endif
  4452. +| #ifdef HAVE_SYS_STAT_H
  4453. +| # include <sys/stat.h>
  4454. +| #endif
  4455. +| #ifdef STDC_HEADERS
  4456. +| # include <stdlib.h>
  4457. +| # include <stddef.h>
  4458. +| #else
  4459. +| # ifdef HAVE_STDLIB_H
  4460. +| # include <stdlib.h>
  4461. +| # endif
  4462. +| #endif
  4463. +| #ifdef HAVE_STRING_H
  4464. +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  4465. +| # include <memory.h>
  4466. +| # endif
  4467. +| # include <string.h>
  4468. +| #endif
  4469. +| #ifdef HAVE_STRINGS_H
  4470. +| # include <strings.h>
  4471. +| #endif
  4472. +| #ifdef HAVE_INTTYPES_H
  4473. +| # include <inttypes.h>
  4474. +| #endif
  4475. +| #ifdef HAVE_STDINT_H
  4476. +| # include <stdint.h>
  4477. +| #endif
  4478. +| #ifdef HAVE_UNISTD_H
  4479. +| # include <unistd.h>
  4480. +| #endif
  4481. +| int
  4482. +| main ()
  4483. +| {
  4484. +| static int test_array [1 - 2 * !(((long int) (sizeof (size_t))) <= 1)];
  4485. +| test_array [0] = 0
  4486. +|
  4487. +| ;
  4488. +| return 0;
  4489. +| }
  4490. +configure:19963: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  4491. +conftest.c: In function 'main':
  4492. +conftest.c:151:12: error: size of array 'test_array' is negative
  4493. +configure:19963: $? = 1
  4494. +configure: failed program was:
  4495. +| /* confdefs.h */
  4496. +| #define PACKAGE_NAME "linux nfs-utils"
  4497. +| #define PACKAGE_TARNAME "nfs-utils"
  4498. +| #define PACKAGE_VERSION "1.2.3"
  4499. +| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
  4500. +| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
  4501. +| #define PACKAGE_URL ""
  4502. +| #define PACKAGE "nfs-utils"
  4503. +| #define VERSION "1.2.3"
  4504. +| #define START_STATD "/usr/sbin/start-statd"
  4505. +| #define NFS3_SUPPORTED 1
  4506. +| #define NFS4_SUPPORTED 1
  4507. +| #define GSS_SUPPORTED 1
  4508. +| #define STDC_HEADERS 1
  4509. +| #define HAVE_SYS_TYPES_H 1
  4510. +| #define HAVE_SYS_STAT_H 1
  4511. +| #define HAVE_STDLIB_H 1
  4512. +| #define HAVE_STRING_H 1
  4513. +| #define HAVE_MEMORY_H 1
  4514. +| #define HAVE_STRINGS_H 1
  4515. +| #define HAVE_INTTYPES_H 1
  4516. +| #define HAVE_STDINT_H 1
  4517. +| #define HAVE_UNISTD_H 1
  4518. +| #define HAVE_LIBTIRPC 1
  4519. +| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
  4520. +| #define _FILE_OFFSET_BITS 64
  4521. +| #define HAVE_DLFCN_H 1
  4522. +| #define LT_OBJDIR ".libs/"
  4523. +| #define STDC_HEADERS 1
  4524. +| #define HAVE_EVENT_H 1
  4525. +| #define HAVE_NFSIDMAP_H 1
  4526. +| #define HAVE_NFS4_SET_DEBUG 1
  4527. +| #define HAVE_NFSIDMAP_H 1
  4528. +| #define HAVE_NFS4_SET_DEBUG 1
  4529. +| #define KRB5_VERSION 181
  4530. +| #define HAVE_KRB5 1
  4531. +| #define HAVE_DECL_AI_ADDRCONFIG 1
  4532. +| #define HAVE_ARPA_INET_H 1
  4533. +| #define HAVE_FCNTL_H 1
  4534. +| #define HAVE_LIBINTL_H 1
  4535. +| #define HAVE_LIMITS_H 1
  4536. +| #define HAVE_MALLOC_H 1
  4537. +| #define HAVE_MEMORY_H 1
  4538. +| #define HAVE_NETDB_H 1
  4539. +| #define HAVE_NETINET_IN_H 1
  4540. +| #define HAVE_PATHS_H 1
  4541. +| #define HAVE_STDLIB_H 1
  4542. +| #define HAVE_STRING_H 1
  4543. +| #define HAVE_SYS_FILE_H 1
  4544. +| #define HAVE_SYS_IOCTL_H 1
  4545. +| #define HAVE_SYS_MOUNT_H 1
  4546. +| #define HAVE_SYS_PARAM_H 1
  4547. +| #define HAVE_SYS_SOCKET_H 1
  4548. +| #define HAVE_SYS_TIME_H 1
  4549. +| #define HAVE_SYS_VFS_H 1
  4550. +| #define HAVE_SYSLOG_H 1
  4551. +| #define HAVE_UNISTD_H 1
  4552. +| #define HAVE_ET_COM_ERR_H 1
  4553. +| #define HAVE_IFADDRS_H 1
  4554. +| #define TIME_WITH_SYS_TIME 1
  4555. +| #define HAVE_ALLOCA_H 1
  4556. +| #define HAVE_ALLOCA 1
  4557. +| #define HAVE_DIRENT_H 1
  4558. +| #define CLOSEDIR_VOID 1
  4559. +| #define HAVE_FORK 1
  4560. +| #define HAVE_VFORK 1
  4561. +| #define HAVE_WORKING_VFORK 1
  4562. +| #define HAVE_WORKING_FORK 1
  4563. +| #define GETGROUPS_T gid_t
  4564. +| #define HAVE_GETMNTENT 1
  4565. +| #define HAVE_LSTAT_EMPTY_STRING_BUG 1
  4566. +| #define HAVE_SYS_SELECT_H 1
  4567. +| #define HAVE_SYS_SOCKET_H 1
  4568. +| #define SELECT_TYPE_ARG1 int
  4569. +| #define SELECT_TYPE_ARG234 (fd_set *)
  4570. +| #define SELECT_TYPE_ARG5 (struct timeval *)
  4571. +| #define RETSIGTYPE void
  4572. +| #define HAVE_STAT_EMPTY_STRING_BUG 1
  4573. +| #define HAVE_VPRINTF 1
  4574. +| #define HAVE_ALARM 1
  4575. +| #define HAVE_ATEXIT 1
  4576. +| #define HAVE_DUP2 1
  4577. +| #define HAVE_FDATASYNC 1
  4578. +| #define HAVE_FTRUNCATE 1
  4579. +| #define HAVE_GETCWD 1
  4580. +| #define HAVE_GETHOSTBYADDR 1
  4581. +| #define HAVE_GETHOSTBYNAME 1
  4582. +| #define HAVE_GETHOSTNAME 1
  4583. +| #define HAVE_GETMNTENT 1
  4584. +| #define HAVE_GETNAMEINFO 1
  4585. +| #define HAVE_GETRPCBYNAME 1
  4586. +| #define HAVE_GETIFADDRS 1
  4587. +| #define HAVE_GETTIMEOFDAY 1
  4588. +| #define HAVE_HASMNTOPT 1
  4589. +| #define HAVE_INET_NTOA 1
  4590. +| #define HAVE_MEMSET 1
  4591. +| #define HAVE_MKDIR 1
  4592. +| #define HAVE_PATHCONF 1
  4593. +| #define HAVE_REALPATH 1
  4594. +| #define HAVE_RMDIR 1
  4595. +| #define HAVE_SELECT 1
  4596. +| #define HAVE_SOCKET 1
  4597. +| #define HAVE_STRCASECMP 1
  4598. +| #define HAVE_STRCHR 1
  4599. +| #define HAVE_STRDUP 1
  4600. +| #define HAVE_STRERROR 1
  4601. +| #define HAVE_STRRCHR 1
  4602. +| #define HAVE_STRTOL 1
  4603. +| #define HAVE_STRTOUL 1
  4604. +| #define HAVE_SIGPROCMASK 1
  4605. +| #define SIZEOF_SHORT 2
  4606. +| #define SIZEOF_INT 4
  4607. +| #define SIZEOF_LONG 4
  4608. +| /* end confdefs.h. */
  4609. +| #include <stdio.h>
  4610. +| #ifdef HAVE_SYS_TYPES_H
  4611. +| # include <sys/types.h>
  4612. +| #endif
  4613. +| #ifdef HAVE_SYS_STAT_H
  4614. +| # include <sys/stat.h>
  4615. +| #endif
  4616. +| #ifdef STDC_HEADERS
  4617. +| # include <stdlib.h>
  4618. +| # include <stddef.h>
  4619. +| #else
  4620. +| # ifdef HAVE_STDLIB_H
  4621. +| # include <stdlib.h>
  4622. +| # endif
  4623. +| #endif
  4624. +| #ifdef HAVE_STRING_H
  4625. +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  4626. +| # include <memory.h>
  4627. +| # endif
  4628. +| # include <string.h>
  4629. +| #endif
  4630. +| #ifdef HAVE_STRINGS_H
  4631. +| # include <strings.h>
  4632. +| #endif
  4633. +| #ifdef HAVE_INTTYPES_H
  4634. +| # include <inttypes.h>
  4635. +| #endif
  4636. +| #ifdef HAVE_STDINT_H
  4637. +| # include <stdint.h>
  4638. +| #endif
  4639. +| #ifdef HAVE_UNISTD_H
  4640. +| # include <unistd.h>
  4641. +| #endif
  4642. +| int
  4643. +| main ()
  4644. +| {
  4645. +| static int test_array [1 - 2 * !(((long int) (sizeof (size_t))) <= 3)];
  4646. +| test_array [0] = 0
  4647. +|
  4648. +| ;
  4649. +| return 0;
  4650. +| }
  4651. +configure:19963: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  4652. +configure:19963: $? = 0
  4653. +configure:19963: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  4654. +configure:19963: $? = 0
  4655. +configure:19963: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  4656. +configure:19963: $? = 0
  4657. +configure:19978: result: 4
  4658. +configure:19992: checking size of socklen_t
  4659. +configure:19997: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  4660. +configure:19997: $? = 0
  4661. +configure:19997: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  4662. +conftest.c: In function 'main':
  4663. +conftest.c:152:12: error: size of array 'test_array' is negative
  4664. +configure:19997: $? = 1
  4665. +configure: failed program was:
  4666. +| /* confdefs.h */
  4667. +| #define PACKAGE_NAME "linux nfs-utils"
  4668. +| #define PACKAGE_TARNAME "nfs-utils"
  4669. +| #define PACKAGE_VERSION "1.2.3"
  4670. +| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
  4671. +| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
  4672. +| #define PACKAGE_URL ""
  4673. +| #define PACKAGE "nfs-utils"
  4674. +| #define VERSION "1.2.3"
  4675. +| #define START_STATD "/usr/sbin/start-statd"
  4676. +| #define NFS3_SUPPORTED 1
  4677. +| #define NFS4_SUPPORTED 1
  4678. +| #define GSS_SUPPORTED 1
  4679. +| #define STDC_HEADERS 1
  4680. +| #define HAVE_SYS_TYPES_H 1
  4681. +| #define HAVE_SYS_STAT_H 1
  4682. +| #define HAVE_STDLIB_H 1
  4683. +| #define HAVE_STRING_H 1
  4684. +| #define HAVE_MEMORY_H 1
  4685. +| #define HAVE_STRINGS_H 1
  4686. +| #define HAVE_INTTYPES_H 1
  4687. +| #define HAVE_STDINT_H 1
  4688. +| #define HAVE_UNISTD_H 1
  4689. +| #define HAVE_LIBTIRPC 1
  4690. +| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
  4691. +| #define _FILE_OFFSET_BITS 64
  4692. +| #define HAVE_DLFCN_H 1
  4693. +| #define LT_OBJDIR ".libs/"
  4694. +| #define STDC_HEADERS 1
  4695. +| #define HAVE_EVENT_H 1
  4696. +| #define HAVE_NFSIDMAP_H 1
  4697. +| #define HAVE_NFS4_SET_DEBUG 1
  4698. +| #define HAVE_NFSIDMAP_H 1
  4699. +| #define HAVE_NFS4_SET_DEBUG 1
  4700. +| #define KRB5_VERSION 181
  4701. +| #define HAVE_KRB5 1
  4702. +| #define HAVE_DECL_AI_ADDRCONFIG 1
  4703. +| #define HAVE_ARPA_INET_H 1
  4704. +| #define HAVE_FCNTL_H 1
  4705. +| #define HAVE_LIBINTL_H 1
  4706. +| #define HAVE_LIMITS_H 1
  4707. +| #define HAVE_MALLOC_H 1
  4708. +| #define HAVE_MEMORY_H 1
  4709. +| #define HAVE_NETDB_H 1
  4710. +| #define HAVE_NETINET_IN_H 1
  4711. +| #define HAVE_PATHS_H 1
  4712. +| #define HAVE_STDLIB_H 1
  4713. +| #define HAVE_STRING_H 1
  4714. +| #define HAVE_SYS_FILE_H 1
  4715. +| #define HAVE_SYS_IOCTL_H 1
  4716. +| #define HAVE_SYS_MOUNT_H 1
  4717. +| #define HAVE_SYS_PARAM_H 1
  4718. +| #define HAVE_SYS_SOCKET_H 1
  4719. +| #define HAVE_SYS_TIME_H 1
  4720. +| #define HAVE_SYS_VFS_H 1
  4721. +| #define HAVE_SYSLOG_H 1
  4722. +| #define HAVE_UNISTD_H 1
  4723. +| #define HAVE_ET_COM_ERR_H 1
  4724. +| #define HAVE_IFADDRS_H 1
  4725. +| #define TIME_WITH_SYS_TIME 1
  4726. +| #define HAVE_ALLOCA_H 1
  4727. +| #define HAVE_ALLOCA 1
  4728. +| #define HAVE_DIRENT_H 1
  4729. +| #define CLOSEDIR_VOID 1
  4730. +| #define HAVE_FORK 1
  4731. +| #define HAVE_VFORK 1
  4732. +| #define HAVE_WORKING_VFORK 1
  4733. +| #define HAVE_WORKING_FORK 1
  4734. +| #define GETGROUPS_T gid_t
  4735. +| #define HAVE_GETMNTENT 1
  4736. +| #define HAVE_LSTAT_EMPTY_STRING_BUG 1
  4737. +| #define HAVE_SYS_SELECT_H 1
  4738. +| #define HAVE_SYS_SOCKET_H 1
  4739. +| #define SELECT_TYPE_ARG1 int
  4740. +| #define SELECT_TYPE_ARG234 (fd_set *)
  4741. +| #define SELECT_TYPE_ARG5 (struct timeval *)
  4742. +| #define RETSIGTYPE void
  4743. +| #define HAVE_STAT_EMPTY_STRING_BUG 1
  4744. +| #define HAVE_VPRINTF 1
  4745. +| #define HAVE_ALARM 1
  4746. +| #define HAVE_ATEXIT 1
  4747. +| #define HAVE_DUP2 1
  4748. +| #define HAVE_FDATASYNC 1
  4749. +| #define HAVE_FTRUNCATE 1
  4750. +| #define HAVE_GETCWD 1
  4751. +| #define HAVE_GETHOSTBYADDR 1
  4752. +| #define HAVE_GETHOSTBYNAME 1
  4753. +| #define HAVE_GETHOSTNAME 1
  4754. +| #define HAVE_GETMNTENT 1
  4755. +| #define HAVE_GETNAMEINFO 1
  4756. +| #define HAVE_GETRPCBYNAME 1
  4757. +| #define HAVE_GETIFADDRS 1
  4758. +| #define HAVE_GETTIMEOFDAY 1
  4759. +| #define HAVE_HASMNTOPT 1
  4760. +| #define HAVE_INET_NTOA 1
  4761. +| #define HAVE_MEMSET 1
  4762. +| #define HAVE_MKDIR 1
  4763. +| #define HAVE_PATHCONF 1
  4764. +| #define HAVE_REALPATH 1
  4765. +| #define HAVE_RMDIR 1
  4766. +| #define HAVE_SELECT 1
  4767. +| #define HAVE_SOCKET 1
  4768. +| #define HAVE_STRCASECMP 1
  4769. +| #define HAVE_STRCHR 1
  4770. +| #define HAVE_STRDUP 1
  4771. +| #define HAVE_STRERROR 1
  4772. +| #define HAVE_STRRCHR 1
  4773. +| #define HAVE_STRTOL 1
  4774. +| #define HAVE_STRTOUL 1
  4775. +| #define HAVE_SIGPROCMASK 1
  4776. +| #define SIZEOF_SHORT 2
  4777. +| #define SIZEOF_INT 4
  4778. +| #define SIZEOF_LONG 4
  4779. +| #define SIZEOF_SIZE_T 4
  4780. +| /* end confdefs.h. */
  4781. +| #include <stdio.h>
  4782. +| #ifdef HAVE_SYS_TYPES_H
  4783. +| # include <sys/types.h>
  4784. +| #endif
  4785. +| #ifdef HAVE_SYS_STAT_H
  4786. +| # include <sys/stat.h>
  4787. +| #endif
  4788. +| #ifdef STDC_HEADERS
  4789. +| # include <stdlib.h>
  4790. +| # include <stddef.h>
  4791. +| #else
  4792. +| # ifdef HAVE_STDLIB_H
  4793. +| # include <stdlib.h>
  4794. +| # endif
  4795. +| #endif
  4796. +| #ifdef HAVE_STRING_H
  4797. +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  4798. +| # include <memory.h>
  4799. +| # endif
  4800. +| # include <string.h>
  4801. +| #endif
  4802. +| #ifdef HAVE_STRINGS_H
  4803. +| # include <strings.h>
  4804. +| #endif
  4805. +| #ifdef HAVE_INTTYPES_H
  4806. +| # include <inttypes.h>
  4807. +| #endif
  4808. +| #ifdef HAVE_STDINT_H
  4809. +| # include <stdint.h>
  4810. +| #endif
  4811. +| #ifdef HAVE_UNISTD_H
  4812. +| # include <unistd.h>
  4813. +| #endif
  4814. +| int
  4815. +| main ()
  4816. +| {
  4817. +| static int test_array [1 - 2 * !(((long int) (sizeof (socklen_t))) <= 0)];
  4818. +| test_array [0] = 0
  4819. +|
  4820. +| ;
  4821. +| return 0;
  4822. +| }
  4823. +configure:19997: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  4824. +conftest.c: In function 'main':
  4825. +conftest.c:152:12: error: size of array 'test_array' is negative
  4826. +configure:19997: $? = 1
  4827. +configure: failed program was:
  4828. +| /* confdefs.h */
  4829. +| #define PACKAGE_NAME "linux nfs-utils"
  4830. +| #define PACKAGE_TARNAME "nfs-utils"
  4831. +| #define PACKAGE_VERSION "1.2.3"
  4832. +| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
  4833. +| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
  4834. +| #define PACKAGE_URL ""
  4835. +| #define PACKAGE "nfs-utils"
  4836. +| #define VERSION "1.2.3"
  4837. +| #define START_STATD "/usr/sbin/start-statd"
  4838. +| #define NFS3_SUPPORTED 1
  4839. +| #define NFS4_SUPPORTED 1
  4840. +| #define GSS_SUPPORTED 1
  4841. +| #define STDC_HEADERS 1
  4842. +| #define HAVE_SYS_TYPES_H 1
  4843. +| #define HAVE_SYS_STAT_H 1
  4844. +| #define HAVE_STDLIB_H 1
  4845. +| #define HAVE_STRING_H 1
  4846. +| #define HAVE_MEMORY_H 1
  4847. +| #define HAVE_STRINGS_H 1
  4848. +| #define HAVE_INTTYPES_H 1
  4849. +| #define HAVE_STDINT_H 1
  4850. +| #define HAVE_UNISTD_H 1
  4851. +| #define HAVE_LIBTIRPC 1
  4852. +| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
  4853. +| #define _FILE_OFFSET_BITS 64
  4854. +| #define HAVE_DLFCN_H 1
  4855. +| #define LT_OBJDIR ".libs/"
  4856. +| #define STDC_HEADERS 1
  4857. +| #define HAVE_EVENT_H 1
  4858. +| #define HAVE_NFSIDMAP_H 1
  4859. +| #define HAVE_NFS4_SET_DEBUG 1
  4860. +| #define HAVE_NFSIDMAP_H 1
  4861. +| #define HAVE_NFS4_SET_DEBUG 1
  4862. +| #define KRB5_VERSION 181
  4863. +| #define HAVE_KRB5 1
  4864. +| #define HAVE_DECL_AI_ADDRCONFIG 1
  4865. +| #define HAVE_ARPA_INET_H 1
  4866. +| #define HAVE_FCNTL_H 1
  4867. +| #define HAVE_LIBINTL_H 1
  4868. +| #define HAVE_LIMITS_H 1
  4869. +| #define HAVE_MALLOC_H 1
  4870. +| #define HAVE_MEMORY_H 1
  4871. +| #define HAVE_NETDB_H 1
  4872. +| #define HAVE_NETINET_IN_H 1
  4873. +| #define HAVE_PATHS_H 1
  4874. +| #define HAVE_STDLIB_H 1
  4875. +| #define HAVE_STRING_H 1
  4876. +| #define HAVE_SYS_FILE_H 1
  4877. +| #define HAVE_SYS_IOCTL_H 1
  4878. +| #define HAVE_SYS_MOUNT_H 1
  4879. +| #define HAVE_SYS_PARAM_H 1
  4880. +| #define HAVE_SYS_SOCKET_H 1
  4881. +| #define HAVE_SYS_TIME_H 1
  4882. +| #define HAVE_SYS_VFS_H 1
  4883. +| #define HAVE_SYSLOG_H 1
  4884. +| #define HAVE_UNISTD_H 1
  4885. +| #define HAVE_ET_COM_ERR_H 1
  4886. +| #define HAVE_IFADDRS_H 1
  4887. +| #define TIME_WITH_SYS_TIME 1
  4888. +| #define HAVE_ALLOCA_H 1
  4889. +| #define HAVE_ALLOCA 1
  4890. +| #define HAVE_DIRENT_H 1
  4891. +| #define CLOSEDIR_VOID 1
  4892. +| #define HAVE_FORK 1
  4893. +| #define HAVE_VFORK 1
  4894. +| #define HAVE_WORKING_VFORK 1
  4895. +| #define HAVE_WORKING_FORK 1
  4896. +| #define GETGROUPS_T gid_t
  4897. +| #define HAVE_GETMNTENT 1
  4898. +| #define HAVE_LSTAT_EMPTY_STRING_BUG 1
  4899. +| #define HAVE_SYS_SELECT_H 1
  4900. +| #define HAVE_SYS_SOCKET_H 1
  4901. +| #define SELECT_TYPE_ARG1 int
  4902. +| #define SELECT_TYPE_ARG234 (fd_set *)
  4903. +| #define SELECT_TYPE_ARG5 (struct timeval *)
  4904. +| #define RETSIGTYPE void
  4905. +| #define HAVE_STAT_EMPTY_STRING_BUG 1
  4906. +| #define HAVE_VPRINTF 1
  4907. +| #define HAVE_ALARM 1
  4908. +| #define HAVE_ATEXIT 1
  4909. +| #define HAVE_DUP2 1
  4910. +| #define HAVE_FDATASYNC 1
  4911. +| #define HAVE_FTRUNCATE 1
  4912. +| #define HAVE_GETCWD 1
  4913. +| #define HAVE_GETHOSTBYADDR 1
  4914. +| #define HAVE_GETHOSTBYNAME 1
  4915. +| #define HAVE_GETHOSTNAME 1
  4916. +| #define HAVE_GETMNTENT 1
  4917. +| #define HAVE_GETNAMEINFO 1
  4918. +| #define HAVE_GETRPCBYNAME 1
  4919. +| #define HAVE_GETIFADDRS 1
  4920. +| #define HAVE_GETTIMEOFDAY 1
  4921. +| #define HAVE_HASMNTOPT 1
  4922. +| #define HAVE_INET_NTOA 1
  4923. +| #define HAVE_MEMSET 1
  4924. +| #define HAVE_MKDIR 1
  4925. +| #define HAVE_PATHCONF 1
  4926. +| #define HAVE_REALPATH 1
  4927. +| #define HAVE_RMDIR 1
  4928. +| #define HAVE_SELECT 1
  4929. +| #define HAVE_SOCKET 1
  4930. +| #define HAVE_STRCASECMP 1
  4931. +| #define HAVE_STRCHR 1
  4932. +| #define HAVE_STRDUP 1
  4933. +| #define HAVE_STRERROR 1
  4934. +| #define HAVE_STRRCHR 1
  4935. +| #define HAVE_STRTOL 1
  4936. +| #define HAVE_STRTOUL 1
  4937. +| #define HAVE_SIGPROCMASK 1
  4938. +| #define SIZEOF_SHORT 2
  4939. +| #define SIZEOF_INT 4
  4940. +| #define SIZEOF_LONG 4
  4941. +| #define SIZEOF_SIZE_T 4
  4942. +| /* end confdefs.h. */
  4943. +| #include <stdio.h>
  4944. +| #ifdef HAVE_SYS_TYPES_H
  4945. +| # include <sys/types.h>
  4946. +| #endif
  4947. +| #ifdef HAVE_SYS_STAT_H
  4948. +| # include <sys/stat.h>
  4949. +| #endif
  4950. +| #ifdef STDC_HEADERS
  4951. +| # include <stdlib.h>
  4952. +| # include <stddef.h>
  4953. +| #else
  4954. +| # ifdef HAVE_STDLIB_H
  4955. +| # include <stdlib.h>
  4956. +| # endif
  4957. +| #endif
  4958. +| #ifdef HAVE_STRING_H
  4959. +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  4960. +| # include <memory.h>
  4961. +| # endif
  4962. +| # include <string.h>
  4963. +| #endif
  4964. +| #ifdef HAVE_STRINGS_H
  4965. +| # include <strings.h>
  4966. +| #endif
  4967. +| #ifdef HAVE_INTTYPES_H
  4968. +| # include <inttypes.h>
  4969. +| #endif
  4970. +| #ifdef HAVE_STDINT_H
  4971. +| # include <stdint.h>
  4972. +| #endif
  4973. +| #ifdef HAVE_UNISTD_H
  4974. +| # include <unistd.h>
  4975. +| #endif
  4976. +| int
  4977. +| main ()
  4978. +| {
  4979. +| static int test_array [1 - 2 * !(((long int) (sizeof (socklen_t))) <= 1)];
  4980. +| test_array [0] = 0
  4981. +|
  4982. +| ;
  4983. +| return 0;
  4984. +| }
  4985. +configure:19997: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  4986. +conftest.c: In function 'main':
  4987. +conftest.c:152:12: error: size of array 'test_array' is negative
  4988. +configure:19997: $? = 1
  4989. +configure: failed program was:
  4990. +| /* confdefs.h */
  4991. +| #define PACKAGE_NAME "linux nfs-utils"
  4992. +| #define PACKAGE_TARNAME "nfs-utils"
  4993. +| #define PACKAGE_VERSION "1.2.3"
  4994. +| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
  4995. +| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
  4996. +| #define PACKAGE_URL ""
  4997. +| #define PACKAGE "nfs-utils"
  4998. +| #define VERSION "1.2.3"
  4999. +| #define START_STATD "/usr/sbin/start-statd"
  5000. +| #define NFS3_SUPPORTED 1
  5001. +| #define NFS4_SUPPORTED 1
  5002. +| #define GSS_SUPPORTED 1
  5003. +| #define STDC_HEADERS 1
  5004. +| #define HAVE_SYS_TYPES_H 1
  5005. +| #define HAVE_SYS_STAT_H 1
  5006. +| #define HAVE_STDLIB_H 1
  5007. +| #define HAVE_STRING_H 1
  5008. +| #define HAVE_MEMORY_H 1
  5009. +| #define HAVE_STRINGS_H 1
  5010. +| #define HAVE_INTTYPES_H 1
  5011. +| #define HAVE_STDINT_H 1
  5012. +| #define HAVE_UNISTD_H 1
  5013. +| #define HAVE_LIBTIRPC 1
  5014. +| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
  5015. +| #define _FILE_OFFSET_BITS 64
  5016. +| #define HAVE_DLFCN_H 1
  5017. +| #define LT_OBJDIR ".libs/"
  5018. +| #define STDC_HEADERS 1
  5019. +| #define HAVE_EVENT_H 1
  5020. +| #define HAVE_NFSIDMAP_H 1
  5021. +| #define HAVE_NFS4_SET_DEBUG 1
  5022. +| #define HAVE_NFSIDMAP_H 1
  5023. +| #define HAVE_NFS4_SET_DEBUG 1
  5024. +| #define KRB5_VERSION 181
  5025. +| #define HAVE_KRB5 1
  5026. +| #define HAVE_DECL_AI_ADDRCONFIG 1
  5027. +| #define HAVE_ARPA_INET_H 1
  5028. +| #define HAVE_FCNTL_H 1
  5029. +| #define HAVE_LIBINTL_H 1
  5030. +| #define HAVE_LIMITS_H 1
  5031. +| #define HAVE_MALLOC_H 1
  5032. +| #define HAVE_MEMORY_H 1
  5033. +| #define HAVE_NETDB_H 1
  5034. +| #define HAVE_NETINET_IN_H 1
  5035. +| #define HAVE_PATHS_H 1
  5036. +| #define HAVE_STDLIB_H 1
  5037. +| #define HAVE_STRING_H 1
  5038. +| #define HAVE_SYS_FILE_H 1
  5039. +| #define HAVE_SYS_IOCTL_H 1
  5040. +| #define HAVE_SYS_MOUNT_H 1
  5041. +| #define HAVE_SYS_PARAM_H 1
  5042. +| #define HAVE_SYS_SOCKET_H 1
  5043. +| #define HAVE_SYS_TIME_H 1
  5044. +| #define HAVE_SYS_VFS_H 1
  5045. +| #define HAVE_SYSLOG_H 1
  5046. +| #define HAVE_UNISTD_H 1
  5047. +| #define HAVE_ET_COM_ERR_H 1
  5048. +| #define HAVE_IFADDRS_H 1
  5049. +| #define TIME_WITH_SYS_TIME 1
  5050. +| #define HAVE_ALLOCA_H 1
  5051. +| #define HAVE_ALLOCA 1
  5052. +| #define HAVE_DIRENT_H 1
  5053. +| #define CLOSEDIR_VOID 1
  5054. +| #define HAVE_FORK 1
  5055. +| #define HAVE_VFORK 1
  5056. +| #define HAVE_WORKING_VFORK 1
  5057. +| #define HAVE_WORKING_FORK 1
  5058. +| #define GETGROUPS_T gid_t
  5059. +| #define HAVE_GETMNTENT 1
  5060. +| #define HAVE_LSTAT_EMPTY_STRING_BUG 1
  5061. +| #define HAVE_SYS_SELECT_H 1
  5062. +| #define HAVE_SYS_SOCKET_H 1
  5063. +| #define SELECT_TYPE_ARG1 int
  5064. +| #define SELECT_TYPE_ARG234 (fd_set *)
  5065. +| #define SELECT_TYPE_ARG5 (struct timeval *)
  5066. +| #define RETSIGTYPE void
  5067. +| #define HAVE_STAT_EMPTY_STRING_BUG 1
  5068. +| #define HAVE_VPRINTF 1
  5069. +| #define HAVE_ALARM 1
  5070. +| #define HAVE_ATEXIT 1
  5071. +| #define HAVE_DUP2 1
  5072. +| #define HAVE_FDATASYNC 1
  5073. +| #define HAVE_FTRUNCATE 1
  5074. +| #define HAVE_GETCWD 1
  5075. +| #define HAVE_GETHOSTBYADDR 1
  5076. +| #define HAVE_GETHOSTBYNAME 1
  5077. +| #define HAVE_GETHOSTNAME 1
  5078. +| #define HAVE_GETMNTENT 1
  5079. +| #define HAVE_GETNAMEINFO 1
  5080. +| #define HAVE_GETRPCBYNAME 1
  5081. +| #define HAVE_GETIFADDRS 1
  5082. +| #define HAVE_GETTIMEOFDAY 1
  5083. +| #define HAVE_HASMNTOPT 1
  5084. +| #define HAVE_INET_NTOA 1
  5085. +| #define HAVE_MEMSET 1
  5086. +| #define HAVE_MKDIR 1
  5087. +| #define HAVE_PATHCONF 1
  5088. +| #define HAVE_REALPATH 1
  5089. +| #define HAVE_RMDIR 1
  5090. +| #define HAVE_SELECT 1
  5091. +| #define HAVE_SOCKET 1
  5092. +| #define HAVE_STRCASECMP 1
  5093. +| #define HAVE_STRCHR 1
  5094. +| #define HAVE_STRDUP 1
  5095. +| #define HAVE_STRERROR 1
  5096. +| #define HAVE_STRRCHR 1
  5097. +| #define HAVE_STRTOL 1
  5098. +| #define HAVE_STRTOUL 1
  5099. +| #define HAVE_SIGPROCMASK 1
  5100. +| #define SIZEOF_SHORT 2
  5101. +| #define SIZEOF_INT 4
  5102. +| #define SIZEOF_LONG 4
  5103. +| #define SIZEOF_SIZE_T 4
  5104. +| /* end confdefs.h. */
  5105. +| #include <stdio.h>
  5106. +| #ifdef HAVE_SYS_TYPES_H
  5107. +| # include <sys/types.h>
  5108. +| #endif
  5109. +| #ifdef HAVE_SYS_STAT_H
  5110. +| # include <sys/stat.h>
  5111. +| #endif
  5112. +| #ifdef STDC_HEADERS
  5113. +| # include <stdlib.h>
  5114. +| # include <stddef.h>
  5115. +| #else
  5116. +| # ifdef HAVE_STDLIB_H
  5117. +| # include <stdlib.h>
  5118. +| # endif
  5119. +| #endif
  5120. +| #ifdef HAVE_STRING_H
  5121. +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  5122. +| # include <memory.h>
  5123. +| # endif
  5124. +| # include <string.h>
  5125. +| #endif
  5126. +| #ifdef HAVE_STRINGS_H
  5127. +| # include <strings.h>
  5128. +| #endif
  5129. +| #ifdef HAVE_INTTYPES_H
  5130. +| # include <inttypes.h>
  5131. +| #endif
  5132. +| #ifdef HAVE_STDINT_H
  5133. +| # include <stdint.h>
  5134. +| #endif
  5135. +| #ifdef HAVE_UNISTD_H
  5136. +| # include <unistd.h>
  5137. +| #endif
  5138. +| int
  5139. +| main ()
  5140. +| {
  5141. +| static int test_array [1 - 2 * !(((long int) (sizeof (socklen_t))) <= 3)];
  5142. +| test_array [0] = 0
  5143. +|
  5144. +| ;
  5145. +| return 0;
  5146. +| }
  5147. +configure:19997: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  5148. +configure:19997: $? = 0
  5149. +configure:19997: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  5150. +configure:19997: $? = 0
  5151. +configure:19997: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
  5152. +configure:19997: $? = 0
  5153. +configure:20012: result: 4
  5154. +configure:20234: creating ./config.status
  5155. +
  5156. +## ---------------------- ##
  5157. +## Running config.status. ##
  5158. +## ---------------------- ##
  5159. +
  5160. +This file was extended by linux nfs-utils config.status 1.2.3, which was
  5161. +generated by GNU Autoconf 2.65. Invocation command line was
  5162. +
  5163. + CONFIG_FILES =
  5164. + CONFIG_HEADERS =
  5165. + CONFIG_LINKS =
  5166. + CONFIG_COMMANDS =
  5167. + $ ./config.status
  5168. +
  5169. +on chrom
  5170. +
  5171. +config.status:1313: creating Makefile
  5172. +config.status:1313: creating linux-nfs/Makefile
  5173. +config.status:1313: creating support/Makefile
  5174. +config.status:1313: creating support/export/Makefile
  5175. +config.status:1313: creating support/include/nfs/Makefile
  5176. +config.status:1313: creating support/include/rpcsvc/Makefile
  5177. +config.status:1313: creating support/include/sys/fs/Makefile
  5178. +config.status:1313: creating support/include/sys/Makefile
  5179. +config.status:1313: creating support/include/Makefile
  5180. +config.status:1313: creating support/misc/Makefile
  5181. +config.status:1313: creating support/nfs/Makefile
  5182. +config.status:1313: creating support/nsm/Makefile
  5183. +config.status:1313: creating tools/Makefile
  5184. +config.status:1313: creating tools/locktest/Makefile
  5185. +config.status:1313: creating tools/nlmtest/Makefile
  5186. +config.status:1313: creating tools/rpcdebug/Makefile
  5187. +config.status:1313: creating tools/rpcgen/Makefile
  5188. +config.status:1313: creating tools/mountstats/Makefile
  5189. +config.status:1313: creating tools/nfs-iostat/Makefile
  5190. +config.status:1313: creating utils/Makefile
  5191. +config.status:1313: creating utils/exportfs/Makefile
  5192. +config.status:1313: creating utils/gssd/Makefile
  5193. +config.status:1313: creating utils/idmapd/Makefile
  5194. +config.status:1313: creating utils/mount/Makefile
  5195. +config.status:1313: creating utils/mountd/Makefile
  5196. +config.status:1313: creating utils/nfsd/Makefile
  5197. +config.status:1313: creating utils/nfsstat/Makefile
  5198. +config.status:1313: creating utils/showmount/Makefile
  5199. +config.status:1313: creating utils/statd/Makefile
  5200. +config.status:1313: creating tests/Makefile
  5201. +config.status:1313: creating tests/nsm_client/Makefile
  5202. +config.status:1313: creating support/include/config.h
  5203. +config.status:1533: executing depfiles commands
  5204. +config.status:1533: executing libtool commands
  5205. +configure:22726: WARNING: unrecognized options: --disable-nls
  5206. ## ---------------- ##
  5207. ## Cache variables. ##
  5208. ## ---------------- ##
  5209. -ac_cv_build=x86_64-unknown-linux-gnu
  5210. +ac_cv_build=x86_64-pc-linux-gnu
  5211. ac_cv_c_compiler_gnu=yes
  5212. +ac_cv_c_const=yes
  5213. +ac_cv_c_inline=inline
  5214. +ac_cv_cxx_compiler_gnu=yes
  5215. ac_cv_env_CCC_set=
  5216. ac_cv_env_CCC_value=
  5217. -ac_cv_env_CC_set=
  5218. -ac_cv_env_CC_value=
  5219. -ac_cv_env_CFLAGS_set=
  5220. -ac_cv_env_CFLAGS_value=
  5221. -ac_cv_env_CPPFLAGS_set=
  5222. -ac_cv_env_CPPFLAGS_value=
  5223. +ac_cv_env_CC_set=set
  5224. +ac_cv_env_CC_value=/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc
  5225. +ac_cv_env_CFLAGS_set=set
  5226. +ac_cv_env_CFLAGS_value='-march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe'
  5227. +ac_cv_env_CPPFLAGS_set=set
  5228. +ac_cv_env_CPPFLAGS_value=-I/home/wbx/adk/openadk/target_i686_uclibc/usr/include
  5229. ac_cv_env_CPP_set=
  5230. ac_cv_env_CPP_value=
  5231. ac_cv_env_CXXCPP_set=
  5232. ac_cv_env_CXXCPP_value=
  5233. -ac_cv_env_CXXFLAGS_set=
  5234. +ac_cv_env_CXXFLAGS_set=set
  5235. ac_cv_env_CXXFLAGS_value=
  5236. -ac_cv_env_CXX_set=
  5237. -ac_cv_env_CXX_value=
  5238. +ac_cv_env_CXX_set=set
  5239. +ac_cv_env_CXX_value=/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++
  5240. ac_cv_env_GSSGLUE_CFLAGS_set=
  5241. ac_cv_env_GSSGLUE_CFLAGS_value=
  5242. ac_cv_env_GSSGLUE_LIBS_set=
  5243. ac_cv_env_GSSGLUE_LIBS_value=
  5244. -ac_cv_env_LDFLAGS_set=
  5245. -ac_cv_env_LDFLAGS_value=
  5246. -ac_cv_env_LIBS_set=
  5247. -ac_cv_env_LIBS_value=
  5248. +ac_cv_env_LDFLAGS_set=set
  5249. +ac_cv_env_LDFLAGS_value='-Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib'
  5250. +ac_cv_env_LIBS_set=set
  5251. +ac_cv_env_LIBS_value=-lrpcsecgss
  5252. ac_cv_env_PKG_CONFIG_set=
  5253. ac_cv_env_PKG_CONFIG_value=
  5254. ac_cv_env_RPCSECGSS_CFLAGS_set=
  5255. ac_cv_env_RPCSECGSS_CFLAGS_value=
  5256. ac_cv_env_RPCSECGSS_LIBS_set=
  5257. ac_cv_env_RPCSECGSS_LIBS_value=
  5258. -ac_cv_env_build_alias_set=
  5259. -ac_cv_env_build_alias_value=
  5260. -ac_cv_env_host_alias_set=
  5261. -ac_cv_env_host_alias_value=
  5262. -ac_cv_env_target_alias_set=
  5263. -ac_cv_env_target_alias_value=
  5264. +ac_cv_env_build_alias_set=set
  5265. +ac_cv_env_build_alias_value=x86_64-linux-gnu
  5266. +ac_cv_env_host_alias_set=set
  5267. +ac_cv_env_host_alias_value=i686-openadk-linux
  5268. +ac_cv_env_target_alias_set=set
  5269. +ac_cv_env_target_alias_value=i686-openadk-linux
  5270. +ac_cv_func__doprnt=no
  5271. +ac_cv_func_alarm=yes
  5272. +ac_cv_func_alloca_works=yes
  5273. +ac_cv_func_atexit=yes
  5274. +ac_cv_func_closedir_void=yes
  5275. +ac_cv_func_connect=yes
  5276. +ac_cv_func_dup2=yes
  5277. +ac_cv_func_fdatasync=yes
  5278. +ac_cv_func_fork=yes
  5279. +ac_cv_func_fork_works=yes
  5280. +ac_cv_func_ftruncate=yes
  5281. +ac_cv_func_getaddrinfo=yes
  5282. +ac_cv_func_getcwd=yes
  5283. +ac_cv_func_getgroups=yes
  5284. +ac_cv_func_getgroups_works=no
  5285. +ac_cv_func_gethostbyaddr=yes
  5286. +ac_cv_func_gethostbyname=yes
  5287. +ac_cv_func_gethostname=yes
  5288. +ac_cv_func_getifaddrs=yes
  5289. +ac_cv_func_getmntent=yes
  5290. +ac_cv_func_getnameinfo=yes
  5291. +ac_cv_func_getrpcbyname=yes
  5292. +ac_cv_func_getrpcbynumber=yes
  5293. +ac_cv_func_getservbyname=yes
  5294. +ac_cv_func_gettimeofday=yes
  5295. +ac_cv_func_hasmntopt=yes
  5296. +ac_cv_func_inet_ntoa=yes
  5297. +ac_cv_func_innetgr=no
  5298. +ac_cv_func_lstat_dereferences_slashed_symlink=no
  5299. +ac_cv_func_lstat_empty_string_bug=yes
  5300. +ac_cv_func_malloc_0_nonnull=yes
  5301. +ac_cv_func_memcmp_working=no
  5302. +ac_cv_func_memset=yes
  5303. +ac_cv_func_mkdir=yes
  5304. +ac_cv_func_pathconf=yes
  5305. +ac_cv_func_prctl=yes
  5306. +ac_cv_func_realloc_0_nonnull=yes
  5307. +ac_cv_func_realpath=yes
  5308. +ac_cv_func_rmdir=yes
  5309. +ac_cv_func_select=yes
  5310. +ac_cv_func_select_args='int,fd_set *,struct timeval *'
  5311. +ac_cv_func_sigprocmask=yes
  5312. +ac_cv_func_socket=yes
  5313. +ac_cv_func_stat_empty_string_bug=yes
  5314. +ac_cv_func_strcasecmp=yes
  5315. +ac_cv_func_strchr=yes
  5316. +ac_cv_func_strdup=yes
  5317. +ac_cv_func_strerror=yes
  5318. +ac_cv_func_strrchr=yes
  5319. +ac_cv_func_strtol=yes
  5320. +ac_cv_func_strtoul=yes
  5321. +ac_cv_func_vfork=yes
  5322. +ac_cv_func_vfork_works=yes
  5323. +ac_cv_func_vprintf=yes
  5324. +ac_cv_have_decl_AI_ADDRCONFIG=yes
  5325. +ac_cv_header__home_wbx_adk_openadk_target_i686_uclibc_usr_include_tirpc_netconfig_h=yes
  5326. +ac_cv_header_arpa_inet_h=yes
  5327. +ac_cv_header_com_err_h=no
  5328. +ac_cv_header_dirent_dirent_h=yes
  5329. +ac_cv_header_dlfcn_h=yes
  5330. +ac_cv_header_et_com_err_h=yes
  5331. +ac_cv_header_event_h=yes
  5332. +ac_cv_header_fcntl_h=yes
  5333. +ac_cv_header_ifaddrs_h=yes
  5334. ac_cv_header_inttypes_h=yes
  5335. +ac_cv_header_libintl_h=yes
  5336. +ac_cv_header_limits_h=yes
  5337. +ac_cv_header_malloc_h=yes
  5338. ac_cv_header_memory_h=yes
  5339. +ac_cv_header_netdb_h=yes
  5340. +ac_cv_header_netinet_in_h=yes
  5341. +ac_cv_header_nfsidmap_h=yes
  5342. +ac_cv_header_paths_h=yes
  5343. +ac_cv_header_spkm3_h=no
  5344. ac_cv_header_stdc=yes
  5345. ac_cv_header_stdint_h=yes
  5346. ac_cv_header_stdlib_h=yes
  5347. ac_cv_header_string_h=yes
  5348. ac_cv_header_strings_h=yes
  5349. +ac_cv_header_sys_capability_h=no
  5350. +ac_cv_header_sys_file_h=yes
  5351. +ac_cv_header_sys_ioctl_h=yes
  5352. +ac_cv_header_sys_mount_h=yes
  5353. +ac_cv_header_sys_param_h=yes
  5354. +ac_cv_header_sys_select_h=yes
  5355. +ac_cv_header_sys_socket_h=yes
  5356. ac_cv_header_sys_stat_h=yes
  5357. +ac_cv_header_sys_time_h=yes
  5358. ac_cv_header_sys_types_h=yes
  5359. +ac_cv_header_sys_types_h_makedev=yes
  5360. +ac_cv_header_sys_vfs_h=yes
  5361. +ac_cv_header_syslog_h=yes
  5362. +ac_cv_header_time=yes
  5363. ac_cv_header_unistd_h=yes
  5364. -ac_cv_host=x86_64-unknown-linux-gnu
  5365. +ac_cv_header_vfork_h=no
  5366. +ac_cv_host=i686-openadk-linux-gnu
  5367. +ac_cv_lib_cap_cap_get_proc=no
  5368. +ac_cv_lib_crypt_crypt=yes
  5369. +ac_cv_lib_error_at_line=yes
  5370. +ac_cv_lib_event_event_dispatch=yes
  5371. +ac_cv_lib_gssapi_krb5___gss_krb5_ccache_name=no
  5372. +ac_cv_lib_gssapi_krb5___gss_krb5_export_lucid_sec_context=no
  5373. +ac_cv_lib_gssapi_krb5___gss_krb5_set_allowable_enctypes=no
  5374. +ac_cv_lib_gssapi_krb5___krb5_get_error_message=no
  5375. +ac_cv_lib_gssapi_krb5___krb5_get_init_creds_opt_set_addressless=no
  5376. +ac_cv_lib_nfsidmap_nfs4_init_name_mapping=yes
  5377. +ac_cv_lib_nfsidmap_nfs4_set_debug=yes
  5378. +ac_cv_lib_nsl_gethostbyname=no
  5379. ac_cv_lib_tirpc_clnt_tli_create=yes
  5380. ac_cv_objext=o
  5381. ac_cv_path_EGREP='/bin/grep -E'
  5382. +ac_cv_path_FGREP='/bin/grep -F'
  5383. ac_cv_path_GREP=/bin/grep
  5384. -ac_cv_path_install='/usr/bin/install -c'
  5385. +ac_cv_path_SED=/home/wbx/adk/openadk/scripts/sed
  5386. +ac_cv_path_ac_pt_PKG_CONFIG=/usr/bin/pkg-config
  5387. +ac_cv_path_install='/home/wbx/adk/openadk/scripts/install -c'
  5388. ac_cv_path_mkdir=/bin/mkdir
  5389. +ac_cv_prog_AR=/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-ar
  5390. ac_cv_prog_AWK=gawk
  5391. -ac_cv_prog_CPP='gcc -E'
  5392. -ac_cv_prog_ac_ct_CC=gcc
  5393. +ac_cv_prog_CC=/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc
  5394. +ac_cv_prog_CPP='/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E'
  5395. +ac_cv_prog_CXXCPP='/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ -E'
  5396. +ac_cv_prog_LD=/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-ld
  5397. +ac_cv_prog_OBJDUMP=i686-openadk-linux-objdump
  5398. +ac_cv_prog_RANLIB=/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-ranlib
  5399. +ac_cv_prog_STRIP=/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-strip
  5400. +ac_cv_prog_cc__home_wbx_adk_openadk_host_i686_uclibc_bin_i686_openadk_linux_uclibc_gcc_c_o=yes
  5401. ac_cv_prog_cc_c89=
  5402. ac_cv_prog_cc_g=yes
  5403. +ac_cv_prog_cxx_g=yes
  5404. +ac_cv_prog_gcc_traditional=no
  5405. ac_cv_prog_make_make_set=yes
  5406. -am_cv_CC_dependencies_compiler_type=gcc3
  5407. +ac_cv_search_getmntent='none required'
  5408. +ac_cv_search_opendir='none required'
  5409. +ac_cv_sizeof_int=4
  5410. +ac_cv_sizeof_long=4
  5411. +ac_cv_sizeof_short=2
  5412. +ac_cv_sizeof_size_t=4
  5413. +ac_cv_sizeof_socklen_t=4
  5414. +ac_cv_struct_tm=time.h
  5415. +ac_cv_sys_file_offset_bits=64
  5416. +ac_cv_sys_largefile_CC=no
  5417. +ac_cv_type_getgroups=gid_t
  5418. +ac_cv_type_off_t=yes
  5419. +ac_cv_type_pid_t=yes
  5420. +ac_cv_type_signal=void
  5421. +ac_cv_type_size_t=yes
  5422. +ac_cv_type_uid_t=yes
  5423. +ac_cv_working_alloca_h=yes
  5424. +am_cv_CC_dependencies_compiler_type=none
  5425. +am_cv_CXX_dependencies_compiler_type=none
  5426. +knfsd_cv_bsd_signals=no
  5427. +knfsd_cv_glibc2=yes
  5428. +lt_cv_deplibs_check_method=pass_all
  5429. +lt_cv_file_magic_cmd='$MAGIC_CMD'
  5430. +lt_cv_file_magic_test_file=
  5431. +lt_cv_ld_reload_flag=-r
  5432. +lt_cv_nm_interface='BSD nm'
  5433. +lt_cv_objdir=.libs
  5434. +lt_cv_path_LD=/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-ld
  5435. +lt_cv_path_LDCXX=/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-ld
  5436. +lt_cv_path_NM=/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-nm
  5437. +lt_cv_prog_compiler_c_o=yes
  5438. +lt_cv_prog_compiler_c_o_CXX=yes
  5439. +lt_cv_prog_compiler_pic_works=yes
  5440. +lt_cv_prog_compiler_pic_works_CXX=yes
  5441. +lt_cv_prog_compiler_rtti_exceptions=no
  5442. +lt_cv_prog_compiler_static_works=yes
  5443. +lt_cv_prog_compiler_static_works_CXX=yes
  5444. +lt_cv_prog_gnu_ld=yes
  5445. +lt_cv_prog_gnu_ldcxx=yes
  5446. +lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'''
  5447. +lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\) $/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/ {"\2", (void *) \&\2},/p'\'''
  5448. +lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \([^ ]*\) $/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \(lib[^ ]*\)$/ {"\2", (void *) \&\2},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/ {"lib\2", (void *) \&\2},/p'\'''
  5449. +lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\'''
  5450. +lt_cv_sys_max_cmd_len=3458764513820540925
  5451. +pkg_cv_GSSGLUE_CFLAGS='-I/home/wbx/adk/openadk/target_i686_uclibc/usr/include/gssglue '
  5452. +pkg_cv_GSSGLUE_LIBS='-L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -lgssglue -ldl '
  5453. ## ----------------- ##
  5454. ## Output variables. ##
  5455. ## ----------------- ##
  5456. -ACLOCAL='${SHELL} /tmp/nfs-utils-1.2.3/missing --run aclocal-1.11'
  5457. -ACLOCAL_AMFLAGS=''
  5458. +ACLOCAL='${SHELL} /home/wbx/adk/openadk/build_ibm-x40_i686_uclibc/w-nfs-utils-1.2.3-3/nfs-utils-1.2.3/missing --run aclocal-1.11'
  5459. +ACLOCAL_AMFLAGS='-I $(ACLOCAL_FLAGS)'
  5460. ALLOCA=''
  5461. -AMDEPBACKSLASH='\'
  5462. -AMDEP_FALSE='#'
  5463. -AMDEP_TRUE=''
  5464. -AMTAR='${SHELL} /tmp/nfs-utils-1.2.3/missing --run tar'
  5465. -AM_CFLAGS=''
  5466. -AM_CPPFLAGS=''
  5467. -AR=''
  5468. -AUTOCONF='${SHELL} /tmp/nfs-utils-1.2.3/missing --run autoconf'
  5469. -AUTOHEADER='${SHELL} /tmp/nfs-utils-1.2.3/missing --run autoheader'
  5470. -AUTOMAKE='${SHELL} /tmp/nfs-utils-1.2.3/missing --run automake-1.11'
  5471. +AMDEPBACKSLASH=''
  5472. +AMDEP_FALSE=''
  5473. +AMDEP_TRUE='#'
  5474. +AMTAR='${SHELL} /home/wbx/adk/openadk/build_ibm-x40_i686_uclibc/w-nfs-utils-1.2.3-3/nfs-utils-1.2.3/missing --run tar'
  5475. +AM_CFLAGS='-Wall -Wextra -Wstrict-prototypes -pipe'
  5476. +AM_CPPFLAGS='-I/home/wbx/adk/openadk/target_i686_uclibc/usr/include/tirpc'
  5477. +AR='/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-ar'
  5478. +AUTOCONF='${SHELL} /home/wbx/adk/openadk/build_ibm-x40_i686_uclibc/w-nfs-utils-1.2.3-3/nfs-utils-1.2.3/missing --run autoconf'
  5479. +AUTOHEADER='${SHELL} /home/wbx/adk/openadk/build_ibm-x40_i686_uclibc/w-nfs-utils-1.2.3-3/nfs-utils-1.2.3/missing --run autoheader'
  5480. +AUTOMAKE='${SHELL} /home/wbx/adk/openadk/build_ibm-x40_i686_uclibc/w-nfs-utils-1.2.3-3/nfs-utils-1.2.3/missing --run automake-1.11'
  5481. AWK='gawk'
  5482. -CC='gcc'
  5483. -CCDEPMODE='depmode=gcc3'
  5484. -CC_FOR_BUILD=''
  5485. -CFLAGS='-g -O2'
  5486. -CFLAGS_FOR_BUILD=''
  5487. -CONFIG_GSS_FALSE=''
  5488. -CONFIG_GSS_TRUE='#'
  5489. +CC='/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc'
  5490. +CCDEPMODE='depmode=none'
  5491. +CC_FOR_BUILD='cc'
  5492. +CFLAGS='-march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe'
  5493. +CFLAGS_FOR_BUILD='-O2 -Wall'
  5494. +CONFIG_GSS_FALSE='#'
  5495. +CONFIG_GSS_TRUE=''
  5496. CONFIG_IPV6_FALSE=''
  5497. CONFIG_IPV6_TRUE='#'
  5498. CONFIG_MOUNT_FALSE='#'
  5499. @@ -329,18 +5407,18 @@ CONFIG_NFSV41_FALSE=''
  5500. CONFIG_NFSV41_TRUE='#'
  5501. CONFIG_NFSV4_FALSE='#'
  5502. CONFIG_NFSV4_TRUE=''
  5503. -CONFIG_RPCGEN_FALSE=''
  5504. -CONFIG_RPCGEN_TRUE='#'
  5505. -CPP='gcc -E'
  5506. -CPPFLAGS=''
  5507. -CPPFLAGS_FOR_BUILD=''
  5508. -CXX=''
  5509. -CXXCPP=''
  5510. -CXXDEPMODE=''
  5511. +CONFIG_RPCGEN_FALSE='#'
  5512. +CONFIG_RPCGEN_TRUE=''
  5513. +CPP='/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E'
  5514. +CPPFLAGS='-I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE'
  5515. +CPPFLAGS_FOR_BUILD=' -D_GNU_SOURCE'
  5516. +CXX='/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++'
  5517. +CXXCPP='/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ -E'
  5518. +CXXDEPMODE='depmode=none'
  5519. CXXFLAGS=''
  5520. CXXFLAGS_FOR_BUILD=''
  5521. CYGPATH_W='echo'
  5522. -DEFS=''
  5523. +DEFS='-DHAVE_CONFIG_H'
  5524. DEPDIR='.deps'
  5525. DSYMUTIL=''
  5526. DUMPBIN=''
  5527. @@ -349,11 +5427,11 @@ ECHO_N='-n'
  5528. ECHO_T=''
  5529. EGREP='/bin/grep -E'
  5530. EXEEXT=''
  5531. -FGREP=''
  5532. +FGREP='/bin/grep -F'
  5533. GREP='/bin/grep'
  5534. -GSSD=''
  5535. -GSSGLUE_CFLAGS=''
  5536. -GSSGLUE_LIBS=''
  5537. +GSSD='gssd'
  5538. +GSSGLUE_CFLAGS='-I/home/wbx/adk/openadk/target_i686_uclibc/usr/include/gssglue '
  5539. +GSSGLUE_LIBS='-L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -lgssglue -ldl '
  5540. HAVE_LIBWRAP=''
  5541. HAVE_TCP_WRAPPER=''
  5542. IDMAPD='idmapd'
  5543. @@ -361,37 +5439,37 @@ INSTALL_DATA='${INSTALL} -m 644'
  5544. INSTALL_PROGRAM='${INSTALL}'
  5545. INSTALL_SCRIPT='${INSTALL}'
  5546. INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
  5547. -K5VERS=''
  5548. -KRBCFLAGS=''
  5549. -KRBDIR=''
  5550. -KRBLDFLAGS=''
  5551. -KRBLIBS=''
  5552. -LD=''
  5553. -LDFLAGS=''
  5554. +K5VERS='181'
  5555. +KRBCFLAGS='-I/home/wbx/adk/openadk/target_i686_uclibc/usr/include'
  5556. +KRBDIR='/home/wbx/adk/openadk/target_i686_uclibc/usr/'
  5557. +KRBLDFLAGS='-Wl,-rpath=/home/wbx/adk/openadk/target_i686_uclibc/usr//lib'
  5558. +KRBLIBS='-L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib $(PROG_RPATH_FLAGS) -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lresolv -ldl'
  5559. +LD='/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-ld'
  5560. +LDFLAGS='-Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib'
  5561. LDFLAGS_FOR_BUILD=''
  5562. LIBBLKID=''
  5563. LIBBSD=''
  5564. LIBCAP=''
  5565. -LIBCRYPT=''
  5566. +LIBCRYPT='-lcrypt'
  5567. LIBNSL=''
  5568. -LIBOBJS=''
  5569. -LIBS='-ltirpc '
  5570. +LIBOBJS=' ${LIBOBJDIR}lstat$U.o ${LIBOBJDIR}memcmp$U.o ${LIBOBJDIR}stat$U.o'
  5571. +LIBS='-ltirpc -lrpcsecgss'
  5572. LIBSOCKET=''
  5573. -LIBTOOL=''
  5574. +LIBTOOL='$(SHELL) $(top_builddir)/libtool'
  5575. LIBWRAP=''
  5576. LIPO=''
  5577. -LN_S=''
  5578. -LTLIBOBJS=''
  5579. +LN_S='ln -s'
  5580. +LTLIBOBJS=' ${LIBOBJDIR}lstat$U.lo ${LIBOBJDIR}memcmp$U.lo ${LIBOBJDIR}stat$U.lo'
  5581. MAINT='#'
  5582. MAINTAINER_MODE_FALSE=''
  5583. MAINTAINER_MODE_TRUE='#'
  5584. -MAKEINFO='${SHELL} /tmp/nfs-utils-1.2.3/missing --run makeinfo'
  5585. +MAKEINFO='${SHELL} /home/wbx/adk/openadk/build_ibm-x40_i686_uclibc/w-nfs-utils-1.2.3-3/nfs-utils-1.2.3/missing --run makeinfo'
  5586. MKDIR_P='/bin/mkdir -p'
  5587. MOUNT_CONFIG_FALSE=''
  5588. MOUNT_CONFIG_TRUE='#'
  5589. -NM=''
  5590. +NM='/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-nm'
  5591. NMEDIT=''
  5592. -OBJDUMP=''
  5593. +OBJDUMP='i686-openadk-linux-objdump'
  5594. OBJEXT='o'
  5595. OTOOL64=''
  5596. OTOOL=''
  5597. @@ -403,80 +5481,80 @@ PACKAGE_TARNAME='nfs-utils'
  5598. PACKAGE_URL=''
  5599. PACKAGE_VERSION='1.2.3'
  5600. PATH_SEPARATOR=':'
  5601. -PKG_CONFIG=''
  5602. -RANLIB=''
  5603. +PKG_CONFIG='/usr/bin/pkg-config'
  5604. +RANLIB='/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-ranlib'
  5605. RELEASE='1'
  5606. -RPCGEN_PATH='/usr/bin/rpcgen'
  5607. +RPCGEN_PATH=''
  5608. RPCSECGSS_CFLAGS=''
  5609. RPCSECGSS_LIBS=''
  5610. -SED=''
  5611. +SED='/home/wbx/adk/openadk/scripts/sed'
  5612. SET_MAKE=''
  5613. -SHELL='/bin/sh'
  5614. -STRIP=''
  5615. -SVCGSSD=''
  5616. +SHELL='/bin/bash'
  5617. +STRIP='/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-strip'
  5618. +SVCGSSD='svcgssd'
  5619. VERSION='1.2.3'
  5620. -ac_ct_CC='gcc'
  5621. +ac_ct_CC=''
  5622. ac_ct_CXX=''
  5623. ac_ct_DUMPBIN=''
  5624. am__EXEEXT_FALSE=''
  5625. -am__EXEEXT_TRUE=''
  5626. -am__fastdepCC_FALSE='#'
  5627. -am__fastdepCC_TRUE=''
  5628. +am__EXEEXT_TRUE='#'
  5629. +am__fastdepCC_FALSE=''
  5630. +am__fastdepCC_TRUE='#'
  5631. am__fastdepCXX_FALSE=''
  5632. -am__fastdepCXX_TRUE=''
  5633. +am__fastdepCXX_TRUE='#'
  5634. am__include='include'
  5635. am__isrc=''
  5636. am__leading_dot='.'
  5637. am__quote=''
  5638. am__tar='${AMTAR} chof - "$$tardir"'
  5639. am__untar='${AMTAR} xf -'
  5640. -bindir='${exec_prefix}/bin'
  5641. -build='x86_64-unknown-linux-gnu'
  5642. -build_alias=''
  5643. +bindir='/usr/bin'
  5644. +build='x86_64-pc-linux-gnu'
  5645. +build_alias='x86_64-linux-gnu'
  5646. build_cpu='x86_64'
  5647. build_os='linux-gnu'
  5648. -build_vendor='unknown'
  5649. -datadir='${datarootdir}'
  5650. +build_vendor='pc'
  5651. +datadir='/usr/share'
  5652. datarootdir='${prefix}/share'
  5653. docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
  5654. dvidir='${docdir}'
  5655. -enable_gss=''
  5656. +enable_gss='yes'
  5657. enable_ipv6=''
  5658. enable_mountconfig=''
  5659. enable_nfsv3='yes'
  5660. enable_nfsv41=''
  5661. enable_nfsv4='yes'
  5662. -exec_prefix='NONE'
  5663. -host='x86_64-unknown-linux-gnu'
  5664. -host_alias=''
  5665. -host_cpu='x86_64'
  5666. +exec_prefix='${prefix}'
  5667. +host='i686-openadk-linux-gnu'
  5668. +host_alias='i686-openadk-linux'
  5669. +host_cpu='i686'
  5670. host_os='linux-gnu'
  5671. -host_vendor='unknown'
  5672. +host_vendor='openadk'
  5673. htmldir='${docdir}'
  5674. includedir='${prefix}/include'
  5675. infodir='${datarootdir}/info'
  5676. -install_sh='${SHELL} /tmp/nfs-utils-1.2.3/install-sh'
  5677. +install_sh='${SHELL} /home/wbx/adk/openadk/build_ibm-x40_i686_uclibc/w-nfs-utils-1.2.3-3/nfs-utils-1.2.3/install-sh'
  5678. kprefix=''
  5679. libdir='${exec_prefix}/lib'
  5680. -libexecdir='${exec_prefix}/libexec'
  5681. +libexecdir='/usr/libexec'
  5682. localedir='${datarootdir}/locale'
  5683. -localstatedir='${prefix}/var'
  5684. +localstatedir='/var'
  5685. lt_ECHO='echo'
  5686. -mandir='${datarootdir}/man'
  5687. +mandir='/usr/share/man'
  5688. mkdir_p='/bin/mkdir -p'
  5689. mountfile=''
  5690. oldincludedir='/usr/include'
  5691. pdfdir='${docdir}'
  5692. -prefix='NONE'
  5693. -program_transform_name='s,x,x,'
  5694. +prefix='/usr'
  5695. +program_transform_name='s&$$&&;s&^&&'
  5696. psdir='${docdir}'
  5697. sbindir='${exec_prefix}/sbin'
  5698. sharedstatedir='${prefix}/com'
  5699. startstatd='/usr/sbin/start-statd'
  5700. -statduser='rpcuser'
  5701. +statduser='nobody'
  5702. statedir='/var/lib/nfs'
  5703. -sysconfdir='${prefix}/etc'
  5704. -target_alias=''
  5705. +sysconfdir='/etc'
  5706. +target_alias='i686-openadk-linux'
  5707. ## ----------- ##
  5708. ## confdefs.h. ##
  5709. @@ -494,6 +5572,7 @@ target_alias=''
  5710. #define START_STATD "/usr/sbin/start-statd"
  5711. #define NFS3_SUPPORTED 1
  5712. #define NFS4_SUPPORTED 1
  5713. +#define GSS_SUPPORTED 1
  5714. #define STDC_HEADERS 1
  5715. #define HAVE_SYS_TYPES_H 1
  5716. #define HAVE_SYS_STAT_H 1
  5717. @@ -505,6 +5584,97 @@ target_alias=''
  5718. #define HAVE_STDINT_H 1
  5719. #define HAVE_UNISTD_H 1
  5720. #define HAVE_LIBTIRPC 1
  5721. +#define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
  5722. +#define _FILE_OFFSET_BITS 64
  5723. +#define HAVE_DLFCN_H 1
  5724. +#define LT_OBJDIR ".libs/"
  5725. +#define STDC_HEADERS 1
  5726. +#define HAVE_EVENT_H 1
  5727. +#define HAVE_NFSIDMAP_H 1
  5728. +#define HAVE_NFS4_SET_DEBUG 1
  5729. +#define HAVE_NFSIDMAP_H 1
  5730. +#define HAVE_NFS4_SET_DEBUG 1
  5731. +#define KRB5_VERSION 181
  5732. +#define HAVE_KRB5 1
  5733. +#define HAVE_DECL_AI_ADDRCONFIG 1
  5734. +#define HAVE_ARPA_INET_H 1
  5735. +#define HAVE_FCNTL_H 1
  5736. +#define HAVE_LIBINTL_H 1
  5737. +#define HAVE_LIMITS_H 1
  5738. +#define HAVE_MALLOC_H 1
  5739. +#define HAVE_MEMORY_H 1
  5740. +#define HAVE_NETDB_H 1
  5741. +#define HAVE_NETINET_IN_H 1
  5742. +#define HAVE_PATHS_H 1
  5743. +#define HAVE_STDLIB_H 1
  5744. +#define HAVE_STRING_H 1
  5745. +#define HAVE_SYS_FILE_H 1
  5746. +#define HAVE_SYS_IOCTL_H 1
  5747. +#define HAVE_SYS_MOUNT_H 1
  5748. +#define HAVE_SYS_PARAM_H 1
  5749. +#define HAVE_SYS_SOCKET_H 1
  5750. +#define HAVE_SYS_TIME_H 1
  5751. +#define HAVE_SYS_VFS_H 1
  5752. +#define HAVE_SYSLOG_H 1
  5753. +#define HAVE_UNISTD_H 1
  5754. +#define HAVE_ET_COM_ERR_H 1
  5755. +#define HAVE_IFADDRS_H 1
  5756. +#define TIME_WITH_SYS_TIME 1
  5757. +#define HAVE_ALLOCA_H 1
  5758. +#define HAVE_ALLOCA 1
  5759. +#define HAVE_DIRENT_H 1
  5760. +#define CLOSEDIR_VOID 1
  5761. +#define HAVE_FORK 1
  5762. +#define HAVE_VFORK 1
  5763. +#define HAVE_WORKING_VFORK 1
  5764. +#define HAVE_WORKING_FORK 1
  5765. +#define GETGROUPS_T gid_t
  5766. +#define HAVE_GETMNTENT 1
  5767. +#define HAVE_LSTAT_EMPTY_STRING_BUG 1
  5768. +#define HAVE_SYS_SELECT_H 1
  5769. +#define HAVE_SYS_SOCKET_H 1
  5770. +#define SELECT_TYPE_ARG1 int
  5771. +#define SELECT_TYPE_ARG234 (fd_set *)
  5772. +#define SELECT_TYPE_ARG5 (struct timeval *)
  5773. +#define RETSIGTYPE void
  5774. +#define HAVE_STAT_EMPTY_STRING_BUG 1
  5775. +#define HAVE_VPRINTF 1
  5776. +#define HAVE_ALARM 1
  5777. +#define HAVE_ATEXIT 1
  5778. +#define HAVE_DUP2 1
  5779. +#define HAVE_FDATASYNC 1
  5780. +#define HAVE_FTRUNCATE 1
  5781. +#define HAVE_GETCWD 1
  5782. +#define HAVE_GETHOSTBYADDR 1
  5783. +#define HAVE_GETHOSTBYNAME 1
  5784. +#define HAVE_GETHOSTNAME 1
  5785. +#define HAVE_GETMNTENT 1
  5786. +#define HAVE_GETNAMEINFO 1
  5787. +#define HAVE_GETRPCBYNAME 1
  5788. +#define HAVE_GETIFADDRS 1
  5789. +#define HAVE_GETTIMEOFDAY 1
  5790. +#define HAVE_HASMNTOPT 1
  5791. +#define HAVE_INET_NTOA 1
  5792. +#define HAVE_MEMSET 1
  5793. +#define HAVE_MKDIR 1
  5794. +#define HAVE_PATHCONF 1
  5795. +#define HAVE_REALPATH 1
  5796. +#define HAVE_RMDIR 1
  5797. +#define HAVE_SELECT 1
  5798. +#define HAVE_SOCKET 1
  5799. +#define HAVE_STRCASECMP 1
  5800. +#define HAVE_STRCHR 1
  5801. +#define HAVE_STRDUP 1
  5802. +#define HAVE_STRERROR 1
  5803. +#define HAVE_STRRCHR 1
  5804. +#define HAVE_STRTOL 1
  5805. +#define HAVE_STRTOUL 1
  5806. +#define HAVE_SIGPROCMASK 1
  5807. +#define SIZEOF_SHORT 2
  5808. +#define SIZEOF_INT 4
  5809. +#define SIZEOF_LONG 4
  5810. +#define SIZEOF_SIZE_T 4
  5811. +#define SIZEOF_SOCKLEN_T 4
  5812. +#define NFS_STATEDIR "/var/lib/nfs"
  5813. -configure: caught signal 2
  5814. -configure: exit 1
  5815. +configure: exit 0