config.log 188 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483
  1. This file contains any messages produced by compilers while
  2. running configure, to aid debugging if configure makes a mistake.
  3. It was created by configure, which was
  4. generated by GNU Autoconf 2.69. Invocation command line was
  5. $ ./configure
  6. ## --------- ##
  7. ## Platform. ##
  8. ## --------- ##
  9. hostname = do3
  10. uname -m = x86_64
  11. uname -r = 4.9.0-8-amd64
  12. uname -s = Linux
  13. uname -v = #1 SMP Debian 4.9.130-2 (2018-10-27)
  14. /usr/bin/uname -p = unknown
  15. /bin/uname -X = unknown
  16. /bin/arch = unknown
  17. /usr/bin/arch -k = unknown
  18. /usr/convex/getsysinfo = unknown
  19. /usr/bin/hostinfo = unknown
  20. /bin/machine = unknown
  21. /usr/bin/oslevel = unknown
  22. /bin/universe = unknown
  23. PATH: /usr/local/sbin
  24. PATH: /usr/local/bin
  25. PATH: /usr/sbin
  26. PATH: /usr/bin
  27. PATH: /sbin
  28. PATH: /bin
  29. ## ----------- ##
  30. ## Core tests. ##
  31. ## ----------- ##
  32. configure:2231: checking for nasm
  33. configure:2249: found /usr/bin/nasm
  34. configure:2261: result: /usr/bin/nasm
  35. configure:2373: checking for gcc
  36. configure:2389: found /usr/bin/gcc
  37. configure:2400: result: gcc
  38. configure:2629: checking for C compiler version
  39. configure:2638: gcc --version >&5
  40. gcc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516
  41. Copyright (C) 2016 Free Software Foundation, Inc.
  42. This is free software; see the source for copying conditions. There is NO
  43. warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  44. configure:2649: $? = 0
  45. configure:2638: gcc -v >&5
  46. Using built-in specs.
  47. COLLECT_GCC=gcc
  48. COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/6/lto-wrapper
  49. Target: x86_64-linux-gnu
  50. Configured with: ../src/configure -v --with-pkgversion='Debian 6.3.0-18+deb9u1' --with-bugurl=file:///usr/share/doc/gcc-6/README.Bugs --enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-6 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-6-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-6-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-6-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
  51. Thread model: posix
  52. gcc version 6.3.0 20170516 (Debian 6.3.0-18+deb9u1)
  53. configure:2649: $? = 0
  54. configure:2638: gcc -V >&5
  55. gcc: error: unrecognized command line option '-V'
  56. gcc: fatal error: no input files
  57. compilation terminated.
  58. configure:2649: $? = 1
  59. configure:2638: gcc -qversion >&5
  60. gcc: error: unrecognized command line option '-qversion'; did you mean '--version'?
  61. gcc: fatal error: no input files
  62. compilation terminated.
  63. configure:2649: $? = 1
  64. configure:2669: checking whether the C compiler works
  65. configure:2691: gcc conftest.c >&5
  66. configure:2695: $? = 0
  67. configure:2743: result: yes
  68. configure:2746: checking for C compiler default output file name
  69. configure:2748: result: a.out
  70. configure:2754: checking for suffix of executables
  71. configure:2761: gcc -o conftest conftest.c >&5
  72. configure:2765: $? = 0
  73. configure:2787: result:
  74. configure:2809: checking whether we are cross compiling
  75. configure:2817: gcc -o conftest conftest.c >&5
  76. configure:2821: $? = 0
  77. configure:2828: ./conftest
  78. configure:2832: $? = 0
  79. configure:2847: result: no
  80. configure:2852: checking for suffix of object files
  81. configure:2874: gcc -c conftest.c >&5
  82. configure:2878: $? = 0
  83. configure:2899: result: o
  84. configure:2903: checking whether we are using the GNU C compiler
  85. configure:2922: gcc -c conftest.c >&5
  86. configure:2922: $? = 0
  87. configure:2931: result: yes
  88. configure:2940: checking whether gcc accepts -g
  89. configure:2960: gcc -c -g conftest.c >&5
  90. configure:2960: $? = 0
  91. configure:3001: result: yes
  92. configure:3018: checking for gcc option to accept ISO C89
  93. configure:3081: gcc -c -g -O2 conftest.c >&5
  94. configure:3081: $? = 0
  95. configure:3094: result: none needed
  96. configure:3120: checking how to run the C preprocessor
  97. configure:3151: gcc -E conftest.c
  98. configure:3151: $? = 0
  99. configure:3165: gcc -E conftest.c
  100. conftest.c:9:28: fatal error: ac_nonexistent.h: No such file or directory
  101. #include <ac_nonexistent.h>
  102. ^
  103. compilation terminated.
  104. configure:3165: $? = 1
  105. configure: failed program was:
  106. | /* confdefs.h */
  107. | #define PACKAGE_NAME ""
  108. | #define PACKAGE_TARNAME ""
  109. | #define PACKAGE_VERSION ""
  110. | #define PACKAGE_STRING ""
  111. | #define PACKAGE_BUGREPORT ""
  112. | #define PACKAGE_URL ""
  113. | /* end confdefs.h. */
  114. | #include <ac_nonexistent.h>
  115. configure:3190: result: gcc -E
  116. configure:3210: gcc -E conftest.c
  117. configure:3210: $? = 0
  118. configure:3224: gcc -E conftest.c
  119. conftest.c:9:28: fatal error: ac_nonexistent.h: No such file or directory
  120. #include <ac_nonexistent.h>
  121. ^
  122. compilation terminated.
  123. configure:3224: $? = 1
  124. configure: failed program was:
  125. | /* confdefs.h */
  126. | #define PACKAGE_NAME ""
  127. | #define PACKAGE_TARNAME ""
  128. | #define PACKAGE_VERSION ""
  129. | #define PACKAGE_STRING ""
  130. | #define PACKAGE_BUGREPORT ""
  131. | #define PACKAGE_URL ""
  132. | /* end confdefs.h. */
  133. | #include <ac_nonexistent.h>
  134. configure:3253: checking for grep that handles long lines and -e
  135. configure:3311: result: /bin/grep
  136. configure:3316: checking for egrep
  137. configure:3378: result: /bin/grep -E
  138. configure:3383: checking for ANSI C header files
  139. configure:3403: gcc -c -g -O2 conftest.c >&5
  140. configure:3403: $? = 0
  141. configure:3476: gcc -o conftest -g -O2 conftest.c >&5
  142. configure:3476: $? = 0
  143. configure:3476: ./conftest
  144. configure:3476: $? = 0
  145. configure:3487: result: yes
  146. configure:3500: checking for sys/types.h
  147. configure:3500: gcc -c -g -O2 conftest.c >&5
  148. configure:3500: $? = 0
  149. configure:3500: result: yes
  150. configure:3500: checking for sys/stat.h
  151. configure:3500: gcc -c -g -O2 conftest.c >&5
  152. configure:3500: $? = 0
  153. configure:3500: result: yes
  154. configure:3500: checking for stdlib.h
  155. configure:3500: gcc -c -g -O2 conftest.c >&5
  156. configure:3500: $? = 0
  157. configure:3500: result: yes
  158. configure:3500: checking for string.h
  159. configure:3500: gcc -c -g -O2 conftest.c >&5
  160. configure:3500: $? = 0
  161. configure:3500: result: yes
  162. configure:3500: checking for memory.h
  163. configure:3500: gcc -c -g -O2 conftest.c >&5
  164. configure:3500: $? = 0
  165. configure:3500: result: yes
  166. configure:3500: checking for strings.h
  167. configure:3500: gcc -c -g -O2 conftest.c >&5
  168. configure:3500: $? = 0
  169. configure:3500: result: yes
  170. configure:3500: checking for inttypes.h
  171. configure:3500: gcc -c -g -O2 conftest.c >&5
  172. configure:3500: $? = 0
  173. configure:3500: result: yes
  174. configure:3500: checking for stdint.h
  175. configure:3500: gcc -c -g -O2 conftest.c >&5
  176. configure:3500: $? = 0
  177. configure:3500: result: yes
  178. configure:3500: checking for unistd.h
  179. configure:3500: gcc -c -g -O2 conftest.c >&5
  180. configure:3500: $? = 0
  181. configure:3500: result: yes
  182. configure:3513: checking minix/config.h usability
  183. configure:3513: gcc -c -g -O2 conftest.c >&5
  184. conftest.c:52:26: fatal error: minix/config.h: No such file or directory
  185. #include <minix/config.h>
  186. ^
  187. compilation terminated.
  188. configure:3513: $? = 1
  189. configure: failed program was:
  190. | /* confdefs.h */
  191. | #define PACKAGE_NAME ""
  192. | #define PACKAGE_TARNAME ""
  193. | #define PACKAGE_VERSION ""
  194. | #define PACKAGE_STRING ""
  195. | #define PACKAGE_BUGREPORT ""
  196. | #define PACKAGE_URL ""
  197. | #define STDC_HEADERS 1
  198. | #define HAVE_SYS_TYPES_H 1
  199. | #define HAVE_SYS_STAT_H 1
  200. | #define HAVE_STDLIB_H 1
  201. | #define HAVE_STRING_H 1
  202. | #define HAVE_MEMORY_H 1
  203. | #define HAVE_STRINGS_H 1
  204. | #define HAVE_INTTYPES_H 1
  205. | #define HAVE_STDINT_H 1
  206. | #define HAVE_UNISTD_H 1
  207. | /* end confdefs.h. */
  208. | #include <stdio.h>
  209. | #ifdef HAVE_SYS_TYPES_H
  210. | # include <sys/types.h>
  211. | #endif
  212. | #ifdef HAVE_SYS_STAT_H
  213. | # include <sys/stat.h>
  214. | #endif
  215. | #ifdef STDC_HEADERS
  216. | # include <stdlib.h>
  217. | # include <stddef.h>
  218. | #else
  219. | # ifdef HAVE_STDLIB_H
  220. | # include <stdlib.h>
  221. | # endif
  222. | #endif
  223. | #ifdef HAVE_STRING_H
  224. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  225. | # include <memory.h>
  226. | # endif
  227. | # include <string.h>
  228. | #endif
  229. | #ifdef HAVE_STRINGS_H
  230. | # include <strings.h>
  231. | #endif
  232. | #ifdef HAVE_INTTYPES_H
  233. | # include <inttypes.h>
  234. | #endif
  235. | #ifdef HAVE_STDINT_H
  236. | # include <stdint.h>
  237. | #endif
  238. | #ifdef HAVE_UNISTD_H
  239. | # include <unistd.h>
  240. | #endif
  241. | #include <minix/config.h>
  242. configure:3513: result: no
  243. configure:3513: checking minix/config.h presence
  244. configure:3513: gcc -E conftest.c
  245. conftest.c:19:26: fatal error: minix/config.h: No such file or directory
  246. #include <minix/config.h>
  247. ^
  248. compilation terminated.
  249. configure:3513: $? = 1
  250. configure: failed program was:
  251. | /* confdefs.h */
  252. | #define PACKAGE_NAME ""
  253. | #define PACKAGE_TARNAME ""
  254. | #define PACKAGE_VERSION ""
  255. | #define PACKAGE_STRING ""
  256. | #define PACKAGE_BUGREPORT ""
  257. | #define PACKAGE_URL ""
  258. | #define STDC_HEADERS 1
  259. | #define HAVE_SYS_TYPES_H 1
  260. | #define HAVE_SYS_STAT_H 1
  261. | #define HAVE_STDLIB_H 1
  262. | #define HAVE_STRING_H 1
  263. | #define HAVE_MEMORY_H 1
  264. | #define HAVE_STRINGS_H 1
  265. | #define HAVE_INTTYPES_H 1
  266. | #define HAVE_STDINT_H 1
  267. | #define HAVE_UNISTD_H 1
  268. | /* end confdefs.h. */
  269. | #include <minix/config.h>
  270. configure:3513: result: no
  271. configure:3513: checking for minix/config.h
  272. configure:3513: result: no
  273. configure:3534: checking whether it is safe to define __EXTENSIONS__
  274. configure:3552: gcc -c -g -O2 conftest.c >&5
  275. configure:3552: $? = 0
  276. configure:3559: result: yes
  277. configure:3580: checking for special C compiler options needed for large files
  278. configure:3625: result: no
  279. configure:3631: checking for _FILE_OFFSET_BITS value needed for large files
  280. configure:3656: gcc -c -g -O2 conftest.c >&5
  281. configure:3656: $? = 0
  282. configure:3688: result: no
  283. configure:3821: checking for gcc
  284. configure:3848: result: gcc
  285. configure:4077: checking for C compiler version
  286. configure:4086: gcc --version >&5
  287. gcc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516
  288. Copyright (C) 2016 Free Software Foundation, Inc.
  289. This is free software; see the source for copying conditions. There is NO
  290. warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  291. configure:4097: $? = 0
  292. configure:4086: gcc -v >&5
  293. Using built-in specs.
  294. COLLECT_GCC=gcc
  295. COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/6/lto-wrapper
  296. Target: x86_64-linux-gnu
  297. Configured with: ../src/configure -v --with-pkgversion='Debian 6.3.0-18+deb9u1' --with-bugurl=file:///usr/share/doc/gcc-6/README.Bugs --enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-6 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-6-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-6-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-6-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
  298. Thread model: posix
  299. gcc version 6.3.0 20170516 (Debian 6.3.0-18+deb9u1)
  300. configure:4097: $? = 0
  301. configure:4086: gcc -V >&5
  302. gcc: error: unrecognized command line option '-V'
  303. gcc: fatal error: no input files
  304. compilation terminated.
  305. configure:4097: $? = 1
  306. configure:4086: gcc -qversion >&5
  307. gcc: error: unrecognized command line option '-qversion'; did you mean '--version'?
  308. gcc: fatal error: no input files
  309. compilation terminated.
  310. configure:4097: $? = 1
  311. configure:4101: checking whether we are using the GNU C compiler
  312. configure:4129: result: yes
  313. configure:4138: checking whether gcc accepts -g
  314. configure:4199: result: yes
  315. configure:4216: checking for gcc option to accept ISO C89
  316. configure:4292: result: none needed
  317. configure:4316: checking for gcc option to accept ISO C99
  318. configure:4465: gcc -c -g -O2 conftest.c >&5
  319. configure:4465: $? = 0
  320. configure:4478: result: none needed
  321. configure:4586: checking for gcc option to accept ISO Standard C
  322. configure:4597: result: none needed
  323. configure:4604: checking whether ln -s works
  324. configure:4608: result: yes
  325. configure:4615: checking whether make sets $(MAKE)
  326. configure:4637: result: yes
  327. configure:4689: checking for a BSD-compatible install
  328. configure:4757: result: /usr/bin/install -c
  329. configure:4875: checking for suffix of library files
  330. configure:4887: result: a
  331. configure:4891: checking for an ANSI C-conforming const
  332. configure:4957: gcc -c -g -O3 conftest.c >&5
  333. configure:4957: $? = 0
  334. configure:4964: result: yes
  335. configure:4972: checking for inline
  336. configure:4988: gcc -c -g -O3 conftest.c >&5
  337. configure:4988: $? = 0
  338. configure:4996: result: inline
  339. configure:5014: checking for C/C++ restrict keyword
  340. configure:5039: gcc -c -g -O3 conftest.c >&5
  341. configure:5039: $? = 0
  342. configure:5047: result: __restrict
  343. configure:5060: checking for size_t
  344. configure:5060: gcc -c -g -O3 conftest.c >&5
  345. configure:5060: $? = 0
  346. configure:5060: gcc -c -g -O3 conftest.c >&5
  347. conftest.c: In function 'main':
  348. conftest.c:61:21: error: expected expression before ')' token
  349. if (sizeof ((size_t)))
  350. ^
  351. configure:5060: $? = 1
  352. configure: failed program was:
  353. | /* confdefs.h */
  354. | #define PACKAGE_NAME ""
  355. | #define PACKAGE_TARNAME ""
  356. | #define PACKAGE_VERSION ""
  357. | #define PACKAGE_STRING ""
  358. | #define PACKAGE_BUGREPORT ""
  359. | #define PACKAGE_URL ""
  360. | #define STDC_HEADERS 1
  361. | #define HAVE_SYS_TYPES_H 1
  362. | #define HAVE_SYS_STAT_H 1
  363. | #define HAVE_STDLIB_H 1
  364. | #define HAVE_STRING_H 1
  365. | #define HAVE_MEMORY_H 1
  366. | #define HAVE_STRINGS_H 1
  367. | #define HAVE_INTTYPES_H 1
  368. | #define HAVE_STDINT_H 1
  369. | #define HAVE_UNISTD_H 1
  370. | #define __EXTENSIONS__ 1
  371. | #define _ALL_SOURCE 1
  372. | #define _GNU_SOURCE 1
  373. | #define _POSIX_PTHREAD_SEMANTICS 1
  374. | #define _TANDEM_SOURCE 1
  375. | #define restrict __restrict
  376. | /* end confdefs.h. */
  377. | #include <stdio.h>
  378. | #ifdef HAVE_SYS_TYPES_H
  379. | # include <sys/types.h>
  380. | #endif
  381. | #ifdef HAVE_SYS_STAT_H
  382. | # include <sys/stat.h>
  383. | #endif
  384. | #ifdef STDC_HEADERS
  385. | # include <stdlib.h>
  386. | # include <stddef.h>
  387. | #else
  388. | # ifdef HAVE_STDLIB_H
  389. | # include <stdlib.h>
  390. | # endif
  391. | #endif
  392. | #ifdef HAVE_STRING_H
  393. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  394. | # include <memory.h>
  395. | # endif
  396. | # include <string.h>
  397. | #endif
  398. | #ifdef HAVE_STRINGS_H
  399. | # include <strings.h>
  400. | #endif
  401. | #ifdef HAVE_INTTYPES_H
  402. | # include <inttypes.h>
  403. | #endif
  404. | #ifdef HAVE_STDINT_H
  405. | # include <stdint.h>
  406. | #endif
  407. | #ifdef HAVE_UNISTD_H
  408. | # include <unistd.h>
  409. | #endif
  410. | int
  411. | main ()
  412. | {
  413. | if (sizeof ((size_t)))
  414. | return 0;
  415. | ;
  416. | return 0;
  417. | }
  418. configure:5060: result: yes
  419. configure:5071: checking whether byte ordering is bigendian
  420. configure:5086: gcc -c -g -O3 conftest.c >&5
  421. conftest.c:26:9: error: unknown type name 'not'
  422. not a universal capable compiler
  423. ^~~
  424. conftest.c:26:15: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'universal'
  425. not a universal capable compiler
  426. ^~~~~~~~~
  427. conftest.c:26:15: error: unknown type name 'universal'
  428. configure:5086: $? = 1
  429. configure: failed program was:
  430. | /* confdefs.h */
  431. | #define PACKAGE_NAME ""
  432. | #define PACKAGE_TARNAME ""
  433. | #define PACKAGE_VERSION ""
  434. | #define PACKAGE_STRING ""
  435. | #define PACKAGE_BUGREPORT ""
  436. | #define PACKAGE_URL ""
  437. | #define STDC_HEADERS 1
  438. | #define HAVE_SYS_TYPES_H 1
  439. | #define HAVE_SYS_STAT_H 1
  440. | #define HAVE_STDLIB_H 1
  441. | #define HAVE_STRING_H 1
  442. | #define HAVE_MEMORY_H 1
  443. | #define HAVE_STRINGS_H 1
  444. | #define HAVE_INTTYPES_H 1
  445. | #define HAVE_STDINT_H 1
  446. | #define HAVE_UNISTD_H 1
  447. | #define __EXTENSIONS__ 1
  448. | #define _ALL_SOURCE 1
  449. | #define _GNU_SOURCE 1
  450. | #define _POSIX_PTHREAD_SEMANTICS 1
  451. | #define _TANDEM_SOURCE 1
  452. | #define restrict __restrict
  453. | /* end confdefs.h. */
  454. | #ifndef __APPLE_CC__
  455. | not a universal capable compiler
  456. | #endif
  457. | typedef int dummy;
  458. |
  459. configure:5131: gcc -c -g -O3 conftest.c >&5
  460. configure:5131: $? = 0
  461. configure:5149: gcc -c -g -O3 conftest.c >&5
  462. conftest.c: In function 'main':
  463. conftest.c:32:4: error: unknown type name 'not'
  464. not big endian
  465. ^~~
  466. conftest.c:32:12: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'endian'
  467. not big endian
  468. ^~~~~~
  469. configure:5149: $? = 1
  470. configure: failed program was:
  471. | /* confdefs.h */
  472. | #define PACKAGE_NAME ""
  473. | #define PACKAGE_TARNAME ""
  474. | #define PACKAGE_VERSION ""
  475. | #define PACKAGE_STRING ""
  476. | #define PACKAGE_BUGREPORT ""
  477. | #define PACKAGE_URL ""
  478. | #define STDC_HEADERS 1
  479. | #define HAVE_SYS_TYPES_H 1
  480. | #define HAVE_SYS_STAT_H 1
  481. | #define HAVE_STDLIB_H 1
  482. | #define HAVE_STRING_H 1
  483. | #define HAVE_MEMORY_H 1
  484. | #define HAVE_STRINGS_H 1
  485. | #define HAVE_INTTYPES_H 1
  486. | #define HAVE_STDINT_H 1
  487. | #define HAVE_UNISTD_H 1
  488. | #define __EXTENSIONS__ 1
  489. | #define _ALL_SOURCE 1
  490. | #define _GNU_SOURCE 1
  491. | #define _POSIX_PTHREAD_SEMANTICS 1
  492. | #define _TANDEM_SOURCE 1
  493. | #define restrict __restrict
  494. | /* end confdefs.h. */
  495. | #include <sys/types.h>
  496. | #include <sys/param.h>
  497. |
  498. | int
  499. | main ()
  500. | {
  501. | #if BYTE_ORDER != BIG_ENDIAN
  502. | not big endian
  503. | #endif
  504. |
  505. | ;
  506. | return 0;
  507. | }
  508. configure:5277: result: no
  509. configure:5299: checking if gcc accepts -fwrapv
  510. configure:5314: gcc -o conftest -g -O3 -fwrapv conftest.c >&5
  511. configure:5314: $? = 0
  512. configure:5315: result: yes
  513. configure:5329: checking if gcc accepts -U__STRICT_ANSI__
  514. configure:5344: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ conftest.c >&5
  515. configure:5344: $? = 0
  516. configure:5345: result: yes
  517. configure:5359: checking if gcc accepts -fno-common
  518. configure:5374: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  519. configure:5374: $? = 0
  520. configure:5375: result: yes
  521. configure:5393: checking for nroff
  522. configure:5423: result: no
  523. configure:5436: checking for asciidoc
  524. configure:5466: result: no
  525. configure:5479: checking for xmlto
  526. configure:5509: result: no
  527. configure:5520: WARNING: No asciidoc package found
  528. configure:5525: WARNING: No xmlto package found
  529. configure:5573: checking for ar
  530. configure:5589: found /usr/bin/ar
  531. configure:5600: result: ar
  532. configure:5665: checking for ranlib
  533. configure:5681: found /usr/bin/ranlib
  534. configure:5692: result: ranlib
  535. configure:5757: checking for strip
  536. configure:5773: found /usr/bin/strip
  537. configure:5784: result: strip
  538. configure:5807: checking for ANSI C header files
  539. configure:5911: result: yes
  540. configure:5921: checking for inttypes.h
  541. configure:5921: result: yes
  542. configure:5933: checking for strings.h
  543. configure:5933: result: yes
  544. configure:5943: checking for stdbool.h that conforms to C99
  545. configure:6010: gcc -c -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  546. configure:6010: $? = 0
  547. configure:6017: result: yes
  548. configure:6019: checking for _Bool
  549. configure:6019: gcc -c -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  550. configure:6019: $? = 0
  551. configure:6019: gcc -c -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  552. conftest.c: In function 'main':
  553. conftest.c:68:20: error: expected expression before ')' token
  554. if (sizeof ((_Bool)))
  555. ^
  556. configure:6019: $? = 1
  557. configure: failed program was:
  558. | /* confdefs.h */
  559. | #define PACKAGE_NAME ""
  560. | #define PACKAGE_TARNAME ""
  561. | #define PACKAGE_VERSION ""
  562. | #define PACKAGE_STRING ""
  563. | #define PACKAGE_BUGREPORT ""
  564. | #define PACKAGE_URL ""
  565. | #define STDC_HEADERS 1
  566. | #define HAVE_SYS_TYPES_H 1
  567. | #define HAVE_SYS_STAT_H 1
  568. | #define HAVE_STDLIB_H 1
  569. | #define HAVE_STRING_H 1
  570. | #define HAVE_MEMORY_H 1
  571. | #define HAVE_STRINGS_H 1
  572. | #define HAVE_INTTYPES_H 1
  573. | #define HAVE_STDINT_H 1
  574. | #define HAVE_UNISTD_H 1
  575. | #define __EXTENSIONS__ 1
  576. | #define _ALL_SOURCE 1
  577. | #define _GNU_SOURCE 1
  578. | #define _POSIX_PTHREAD_SEMANTICS 1
  579. | #define _TANDEM_SOURCE 1
  580. | #define restrict __restrict
  581. | #define WORDS_LITTLEENDIAN 1
  582. | #define CFLAG_FWRAPV 1
  583. | #define CFLAG_U_STRICT_ANSI 1
  584. | #define CFLAG_FNO_COMMON 1
  585. | #define STDC_HEADERS 1
  586. | #define HAVE_INTTYPES_H 1
  587. | #define HAVE_STRINGS_H 1
  588. | /* end confdefs.h. */
  589. | #include <stdio.h>
  590. | #ifdef HAVE_SYS_TYPES_H
  591. | # include <sys/types.h>
  592. | #endif
  593. | #ifdef HAVE_SYS_STAT_H
  594. | # include <sys/stat.h>
  595. | #endif
  596. | #ifdef STDC_HEADERS
  597. | # include <stdlib.h>
  598. | # include <stddef.h>
  599. | #else
  600. | # ifdef HAVE_STDLIB_H
  601. | # include <stdlib.h>
  602. | # endif
  603. | #endif
  604. | #ifdef HAVE_STRING_H
  605. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  606. | # include <memory.h>
  607. | # endif
  608. | # include <string.h>
  609. | #endif
  610. | #ifdef HAVE_STRINGS_H
  611. | # include <strings.h>
  612. | #endif
  613. | #ifdef HAVE_INTTYPES_H
  614. | # include <inttypes.h>
  615. | #endif
  616. | #ifdef HAVE_STDINT_H
  617. | # include <stdint.h>
  618. | #endif
  619. | #ifdef HAVE_UNISTD_H
  620. | # include <unistd.h>
  621. | #endif
  622. | int
  623. | main ()
  624. | {
  625. | if (sizeof ((_Bool)))
  626. | return 0;
  627. | ;
  628. | return 0;
  629. | }
  630. configure:6019: result: yes
  631. configure:6038: checking stdnoreturn.h usability
  632. configure:6038: gcc -c -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  633. configure:6038: $? = 0
  634. configure:6038: result: yes
  635. configure:6038: checking stdnoreturn.h presence
  636. configure:6038: gcc -E conftest.c
  637. configure:6038: $? = 0
  638. configure:6038: result: yes
  639. configure:6038: checking for stdnoreturn.h
  640. configure:6038: result: yes
  641. configure:6050: checking io.h usability
  642. configure:6050: gcc -c -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  643. conftest.c:68:16: fatal error: io.h: No such file or directory
  644. #include <io.h>
  645. ^
  646. compilation terminated.
  647. configure:6050: $? = 1
  648. configure: failed program was:
  649. | /* confdefs.h */
  650. | #define PACKAGE_NAME ""
  651. | #define PACKAGE_TARNAME ""
  652. | #define PACKAGE_VERSION ""
  653. | #define PACKAGE_STRING ""
  654. | #define PACKAGE_BUGREPORT ""
  655. | #define PACKAGE_URL ""
  656. | #define STDC_HEADERS 1
  657. | #define HAVE_SYS_TYPES_H 1
  658. | #define HAVE_SYS_STAT_H 1
  659. | #define HAVE_STDLIB_H 1
  660. | #define HAVE_STRING_H 1
  661. | #define HAVE_MEMORY_H 1
  662. | #define HAVE_STRINGS_H 1
  663. | #define HAVE_INTTYPES_H 1
  664. | #define HAVE_STDINT_H 1
  665. | #define HAVE_UNISTD_H 1
  666. | #define __EXTENSIONS__ 1
  667. | #define _ALL_SOURCE 1
  668. | #define _GNU_SOURCE 1
  669. | #define _POSIX_PTHREAD_SEMANTICS 1
  670. | #define _TANDEM_SOURCE 1
  671. | #define restrict __restrict
  672. | #define WORDS_LITTLEENDIAN 1
  673. | #define CFLAG_FWRAPV 1
  674. | #define CFLAG_U_STRICT_ANSI 1
  675. | #define CFLAG_FNO_COMMON 1
  676. | #define STDC_HEADERS 1
  677. | #define HAVE_INTTYPES_H 1
  678. | #define HAVE_STRINGS_H 1
  679. | #define HAVE__BOOL 1
  680. | #define HAVE_STDBOOL_H 1
  681. | #define HAVE_STDNORETURN_H 1
  682. | /* end confdefs.h. */
  683. | #include <stdio.h>
  684. | #ifdef HAVE_SYS_TYPES_H
  685. | # include <sys/types.h>
  686. | #endif
  687. | #ifdef HAVE_SYS_STAT_H
  688. | # include <sys/stat.h>
  689. | #endif
  690. | #ifdef STDC_HEADERS
  691. | # include <stdlib.h>
  692. | # include <stddef.h>
  693. | #else
  694. | # ifdef HAVE_STDLIB_H
  695. | # include <stdlib.h>
  696. | # endif
  697. | #endif
  698. | #ifdef HAVE_STRING_H
  699. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  700. | # include <memory.h>
  701. | # endif
  702. | # include <string.h>
  703. | #endif
  704. | #ifdef HAVE_STRINGS_H
  705. | # include <strings.h>
  706. | #endif
  707. | #ifdef HAVE_INTTYPES_H
  708. | # include <inttypes.h>
  709. | #endif
  710. | #ifdef HAVE_STDINT_H
  711. | # include <stdint.h>
  712. | #endif
  713. | #ifdef HAVE_UNISTD_H
  714. | # include <unistd.h>
  715. | #endif
  716. | #include <io.h>
  717. configure:6050: result: no
  718. configure:6050: checking io.h presence
  719. configure:6050: gcc -E conftest.c
  720. conftest.c:35:16: fatal error: io.h: No such file or directory
  721. #include <io.h>
  722. ^
  723. compilation terminated.
  724. configure:6050: $? = 1
  725. configure: failed program was:
  726. | /* confdefs.h */
  727. | #define PACKAGE_NAME ""
  728. | #define PACKAGE_TARNAME ""
  729. | #define PACKAGE_VERSION ""
  730. | #define PACKAGE_STRING ""
  731. | #define PACKAGE_BUGREPORT ""
  732. | #define PACKAGE_URL ""
  733. | #define STDC_HEADERS 1
  734. | #define HAVE_SYS_TYPES_H 1
  735. | #define HAVE_SYS_STAT_H 1
  736. | #define HAVE_STDLIB_H 1
  737. | #define HAVE_STRING_H 1
  738. | #define HAVE_MEMORY_H 1
  739. | #define HAVE_STRINGS_H 1
  740. | #define HAVE_INTTYPES_H 1
  741. | #define HAVE_STDINT_H 1
  742. | #define HAVE_UNISTD_H 1
  743. | #define __EXTENSIONS__ 1
  744. | #define _ALL_SOURCE 1
  745. | #define _GNU_SOURCE 1
  746. | #define _POSIX_PTHREAD_SEMANTICS 1
  747. | #define _TANDEM_SOURCE 1
  748. | #define restrict __restrict
  749. | #define WORDS_LITTLEENDIAN 1
  750. | #define CFLAG_FWRAPV 1
  751. | #define CFLAG_U_STRICT_ANSI 1
  752. | #define CFLAG_FNO_COMMON 1
  753. | #define STDC_HEADERS 1
  754. | #define HAVE_INTTYPES_H 1
  755. | #define HAVE_STRINGS_H 1
  756. | #define HAVE__BOOL 1
  757. | #define HAVE_STDBOOL_H 1
  758. | #define HAVE_STDNORETURN_H 1
  759. | /* end confdefs.h. */
  760. | #include <io.h>
  761. configure:6050: result: no
  762. configure:6050: checking for io.h
  763. configure:6050: result: no
  764. configure:6062: checking fcntl.h usability
  765. configure:6062: gcc -c -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  766. configure:6062: $? = 0
  767. configure:6062: result: yes
  768. configure:6062: checking fcntl.h presence
  769. configure:6062: gcc -E conftest.c
  770. configure:6062: $? = 0
  771. configure:6062: result: yes
  772. configure:6062: checking for fcntl.h
  773. configure:6062: result: yes
  774. configure:6074: checking for unistd.h
  775. configure:6074: result: yes
  776. configure:6086: checking sys/mman.h usability
  777. configure:6086: gcc -c -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  778. configure:6086: $? = 0
  779. configure:6086: result: yes
  780. configure:6086: checking sys/mman.h presence
  781. configure:6086: gcc -E conftest.c
  782. configure:6086: $? = 0
  783. configure:6086: result: yes
  784. configure:6086: checking for sys/mman.h
  785. configure:6086: result: yes
  786. configure:6098: checking for sys/types.h
  787. configure:6098: result: yes
  788. configure:6110: checking for sys/stat.h
  789. configure:6110: result: yes
  790. configure:6124: checking for strcasecmp
  791. configure:6124: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  792. conftest.c:63:6: warning: conflicting types for built-in function 'strcasecmp'
  793. char strcasecmp ();
  794. ^~~~~~~~~~
  795. configure:6124: $? = 0
  796. configure:6124: result: yes
  797. configure:6124: checking for stricmp
  798. configure:6124: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  799. /tmp/ccNxTlT0.o: In function `main':
  800. /root/ffmpeg-raspberry-pi/nasm-2.14.02/conftest.c:75: undefined reference to `stricmp'
  801. collect2: error: ld returned 1 exit status
  802. configure:6124: $? = 1
  803. configure: failed program was:
  804. | /* confdefs.h */
  805. | #define PACKAGE_NAME ""
  806. | #define PACKAGE_TARNAME ""
  807. | #define PACKAGE_VERSION ""
  808. | #define PACKAGE_STRING ""
  809. | #define PACKAGE_BUGREPORT ""
  810. | #define PACKAGE_URL ""
  811. | #define STDC_HEADERS 1
  812. | #define HAVE_SYS_TYPES_H 1
  813. | #define HAVE_SYS_STAT_H 1
  814. | #define HAVE_STDLIB_H 1
  815. | #define HAVE_STRING_H 1
  816. | #define HAVE_MEMORY_H 1
  817. | #define HAVE_STRINGS_H 1
  818. | #define HAVE_INTTYPES_H 1
  819. | #define HAVE_STDINT_H 1
  820. | #define HAVE_UNISTD_H 1
  821. | #define __EXTENSIONS__ 1
  822. | #define _ALL_SOURCE 1
  823. | #define _GNU_SOURCE 1
  824. | #define _POSIX_PTHREAD_SEMANTICS 1
  825. | #define _TANDEM_SOURCE 1
  826. | #define restrict __restrict
  827. | #define WORDS_LITTLEENDIAN 1
  828. | #define CFLAG_FWRAPV 1
  829. | #define CFLAG_U_STRICT_ANSI 1
  830. | #define CFLAG_FNO_COMMON 1
  831. | #define STDC_HEADERS 1
  832. | #define HAVE_INTTYPES_H 1
  833. | #define HAVE_STRINGS_H 1
  834. | #define HAVE__BOOL 1
  835. | #define HAVE_STDBOOL_H 1
  836. | #define HAVE_STDNORETURN_H 1
  837. | #define HAVE_FCNTL_H 1
  838. | #define HAVE_UNISTD_H 1
  839. | #define HAVE_SYS_MMAN_H 1
  840. | #define HAVE_SYS_TYPES_H 1
  841. | #define HAVE_SYS_STAT_H 1
  842. | #define HAVE_STRCASECMP 1
  843. | /* end confdefs.h. */
  844. | /* Define stricmp to an innocuous variant, in case <limits.h> declares stricmp.
  845. | For example, HP-UX 11i <limits.h> declares gettimeofday. */
  846. | #define stricmp innocuous_stricmp
  847. |
  848. | /* System header to define __stub macros and hopefully few prototypes,
  849. | which can conflict with char stricmp (); below.
  850. | Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  851. | <limits.h> exists even on freestanding compilers. */
  852. |
  853. | #ifdef __STDC__
  854. | # include <limits.h>
  855. | #else
  856. | # include <assert.h>
  857. | #endif
  858. |
  859. | #undef stricmp
  860. |
  861. | /* Override any GCC internal prototype to avoid an error.
  862. | Use char because int might match the return type of a GCC
  863. | builtin and then its argument prototype would still apply. */
  864. | #ifdef __cplusplus
  865. | extern "C"
  866. | #endif
  867. | char stricmp ();
  868. | /* The GNU C library defines this for functions which it implements
  869. | to always fail with ENOSYS. Some functions are actually named
  870. | something starting with __ and the normal name is an alias. */
  871. | #if defined __stub_stricmp || defined __stub___stricmp
  872. | choke me
  873. | #endif
  874. |
  875. | int
  876. | main ()
  877. | {
  878. | return stricmp ();
  879. | ;
  880. | return 0;
  881. | }
  882. configure:6124: result: no
  883. configure:6136: checking for strncasecmp
  884. configure:6136: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  885. conftest.c:64:6: warning: conflicting types for built-in function 'strncasecmp'
  886. char strncasecmp ();
  887. ^~~~~~~~~~~
  888. configure:6136: $? = 0
  889. configure:6136: result: yes
  890. configure:6136: checking for strnicmp
  891. configure:6136: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  892. /tmp/ccAt1T17.o: In function `main':
  893. /root/ffmpeg-raspberry-pi/nasm-2.14.02/conftest.c:76: undefined reference to `strnicmp'
  894. collect2: error: ld returned 1 exit status
  895. configure:6136: $? = 1
  896. configure: failed program was:
  897. | /* confdefs.h */
  898. | #define PACKAGE_NAME ""
  899. | #define PACKAGE_TARNAME ""
  900. | #define PACKAGE_VERSION ""
  901. | #define PACKAGE_STRING ""
  902. | #define PACKAGE_BUGREPORT ""
  903. | #define PACKAGE_URL ""
  904. | #define STDC_HEADERS 1
  905. | #define HAVE_SYS_TYPES_H 1
  906. | #define HAVE_SYS_STAT_H 1
  907. | #define HAVE_STDLIB_H 1
  908. | #define HAVE_STRING_H 1
  909. | #define HAVE_MEMORY_H 1
  910. | #define HAVE_STRINGS_H 1
  911. | #define HAVE_INTTYPES_H 1
  912. | #define HAVE_STDINT_H 1
  913. | #define HAVE_UNISTD_H 1
  914. | #define __EXTENSIONS__ 1
  915. | #define _ALL_SOURCE 1
  916. | #define _GNU_SOURCE 1
  917. | #define _POSIX_PTHREAD_SEMANTICS 1
  918. | #define _TANDEM_SOURCE 1
  919. | #define restrict __restrict
  920. | #define WORDS_LITTLEENDIAN 1
  921. | #define CFLAG_FWRAPV 1
  922. | #define CFLAG_U_STRICT_ANSI 1
  923. | #define CFLAG_FNO_COMMON 1
  924. | #define STDC_HEADERS 1
  925. | #define HAVE_INTTYPES_H 1
  926. | #define HAVE_STRINGS_H 1
  927. | #define HAVE__BOOL 1
  928. | #define HAVE_STDBOOL_H 1
  929. | #define HAVE_STDNORETURN_H 1
  930. | #define HAVE_FCNTL_H 1
  931. | #define HAVE_UNISTD_H 1
  932. | #define HAVE_SYS_MMAN_H 1
  933. | #define HAVE_SYS_TYPES_H 1
  934. | #define HAVE_SYS_STAT_H 1
  935. | #define HAVE_STRCASECMP 1
  936. | #define HAVE_STRNCASECMP 1
  937. | /* end confdefs.h. */
  938. | /* Define strnicmp to an innocuous variant, in case <limits.h> declares strnicmp.
  939. | For example, HP-UX 11i <limits.h> declares gettimeofday. */
  940. | #define strnicmp innocuous_strnicmp
  941. |
  942. | /* System header to define __stub macros and hopefully few prototypes,
  943. | which can conflict with char strnicmp (); below.
  944. | Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  945. | <limits.h> exists even on freestanding compilers. */
  946. |
  947. | #ifdef __STDC__
  948. | # include <limits.h>
  949. | #else
  950. | # include <assert.h>
  951. | #endif
  952. |
  953. | #undef strnicmp
  954. |
  955. | /* Override any GCC internal prototype to avoid an error.
  956. | Use char because int might match the return type of a GCC
  957. | builtin and then its argument prototype would still apply. */
  958. | #ifdef __cplusplus
  959. | extern "C"
  960. | #endif
  961. | char strnicmp ();
  962. | /* The GNU C library defines this for functions which it implements
  963. | to always fail with ENOSYS. Some functions are actually named
  964. | something starting with __ and the normal name is an alias. */
  965. | #if defined __stub_strnicmp || defined __stub___strnicmp
  966. | choke me
  967. | #endif
  968. |
  969. | int
  970. | main ()
  971. | {
  972. | return strnicmp ();
  973. | ;
  974. | return 0;
  975. | }
  976. configure:6136: result: no
  977. configure:6147: checking for strsep
  978. configure:6147: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  979. configure:6147: $? = 0
  980. configure:6147: result: yes
  981. configure:6158: checking for strnlen
  982. configure:6158: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  983. configure:6158: $? = 0
  984. configure:6158: result: yes
  985. configure:6169: checking for strrchrnul
  986. configure:6169: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  987. /tmp/ccA4nsFj.o: In function `main':
  988. /root/ffmpeg-raspberry-pi/nasm-2.14.02/conftest.c:78: undefined reference to `strrchrnul'
  989. collect2: error: ld returned 1 exit status
  990. configure:6169: $? = 1
  991. configure: failed program was:
  992. | /* confdefs.h */
  993. | #define PACKAGE_NAME ""
  994. | #define PACKAGE_TARNAME ""
  995. | #define PACKAGE_VERSION ""
  996. | #define PACKAGE_STRING ""
  997. | #define PACKAGE_BUGREPORT ""
  998. | #define PACKAGE_URL ""
  999. | #define STDC_HEADERS 1
  1000. | #define HAVE_SYS_TYPES_H 1
  1001. | #define HAVE_SYS_STAT_H 1
  1002. | #define HAVE_STDLIB_H 1
  1003. | #define HAVE_STRING_H 1
  1004. | #define HAVE_MEMORY_H 1
  1005. | #define HAVE_STRINGS_H 1
  1006. | #define HAVE_INTTYPES_H 1
  1007. | #define HAVE_STDINT_H 1
  1008. | #define HAVE_UNISTD_H 1
  1009. | #define __EXTENSIONS__ 1
  1010. | #define _ALL_SOURCE 1
  1011. | #define _GNU_SOURCE 1
  1012. | #define _POSIX_PTHREAD_SEMANTICS 1
  1013. | #define _TANDEM_SOURCE 1
  1014. | #define restrict __restrict
  1015. | #define WORDS_LITTLEENDIAN 1
  1016. | #define CFLAG_FWRAPV 1
  1017. | #define CFLAG_U_STRICT_ANSI 1
  1018. | #define CFLAG_FNO_COMMON 1
  1019. | #define STDC_HEADERS 1
  1020. | #define HAVE_INTTYPES_H 1
  1021. | #define HAVE_STRINGS_H 1
  1022. | #define HAVE__BOOL 1
  1023. | #define HAVE_STDBOOL_H 1
  1024. | #define HAVE_STDNORETURN_H 1
  1025. | #define HAVE_FCNTL_H 1
  1026. | #define HAVE_UNISTD_H 1
  1027. | #define HAVE_SYS_MMAN_H 1
  1028. | #define HAVE_SYS_TYPES_H 1
  1029. | #define HAVE_SYS_STAT_H 1
  1030. | #define HAVE_STRCASECMP 1
  1031. | #define HAVE_STRNCASECMP 1
  1032. | #define HAVE_STRSEP 1
  1033. | #define HAVE_STRNLEN 1
  1034. | /* end confdefs.h. */
  1035. | /* Define strrchrnul to an innocuous variant, in case <limits.h> declares strrchrnul.
  1036. | For example, HP-UX 11i <limits.h> declares gettimeofday. */
  1037. | #define strrchrnul innocuous_strrchrnul
  1038. |
  1039. | /* System header to define __stub macros and hopefully few prototypes,
  1040. | which can conflict with char strrchrnul (); below.
  1041. | Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  1042. | <limits.h> exists even on freestanding compilers. */
  1043. |
  1044. | #ifdef __STDC__
  1045. | # include <limits.h>
  1046. | #else
  1047. | # include <assert.h>
  1048. | #endif
  1049. |
  1050. | #undef strrchrnul
  1051. |
  1052. | /* Override any GCC internal prototype to avoid an error.
  1053. | Use char because int might match the return type of a GCC
  1054. | builtin and then its argument prototype would still apply. */
  1055. | #ifdef __cplusplus
  1056. | extern "C"
  1057. | #endif
  1058. | char strrchrnul ();
  1059. | /* The GNU C library defines this for functions which it implements
  1060. | to always fail with ENOSYS. Some functions are actually named
  1061. | something starting with __ and the normal name is an alias. */
  1062. | #if defined __stub_strrchrnul || defined __stub___strrchrnul
  1063. | choke me
  1064. | #endif
  1065. |
  1066. | int
  1067. | main ()
  1068. | {
  1069. | return strrchrnul ();
  1070. | ;
  1071. | return 0;
  1072. | }
  1073. configure:6169: result: no
  1074. configure:6181: checking for getuid
  1075. configure:6181: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  1076. configure:6181: $? = 0
  1077. configure:6181: result: yes
  1078. configure:6192: checking for getgid
  1079. configure:6192: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  1080. configure:6192: $? = 0
  1081. configure:6192: result: yes
  1082. configure:6204: checking for realpath
  1083. configure:6204: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  1084. configure:6204: $? = 0
  1085. configure:6204: result: yes
  1086. configure:6215: checking for canonicalize_file_name
  1087. configure:6215: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  1088. configure:6215: $? = 0
  1089. configure:6215: result: yes
  1090. configure:6226: checking for _fullpath
  1091. configure:6226: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  1092. /tmp/cck5Ppnw.o: In function `main':
  1093. /root/ffmpeg-raspberry-pi/nasm-2.14.02/conftest.c:82: undefined reference to `_fullpath'
  1094. collect2: error: ld returned 1 exit status
  1095. configure:6226: $? = 1
  1096. configure: failed program was:
  1097. | /* confdefs.h */
  1098. | #define PACKAGE_NAME ""
  1099. | #define PACKAGE_TARNAME ""
  1100. | #define PACKAGE_VERSION ""
  1101. | #define PACKAGE_STRING ""
  1102. | #define PACKAGE_BUGREPORT ""
  1103. | #define PACKAGE_URL ""
  1104. | #define STDC_HEADERS 1
  1105. | #define HAVE_SYS_TYPES_H 1
  1106. | #define HAVE_SYS_STAT_H 1
  1107. | #define HAVE_STDLIB_H 1
  1108. | #define HAVE_STRING_H 1
  1109. | #define HAVE_MEMORY_H 1
  1110. | #define HAVE_STRINGS_H 1
  1111. | #define HAVE_INTTYPES_H 1
  1112. | #define HAVE_STDINT_H 1
  1113. | #define HAVE_UNISTD_H 1
  1114. | #define __EXTENSIONS__ 1
  1115. | #define _ALL_SOURCE 1
  1116. | #define _GNU_SOURCE 1
  1117. | #define _POSIX_PTHREAD_SEMANTICS 1
  1118. | #define _TANDEM_SOURCE 1
  1119. | #define restrict __restrict
  1120. | #define WORDS_LITTLEENDIAN 1
  1121. | #define CFLAG_FWRAPV 1
  1122. | #define CFLAG_U_STRICT_ANSI 1
  1123. | #define CFLAG_FNO_COMMON 1
  1124. | #define STDC_HEADERS 1
  1125. | #define HAVE_INTTYPES_H 1
  1126. | #define HAVE_STRINGS_H 1
  1127. | #define HAVE__BOOL 1
  1128. | #define HAVE_STDBOOL_H 1
  1129. | #define HAVE_STDNORETURN_H 1
  1130. | #define HAVE_FCNTL_H 1
  1131. | #define HAVE_UNISTD_H 1
  1132. | #define HAVE_SYS_MMAN_H 1
  1133. | #define HAVE_SYS_TYPES_H 1
  1134. | #define HAVE_SYS_STAT_H 1
  1135. | #define HAVE_STRCASECMP 1
  1136. | #define HAVE_STRNCASECMP 1
  1137. | #define HAVE_STRSEP 1
  1138. | #define HAVE_STRNLEN 1
  1139. | #define HAVE_GETUID 1
  1140. | #define HAVE_GETGID 1
  1141. | #define HAVE_REALPATH 1
  1142. | #define HAVE_CANONICALIZE_FILE_NAME 1
  1143. | /* end confdefs.h. */
  1144. | /* Define _fullpath to an innocuous variant, in case <limits.h> declares _fullpath.
  1145. | For example, HP-UX 11i <limits.h> declares gettimeofday. */
  1146. | #define _fullpath innocuous__fullpath
  1147. |
  1148. | /* System header to define __stub macros and hopefully few prototypes,
  1149. | which can conflict with char _fullpath (); below.
  1150. | Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  1151. | <limits.h> exists even on freestanding compilers. */
  1152. |
  1153. | #ifdef __STDC__
  1154. | # include <limits.h>
  1155. | #else
  1156. | # include <assert.h>
  1157. | #endif
  1158. |
  1159. | #undef _fullpath
  1160. |
  1161. | /* Override any GCC internal prototype to avoid an error.
  1162. | Use char because int might match the return type of a GCC
  1163. | builtin and then its argument prototype would still apply. */
  1164. | #ifdef __cplusplus
  1165. | extern "C"
  1166. | #endif
  1167. | char _fullpath ();
  1168. | /* The GNU C library defines this for functions which it implements
  1169. | to always fail with ENOSYS. Some functions are actually named
  1170. | something starting with __ and the normal name is an alias. */
  1171. | #if defined __stub__fullpath || defined __stub____fullpath
  1172. | choke me
  1173. | #endif
  1174. |
  1175. | int
  1176. | main ()
  1177. | {
  1178. | return _fullpath ();
  1179. | ;
  1180. | return 0;
  1181. | }
  1182. configure:6226: result: no
  1183. configure:6237: checking for pathconf
  1184. configure:6237: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  1185. configure:6237: $? = 0
  1186. configure:6237: result: yes
  1187. configure:6247: checking for _LARGEFILE_SOURCE value needed for large files
  1188. configure:6266: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  1189. configure:6266: $? = 0
  1190. configure:6294: result: no
  1191. configure:6317: checking for _fseeki64
  1192. configure:6317: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  1193. /tmp/cc1ckdJI.o: In function `main':
  1194. /root/ffmpeg-raspberry-pi/nasm-2.14.02/conftest.c:84: undefined reference to `_fseeki64'
  1195. collect2: error: ld returned 1 exit status
  1196. configure:6317: $? = 1
  1197. configure: failed program was:
  1198. | /* confdefs.h */
  1199. | #define PACKAGE_NAME ""
  1200. | #define PACKAGE_TARNAME ""
  1201. | #define PACKAGE_VERSION ""
  1202. | #define PACKAGE_STRING ""
  1203. | #define PACKAGE_BUGREPORT ""
  1204. | #define PACKAGE_URL ""
  1205. | #define STDC_HEADERS 1
  1206. | #define HAVE_SYS_TYPES_H 1
  1207. | #define HAVE_SYS_STAT_H 1
  1208. | #define HAVE_STDLIB_H 1
  1209. | #define HAVE_STRING_H 1
  1210. | #define HAVE_MEMORY_H 1
  1211. | #define HAVE_STRINGS_H 1
  1212. | #define HAVE_INTTYPES_H 1
  1213. | #define HAVE_STDINT_H 1
  1214. | #define HAVE_UNISTD_H 1
  1215. | #define __EXTENSIONS__ 1
  1216. | #define _ALL_SOURCE 1
  1217. | #define _GNU_SOURCE 1
  1218. | #define _POSIX_PTHREAD_SEMANTICS 1
  1219. | #define _TANDEM_SOURCE 1
  1220. | #define restrict __restrict
  1221. | #define WORDS_LITTLEENDIAN 1
  1222. | #define CFLAG_FWRAPV 1
  1223. | #define CFLAG_U_STRICT_ANSI 1
  1224. | #define CFLAG_FNO_COMMON 1
  1225. | #define STDC_HEADERS 1
  1226. | #define HAVE_INTTYPES_H 1
  1227. | #define HAVE_STRINGS_H 1
  1228. | #define HAVE__BOOL 1
  1229. | #define HAVE_STDBOOL_H 1
  1230. | #define HAVE_STDNORETURN_H 1
  1231. | #define HAVE_FCNTL_H 1
  1232. | #define HAVE_UNISTD_H 1
  1233. | #define HAVE_SYS_MMAN_H 1
  1234. | #define HAVE_SYS_TYPES_H 1
  1235. | #define HAVE_SYS_STAT_H 1
  1236. | #define HAVE_STRCASECMP 1
  1237. | #define HAVE_STRNCASECMP 1
  1238. | #define HAVE_STRSEP 1
  1239. | #define HAVE_STRNLEN 1
  1240. | #define HAVE_GETUID 1
  1241. | #define HAVE_GETGID 1
  1242. | #define HAVE_REALPATH 1
  1243. | #define HAVE_CANONICALIZE_FILE_NAME 1
  1244. | #define HAVE_PATHCONF 1
  1245. | #define HAVE_FSEEKO 1
  1246. | /* end confdefs.h. */
  1247. | /* Define _fseeki64 to an innocuous variant, in case <limits.h> declares _fseeki64.
  1248. | For example, HP-UX 11i <limits.h> declares gettimeofday. */
  1249. | #define _fseeki64 innocuous__fseeki64
  1250. |
  1251. | /* System header to define __stub macros and hopefully few prototypes,
  1252. | which can conflict with char _fseeki64 (); below.
  1253. | Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  1254. | <limits.h> exists even on freestanding compilers. */
  1255. |
  1256. | #ifdef __STDC__
  1257. | # include <limits.h>
  1258. | #else
  1259. | # include <assert.h>
  1260. | #endif
  1261. |
  1262. | #undef _fseeki64
  1263. |
  1264. | /* Override any GCC internal prototype to avoid an error.
  1265. | Use char because int might match the return type of a GCC
  1266. | builtin and then its argument prototype would still apply. */
  1267. | #ifdef __cplusplus
  1268. | extern "C"
  1269. | #endif
  1270. | char _fseeki64 ();
  1271. | /* The GNU C library defines this for functions which it implements
  1272. | to always fail with ENOSYS. Some functions are actually named
  1273. | something starting with __ and the normal name is an alias. */
  1274. | #if defined __stub__fseeki64 || defined __stub____fseeki64
  1275. | choke me
  1276. | #endif
  1277. |
  1278. | int
  1279. | main ()
  1280. | {
  1281. | return _fseeki64 ();
  1282. | ;
  1283. | return 0;
  1284. | }
  1285. configure:6317: result: no
  1286. configure:6329: checking for ftruncate
  1287. configure:6329: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  1288. configure:6329: $? = 0
  1289. configure:6329: result: yes
  1290. configure:6329: checking for _chsize
  1291. configure:6329: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  1292. /tmp/ccS4RA9O.o: In function `main':
  1293. /root/ffmpeg-raspberry-pi/nasm-2.14.02/conftest.c:85: undefined reference to `_chsize'
  1294. collect2: error: ld returned 1 exit status
  1295. configure:6329: $? = 1
  1296. configure: failed program was:
  1297. | /* confdefs.h */
  1298. | #define PACKAGE_NAME ""
  1299. | #define PACKAGE_TARNAME ""
  1300. | #define PACKAGE_VERSION ""
  1301. | #define PACKAGE_STRING ""
  1302. | #define PACKAGE_BUGREPORT ""
  1303. | #define PACKAGE_URL ""
  1304. | #define STDC_HEADERS 1
  1305. | #define HAVE_SYS_TYPES_H 1
  1306. | #define HAVE_SYS_STAT_H 1
  1307. | #define HAVE_STDLIB_H 1
  1308. | #define HAVE_STRING_H 1
  1309. | #define HAVE_MEMORY_H 1
  1310. | #define HAVE_STRINGS_H 1
  1311. | #define HAVE_INTTYPES_H 1
  1312. | #define HAVE_STDINT_H 1
  1313. | #define HAVE_UNISTD_H 1
  1314. | #define __EXTENSIONS__ 1
  1315. | #define _ALL_SOURCE 1
  1316. | #define _GNU_SOURCE 1
  1317. | #define _POSIX_PTHREAD_SEMANTICS 1
  1318. | #define _TANDEM_SOURCE 1
  1319. | #define restrict __restrict
  1320. | #define WORDS_LITTLEENDIAN 1
  1321. | #define CFLAG_FWRAPV 1
  1322. | #define CFLAG_U_STRICT_ANSI 1
  1323. | #define CFLAG_FNO_COMMON 1
  1324. | #define STDC_HEADERS 1
  1325. | #define HAVE_INTTYPES_H 1
  1326. | #define HAVE_STRINGS_H 1
  1327. | #define HAVE__BOOL 1
  1328. | #define HAVE_STDBOOL_H 1
  1329. | #define HAVE_STDNORETURN_H 1
  1330. | #define HAVE_FCNTL_H 1
  1331. | #define HAVE_UNISTD_H 1
  1332. | #define HAVE_SYS_MMAN_H 1
  1333. | #define HAVE_SYS_TYPES_H 1
  1334. | #define HAVE_SYS_STAT_H 1
  1335. | #define HAVE_STRCASECMP 1
  1336. | #define HAVE_STRNCASECMP 1
  1337. | #define HAVE_STRSEP 1
  1338. | #define HAVE_STRNLEN 1
  1339. | #define HAVE_GETUID 1
  1340. | #define HAVE_GETGID 1
  1341. | #define HAVE_REALPATH 1
  1342. | #define HAVE_CANONICALIZE_FILE_NAME 1
  1343. | #define HAVE_PATHCONF 1
  1344. | #define HAVE_FSEEKO 1
  1345. | #define HAVE_FTRUNCATE 1
  1346. | /* end confdefs.h. */
  1347. | /* Define _chsize to an innocuous variant, in case <limits.h> declares _chsize.
  1348. | For example, HP-UX 11i <limits.h> declares gettimeofday. */
  1349. | #define _chsize innocuous__chsize
  1350. |
  1351. | /* System header to define __stub macros and hopefully few prototypes,
  1352. | which can conflict with char _chsize (); below.
  1353. | Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  1354. | <limits.h> exists even on freestanding compilers. */
  1355. |
  1356. | #ifdef __STDC__
  1357. | # include <limits.h>
  1358. | #else
  1359. | # include <assert.h>
  1360. | #endif
  1361. |
  1362. | #undef _chsize
  1363. |
  1364. | /* Override any GCC internal prototype to avoid an error.
  1365. | Use char because int might match the return type of a GCC
  1366. | builtin and then its argument prototype would still apply. */
  1367. | #ifdef __cplusplus
  1368. | extern "C"
  1369. | #endif
  1370. | char _chsize ();
  1371. | /* The GNU C library defines this for functions which it implements
  1372. | to always fail with ENOSYS. Some functions are actually named
  1373. | something starting with __ and the normal name is an alias. */
  1374. | #if defined __stub__chsize || defined __stub____chsize
  1375. | choke me
  1376. | #endif
  1377. |
  1378. | int
  1379. | main ()
  1380. | {
  1381. | return _chsize ();
  1382. | ;
  1383. | return 0;
  1384. | }
  1385. configure:6329: result: no
  1386. configure:6329: checking for _chsize_s
  1387. configure:6329: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  1388. /tmp/ccxJsOJV.o: In function `main':
  1389. /root/ffmpeg-raspberry-pi/nasm-2.14.02/conftest.c:85: undefined reference to `_chsize_s'
  1390. collect2: error: ld returned 1 exit status
  1391. configure:6329: $? = 1
  1392. configure: failed program was:
  1393. | /* confdefs.h */
  1394. | #define PACKAGE_NAME ""
  1395. | #define PACKAGE_TARNAME ""
  1396. | #define PACKAGE_VERSION ""
  1397. | #define PACKAGE_STRING ""
  1398. | #define PACKAGE_BUGREPORT ""
  1399. | #define PACKAGE_URL ""
  1400. | #define STDC_HEADERS 1
  1401. | #define HAVE_SYS_TYPES_H 1
  1402. | #define HAVE_SYS_STAT_H 1
  1403. | #define HAVE_STDLIB_H 1
  1404. | #define HAVE_STRING_H 1
  1405. | #define HAVE_MEMORY_H 1
  1406. | #define HAVE_STRINGS_H 1
  1407. | #define HAVE_INTTYPES_H 1
  1408. | #define HAVE_STDINT_H 1
  1409. | #define HAVE_UNISTD_H 1
  1410. | #define __EXTENSIONS__ 1
  1411. | #define _ALL_SOURCE 1
  1412. | #define _GNU_SOURCE 1
  1413. | #define _POSIX_PTHREAD_SEMANTICS 1
  1414. | #define _TANDEM_SOURCE 1
  1415. | #define restrict __restrict
  1416. | #define WORDS_LITTLEENDIAN 1
  1417. | #define CFLAG_FWRAPV 1
  1418. | #define CFLAG_U_STRICT_ANSI 1
  1419. | #define CFLAG_FNO_COMMON 1
  1420. | #define STDC_HEADERS 1
  1421. | #define HAVE_INTTYPES_H 1
  1422. | #define HAVE_STRINGS_H 1
  1423. | #define HAVE__BOOL 1
  1424. | #define HAVE_STDBOOL_H 1
  1425. | #define HAVE_STDNORETURN_H 1
  1426. | #define HAVE_FCNTL_H 1
  1427. | #define HAVE_UNISTD_H 1
  1428. | #define HAVE_SYS_MMAN_H 1
  1429. | #define HAVE_SYS_TYPES_H 1
  1430. | #define HAVE_SYS_STAT_H 1
  1431. | #define HAVE_STRCASECMP 1
  1432. | #define HAVE_STRNCASECMP 1
  1433. | #define HAVE_STRSEP 1
  1434. | #define HAVE_STRNLEN 1
  1435. | #define HAVE_GETUID 1
  1436. | #define HAVE_GETGID 1
  1437. | #define HAVE_REALPATH 1
  1438. | #define HAVE_CANONICALIZE_FILE_NAME 1
  1439. | #define HAVE_PATHCONF 1
  1440. | #define HAVE_FSEEKO 1
  1441. | #define HAVE_FTRUNCATE 1
  1442. | /* end confdefs.h. */
  1443. | /* Define _chsize_s to an innocuous variant, in case <limits.h> declares _chsize_s.
  1444. | For example, HP-UX 11i <limits.h> declares gettimeofday. */
  1445. | #define _chsize_s innocuous__chsize_s
  1446. |
  1447. | /* System header to define __stub macros and hopefully few prototypes,
  1448. | which can conflict with char _chsize_s (); below.
  1449. | Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  1450. | <limits.h> exists even on freestanding compilers. */
  1451. |
  1452. | #ifdef __STDC__
  1453. | # include <limits.h>
  1454. | #else
  1455. | # include <assert.h>
  1456. | #endif
  1457. |
  1458. | #undef _chsize_s
  1459. |
  1460. | /* Override any GCC internal prototype to avoid an error.
  1461. | Use char because int might match the return type of a GCC
  1462. | builtin and then its argument prototype would still apply. */
  1463. | #ifdef __cplusplus
  1464. | extern "C"
  1465. | #endif
  1466. | char _chsize_s ();
  1467. | /* The GNU C library defines this for functions which it implements
  1468. | to always fail with ENOSYS. Some functions are actually named
  1469. | something starting with __ and the normal name is an alias. */
  1470. | #if defined __stub__chsize_s || defined __stub____chsize_s
  1471. | choke me
  1472. | #endif
  1473. |
  1474. | int
  1475. | main ()
  1476. | {
  1477. | return _chsize_s ();
  1478. | ;
  1479. | return 0;
  1480. | }
  1481. configure:6329: result: no
  1482. configure:6341: checking for fileno
  1483. configure:6341: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  1484. configure:6341: $? = 0
  1485. configure:6341: result: yes
  1486. configure:6341: checking for _fileno
  1487. configure:6341: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  1488. /tmp/ccq3z7N1.o: In function `main':
  1489. /root/ffmpeg-raspberry-pi/nasm-2.14.02/conftest.c:86: undefined reference to `_fileno'
  1490. collect2: error: ld returned 1 exit status
  1491. configure:6341: $? = 1
  1492. configure: failed program was:
  1493. | /* confdefs.h */
  1494. | #define PACKAGE_NAME ""
  1495. | #define PACKAGE_TARNAME ""
  1496. | #define PACKAGE_VERSION ""
  1497. | #define PACKAGE_STRING ""
  1498. | #define PACKAGE_BUGREPORT ""
  1499. | #define PACKAGE_URL ""
  1500. | #define STDC_HEADERS 1
  1501. | #define HAVE_SYS_TYPES_H 1
  1502. | #define HAVE_SYS_STAT_H 1
  1503. | #define HAVE_STDLIB_H 1
  1504. | #define HAVE_STRING_H 1
  1505. | #define HAVE_MEMORY_H 1
  1506. | #define HAVE_STRINGS_H 1
  1507. | #define HAVE_INTTYPES_H 1
  1508. | #define HAVE_STDINT_H 1
  1509. | #define HAVE_UNISTD_H 1
  1510. | #define __EXTENSIONS__ 1
  1511. | #define _ALL_SOURCE 1
  1512. | #define _GNU_SOURCE 1
  1513. | #define _POSIX_PTHREAD_SEMANTICS 1
  1514. | #define _TANDEM_SOURCE 1
  1515. | #define restrict __restrict
  1516. | #define WORDS_LITTLEENDIAN 1
  1517. | #define CFLAG_FWRAPV 1
  1518. | #define CFLAG_U_STRICT_ANSI 1
  1519. | #define CFLAG_FNO_COMMON 1
  1520. | #define STDC_HEADERS 1
  1521. | #define HAVE_INTTYPES_H 1
  1522. | #define HAVE_STRINGS_H 1
  1523. | #define HAVE__BOOL 1
  1524. | #define HAVE_STDBOOL_H 1
  1525. | #define HAVE_STDNORETURN_H 1
  1526. | #define HAVE_FCNTL_H 1
  1527. | #define HAVE_UNISTD_H 1
  1528. | #define HAVE_SYS_MMAN_H 1
  1529. | #define HAVE_SYS_TYPES_H 1
  1530. | #define HAVE_SYS_STAT_H 1
  1531. | #define HAVE_STRCASECMP 1
  1532. | #define HAVE_STRNCASECMP 1
  1533. | #define HAVE_STRSEP 1
  1534. | #define HAVE_STRNLEN 1
  1535. | #define HAVE_GETUID 1
  1536. | #define HAVE_GETGID 1
  1537. | #define HAVE_REALPATH 1
  1538. | #define HAVE_CANONICALIZE_FILE_NAME 1
  1539. | #define HAVE_PATHCONF 1
  1540. | #define HAVE_FSEEKO 1
  1541. | #define HAVE_FTRUNCATE 1
  1542. | #define HAVE_FILENO 1
  1543. | /* end confdefs.h. */
  1544. | /* Define _fileno to an innocuous variant, in case <limits.h> declares _fileno.
  1545. | For example, HP-UX 11i <limits.h> declares gettimeofday. */
  1546. | #define _fileno innocuous__fileno
  1547. |
  1548. | /* System header to define __stub macros and hopefully few prototypes,
  1549. | which can conflict with char _fileno (); below.
  1550. | Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  1551. | <limits.h> exists even on freestanding compilers. */
  1552. |
  1553. | #ifdef __STDC__
  1554. | # include <limits.h>
  1555. | #else
  1556. | # include <assert.h>
  1557. | #endif
  1558. |
  1559. | #undef _fileno
  1560. |
  1561. | /* Override any GCC internal prototype to avoid an error.
  1562. | Use char because int might match the return type of a GCC
  1563. | builtin and then its argument prototype would still apply. */
  1564. | #ifdef __cplusplus
  1565. | extern "C"
  1566. | #endif
  1567. | char _fileno ();
  1568. | /* The GNU C library defines this for functions which it implements
  1569. | to always fail with ENOSYS. Some functions are actually named
  1570. | something starting with __ and the normal name is an alias. */
  1571. | #if defined __stub__fileno || defined __stub____fileno
  1572. | choke me
  1573. | #endif
  1574. |
  1575. | int
  1576. | main ()
  1577. | {
  1578. | return _fileno ();
  1579. | ;
  1580. | return 0;
  1581. | }
  1582. configure:6341: result: no
  1583. configure:6353: checking for _filelengthi64
  1584. configure:6353: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  1585. /tmp/ccN7k6c6.o: In function `main':
  1586. /root/ffmpeg-raspberry-pi/nasm-2.14.02/conftest.c:86: undefined reference to `_filelengthi64'
  1587. collect2: error: ld returned 1 exit status
  1588. configure:6353: $? = 1
  1589. configure: failed program was:
  1590. | /* confdefs.h */
  1591. | #define PACKAGE_NAME ""
  1592. | #define PACKAGE_TARNAME ""
  1593. | #define PACKAGE_VERSION ""
  1594. | #define PACKAGE_STRING ""
  1595. | #define PACKAGE_BUGREPORT ""
  1596. | #define PACKAGE_URL ""
  1597. | #define STDC_HEADERS 1
  1598. | #define HAVE_SYS_TYPES_H 1
  1599. | #define HAVE_SYS_STAT_H 1
  1600. | #define HAVE_STDLIB_H 1
  1601. | #define HAVE_STRING_H 1
  1602. | #define HAVE_MEMORY_H 1
  1603. | #define HAVE_STRINGS_H 1
  1604. | #define HAVE_INTTYPES_H 1
  1605. | #define HAVE_STDINT_H 1
  1606. | #define HAVE_UNISTD_H 1
  1607. | #define __EXTENSIONS__ 1
  1608. | #define _ALL_SOURCE 1
  1609. | #define _GNU_SOURCE 1
  1610. | #define _POSIX_PTHREAD_SEMANTICS 1
  1611. | #define _TANDEM_SOURCE 1
  1612. | #define restrict __restrict
  1613. | #define WORDS_LITTLEENDIAN 1
  1614. | #define CFLAG_FWRAPV 1
  1615. | #define CFLAG_U_STRICT_ANSI 1
  1616. | #define CFLAG_FNO_COMMON 1
  1617. | #define STDC_HEADERS 1
  1618. | #define HAVE_INTTYPES_H 1
  1619. | #define HAVE_STRINGS_H 1
  1620. | #define HAVE__BOOL 1
  1621. | #define HAVE_STDBOOL_H 1
  1622. | #define HAVE_STDNORETURN_H 1
  1623. | #define HAVE_FCNTL_H 1
  1624. | #define HAVE_UNISTD_H 1
  1625. | #define HAVE_SYS_MMAN_H 1
  1626. | #define HAVE_SYS_TYPES_H 1
  1627. | #define HAVE_SYS_STAT_H 1
  1628. | #define HAVE_STRCASECMP 1
  1629. | #define HAVE_STRNCASECMP 1
  1630. | #define HAVE_STRSEP 1
  1631. | #define HAVE_STRNLEN 1
  1632. | #define HAVE_GETUID 1
  1633. | #define HAVE_GETGID 1
  1634. | #define HAVE_REALPATH 1
  1635. | #define HAVE_CANONICALIZE_FILE_NAME 1
  1636. | #define HAVE_PATHCONF 1
  1637. | #define HAVE_FSEEKO 1
  1638. | #define HAVE_FTRUNCATE 1
  1639. | #define HAVE_FILENO 1
  1640. | /* end confdefs.h. */
  1641. | /* Define _filelengthi64 to an innocuous variant, in case <limits.h> declares _filelengthi64.
  1642. | For example, HP-UX 11i <limits.h> declares gettimeofday. */
  1643. | #define _filelengthi64 innocuous__filelengthi64
  1644. |
  1645. | /* System header to define __stub macros and hopefully few prototypes,
  1646. | which can conflict with char _filelengthi64 (); below.
  1647. | Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  1648. | <limits.h> exists even on freestanding compilers. */
  1649. |
  1650. | #ifdef __STDC__
  1651. | # include <limits.h>
  1652. | #else
  1653. | # include <assert.h>
  1654. | #endif
  1655. |
  1656. | #undef _filelengthi64
  1657. |
  1658. | /* Override any GCC internal prototype to avoid an error.
  1659. | Use char because int might match the return type of a GCC
  1660. | builtin and then its argument prototype would still apply. */
  1661. | #ifdef __cplusplus
  1662. | extern "C"
  1663. | #endif
  1664. | char _filelengthi64 ();
  1665. | /* The GNU C library defines this for functions which it implements
  1666. | to always fail with ENOSYS. Some functions are actually named
  1667. | something starting with __ and the normal name is an alias. */
  1668. | #if defined __stub__filelengthi64 || defined __stub____filelengthi64
  1669. | choke me
  1670. | #endif
  1671. |
  1672. | int
  1673. | main ()
  1674. | {
  1675. | return _filelengthi64 ();
  1676. | ;
  1677. | return 0;
  1678. | }
  1679. configure:6353: result: no
  1680. configure:6368: checking for stdlib.h
  1681. configure:6368: result: yes
  1682. configure:6368: checking for unistd.h
  1683. configure:6368: result: yes
  1684. configure:6368: checking for sys/param.h
  1685. configure:6368: gcc -c -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  1686. configure:6368: $? = 0
  1687. configure:6368: result: yes
  1688. configure:6388: checking for getpagesize
  1689. configure:6388: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  1690. configure:6388: $? = 0
  1691. configure:6388: result: yes
  1692. configure:6397: checking for working mmap
  1693. configure:6544: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  1694. configure:6544: $? = 0
  1695. configure:6544: ./conftest
  1696. configure:6544: $? = 0
  1697. configure:6554: result: yes
  1698. configure:6565: checking for getpagesize
  1699. configure:6565: result: yes
  1700. configure:6576: checking for sysconf
  1701. configure:6576: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  1702. configure:6576: $? = 0
  1703. configure:6576: result: yes
  1704. configure:6589: checking for access
  1705. configure:6589: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  1706. configure:6589: $? = 0
  1707. configure:6589: result: yes
  1708. configure:6589: checking for _access
  1709. configure:6589: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  1710. /tmp/ccKdVBtA.o: In function `main':
  1711. /root/ffmpeg-raspberry-pi/nasm-2.14.02/conftest.c:94: undefined reference to `_access'
  1712. collect2: error: ld returned 1 exit status
  1713. configure:6589: $? = 1
  1714. configure: failed program was:
  1715. | /* confdefs.h */
  1716. | #define PACKAGE_NAME ""
  1717. | #define PACKAGE_TARNAME ""
  1718. | #define PACKAGE_VERSION ""
  1719. | #define PACKAGE_STRING ""
  1720. | #define PACKAGE_BUGREPORT ""
  1721. | #define PACKAGE_URL ""
  1722. | #define STDC_HEADERS 1
  1723. | #define HAVE_SYS_TYPES_H 1
  1724. | #define HAVE_SYS_STAT_H 1
  1725. | #define HAVE_STDLIB_H 1
  1726. | #define HAVE_STRING_H 1
  1727. | #define HAVE_MEMORY_H 1
  1728. | #define HAVE_STRINGS_H 1
  1729. | #define HAVE_INTTYPES_H 1
  1730. | #define HAVE_STDINT_H 1
  1731. | #define HAVE_UNISTD_H 1
  1732. | #define __EXTENSIONS__ 1
  1733. | #define _ALL_SOURCE 1
  1734. | #define _GNU_SOURCE 1
  1735. | #define _POSIX_PTHREAD_SEMANTICS 1
  1736. | #define _TANDEM_SOURCE 1
  1737. | #define restrict __restrict
  1738. | #define WORDS_LITTLEENDIAN 1
  1739. | #define CFLAG_FWRAPV 1
  1740. | #define CFLAG_U_STRICT_ANSI 1
  1741. | #define CFLAG_FNO_COMMON 1
  1742. | #define STDC_HEADERS 1
  1743. | #define HAVE_INTTYPES_H 1
  1744. | #define HAVE_STRINGS_H 1
  1745. | #define HAVE__BOOL 1
  1746. | #define HAVE_STDBOOL_H 1
  1747. | #define HAVE_STDNORETURN_H 1
  1748. | #define HAVE_FCNTL_H 1
  1749. | #define HAVE_UNISTD_H 1
  1750. | #define HAVE_SYS_MMAN_H 1
  1751. | #define HAVE_SYS_TYPES_H 1
  1752. | #define HAVE_SYS_STAT_H 1
  1753. | #define HAVE_STRCASECMP 1
  1754. | #define HAVE_STRNCASECMP 1
  1755. | #define HAVE_STRSEP 1
  1756. | #define HAVE_STRNLEN 1
  1757. | #define HAVE_GETUID 1
  1758. | #define HAVE_GETGID 1
  1759. | #define HAVE_REALPATH 1
  1760. | #define HAVE_CANONICALIZE_FILE_NAME 1
  1761. | #define HAVE_PATHCONF 1
  1762. | #define HAVE_FSEEKO 1
  1763. | #define HAVE_FTRUNCATE 1
  1764. | #define HAVE_FILENO 1
  1765. | #define HAVE_STDLIB_H 1
  1766. | #define HAVE_UNISTD_H 1
  1767. | #define HAVE_SYS_PARAM_H 1
  1768. | #define HAVE_GETPAGESIZE 1
  1769. | #define HAVE_MMAP 1
  1770. | #define HAVE_GETPAGESIZE 1
  1771. | #define HAVE_SYSCONF 1
  1772. | #define HAVE_ACCESS 1
  1773. | /* end confdefs.h. */
  1774. | /* Define _access to an innocuous variant, in case <limits.h> declares _access.
  1775. | For example, HP-UX 11i <limits.h> declares gettimeofday. */
  1776. | #define _access innocuous__access
  1777. |
  1778. | /* System header to define __stub macros and hopefully few prototypes,
  1779. | which can conflict with char _access (); below.
  1780. | Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  1781. | <limits.h> exists even on freestanding compilers. */
  1782. |
  1783. | #ifdef __STDC__
  1784. | # include <limits.h>
  1785. | #else
  1786. | # include <assert.h>
  1787. | #endif
  1788. |
  1789. | #undef _access
  1790. |
  1791. | /* Override any GCC internal prototype to avoid an error.
  1792. | Use char because int might match the return type of a GCC
  1793. | builtin and then its argument prototype would still apply. */
  1794. | #ifdef __cplusplus
  1795. | extern "C"
  1796. | #endif
  1797. | char _access ();
  1798. | /* The GNU C library defines this for functions which it implements
  1799. | to always fail with ENOSYS. Some functions are actually named
  1800. | something starting with __ and the normal name is an alias. */
  1801. | #if defined __stub__access || defined __stub____access
  1802. | choke me
  1803. | #endif
  1804. |
  1805. | int
  1806. | main ()
  1807. | {
  1808. | return _access ();
  1809. | ;
  1810. | return 0;
  1811. | }
  1812. configure:6589: result: no
  1813. configure:6589: checking for faccessat
  1814. configure:6589: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  1815. configure:6589: $? = 0
  1816. configure:6589: result: yes
  1817. configure:6599: checking for __builtin_expect
  1818. configure:6611: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  1819. configure:6611: $? = 0
  1820. configure:6612: result: yes
  1821. configure:6627: checking intrin.h usability
  1822. configure:6627: gcc -c -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  1823. conftest.c:95:20: fatal error: intrin.h: No such file or directory
  1824. #include <intrin.h>
  1825. ^
  1826. compilation terminated.
  1827. configure:6627: $? = 1
  1828. configure: failed program was:
  1829. | /* confdefs.h */
  1830. | #define PACKAGE_NAME ""
  1831. | #define PACKAGE_TARNAME ""
  1832. | #define PACKAGE_VERSION ""
  1833. | #define PACKAGE_STRING ""
  1834. | #define PACKAGE_BUGREPORT ""
  1835. | #define PACKAGE_URL ""
  1836. | #define STDC_HEADERS 1
  1837. | #define HAVE_SYS_TYPES_H 1
  1838. | #define HAVE_SYS_STAT_H 1
  1839. | #define HAVE_STDLIB_H 1
  1840. | #define HAVE_STRING_H 1
  1841. | #define HAVE_MEMORY_H 1
  1842. | #define HAVE_STRINGS_H 1
  1843. | #define HAVE_INTTYPES_H 1
  1844. | #define HAVE_STDINT_H 1
  1845. | #define HAVE_UNISTD_H 1
  1846. | #define __EXTENSIONS__ 1
  1847. | #define _ALL_SOURCE 1
  1848. | #define _GNU_SOURCE 1
  1849. | #define _POSIX_PTHREAD_SEMANTICS 1
  1850. | #define _TANDEM_SOURCE 1
  1851. | #define restrict __restrict
  1852. | #define WORDS_LITTLEENDIAN 1
  1853. | #define CFLAG_FWRAPV 1
  1854. | #define CFLAG_U_STRICT_ANSI 1
  1855. | #define CFLAG_FNO_COMMON 1
  1856. | #define STDC_HEADERS 1
  1857. | #define HAVE_INTTYPES_H 1
  1858. | #define HAVE_STRINGS_H 1
  1859. | #define HAVE__BOOL 1
  1860. | #define HAVE_STDBOOL_H 1
  1861. | #define HAVE_STDNORETURN_H 1
  1862. | #define HAVE_FCNTL_H 1
  1863. | #define HAVE_UNISTD_H 1
  1864. | #define HAVE_SYS_MMAN_H 1
  1865. | #define HAVE_SYS_TYPES_H 1
  1866. | #define HAVE_SYS_STAT_H 1
  1867. | #define HAVE_STRCASECMP 1
  1868. | #define HAVE_STRNCASECMP 1
  1869. | #define HAVE_STRSEP 1
  1870. | #define HAVE_STRNLEN 1
  1871. | #define HAVE_GETUID 1
  1872. | #define HAVE_GETGID 1
  1873. | #define HAVE_REALPATH 1
  1874. | #define HAVE_CANONICALIZE_FILE_NAME 1
  1875. | #define HAVE_PATHCONF 1
  1876. | #define HAVE_FSEEKO 1
  1877. | #define HAVE_FTRUNCATE 1
  1878. | #define HAVE_FILENO 1
  1879. | #define HAVE_STDLIB_H 1
  1880. | #define HAVE_UNISTD_H 1
  1881. | #define HAVE_SYS_PARAM_H 1
  1882. | #define HAVE_GETPAGESIZE 1
  1883. | #define HAVE_MMAP 1
  1884. | #define HAVE_GETPAGESIZE 1
  1885. | #define HAVE_SYSCONF 1
  1886. | #define HAVE_ACCESS 1
  1887. | #define HAVE_FACCESSAT 1
  1888. | #define HAVE___BUILTIN_EXPECT 1
  1889. | /* end confdefs.h. */
  1890. | #include <stdio.h>
  1891. | #ifdef HAVE_SYS_TYPES_H
  1892. | # include <sys/types.h>
  1893. | #endif
  1894. | #ifdef HAVE_SYS_STAT_H
  1895. | # include <sys/stat.h>
  1896. | #endif
  1897. | #ifdef STDC_HEADERS
  1898. | # include <stdlib.h>
  1899. | # include <stddef.h>
  1900. | #else
  1901. | # ifdef HAVE_STDLIB_H
  1902. | # include <stdlib.h>
  1903. | # endif
  1904. | #endif
  1905. | #ifdef HAVE_STRING_H
  1906. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  1907. | # include <memory.h>
  1908. | # endif
  1909. | # include <string.h>
  1910. | #endif
  1911. | #ifdef HAVE_STRINGS_H
  1912. | # include <strings.h>
  1913. | #endif
  1914. | #ifdef HAVE_INTTYPES_H
  1915. | # include <inttypes.h>
  1916. | #endif
  1917. | #ifdef HAVE_STDINT_H
  1918. | # include <stdint.h>
  1919. | #endif
  1920. | #ifdef HAVE_UNISTD_H
  1921. | # include <unistd.h>
  1922. | #endif
  1923. | #include <intrin.h>
  1924. configure:6627: result: no
  1925. configure:6627: checking intrin.h presence
  1926. configure:6627: gcc -E conftest.c
  1927. conftest.c:62:20: fatal error: intrin.h: No such file or directory
  1928. #include <intrin.h>
  1929. ^
  1930. compilation terminated.
  1931. configure:6627: $? = 1
  1932. configure: failed program was:
  1933. | /* confdefs.h */
  1934. | #define PACKAGE_NAME ""
  1935. | #define PACKAGE_TARNAME ""
  1936. | #define PACKAGE_VERSION ""
  1937. | #define PACKAGE_STRING ""
  1938. | #define PACKAGE_BUGREPORT ""
  1939. | #define PACKAGE_URL ""
  1940. | #define STDC_HEADERS 1
  1941. | #define HAVE_SYS_TYPES_H 1
  1942. | #define HAVE_SYS_STAT_H 1
  1943. | #define HAVE_STDLIB_H 1
  1944. | #define HAVE_STRING_H 1
  1945. | #define HAVE_MEMORY_H 1
  1946. | #define HAVE_STRINGS_H 1
  1947. | #define HAVE_INTTYPES_H 1
  1948. | #define HAVE_STDINT_H 1
  1949. | #define HAVE_UNISTD_H 1
  1950. | #define __EXTENSIONS__ 1
  1951. | #define _ALL_SOURCE 1
  1952. | #define _GNU_SOURCE 1
  1953. | #define _POSIX_PTHREAD_SEMANTICS 1
  1954. | #define _TANDEM_SOURCE 1
  1955. | #define restrict __restrict
  1956. | #define WORDS_LITTLEENDIAN 1
  1957. | #define CFLAG_FWRAPV 1
  1958. | #define CFLAG_U_STRICT_ANSI 1
  1959. | #define CFLAG_FNO_COMMON 1
  1960. | #define STDC_HEADERS 1
  1961. | #define HAVE_INTTYPES_H 1
  1962. | #define HAVE_STRINGS_H 1
  1963. | #define HAVE__BOOL 1
  1964. | #define HAVE_STDBOOL_H 1
  1965. | #define HAVE_STDNORETURN_H 1
  1966. | #define HAVE_FCNTL_H 1
  1967. | #define HAVE_UNISTD_H 1
  1968. | #define HAVE_SYS_MMAN_H 1
  1969. | #define HAVE_SYS_TYPES_H 1
  1970. | #define HAVE_SYS_STAT_H 1
  1971. | #define HAVE_STRCASECMP 1
  1972. | #define HAVE_STRNCASECMP 1
  1973. | #define HAVE_STRSEP 1
  1974. | #define HAVE_STRNLEN 1
  1975. | #define HAVE_GETUID 1
  1976. | #define HAVE_GETGID 1
  1977. | #define HAVE_REALPATH 1
  1978. | #define HAVE_CANONICALIZE_FILE_NAME 1
  1979. | #define HAVE_PATHCONF 1
  1980. | #define HAVE_FSEEKO 1
  1981. | #define HAVE_FTRUNCATE 1
  1982. | #define HAVE_FILENO 1
  1983. | #define HAVE_STDLIB_H 1
  1984. | #define HAVE_UNISTD_H 1
  1985. | #define HAVE_SYS_PARAM_H 1
  1986. | #define HAVE_GETPAGESIZE 1
  1987. | #define HAVE_MMAP 1
  1988. | #define HAVE_GETPAGESIZE 1
  1989. | #define HAVE_SYSCONF 1
  1990. | #define HAVE_ACCESS 1
  1991. | #define HAVE_FACCESSAT 1
  1992. | #define HAVE___BUILTIN_EXPECT 1
  1993. | /* end confdefs.h. */
  1994. | #include <intrin.h>
  1995. configure:6627: result: no
  1996. configure:6627: checking for intrin.h
  1997. configure:6627: result: no
  1998. configure:6639: checking for __builtin_clz
  1999. configure:6651: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  2000. configure:6651: $? = 0
  2001. configure:6652: result: yes
  2002. configure:6664: checking for __builtin_clzl
  2003. configure:6676: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  2004. configure:6676: $? = 0
  2005. configure:6677: result: yes
  2006. configure:6689: checking for __builtin_clzll
  2007. configure:6701: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  2008. configure:6701: $? = 0
  2009. configure:6702: result: yes
  2010. configure:6714: checking for _BitScanReverse
  2011. configure:6726: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  2012. conftest.c: In function 'main':
  2013. conftest.c:100:11: warning: implicit declaration of function '_BitScanReverse' [-Wimplicit-function-declaration]
  2014. (void)_BitScanReverse(0);
  2015. ^~~~~~~~~~~~~~~
  2016. /tmp/ccUV6ys2.o: In function `main':
  2017. /root/ffmpeg-raspberry-pi/nasm-2.14.02/conftest.c:100: undefined reference to `_BitScanReverse'
  2018. collect2: error: ld returned 1 exit status
  2019. configure:6726: $? = 1
  2020. configure: failed program was:
  2021. | /* confdefs.h */
  2022. | #define PACKAGE_NAME ""
  2023. | #define PACKAGE_TARNAME ""
  2024. | #define PACKAGE_VERSION ""
  2025. | #define PACKAGE_STRING ""
  2026. | #define PACKAGE_BUGREPORT ""
  2027. | #define PACKAGE_URL ""
  2028. | #define STDC_HEADERS 1
  2029. | #define HAVE_SYS_TYPES_H 1
  2030. | #define HAVE_SYS_STAT_H 1
  2031. | #define HAVE_STDLIB_H 1
  2032. | #define HAVE_STRING_H 1
  2033. | #define HAVE_MEMORY_H 1
  2034. | #define HAVE_STRINGS_H 1
  2035. | #define HAVE_INTTYPES_H 1
  2036. | #define HAVE_STDINT_H 1
  2037. | #define HAVE_UNISTD_H 1
  2038. | #define __EXTENSIONS__ 1
  2039. | #define _ALL_SOURCE 1
  2040. | #define _GNU_SOURCE 1
  2041. | #define _POSIX_PTHREAD_SEMANTICS 1
  2042. | #define _TANDEM_SOURCE 1
  2043. | #define restrict __restrict
  2044. | #define WORDS_LITTLEENDIAN 1
  2045. | #define CFLAG_FWRAPV 1
  2046. | #define CFLAG_U_STRICT_ANSI 1
  2047. | #define CFLAG_FNO_COMMON 1
  2048. | #define STDC_HEADERS 1
  2049. | #define HAVE_INTTYPES_H 1
  2050. | #define HAVE_STRINGS_H 1
  2051. | #define HAVE__BOOL 1
  2052. | #define HAVE_STDBOOL_H 1
  2053. | #define HAVE_STDNORETURN_H 1
  2054. | #define HAVE_FCNTL_H 1
  2055. | #define HAVE_UNISTD_H 1
  2056. | #define HAVE_SYS_MMAN_H 1
  2057. | #define HAVE_SYS_TYPES_H 1
  2058. | #define HAVE_SYS_STAT_H 1
  2059. | #define HAVE_STRCASECMP 1
  2060. | #define HAVE_STRNCASECMP 1
  2061. | #define HAVE_STRSEP 1
  2062. | #define HAVE_STRNLEN 1
  2063. | #define HAVE_GETUID 1
  2064. | #define HAVE_GETGID 1
  2065. | #define HAVE_REALPATH 1
  2066. | #define HAVE_CANONICALIZE_FILE_NAME 1
  2067. | #define HAVE_PATHCONF 1
  2068. | #define HAVE_FSEEKO 1
  2069. | #define HAVE_FTRUNCATE 1
  2070. | #define HAVE_FILENO 1
  2071. | #define HAVE_STDLIB_H 1
  2072. | #define HAVE_UNISTD_H 1
  2073. | #define HAVE_SYS_PARAM_H 1
  2074. | #define HAVE_GETPAGESIZE 1
  2075. | #define HAVE_MMAP 1
  2076. | #define HAVE_GETPAGESIZE 1
  2077. | #define HAVE_SYSCONF 1
  2078. | #define HAVE_ACCESS 1
  2079. | #define HAVE_FACCESSAT 1
  2080. | #define HAVE___BUILTIN_EXPECT 1
  2081. | #define HAVE___BUILTIN_CLZ 1
  2082. | #define HAVE___BUILTIN_CLZL 1
  2083. | #define HAVE___BUILTIN_CLZLL 1
  2084. | /* end confdefs.h. */
  2085. |
  2086. | #include <stdio.h>
  2087. | #ifdef HAVE_SYS_TYPES_H
  2088. | # include <sys/types.h>
  2089. | #endif
  2090. | #ifdef HAVE_SYS_STAT_H
  2091. | # include <sys/stat.h>
  2092. | #endif
  2093. | #ifdef STDC_HEADERS
  2094. | # include <stdlib.h>
  2095. | # include <stddef.h>
  2096. | #else
  2097. | # ifdef HAVE_STDLIB_H
  2098. | # include <stdlib.h>
  2099. | # endif
  2100. | #endif
  2101. | #ifdef HAVE_STRING_H
  2102. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  2103. | # include <memory.h>
  2104. | # endif
  2105. | # include <string.h>
  2106. | #endif
  2107. | #ifdef HAVE_STRINGS_H
  2108. | # include <strings.h>
  2109. | #endif
  2110. | #ifdef HAVE_INTTYPES_H
  2111. | # include <inttypes.h>
  2112. | #endif
  2113. | #ifdef HAVE_STDINT_H
  2114. | # include <stdint.h>
  2115. | #endif
  2116. | #ifdef HAVE_UNISTD_H
  2117. | # include <unistd.h>
  2118. | #endif
  2119. | int main(void) {
  2120. | (void)_BitScanReverse(0);
  2121. | return 0;
  2122. | }
  2123. |
  2124. configure:6733: result: no
  2125. configure:6739: checking for _BitScanReverse64
  2126. configure:6751: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  2127. conftest.c: In function 'main':
  2128. conftest.c:100:11: warning: implicit declaration of function '_BitScanReverse64' [-Wimplicit-function-declaration]
  2129. (void)_BitScanReverse64(0);
  2130. ^~~~~~~~~~~~~~~~~
  2131. /tmp/ccGykMl5.o: In function `main':
  2132. /root/ffmpeg-raspberry-pi/nasm-2.14.02/conftest.c:100: undefined reference to `_BitScanReverse64'
  2133. collect2: error: ld returned 1 exit status
  2134. configure:6751: $? = 1
  2135. configure: failed program was:
  2136. | /* confdefs.h */
  2137. | #define PACKAGE_NAME ""
  2138. | #define PACKAGE_TARNAME ""
  2139. | #define PACKAGE_VERSION ""
  2140. | #define PACKAGE_STRING ""
  2141. | #define PACKAGE_BUGREPORT ""
  2142. | #define PACKAGE_URL ""
  2143. | #define STDC_HEADERS 1
  2144. | #define HAVE_SYS_TYPES_H 1
  2145. | #define HAVE_SYS_STAT_H 1
  2146. | #define HAVE_STDLIB_H 1
  2147. | #define HAVE_STRING_H 1
  2148. | #define HAVE_MEMORY_H 1
  2149. | #define HAVE_STRINGS_H 1
  2150. | #define HAVE_INTTYPES_H 1
  2151. | #define HAVE_STDINT_H 1
  2152. | #define HAVE_UNISTD_H 1
  2153. | #define __EXTENSIONS__ 1
  2154. | #define _ALL_SOURCE 1
  2155. | #define _GNU_SOURCE 1
  2156. | #define _POSIX_PTHREAD_SEMANTICS 1
  2157. | #define _TANDEM_SOURCE 1
  2158. | #define restrict __restrict
  2159. | #define WORDS_LITTLEENDIAN 1
  2160. | #define CFLAG_FWRAPV 1
  2161. | #define CFLAG_U_STRICT_ANSI 1
  2162. | #define CFLAG_FNO_COMMON 1
  2163. | #define STDC_HEADERS 1
  2164. | #define HAVE_INTTYPES_H 1
  2165. | #define HAVE_STRINGS_H 1
  2166. | #define HAVE__BOOL 1
  2167. | #define HAVE_STDBOOL_H 1
  2168. | #define HAVE_STDNORETURN_H 1
  2169. | #define HAVE_FCNTL_H 1
  2170. | #define HAVE_UNISTD_H 1
  2171. | #define HAVE_SYS_MMAN_H 1
  2172. | #define HAVE_SYS_TYPES_H 1
  2173. | #define HAVE_SYS_STAT_H 1
  2174. | #define HAVE_STRCASECMP 1
  2175. | #define HAVE_STRNCASECMP 1
  2176. | #define HAVE_STRSEP 1
  2177. | #define HAVE_STRNLEN 1
  2178. | #define HAVE_GETUID 1
  2179. | #define HAVE_GETGID 1
  2180. | #define HAVE_REALPATH 1
  2181. | #define HAVE_CANONICALIZE_FILE_NAME 1
  2182. | #define HAVE_PATHCONF 1
  2183. | #define HAVE_FSEEKO 1
  2184. | #define HAVE_FTRUNCATE 1
  2185. | #define HAVE_FILENO 1
  2186. | #define HAVE_STDLIB_H 1
  2187. | #define HAVE_UNISTD_H 1
  2188. | #define HAVE_SYS_PARAM_H 1
  2189. | #define HAVE_GETPAGESIZE 1
  2190. | #define HAVE_MMAP 1
  2191. | #define HAVE_GETPAGESIZE 1
  2192. | #define HAVE_SYSCONF 1
  2193. | #define HAVE_ACCESS 1
  2194. | #define HAVE_FACCESSAT 1
  2195. | #define HAVE___BUILTIN_EXPECT 1
  2196. | #define HAVE___BUILTIN_CLZ 1
  2197. | #define HAVE___BUILTIN_CLZL 1
  2198. | #define HAVE___BUILTIN_CLZLL 1
  2199. | /* end confdefs.h. */
  2200. |
  2201. | #include <stdio.h>
  2202. | #ifdef HAVE_SYS_TYPES_H
  2203. | # include <sys/types.h>
  2204. | #endif
  2205. | #ifdef HAVE_SYS_STAT_H
  2206. | # include <sys/stat.h>
  2207. | #endif
  2208. | #ifdef STDC_HEADERS
  2209. | # include <stdlib.h>
  2210. | # include <stddef.h>
  2211. | #else
  2212. | # ifdef HAVE_STDLIB_H
  2213. | # include <stdlib.h>
  2214. | # endif
  2215. | #endif
  2216. | #ifdef HAVE_STRING_H
  2217. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  2218. | # include <memory.h>
  2219. | # endif
  2220. | # include <string.h>
  2221. | #endif
  2222. | #ifdef HAVE_STRINGS_H
  2223. | # include <strings.h>
  2224. | #endif
  2225. | #ifdef HAVE_INTTYPES_H
  2226. | # include <inttypes.h>
  2227. | #endif
  2228. | #ifdef HAVE_STDINT_H
  2229. | # include <stdint.h>
  2230. | #endif
  2231. | #ifdef HAVE_UNISTD_H
  2232. | # include <unistd.h>
  2233. | #endif
  2234. | int main(void) {
  2235. | (void)_BitScanReverse64(0);
  2236. | return 0;
  2237. | }
  2238. |
  2239. configure:6758: result: no
  2240. configure:6768: checking for vsnprintf
  2241. configure:6768: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  2242. conftest.c:88:6: warning: conflicting types for built-in function 'vsnprintf'
  2243. char vsnprintf ();
  2244. ^~~~~~~~~
  2245. configure:6768: $? = 0
  2246. configure:6768: result: yes
  2247. configure:6768: checking for _vsnprintf
  2248. configure:6768: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  2249. /tmp/ccrHpgFf.o: In function `main':
  2250. /root/ffmpeg-raspberry-pi/nasm-2.14.02/conftest.c:100: undefined reference to `_vsnprintf'
  2251. collect2: error: ld returned 1 exit status
  2252. configure:6768: $? = 1
  2253. configure: failed program was:
  2254. | /* confdefs.h */
  2255. | #define PACKAGE_NAME ""
  2256. | #define PACKAGE_TARNAME ""
  2257. | #define PACKAGE_VERSION ""
  2258. | #define PACKAGE_STRING ""
  2259. | #define PACKAGE_BUGREPORT ""
  2260. | #define PACKAGE_URL ""
  2261. | #define STDC_HEADERS 1
  2262. | #define HAVE_SYS_TYPES_H 1
  2263. | #define HAVE_SYS_STAT_H 1
  2264. | #define HAVE_STDLIB_H 1
  2265. | #define HAVE_STRING_H 1
  2266. | #define HAVE_MEMORY_H 1
  2267. | #define HAVE_STRINGS_H 1
  2268. | #define HAVE_INTTYPES_H 1
  2269. | #define HAVE_STDINT_H 1
  2270. | #define HAVE_UNISTD_H 1
  2271. | #define __EXTENSIONS__ 1
  2272. | #define _ALL_SOURCE 1
  2273. | #define _GNU_SOURCE 1
  2274. | #define _POSIX_PTHREAD_SEMANTICS 1
  2275. | #define _TANDEM_SOURCE 1
  2276. | #define restrict __restrict
  2277. | #define WORDS_LITTLEENDIAN 1
  2278. | #define CFLAG_FWRAPV 1
  2279. | #define CFLAG_U_STRICT_ANSI 1
  2280. | #define CFLAG_FNO_COMMON 1
  2281. | #define STDC_HEADERS 1
  2282. | #define HAVE_INTTYPES_H 1
  2283. | #define HAVE_STRINGS_H 1
  2284. | #define HAVE__BOOL 1
  2285. | #define HAVE_STDBOOL_H 1
  2286. | #define HAVE_STDNORETURN_H 1
  2287. | #define HAVE_FCNTL_H 1
  2288. | #define HAVE_UNISTD_H 1
  2289. | #define HAVE_SYS_MMAN_H 1
  2290. | #define HAVE_SYS_TYPES_H 1
  2291. | #define HAVE_SYS_STAT_H 1
  2292. | #define HAVE_STRCASECMP 1
  2293. | #define HAVE_STRNCASECMP 1
  2294. | #define HAVE_STRSEP 1
  2295. | #define HAVE_STRNLEN 1
  2296. | #define HAVE_GETUID 1
  2297. | #define HAVE_GETGID 1
  2298. | #define HAVE_REALPATH 1
  2299. | #define HAVE_CANONICALIZE_FILE_NAME 1
  2300. | #define HAVE_PATHCONF 1
  2301. | #define HAVE_FSEEKO 1
  2302. | #define HAVE_FTRUNCATE 1
  2303. | #define HAVE_FILENO 1
  2304. | #define HAVE_STDLIB_H 1
  2305. | #define HAVE_UNISTD_H 1
  2306. | #define HAVE_SYS_PARAM_H 1
  2307. | #define HAVE_GETPAGESIZE 1
  2308. | #define HAVE_MMAP 1
  2309. | #define HAVE_GETPAGESIZE 1
  2310. | #define HAVE_SYSCONF 1
  2311. | #define HAVE_ACCESS 1
  2312. | #define HAVE_FACCESSAT 1
  2313. | #define HAVE___BUILTIN_EXPECT 1
  2314. | #define HAVE___BUILTIN_CLZ 1
  2315. | #define HAVE___BUILTIN_CLZL 1
  2316. | #define HAVE___BUILTIN_CLZLL 1
  2317. | #define HAVE_VSNPRINTF 1
  2318. | /* end confdefs.h. */
  2319. | /* Define _vsnprintf to an innocuous variant, in case <limits.h> declares _vsnprintf.
  2320. | For example, HP-UX 11i <limits.h> declares gettimeofday. */
  2321. | #define _vsnprintf innocuous__vsnprintf
  2322. |
  2323. | /* System header to define __stub macros and hopefully few prototypes,
  2324. | which can conflict with char _vsnprintf (); below.
  2325. | Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  2326. | <limits.h> exists even on freestanding compilers. */
  2327. |
  2328. | #ifdef __STDC__
  2329. | # include <limits.h>
  2330. | #else
  2331. | # include <assert.h>
  2332. | #endif
  2333. |
  2334. | #undef _vsnprintf
  2335. |
  2336. | /* Override any GCC internal prototype to avoid an error.
  2337. | Use char because int might match the return type of a GCC
  2338. | builtin and then its argument prototype would still apply. */
  2339. | #ifdef __cplusplus
  2340. | extern "C"
  2341. | #endif
  2342. | char _vsnprintf ();
  2343. | /* The GNU C library defines this for functions which it implements
  2344. | to always fail with ENOSYS. Some functions are actually named
  2345. | something starting with __ and the normal name is an alias. */
  2346. | #if defined __stub__vsnprintf || defined __stub____vsnprintf
  2347. | choke me
  2348. | #endif
  2349. |
  2350. | int
  2351. | main ()
  2352. | {
  2353. | return _vsnprintf ();
  2354. | ;
  2355. | return 0;
  2356. | }
  2357. configure:6768: result: no
  2358. configure:6780: checking for snprintf
  2359. configure:6780: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  2360. conftest.c:89:6: warning: conflicting types for built-in function 'snprintf'
  2361. char snprintf ();
  2362. ^~~~~~~~
  2363. configure:6780: $? = 0
  2364. configure:6780: result: yes
  2365. configure:6780: checking for _snprintf
  2366. configure:6780: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  2367. /tmp/ccTFBI4o.o: In function `main':
  2368. /root/ffmpeg-raspberry-pi/nasm-2.14.02/conftest.c:101: undefined reference to `_snprintf'
  2369. collect2: error: ld returned 1 exit status
  2370. configure:6780: $? = 1
  2371. configure: failed program was:
  2372. | /* confdefs.h */
  2373. | #define PACKAGE_NAME ""
  2374. | #define PACKAGE_TARNAME ""
  2375. | #define PACKAGE_VERSION ""
  2376. | #define PACKAGE_STRING ""
  2377. | #define PACKAGE_BUGREPORT ""
  2378. | #define PACKAGE_URL ""
  2379. | #define STDC_HEADERS 1
  2380. | #define HAVE_SYS_TYPES_H 1
  2381. | #define HAVE_SYS_STAT_H 1
  2382. | #define HAVE_STDLIB_H 1
  2383. | #define HAVE_STRING_H 1
  2384. | #define HAVE_MEMORY_H 1
  2385. | #define HAVE_STRINGS_H 1
  2386. | #define HAVE_INTTYPES_H 1
  2387. | #define HAVE_STDINT_H 1
  2388. | #define HAVE_UNISTD_H 1
  2389. | #define __EXTENSIONS__ 1
  2390. | #define _ALL_SOURCE 1
  2391. | #define _GNU_SOURCE 1
  2392. | #define _POSIX_PTHREAD_SEMANTICS 1
  2393. | #define _TANDEM_SOURCE 1
  2394. | #define restrict __restrict
  2395. | #define WORDS_LITTLEENDIAN 1
  2396. | #define CFLAG_FWRAPV 1
  2397. | #define CFLAG_U_STRICT_ANSI 1
  2398. | #define CFLAG_FNO_COMMON 1
  2399. | #define STDC_HEADERS 1
  2400. | #define HAVE_INTTYPES_H 1
  2401. | #define HAVE_STRINGS_H 1
  2402. | #define HAVE__BOOL 1
  2403. | #define HAVE_STDBOOL_H 1
  2404. | #define HAVE_STDNORETURN_H 1
  2405. | #define HAVE_FCNTL_H 1
  2406. | #define HAVE_UNISTD_H 1
  2407. | #define HAVE_SYS_MMAN_H 1
  2408. | #define HAVE_SYS_TYPES_H 1
  2409. | #define HAVE_SYS_STAT_H 1
  2410. | #define HAVE_STRCASECMP 1
  2411. | #define HAVE_STRNCASECMP 1
  2412. | #define HAVE_STRSEP 1
  2413. | #define HAVE_STRNLEN 1
  2414. | #define HAVE_GETUID 1
  2415. | #define HAVE_GETGID 1
  2416. | #define HAVE_REALPATH 1
  2417. | #define HAVE_CANONICALIZE_FILE_NAME 1
  2418. | #define HAVE_PATHCONF 1
  2419. | #define HAVE_FSEEKO 1
  2420. | #define HAVE_FTRUNCATE 1
  2421. | #define HAVE_FILENO 1
  2422. | #define HAVE_STDLIB_H 1
  2423. | #define HAVE_UNISTD_H 1
  2424. | #define HAVE_SYS_PARAM_H 1
  2425. | #define HAVE_GETPAGESIZE 1
  2426. | #define HAVE_MMAP 1
  2427. | #define HAVE_GETPAGESIZE 1
  2428. | #define HAVE_SYSCONF 1
  2429. | #define HAVE_ACCESS 1
  2430. | #define HAVE_FACCESSAT 1
  2431. | #define HAVE___BUILTIN_EXPECT 1
  2432. | #define HAVE___BUILTIN_CLZ 1
  2433. | #define HAVE___BUILTIN_CLZL 1
  2434. | #define HAVE___BUILTIN_CLZLL 1
  2435. | #define HAVE_VSNPRINTF 1
  2436. | #define HAVE_SNPRINTF 1
  2437. | /* end confdefs.h. */
  2438. | /* Define _snprintf to an innocuous variant, in case <limits.h> declares _snprintf.
  2439. | For example, HP-UX 11i <limits.h> declares gettimeofday. */
  2440. | #define _snprintf innocuous__snprintf
  2441. |
  2442. | /* System header to define __stub macros and hopefully few prototypes,
  2443. | which can conflict with char _snprintf (); below.
  2444. | Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  2445. | <limits.h> exists even on freestanding compilers. */
  2446. |
  2447. | #ifdef __STDC__
  2448. | # include <limits.h>
  2449. | #else
  2450. | # include <assert.h>
  2451. | #endif
  2452. |
  2453. | #undef _snprintf
  2454. |
  2455. | /* Override any GCC internal prototype to avoid an error.
  2456. | Use char because int might match the return type of a GCC
  2457. | builtin and then its argument prototype would still apply. */
  2458. | #ifdef __cplusplus
  2459. | extern "C"
  2460. | #endif
  2461. | char _snprintf ();
  2462. | /* The GNU C library defines this for functions which it implements
  2463. | to always fail with ENOSYS. Some functions are actually named
  2464. | something starting with __ and the normal name is an alias. */
  2465. | #if defined __stub__snprintf || defined __stub____snprintf
  2466. | choke me
  2467. | #endif
  2468. |
  2469. | int
  2470. | main ()
  2471. | {
  2472. | return _snprintf ();
  2473. | ;
  2474. | return 0;
  2475. | }
  2476. configure:6780: result: no
  2477. configure:6791: checking for strlcpy
  2478. configure:6791: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  2479. /tmp/cc5gOHRv.o: In function `main':
  2480. /root/ffmpeg-raspberry-pi/nasm-2.14.02/conftest.c:101: undefined reference to `strlcpy'
  2481. collect2: error: ld returned 1 exit status
  2482. configure:6791: $? = 1
  2483. configure: failed program was:
  2484. | /* confdefs.h */
  2485. | #define PACKAGE_NAME ""
  2486. | #define PACKAGE_TARNAME ""
  2487. | #define PACKAGE_VERSION ""
  2488. | #define PACKAGE_STRING ""
  2489. | #define PACKAGE_BUGREPORT ""
  2490. | #define PACKAGE_URL ""
  2491. | #define STDC_HEADERS 1
  2492. | #define HAVE_SYS_TYPES_H 1
  2493. | #define HAVE_SYS_STAT_H 1
  2494. | #define HAVE_STDLIB_H 1
  2495. | #define HAVE_STRING_H 1
  2496. | #define HAVE_MEMORY_H 1
  2497. | #define HAVE_STRINGS_H 1
  2498. | #define HAVE_INTTYPES_H 1
  2499. | #define HAVE_STDINT_H 1
  2500. | #define HAVE_UNISTD_H 1
  2501. | #define __EXTENSIONS__ 1
  2502. | #define _ALL_SOURCE 1
  2503. | #define _GNU_SOURCE 1
  2504. | #define _POSIX_PTHREAD_SEMANTICS 1
  2505. | #define _TANDEM_SOURCE 1
  2506. | #define restrict __restrict
  2507. | #define WORDS_LITTLEENDIAN 1
  2508. | #define CFLAG_FWRAPV 1
  2509. | #define CFLAG_U_STRICT_ANSI 1
  2510. | #define CFLAG_FNO_COMMON 1
  2511. | #define STDC_HEADERS 1
  2512. | #define HAVE_INTTYPES_H 1
  2513. | #define HAVE_STRINGS_H 1
  2514. | #define HAVE__BOOL 1
  2515. | #define HAVE_STDBOOL_H 1
  2516. | #define HAVE_STDNORETURN_H 1
  2517. | #define HAVE_FCNTL_H 1
  2518. | #define HAVE_UNISTD_H 1
  2519. | #define HAVE_SYS_MMAN_H 1
  2520. | #define HAVE_SYS_TYPES_H 1
  2521. | #define HAVE_SYS_STAT_H 1
  2522. | #define HAVE_STRCASECMP 1
  2523. | #define HAVE_STRNCASECMP 1
  2524. | #define HAVE_STRSEP 1
  2525. | #define HAVE_STRNLEN 1
  2526. | #define HAVE_GETUID 1
  2527. | #define HAVE_GETGID 1
  2528. | #define HAVE_REALPATH 1
  2529. | #define HAVE_CANONICALIZE_FILE_NAME 1
  2530. | #define HAVE_PATHCONF 1
  2531. | #define HAVE_FSEEKO 1
  2532. | #define HAVE_FTRUNCATE 1
  2533. | #define HAVE_FILENO 1
  2534. | #define HAVE_STDLIB_H 1
  2535. | #define HAVE_UNISTD_H 1
  2536. | #define HAVE_SYS_PARAM_H 1
  2537. | #define HAVE_GETPAGESIZE 1
  2538. | #define HAVE_MMAP 1
  2539. | #define HAVE_GETPAGESIZE 1
  2540. | #define HAVE_SYSCONF 1
  2541. | #define HAVE_ACCESS 1
  2542. | #define HAVE_FACCESSAT 1
  2543. | #define HAVE___BUILTIN_EXPECT 1
  2544. | #define HAVE___BUILTIN_CLZ 1
  2545. | #define HAVE___BUILTIN_CLZL 1
  2546. | #define HAVE___BUILTIN_CLZLL 1
  2547. | #define HAVE_VSNPRINTF 1
  2548. | #define HAVE_SNPRINTF 1
  2549. | /* end confdefs.h. */
  2550. | /* Define strlcpy to an innocuous variant, in case <limits.h> declares strlcpy.
  2551. | For example, HP-UX 11i <limits.h> declares gettimeofday. */
  2552. | #define strlcpy innocuous_strlcpy
  2553. |
  2554. | /* System header to define __stub macros and hopefully few prototypes,
  2555. | which can conflict with char strlcpy (); below.
  2556. | Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  2557. | <limits.h> exists even on freestanding compilers. */
  2558. |
  2559. | #ifdef __STDC__
  2560. | # include <limits.h>
  2561. | #else
  2562. | # include <assert.h>
  2563. | #endif
  2564. |
  2565. | #undef strlcpy
  2566. |
  2567. | /* Override any GCC internal prototype to avoid an error.
  2568. | Use char because int might match the return type of a GCC
  2569. | builtin and then its argument prototype would still apply. */
  2570. | #ifdef __cplusplus
  2571. | extern "C"
  2572. | #endif
  2573. | char strlcpy ();
  2574. | /* The GNU C library defines this for functions which it implements
  2575. | to always fail with ENOSYS. Some functions are actually named
  2576. | something starting with __ and the normal name is an alias. */
  2577. | #if defined __stub_strlcpy || defined __stub___strlcpy
  2578. | choke me
  2579. | #endif
  2580. |
  2581. | int
  2582. | main ()
  2583. | {
  2584. | return strlcpy ();
  2585. | ;
  2586. | return 0;
  2587. | }
  2588. configure:6791: result: no
  2589. configure:6802: checking for strrchrnul
  2590. configure:6802: result: no
  2591. configure:6812: checking for struct _stati64
  2592. configure:6812: gcc -c -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  2593. conftest.c: In function 'main':
  2594. conftest.c:103:13: error: invalid application of 'sizeof' to incomplete type 'struct _stati64'
  2595. if (sizeof (struct _stati64))
  2596. ^~~~~~
  2597. configure:6812: $? = 1
  2598. configure: failed program was:
  2599. | /* confdefs.h */
  2600. | #define PACKAGE_NAME ""
  2601. | #define PACKAGE_TARNAME ""
  2602. | #define PACKAGE_VERSION ""
  2603. | #define PACKAGE_STRING ""
  2604. | #define PACKAGE_BUGREPORT ""
  2605. | #define PACKAGE_URL ""
  2606. | #define STDC_HEADERS 1
  2607. | #define HAVE_SYS_TYPES_H 1
  2608. | #define HAVE_SYS_STAT_H 1
  2609. | #define HAVE_STDLIB_H 1
  2610. | #define HAVE_STRING_H 1
  2611. | #define HAVE_MEMORY_H 1
  2612. | #define HAVE_STRINGS_H 1
  2613. | #define HAVE_INTTYPES_H 1
  2614. | #define HAVE_STDINT_H 1
  2615. | #define HAVE_UNISTD_H 1
  2616. | #define __EXTENSIONS__ 1
  2617. | #define _ALL_SOURCE 1
  2618. | #define _GNU_SOURCE 1
  2619. | #define _POSIX_PTHREAD_SEMANTICS 1
  2620. | #define _TANDEM_SOURCE 1
  2621. | #define restrict __restrict
  2622. | #define WORDS_LITTLEENDIAN 1
  2623. | #define CFLAG_FWRAPV 1
  2624. | #define CFLAG_U_STRICT_ANSI 1
  2625. | #define CFLAG_FNO_COMMON 1
  2626. | #define STDC_HEADERS 1
  2627. | #define HAVE_INTTYPES_H 1
  2628. | #define HAVE_STRINGS_H 1
  2629. | #define HAVE__BOOL 1
  2630. | #define HAVE_STDBOOL_H 1
  2631. | #define HAVE_STDNORETURN_H 1
  2632. | #define HAVE_FCNTL_H 1
  2633. | #define HAVE_UNISTD_H 1
  2634. | #define HAVE_SYS_MMAN_H 1
  2635. | #define HAVE_SYS_TYPES_H 1
  2636. | #define HAVE_SYS_STAT_H 1
  2637. | #define HAVE_STRCASECMP 1
  2638. | #define HAVE_STRNCASECMP 1
  2639. | #define HAVE_STRSEP 1
  2640. | #define HAVE_STRNLEN 1
  2641. | #define HAVE_GETUID 1
  2642. | #define HAVE_GETGID 1
  2643. | #define HAVE_REALPATH 1
  2644. | #define HAVE_CANONICALIZE_FILE_NAME 1
  2645. | #define HAVE_PATHCONF 1
  2646. | #define HAVE_FSEEKO 1
  2647. | #define HAVE_FTRUNCATE 1
  2648. | #define HAVE_FILENO 1
  2649. | #define HAVE_STDLIB_H 1
  2650. | #define HAVE_UNISTD_H 1
  2651. | #define HAVE_SYS_PARAM_H 1
  2652. | #define HAVE_GETPAGESIZE 1
  2653. | #define HAVE_MMAP 1
  2654. | #define HAVE_GETPAGESIZE 1
  2655. | #define HAVE_SYSCONF 1
  2656. | #define HAVE_ACCESS 1
  2657. | #define HAVE_FACCESSAT 1
  2658. | #define HAVE___BUILTIN_EXPECT 1
  2659. | #define HAVE___BUILTIN_CLZ 1
  2660. | #define HAVE___BUILTIN_CLZL 1
  2661. | #define HAVE___BUILTIN_CLZLL 1
  2662. | #define HAVE_VSNPRINTF 1
  2663. | #define HAVE_SNPRINTF 1
  2664. | /* end confdefs.h. */
  2665. | #include <stdio.h>
  2666. | #ifdef HAVE_SYS_TYPES_H
  2667. | # include <sys/types.h>
  2668. | #endif
  2669. | #ifdef HAVE_SYS_STAT_H
  2670. | # include <sys/stat.h>
  2671. | #endif
  2672. | #ifdef STDC_HEADERS
  2673. | # include <stdlib.h>
  2674. | # include <stddef.h>
  2675. | #else
  2676. | # ifdef HAVE_STDLIB_H
  2677. | # include <stdlib.h>
  2678. | # endif
  2679. | #endif
  2680. | #ifdef HAVE_STRING_H
  2681. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  2682. | # include <memory.h>
  2683. | # endif
  2684. | # include <string.h>
  2685. | #endif
  2686. | #ifdef HAVE_STRINGS_H
  2687. | # include <strings.h>
  2688. | #endif
  2689. | #ifdef HAVE_INTTYPES_H
  2690. | # include <inttypes.h>
  2691. | #endif
  2692. | #ifdef HAVE_STDINT_H
  2693. | # include <stdint.h>
  2694. | #endif
  2695. | #ifdef HAVE_UNISTD_H
  2696. | # include <unistd.h>
  2697. | #endif
  2698. | int
  2699. | main ()
  2700. | {
  2701. | if (sizeof (struct _stati64))
  2702. | return 0;
  2703. | ;
  2704. | return 0;
  2705. | }
  2706. configure:6812: result: no
  2707. configure:6822: checking for struct stat
  2708. configure:6822: gcc -c -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  2709. configure:6822: $? = 0
  2710. configure:6822: gcc -c -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  2711. conftest.c: In function 'main':
  2712. conftest.c:103:26: error: expected expression before ')' token
  2713. if (sizeof ((struct stat)))
  2714. ^
  2715. configure:6822: $? = 1
  2716. configure: failed program was:
  2717. | /* confdefs.h */
  2718. | #define PACKAGE_NAME ""
  2719. | #define PACKAGE_TARNAME ""
  2720. | #define PACKAGE_VERSION ""
  2721. | #define PACKAGE_STRING ""
  2722. | #define PACKAGE_BUGREPORT ""
  2723. | #define PACKAGE_URL ""
  2724. | #define STDC_HEADERS 1
  2725. | #define HAVE_SYS_TYPES_H 1
  2726. | #define HAVE_SYS_STAT_H 1
  2727. | #define HAVE_STDLIB_H 1
  2728. | #define HAVE_STRING_H 1
  2729. | #define HAVE_MEMORY_H 1
  2730. | #define HAVE_STRINGS_H 1
  2731. | #define HAVE_INTTYPES_H 1
  2732. | #define HAVE_STDINT_H 1
  2733. | #define HAVE_UNISTD_H 1
  2734. | #define __EXTENSIONS__ 1
  2735. | #define _ALL_SOURCE 1
  2736. | #define _GNU_SOURCE 1
  2737. | #define _POSIX_PTHREAD_SEMANTICS 1
  2738. | #define _TANDEM_SOURCE 1
  2739. | #define restrict __restrict
  2740. | #define WORDS_LITTLEENDIAN 1
  2741. | #define CFLAG_FWRAPV 1
  2742. | #define CFLAG_U_STRICT_ANSI 1
  2743. | #define CFLAG_FNO_COMMON 1
  2744. | #define STDC_HEADERS 1
  2745. | #define HAVE_INTTYPES_H 1
  2746. | #define HAVE_STRINGS_H 1
  2747. | #define HAVE__BOOL 1
  2748. | #define HAVE_STDBOOL_H 1
  2749. | #define HAVE_STDNORETURN_H 1
  2750. | #define HAVE_FCNTL_H 1
  2751. | #define HAVE_UNISTD_H 1
  2752. | #define HAVE_SYS_MMAN_H 1
  2753. | #define HAVE_SYS_TYPES_H 1
  2754. | #define HAVE_SYS_STAT_H 1
  2755. | #define HAVE_STRCASECMP 1
  2756. | #define HAVE_STRNCASECMP 1
  2757. | #define HAVE_STRSEP 1
  2758. | #define HAVE_STRNLEN 1
  2759. | #define HAVE_GETUID 1
  2760. | #define HAVE_GETGID 1
  2761. | #define HAVE_REALPATH 1
  2762. | #define HAVE_CANONICALIZE_FILE_NAME 1
  2763. | #define HAVE_PATHCONF 1
  2764. | #define HAVE_FSEEKO 1
  2765. | #define HAVE_FTRUNCATE 1
  2766. | #define HAVE_FILENO 1
  2767. | #define HAVE_STDLIB_H 1
  2768. | #define HAVE_UNISTD_H 1
  2769. | #define HAVE_SYS_PARAM_H 1
  2770. | #define HAVE_GETPAGESIZE 1
  2771. | #define HAVE_MMAP 1
  2772. | #define HAVE_GETPAGESIZE 1
  2773. | #define HAVE_SYSCONF 1
  2774. | #define HAVE_ACCESS 1
  2775. | #define HAVE_FACCESSAT 1
  2776. | #define HAVE___BUILTIN_EXPECT 1
  2777. | #define HAVE___BUILTIN_CLZ 1
  2778. | #define HAVE___BUILTIN_CLZL 1
  2779. | #define HAVE___BUILTIN_CLZLL 1
  2780. | #define HAVE_VSNPRINTF 1
  2781. | #define HAVE_SNPRINTF 1
  2782. | /* end confdefs.h. */
  2783. | #include <stdio.h>
  2784. | #ifdef HAVE_SYS_TYPES_H
  2785. | # include <sys/types.h>
  2786. | #endif
  2787. | #ifdef HAVE_SYS_STAT_H
  2788. | # include <sys/stat.h>
  2789. | #endif
  2790. | #ifdef STDC_HEADERS
  2791. | # include <stdlib.h>
  2792. | # include <stddef.h>
  2793. | #else
  2794. | # ifdef HAVE_STDLIB_H
  2795. | # include <stdlib.h>
  2796. | # endif
  2797. | #endif
  2798. | #ifdef HAVE_STRING_H
  2799. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  2800. | # include <memory.h>
  2801. | # endif
  2802. | # include <string.h>
  2803. | #endif
  2804. | #ifdef HAVE_STRINGS_H
  2805. | # include <strings.h>
  2806. | #endif
  2807. | #ifdef HAVE_INTTYPES_H
  2808. | # include <inttypes.h>
  2809. | #endif
  2810. | #ifdef HAVE_STDINT_H
  2811. | # include <stdint.h>
  2812. | #endif
  2813. | #ifdef HAVE_UNISTD_H
  2814. | # include <unistd.h>
  2815. | #endif
  2816. | int
  2817. | main ()
  2818. | {
  2819. | if (sizeof ((struct stat)))
  2820. | return 0;
  2821. | ;
  2822. | return 0;
  2823. | }
  2824. configure:6822: result: yes
  2825. configure:6835: checking for stat
  2826. configure:6835: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  2827. configure:6835: $? = 0
  2828. configure:6835: result: yes
  2829. configure:6835: checking for _stati64
  2830. configure:6835: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  2831. /tmp/ccpj2YYD.o: In function `main':
  2832. /root/ffmpeg-raspberry-pi/nasm-2.14.02/conftest.c:103: undefined reference to `_stati64'
  2833. collect2: error: ld returned 1 exit status
  2834. configure:6835: $? = 1
  2835. configure: failed program was:
  2836. | /* confdefs.h */
  2837. | #define PACKAGE_NAME ""
  2838. | #define PACKAGE_TARNAME ""
  2839. | #define PACKAGE_VERSION ""
  2840. | #define PACKAGE_STRING ""
  2841. | #define PACKAGE_BUGREPORT ""
  2842. | #define PACKAGE_URL ""
  2843. | #define STDC_HEADERS 1
  2844. | #define HAVE_SYS_TYPES_H 1
  2845. | #define HAVE_SYS_STAT_H 1
  2846. | #define HAVE_STDLIB_H 1
  2847. | #define HAVE_STRING_H 1
  2848. | #define HAVE_MEMORY_H 1
  2849. | #define HAVE_STRINGS_H 1
  2850. | #define HAVE_INTTYPES_H 1
  2851. | #define HAVE_STDINT_H 1
  2852. | #define HAVE_UNISTD_H 1
  2853. | #define __EXTENSIONS__ 1
  2854. | #define _ALL_SOURCE 1
  2855. | #define _GNU_SOURCE 1
  2856. | #define _POSIX_PTHREAD_SEMANTICS 1
  2857. | #define _TANDEM_SOURCE 1
  2858. | #define restrict __restrict
  2859. | #define WORDS_LITTLEENDIAN 1
  2860. | #define CFLAG_FWRAPV 1
  2861. | #define CFLAG_U_STRICT_ANSI 1
  2862. | #define CFLAG_FNO_COMMON 1
  2863. | #define STDC_HEADERS 1
  2864. | #define HAVE_INTTYPES_H 1
  2865. | #define HAVE_STRINGS_H 1
  2866. | #define HAVE__BOOL 1
  2867. | #define HAVE_STDBOOL_H 1
  2868. | #define HAVE_STDNORETURN_H 1
  2869. | #define HAVE_FCNTL_H 1
  2870. | #define HAVE_UNISTD_H 1
  2871. | #define HAVE_SYS_MMAN_H 1
  2872. | #define HAVE_SYS_TYPES_H 1
  2873. | #define HAVE_SYS_STAT_H 1
  2874. | #define HAVE_STRCASECMP 1
  2875. | #define HAVE_STRNCASECMP 1
  2876. | #define HAVE_STRSEP 1
  2877. | #define HAVE_STRNLEN 1
  2878. | #define HAVE_GETUID 1
  2879. | #define HAVE_GETGID 1
  2880. | #define HAVE_REALPATH 1
  2881. | #define HAVE_CANONICALIZE_FILE_NAME 1
  2882. | #define HAVE_PATHCONF 1
  2883. | #define HAVE_FSEEKO 1
  2884. | #define HAVE_FTRUNCATE 1
  2885. | #define HAVE_FILENO 1
  2886. | #define HAVE_STDLIB_H 1
  2887. | #define HAVE_UNISTD_H 1
  2888. | #define HAVE_SYS_PARAM_H 1
  2889. | #define HAVE_GETPAGESIZE 1
  2890. | #define HAVE_MMAP 1
  2891. | #define HAVE_GETPAGESIZE 1
  2892. | #define HAVE_SYSCONF 1
  2893. | #define HAVE_ACCESS 1
  2894. | #define HAVE_FACCESSAT 1
  2895. | #define HAVE___BUILTIN_EXPECT 1
  2896. | #define HAVE___BUILTIN_CLZ 1
  2897. | #define HAVE___BUILTIN_CLZL 1
  2898. | #define HAVE___BUILTIN_CLZLL 1
  2899. | #define HAVE_VSNPRINTF 1
  2900. | #define HAVE_SNPRINTF 1
  2901. | #define HAVE_STRUCT_STAT 1
  2902. | #define HAVE_STAT 1
  2903. | /* end confdefs.h. */
  2904. | /* Define _stati64 to an innocuous variant, in case <limits.h> declares _stati64.
  2905. | For example, HP-UX 11i <limits.h> declares gettimeofday. */
  2906. | #define _stati64 innocuous__stati64
  2907. |
  2908. | /* System header to define __stub macros and hopefully few prototypes,
  2909. | which can conflict with char _stati64 (); below.
  2910. | Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  2911. | <limits.h> exists even on freestanding compilers. */
  2912. |
  2913. | #ifdef __STDC__
  2914. | # include <limits.h>
  2915. | #else
  2916. | # include <assert.h>
  2917. | #endif
  2918. |
  2919. | #undef _stati64
  2920. |
  2921. | /* Override any GCC internal prototype to avoid an error.
  2922. | Use char because int might match the return type of a GCC
  2923. | builtin and then its argument prototype would still apply. */
  2924. | #ifdef __cplusplus
  2925. | extern "C"
  2926. | #endif
  2927. | char _stati64 ();
  2928. | /* The GNU C library defines this for functions which it implements
  2929. | to always fail with ENOSYS. Some functions are actually named
  2930. | something starting with __ and the normal name is an alias. */
  2931. | #if defined __stub__stati64 || defined __stub____stati64
  2932. | choke me
  2933. | #endif
  2934. |
  2935. | int
  2936. | main ()
  2937. | {
  2938. | return _stati64 ();
  2939. | ;
  2940. | return 0;
  2941. | }
  2942. configure:6835: result: no
  2943. configure:6847: checking for fstat
  2944. configure:6847: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  2945. configure:6847: $? = 0
  2946. configure:6847: result: yes
  2947. configure:6847: checking for _fstati64
  2948. configure:6847: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  2949. /tmp/ccN3wazO.o: In function `main':
  2950. /root/ffmpeg-raspberry-pi/nasm-2.14.02/conftest.c:104: undefined reference to `_fstati64'
  2951. collect2: error: ld returned 1 exit status
  2952. configure:6847: $? = 1
  2953. configure: failed program was:
  2954. | /* confdefs.h */
  2955. | #define PACKAGE_NAME ""
  2956. | #define PACKAGE_TARNAME ""
  2957. | #define PACKAGE_VERSION ""
  2958. | #define PACKAGE_STRING ""
  2959. | #define PACKAGE_BUGREPORT ""
  2960. | #define PACKAGE_URL ""
  2961. | #define STDC_HEADERS 1
  2962. | #define HAVE_SYS_TYPES_H 1
  2963. | #define HAVE_SYS_STAT_H 1
  2964. | #define HAVE_STDLIB_H 1
  2965. | #define HAVE_STRING_H 1
  2966. | #define HAVE_MEMORY_H 1
  2967. | #define HAVE_STRINGS_H 1
  2968. | #define HAVE_INTTYPES_H 1
  2969. | #define HAVE_STDINT_H 1
  2970. | #define HAVE_UNISTD_H 1
  2971. | #define __EXTENSIONS__ 1
  2972. | #define _ALL_SOURCE 1
  2973. | #define _GNU_SOURCE 1
  2974. | #define _POSIX_PTHREAD_SEMANTICS 1
  2975. | #define _TANDEM_SOURCE 1
  2976. | #define restrict __restrict
  2977. | #define WORDS_LITTLEENDIAN 1
  2978. | #define CFLAG_FWRAPV 1
  2979. | #define CFLAG_U_STRICT_ANSI 1
  2980. | #define CFLAG_FNO_COMMON 1
  2981. | #define STDC_HEADERS 1
  2982. | #define HAVE_INTTYPES_H 1
  2983. | #define HAVE_STRINGS_H 1
  2984. | #define HAVE__BOOL 1
  2985. | #define HAVE_STDBOOL_H 1
  2986. | #define HAVE_STDNORETURN_H 1
  2987. | #define HAVE_FCNTL_H 1
  2988. | #define HAVE_UNISTD_H 1
  2989. | #define HAVE_SYS_MMAN_H 1
  2990. | #define HAVE_SYS_TYPES_H 1
  2991. | #define HAVE_SYS_STAT_H 1
  2992. | #define HAVE_STRCASECMP 1
  2993. | #define HAVE_STRNCASECMP 1
  2994. | #define HAVE_STRSEP 1
  2995. | #define HAVE_STRNLEN 1
  2996. | #define HAVE_GETUID 1
  2997. | #define HAVE_GETGID 1
  2998. | #define HAVE_REALPATH 1
  2999. | #define HAVE_CANONICALIZE_FILE_NAME 1
  3000. | #define HAVE_PATHCONF 1
  3001. | #define HAVE_FSEEKO 1
  3002. | #define HAVE_FTRUNCATE 1
  3003. | #define HAVE_FILENO 1
  3004. | #define HAVE_STDLIB_H 1
  3005. | #define HAVE_UNISTD_H 1
  3006. | #define HAVE_SYS_PARAM_H 1
  3007. | #define HAVE_GETPAGESIZE 1
  3008. | #define HAVE_MMAP 1
  3009. | #define HAVE_GETPAGESIZE 1
  3010. | #define HAVE_SYSCONF 1
  3011. | #define HAVE_ACCESS 1
  3012. | #define HAVE_FACCESSAT 1
  3013. | #define HAVE___BUILTIN_EXPECT 1
  3014. | #define HAVE___BUILTIN_CLZ 1
  3015. | #define HAVE___BUILTIN_CLZL 1
  3016. | #define HAVE___BUILTIN_CLZLL 1
  3017. | #define HAVE_VSNPRINTF 1
  3018. | #define HAVE_SNPRINTF 1
  3019. | #define HAVE_STRUCT_STAT 1
  3020. | #define HAVE_STAT 1
  3021. | #define HAVE_FSTAT 1
  3022. | /* end confdefs.h. */
  3023. | /* Define _fstati64 to an innocuous variant, in case <limits.h> declares _fstati64.
  3024. | For example, HP-UX 11i <limits.h> declares gettimeofday. */
  3025. | #define _fstati64 innocuous__fstati64
  3026. |
  3027. | /* System header to define __stub macros and hopefully few prototypes,
  3028. | which can conflict with char _fstati64 (); below.
  3029. | Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
  3030. | <limits.h> exists even on freestanding compilers. */
  3031. |
  3032. | #ifdef __STDC__
  3033. | # include <limits.h>
  3034. | #else
  3035. | # include <assert.h>
  3036. | #endif
  3037. |
  3038. | #undef _fstati64
  3039. |
  3040. | /* Override any GCC internal prototype to avoid an error.
  3041. | Use char because int might match the return type of a GCC
  3042. | builtin and then its argument prototype would still apply. */
  3043. | #ifdef __cplusplus
  3044. | extern "C"
  3045. | #endif
  3046. | char _fstati64 ();
  3047. | /* The GNU C library defines this for functions which it implements
  3048. | to always fail with ENOSYS. Some functions are actually named
  3049. | something starting with __ and the normal name is an alias. */
  3050. | #if defined __stub__fstati64 || defined __stub____fstati64
  3051. | choke me
  3052. | #endif
  3053. |
  3054. | int
  3055. | main ()
  3056. | {
  3057. | return _fstati64 ();
  3058. | ;
  3059. | return 0;
  3060. | }
  3061. configure:6847: result: no
  3062. configure:6857: checking whether strcasecmp is declared
  3063. configure:6857: gcc -c -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  3064. configure:6857: $? = 0
  3065. configure:6857: result: yes
  3066. configure:6868: checking whether stricmp is declared
  3067. configure:6868: gcc -c -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  3068. conftest.c: In function 'main':
  3069. conftest.c:111:10: error: 'stricmp' undeclared (first use in this function)
  3070. (void) stricmp;
  3071. ^~~~~~~
  3072. conftest.c:111:10: note: each undeclared identifier is reported only once for each function it appears in
  3073. configure:6868: $? = 1
  3074. configure: failed program was:
  3075. | /* confdefs.h */
  3076. | #define PACKAGE_NAME ""
  3077. | #define PACKAGE_TARNAME ""
  3078. | #define PACKAGE_VERSION ""
  3079. | #define PACKAGE_STRING ""
  3080. | #define PACKAGE_BUGREPORT ""
  3081. | #define PACKAGE_URL ""
  3082. | #define STDC_HEADERS 1
  3083. | #define HAVE_SYS_TYPES_H 1
  3084. | #define HAVE_SYS_STAT_H 1
  3085. | #define HAVE_STDLIB_H 1
  3086. | #define HAVE_STRING_H 1
  3087. | #define HAVE_MEMORY_H 1
  3088. | #define HAVE_STRINGS_H 1
  3089. | #define HAVE_INTTYPES_H 1
  3090. | #define HAVE_STDINT_H 1
  3091. | #define HAVE_UNISTD_H 1
  3092. | #define __EXTENSIONS__ 1
  3093. | #define _ALL_SOURCE 1
  3094. | #define _GNU_SOURCE 1
  3095. | #define _POSIX_PTHREAD_SEMANTICS 1
  3096. | #define _TANDEM_SOURCE 1
  3097. | #define restrict __restrict
  3098. | #define WORDS_LITTLEENDIAN 1
  3099. | #define CFLAG_FWRAPV 1
  3100. | #define CFLAG_U_STRICT_ANSI 1
  3101. | #define CFLAG_FNO_COMMON 1
  3102. | #define STDC_HEADERS 1
  3103. | #define HAVE_INTTYPES_H 1
  3104. | #define HAVE_STRINGS_H 1
  3105. | #define HAVE__BOOL 1
  3106. | #define HAVE_STDBOOL_H 1
  3107. | #define HAVE_STDNORETURN_H 1
  3108. | #define HAVE_FCNTL_H 1
  3109. | #define HAVE_UNISTD_H 1
  3110. | #define HAVE_SYS_MMAN_H 1
  3111. | #define HAVE_SYS_TYPES_H 1
  3112. | #define HAVE_SYS_STAT_H 1
  3113. | #define HAVE_STRCASECMP 1
  3114. | #define HAVE_STRNCASECMP 1
  3115. | #define HAVE_STRSEP 1
  3116. | #define HAVE_STRNLEN 1
  3117. | #define HAVE_GETUID 1
  3118. | #define HAVE_GETGID 1
  3119. | #define HAVE_REALPATH 1
  3120. | #define HAVE_CANONICALIZE_FILE_NAME 1
  3121. | #define HAVE_PATHCONF 1
  3122. | #define HAVE_FSEEKO 1
  3123. | #define HAVE_FTRUNCATE 1
  3124. | #define HAVE_FILENO 1
  3125. | #define HAVE_STDLIB_H 1
  3126. | #define HAVE_UNISTD_H 1
  3127. | #define HAVE_SYS_PARAM_H 1
  3128. | #define HAVE_GETPAGESIZE 1
  3129. | #define HAVE_MMAP 1
  3130. | #define HAVE_GETPAGESIZE 1
  3131. | #define HAVE_SYSCONF 1
  3132. | #define HAVE_ACCESS 1
  3133. | #define HAVE_FACCESSAT 1
  3134. | #define HAVE___BUILTIN_EXPECT 1
  3135. | #define HAVE___BUILTIN_CLZ 1
  3136. | #define HAVE___BUILTIN_CLZL 1
  3137. | #define HAVE___BUILTIN_CLZLL 1
  3138. | #define HAVE_VSNPRINTF 1
  3139. | #define HAVE_SNPRINTF 1
  3140. | #define HAVE_STRUCT_STAT 1
  3141. | #define HAVE_STAT 1
  3142. | #define HAVE_FSTAT 1
  3143. | #define HAVE_DECL_STRCASECMP 1
  3144. | /* end confdefs.h. */
  3145. | #include <stdio.h>
  3146. | #ifdef HAVE_SYS_TYPES_H
  3147. | # include <sys/types.h>
  3148. | #endif
  3149. | #ifdef HAVE_SYS_STAT_H
  3150. | # include <sys/stat.h>
  3151. | #endif
  3152. | #ifdef STDC_HEADERS
  3153. | # include <stdlib.h>
  3154. | # include <stddef.h>
  3155. | #else
  3156. | # ifdef HAVE_STDLIB_H
  3157. | # include <stdlib.h>
  3158. | # endif
  3159. | #endif
  3160. | #ifdef HAVE_STRING_H
  3161. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  3162. | # include <memory.h>
  3163. | # endif
  3164. | # include <string.h>
  3165. | #endif
  3166. | #ifdef HAVE_STRINGS_H
  3167. | # include <strings.h>
  3168. | #endif
  3169. | #ifdef HAVE_INTTYPES_H
  3170. | # include <inttypes.h>
  3171. | #endif
  3172. | #ifdef HAVE_STDINT_H
  3173. | # include <stdint.h>
  3174. | #endif
  3175. | #ifdef HAVE_UNISTD_H
  3176. | # include <unistd.h>
  3177. | #endif
  3178. | int
  3179. | main ()
  3180. | {
  3181. | #ifndef stricmp
  3182. | #ifdef __cplusplus
  3183. | (void) stricmp;
  3184. | #else
  3185. | (void) stricmp;
  3186. | #endif
  3187. | #endif
  3188. |
  3189. | ;
  3190. | return 0;
  3191. | }
  3192. configure:6868: result: no
  3193. configure:6879: checking whether strncasecmp is declared
  3194. configure:6879: gcc -c -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  3195. configure:6879: $? = 0
  3196. configure:6879: result: yes
  3197. configure:6890: checking whether strnicmp is declared
  3198. configure:6890: gcc -c -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  3199. conftest.c: In function 'main':
  3200. conftest.c:113:10: error: 'strnicmp' undeclared (first use in this function)
  3201. (void) strnicmp;
  3202. ^~~~~~~~
  3203. conftest.c:113:10: note: each undeclared identifier is reported only once for each function it appears in
  3204. configure:6890: $? = 1
  3205. configure: failed program was:
  3206. | /* confdefs.h */
  3207. | #define PACKAGE_NAME ""
  3208. | #define PACKAGE_TARNAME ""
  3209. | #define PACKAGE_VERSION ""
  3210. | #define PACKAGE_STRING ""
  3211. | #define PACKAGE_BUGREPORT ""
  3212. | #define PACKAGE_URL ""
  3213. | #define STDC_HEADERS 1
  3214. | #define HAVE_SYS_TYPES_H 1
  3215. | #define HAVE_SYS_STAT_H 1
  3216. | #define HAVE_STDLIB_H 1
  3217. | #define HAVE_STRING_H 1
  3218. | #define HAVE_MEMORY_H 1
  3219. | #define HAVE_STRINGS_H 1
  3220. | #define HAVE_INTTYPES_H 1
  3221. | #define HAVE_STDINT_H 1
  3222. | #define HAVE_UNISTD_H 1
  3223. | #define __EXTENSIONS__ 1
  3224. | #define _ALL_SOURCE 1
  3225. | #define _GNU_SOURCE 1
  3226. | #define _POSIX_PTHREAD_SEMANTICS 1
  3227. | #define _TANDEM_SOURCE 1
  3228. | #define restrict __restrict
  3229. | #define WORDS_LITTLEENDIAN 1
  3230. | #define CFLAG_FWRAPV 1
  3231. | #define CFLAG_U_STRICT_ANSI 1
  3232. | #define CFLAG_FNO_COMMON 1
  3233. | #define STDC_HEADERS 1
  3234. | #define HAVE_INTTYPES_H 1
  3235. | #define HAVE_STRINGS_H 1
  3236. | #define HAVE__BOOL 1
  3237. | #define HAVE_STDBOOL_H 1
  3238. | #define HAVE_STDNORETURN_H 1
  3239. | #define HAVE_FCNTL_H 1
  3240. | #define HAVE_UNISTD_H 1
  3241. | #define HAVE_SYS_MMAN_H 1
  3242. | #define HAVE_SYS_TYPES_H 1
  3243. | #define HAVE_SYS_STAT_H 1
  3244. | #define HAVE_STRCASECMP 1
  3245. | #define HAVE_STRNCASECMP 1
  3246. | #define HAVE_STRSEP 1
  3247. | #define HAVE_STRNLEN 1
  3248. | #define HAVE_GETUID 1
  3249. | #define HAVE_GETGID 1
  3250. | #define HAVE_REALPATH 1
  3251. | #define HAVE_CANONICALIZE_FILE_NAME 1
  3252. | #define HAVE_PATHCONF 1
  3253. | #define HAVE_FSEEKO 1
  3254. | #define HAVE_FTRUNCATE 1
  3255. | #define HAVE_FILENO 1
  3256. | #define HAVE_STDLIB_H 1
  3257. | #define HAVE_UNISTD_H 1
  3258. | #define HAVE_SYS_PARAM_H 1
  3259. | #define HAVE_GETPAGESIZE 1
  3260. | #define HAVE_MMAP 1
  3261. | #define HAVE_GETPAGESIZE 1
  3262. | #define HAVE_SYSCONF 1
  3263. | #define HAVE_ACCESS 1
  3264. | #define HAVE_FACCESSAT 1
  3265. | #define HAVE___BUILTIN_EXPECT 1
  3266. | #define HAVE___BUILTIN_CLZ 1
  3267. | #define HAVE___BUILTIN_CLZL 1
  3268. | #define HAVE___BUILTIN_CLZLL 1
  3269. | #define HAVE_VSNPRINTF 1
  3270. | #define HAVE_SNPRINTF 1
  3271. | #define HAVE_STRUCT_STAT 1
  3272. | #define HAVE_STAT 1
  3273. | #define HAVE_FSTAT 1
  3274. | #define HAVE_DECL_STRCASECMP 1
  3275. | #define HAVE_DECL_STRICMP 0
  3276. | #define HAVE_DECL_STRNCASECMP 1
  3277. | /* end confdefs.h. */
  3278. | #include <stdio.h>
  3279. | #ifdef HAVE_SYS_TYPES_H
  3280. | # include <sys/types.h>
  3281. | #endif
  3282. | #ifdef HAVE_SYS_STAT_H
  3283. | # include <sys/stat.h>
  3284. | #endif
  3285. | #ifdef STDC_HEADERS
  3286. | # include <stdlib.h>
  3287. | # include <stddef.h>
  3288. | #else
  3289. | # ifdef HAVE_STDLIB_H
  3290. | # include <stdlib.h>
  3291. | # endif
  3292. | #endif
  3293. | #ifdef HAVE_STRING_H
  3294. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  3295. | # include <memory.h>
  3296. | # endif
  3297. | # include <string.h>
  3298. | #endif
  3299. | #ifdef HAVE_STRINGS_H
  3300. | # include <strings.h>
  3301. | #endif
  3302. | #ifdef HAVE_INTTYPES_H
  3303. | # include <inttypes.h>
  3304. | #endif
  3305. | #ifdef HAVE_STDINT_H
  3306. | # include <stdint.h>
  3307. | #endif
  3308. | #ifdef HAVE_UNISTD_H
  3309. | # include <unistd.h>
  3310. | #endif
  3311. | int
  3312. | main ()
  3313. | {
  3314. | #ifndef strnicmp
  3315. | #ifdef __cplusplus
  3316. | (void) strnicmp;
  3317. | #else
  3318. | (void) strnicmp;
  3319. | #endif
  3320. | #endif
  3321. |
  3322. | ;
  3323. | return 0;
  3324. | }
  3325. configure:6890: result: no
  3326. configure:6901: checking whether strsep is declared
  3327. configure:6901: gcc -c -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  3328. configure:6901: $? = 0
  3329. configure:6901: result: yes
  3330. configure:6912: checking whether strlcpy is declared
  3331. configure:6912: gcc -c -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  3332. conftest.c: In function 'main':
  3333. conftest.c:115:10: error: 'strlcpy' undeclared (first use in this function)
  3334. (void) strlcpy;
  3335. ^~~~~~~
  3336. conftest.c:115:10: note: each undeclared identifier is reported only once for each function it appears in
  3337. configure:6912: $? = 1
  3338. configure: failed program was:
  3339. | /* confdefs.h */
  3340. | #define PACKAGE_NAME ""
  3341. | #define PACKAGE_TARNAME ""
  3342. | #define PACKAGE_VERSION ""
  3343. | #define PACKAGE_STRING ""
  3344. | #define PACKAGE_BUGREPORT ""
  3345. | #define PACKAGE_URL ""
  3346. | #define STDC_HEADERS 1
  3347. | #define HAVE_SYS_TYPES_H 1
  3348. | #define HAVE_SYS_STAT_H 1
  3349. | #define HAVE_STDLIB_H 1
  3350. | #define HAVE_STRING_H 1
  3351. | #define HAVE_MEMORY_H 1
  3352. | #define HAVE_STRINGS_H 1
  3353. | #define HAVE_INTTYPES_H 1
  3354. | #define HAVE_STDINT_H 1
  3355. | #define HAVE_UNISTD_H 1
  3356. | #define __EXTENSIONS__ 1
  3357. | #define _ALL_SOURCE 1
  3358. | #define _GNU_SOURCE 1
  3359. | #define _POSIX_PTHREAD_SEMANTICS 1
  3360. | #define _TANDEM_SOURCE 1
  3361. | #define restrict __restrict
  3362. | #define WORDS_LITTLEENDIAN 1
  3363. | #define CFLAG_FWRAPV 1
  3364. | #define CFLAG_U_STRICT_ANSI 1
  3365. | #define CFLAG_FNO_COMMON 1
  3366. | #define STDC_HEADERS 1
  3367. | #define HAVE_INTTYPES_H 1
  3368. | #define HAVE_STRINGS_H 1
  3369. | #define HAVE__BOOL 1
  3370. | #define HAVE_STDBOOL_H 1
  3371. | #define HAVE_STDNORETURN_H 1
  3372. | #define HAVE_FCNTL_H 1
  3373. | #define HAVE_UNISTD_H 1
  3374. | #define HAVE_SYS_MMAN_H 1
  3375. | #define HAVE_SYS_TYPES_H 1
  3376. | #define HAVE_SYS_STAT_H 1
  3377. | #define HAVE_STRCASECMP 1
  3378. | #define HAVE_STRNCASECMP 1
  3379. | #define HAVE_STRSEP 1
  3380. | #define HAVE_STRNLEN 1
  3381. | #define HAVE_GETUID 1
  3382. | #define HAVE_GETGID 1
  3383. | #define HAVE_REALPATH 1
  3384. | #define HAVE_CANONICALIZE_FILE_NAME 1
  3385. | #define HAVE_PATHCONF 1
  3386. | #define HAVE_FSEEKO 1
  3387. | #define HAVE_FTRUNCATE 1
  3388. | #define HAVE_FILENO 1
  3389. | #define HAVE_STDLIB_H 1
  3390. | #define HAVE_UNISTD_H 1
  3391. | #define HAVE_SYS_PARAM_H 1
  3392. | #define HAVE_GETPAGESIZE 1
  3393. | #define HAVE_MMAP 1
  3394. | #define HAVE_GETPAGESIZE 1
  3395. | #define HAVE_SYSCONF 1
  3396. | #define HAVE_ACCESS 1
  3397. | #define HAVE_FACCESSAT 1
  3398. | #define HAVE___BUILTIN_EXPECT 1
  3399. | #define HAVE___BUILTIN_CLZ 1
  3400. | #define HAVE___BUILTIN_CLZL 1
  3401. | #define HAVE___BUILTIN_CLZLL 1
  3402. | #define HAVE_VSNPRINTF 1
  3403. | #define HAVE_SNPRINTF 1
  3404. | #define HAVE_STRUCT_STAT 1
  3405. | #define HAVE_STAT 1
  3406. | #define HAVE_FSTAT 1
  3407. | #define HAVE_DECL_STRCASECMP 1
  3408. | #define HAVE_DECL_STRICMP 0
  3409. | #define HAVE_DECL_STRNCASECMP 1
  3410. | #define HAVE_DECL_STRNICMP 0
  3411. | #define HAVE_DECL_STRSEP 1
  3412. | /* end confdefs.h. */
  3413. | #include <stdio.h>
  3414. | #ifdef HAVE_SYS_TYPES_H
  3415. | # include <sys/types.h>
  3416. | #endif
  3417. | #ifdef HAVE_SYS_STAT_H
  3418. | # include <sys/stat.h>
  3419. | #endif
  3420. | #ifdef STDC_HEADERS
  3421. | # include <stdlib.h>
  3422. | # include <stddef.h>
  3423. | #else
  3424. | # ifdef HAVE_STDLIB_H
  3425. | # include <stdlib.h>
  3426. | # endif
  3427. | #endif
  3428. | #ifdef HAVE_STRING_H
  3429. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  3430. | # include <memory.h>
  3431. | # endif
  3432. | # include <string.h>
  3433. | #endif
  3434. | #ifdef HAVE_STRINGS_H
  3435. | # include <strings.h>
  3436. | #endif
  3437. | #ifdef HAVE_INTTYPES_H
  3438. | # include <inttypes.h>
  3439. | #endif
  3440. | #ifdef HAVE_STDINT_H
  3441. | # include <stdint.h>
  3442. | #endif
  3443. | #ifdef HAVE_UNISTD_H
  3444. | # include <unistd.h>
  3445. | #endif
  3446. | int
  3447. | main ()
  3448. | {
  3449. | #ifndef strlcpy
  3450. | #ifdef __cplusplus
  3451. | (void) strlcpy;
  3452. | #else
  3453. | (void) strlcpy;
  3454. | #endif
  3455. | #endif
  3456. |
  3457. | ;
  3458. | return 0;
  3459. | }
  3460. configure:6912: result: no
  3461. configure:6923: checking whether strnlen is declared
  3462. configure:6923: gcc -c -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  3463. configure:6923: $? = 0
  3464. configure:6923: result: yes
  3465. configure:6934: checking whether strrchrnul is declared
  3466. configure:6934: gcc -c -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  3467. conftest.c: In function 'main':
  3468. conftest.c:117:10: error: 'strrchrnul' undeclared (first use in this function)
  3469. (void) strrchrnul;
  3470. ^~~~~~~~~~
  3471. conftest.c:117:10: note: each undeclared identifier is reported only once for each function it appears in
  3472. configure:6934: $? = 1
  3473. configure: failed program was:
  3474. | /* confdefs.h */
  3475. | #define PACKAGE_NAME ""
  3476. | #define PACKAGE_TARNAME ""
  3477. | #define PACKAGE_VERSION ""
  3478. | #define PACKAGE_STRING ""
  3479. | #define PACKAGE_BUGREPORT ""
  3480. | #define PACKAGE_URL ""
  3481. | #define STDC_HEADERS 1
  3482. | #define HAVE_SYS_TYPES_H 1
  3483. | #define HAVE_SYS_STAT_H 1
  3484. | #define HAVE_STDLIB_H 1
  3485. | #define HAVE_STRING_H 1
  3486. | #define HAVE_MEMORY_H 1
  3487. | #define HAVE_STRINGS_H 1
  3488. | #define HAVE_INTTYPES_H 1
  3489. | #define HAVE_STDINT_H 1
  3490. | #define HAVE_UNISTD_H 1
  3491. | #define __EXTENSIONS__ 1
  3492. | #define _ALL_SOURCE 1
  3493. | #define _GNU_SOURCE 1
  3494. | #define _POSIX_PTHREAD_SEMANTICS 1
  3495. | #define _TANDEM_SOURCE 1
  3496. | #define restrict __restrict
  3497. | #define WORDS_LITTLEENDIAN 1
  3498. | #define CFLAG_FWRAPV 1
  3499. | #define CFLAG_U_STRICT_ANSI 1
  3500. | #define CFLAG_FNO_COMMON 1
  3501. | #define STDC_HEADERS 1
  3502. | #define HAVE_INTTYPES_H 1
  3503. | #define HAVE_STRINGS_H 1
  3504. | #define HAVE__BOOL 1
  3505. | #define HAVE_STDBOOL_H 1
  3506. | #define HAVE_STDNORETURN_H 1
  3507. | #define HAVE_FCNTL_H 1
  3508. | #define HAVE_UNISTD_H 1
  3509. | #define HAVE_SYS_MMAN_H 1
  3510. | #define HAVE_SYS_TYPES_H 1
  3511. | #define HAVE_SYS_STAT_H 1
  3512. | #define HAVE_STRCASECMP 1
  3513. | #define HAVE_STRNCASECMP 1
  3514. | #define HAVE_STRSEP 1
  3515. | #define HAVE_STRNLEN 1
  3516. | #define HAVE_GETUID 1
  3517. | #define HAVE_GETGID 1
  3518. | #define HAVE_REALPATH 1
  3519. | #define HAVE_CANONICALIZE_FILE_NAME 1
  3520. | #define HAVE_PATHCONF 1
  3521. | #define HAVE_FSEEKO 1
  3522. | #define HAVE_FTRUNCATE 1
  3523. | #define HAVE_FILENO 1
  3524. | #define HAVE_STDLIB_H 1
  3525. | #define HAVE_UNISTD_H 1
  3526. | #define HAVE_SYS_PARAM_H 1
  3527. | #define HAVE_GETPAGESIZE 1
  3528. | #define HAVE_MMAP 1
  3529. | #define HAVE_GETPAGESIZE 1
  3530. | #define HAVE_SYSCONF 1
  3531. | #define HAVE_ACCESS 1
  3532. | #define HAVE_FACCESSAT 1
  3533. | #define HAVE___BUILTIN_EXPECT 1
  3534. | #define HAVE___BUILTIN_CLZ 1
  3535. | #define HAVE___BUILTIN_CLZL 1
  3536. | #define HAVE___BUILTIN_CLZLL 1
  3537. | #define HAVE_VSNPRINTF 1
  3538. | #define HAVE_SNPRINTF 1
  3539. | #define HAVE_STRUCT_STAT 1
  3540. | #define HAVE_STAT 1
  3541. | #define HAVE_FSTAT 1
  3542. | #define HAVE_DECL_STRCASECMP 1
  3543. | #define HAVE_DECL_STRICMP 0
  3544. | #define HAVE_DECL_STRNCASECMP 1
  3545. | #define HAVE_DECL_STRNICMP 0
  3546. | #define HAVE_DECL_STRSEP 1
  3547. | #define HAVE_DECL_STRLCPY 0
  3548. | #define HAVE_DECL_STRNLEN 1
  3549. | /* end confdefs.h. */
  3550. | #include <stdio.h>
  3551. | #ifdef HAVE_SYS_TYPES_H
  3552. | # include <sys/types.h>
  3553. | #endif
  3554. | #ifdef HAVE_SYS_STAT_H
  3555. | # include <sys/stat.h>
  3556. | #endif
  3557. | #ifdef STDC_HEADERS
  3558. | # include <stdlib.h>
  3559. | # include <stddef.h>
  3560. | #else
  3561. | # ifdef HAVE_STDLIB_H
  3562. | # include <stdlib.h>
  3563. | # endif
  3564. | #endif
  3565. | #ifdef HAVE_STRING_H
  3566. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  3567. | # include <memory.h>
  3568. | # endif
  3569. | # include <string.h>
  3570. | #endif
  3571. | #ifdef HAVE_STRINGS_H
  3572. | # include <strings.h>
  3573. | #endif
  3574. | #ifdef HAVE_INTTYPES_H
  3575. | # include <inttypes.h>
  3576. | #endif
  3577. | #ifdef HAVE_STDINT_H
  3578. | # include <stdint.h>
  3579. | #endif
  3580. | #ifdef HAVE_UNISTD_H
  3581. | # include <unistd.h>
  3582. | #endif
  3583. | int
  3584. | main ()
  3585. | {
  3586. | #ifndef strrchrnul
  3587. | #ifdef __cplusplus
  3588. | (void) strrchrnul;
  3589. | #else
  3590. | (void) strrchrnul;
  3591. | #endif
  3592. | #endif
  3593. |
  3594. | ;
  3595. | return 0;
  3596. | }
  3597. configure:6934: result: no
  3598. configure:6947: checking for uintptr_t
  3599. configure:6947: gcc -c -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  3600. configure:6947: $? = 0
  3601. configure:6947: gcc -c -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  3602. conftest.c: In function 'main':
  3603. conftest.c:114:24: error: expected expression before ')' token
  3604. if (sizeof ((uintptr_t)))
  3605. ^
  3606. configure:6947: $? = 1
  3607. configure: failed program was:
  3608. | /* confdefs.h */
  3609. | #define PACKAGE_NAME ""
  3610. | #define PACKAGE_TARNAME ""
  3611. | #define PACKAGE_VERSION ""
  3612. | #define PACKAGE_STRING ""
  3613. | #define PACKAGE_BUGREPORT ""
  3614. | #define PACKAGE_URL ""
  3615. | #define STDC_HEADERS 1
  3616. | #define HAVE_SYS_TYPES_H 1
  3617. | #define HAVE_SYS_STAT_H 1
  3618. | #define HAVE_STDLIB_H 1
  3619. | #define HAVE_STRING_H 1
  3620. | #define HAVE_MEMORY_H 1
  3621. | #define HAVE_STRINGS_H 1
  3622. | #define HAVE_INTTYPES_H 1
  3623. | #define HAVE_STDINT_H 1
  3624. | #define HAVE_UNISTD_H 1
  3625. | #define __EXTENSIONS__ 1
  3626. | #define _ALL_SOURCE 1
  3627. | #define _GNU_SOURCE 1
  3628. | #define _POSIX_PTHREAD_SEMANTICS 1
  3629. | #define _TANDEM_SOURCE 1
  3630. | #define restrict __restrict
  3631. | #define WORDS_LITTLEENDIAN 1
  3632. | #define CFLAG_FWRAPV 1
  3633. | #define CFLAG_U_STRICT_ANSI 1
  3634. | #define CFLAG_FNO_COMMON 1
  3635. | #define STDC_HEADERS 1
  3636. | #define HAVE_INTTYPES_H 1
  3637. | #define HAVE_STRINGS_H 1
  3638. | #define HAVE__BOOL 1
  3639. | #define HAVE_STDBOOL_H 1
  3640. | #define HAVE_STDNORETURN_H 1
  3641. | #define HAVE_FCNTL_H 1
  3642. | #define HAVE_UNISTD_H 1
  3643. | #define HAVE_SYS_MMAN_H 1
  3644. | #define HAVE_SYS_TYPES_H 1
  3645. | #define HAVE_SYS_STAT_H 1
  3646. | #define HAVE_STRCASECMP 1
  3647. | #define HAVE_STRNCASECMP 1
  3648. | #define HAVE_STRSEP 1
  3649. | #define HAVE_STRNLEN 1
  3650. | #define HAVE_GETUID 1
  3651. | #define HAVE_GETGID 1
  3652. | #define HAVE_REALPATH 1
  3653. | #define HAVE_CANONICALIZE_FILE_NAME 1
  3654. | #define HAVE_PATHCONF 1
  3655. | #define HAVE_FSEEKO 1
  3656. | #define HAVE_FTRUNCATE 1
  3657. | #define HAVE_FILENO 1
  3658. | #define HAVE_STDLIB_H 1
  3659. | #define HAVE_UNISTD_H 1
  3660. | #define HAVE_SYS_PARAM_H 1
  3661. | #define HAVE_GETPAGESIZE 1
  3662. | #define HAVE_MMAP 1
  3663. | #define HAVE_GETPAGESIZE 1
  3664. | #define HAVE_SYSCONF 1
  3665. | #define HAVE_ACCESS 1
  3666. | #define HAVE_FACCESSAT 1
  3667. | #define HAVE___BUILTIN_EXPECT 1
  3668. | #define HAVE___BUILTIN_CLZ 1
  3669. | #define HAVE___BUILTIN_CLZL 1
  3670. | #define HAVE___BUILTIN_CLZLL 1
  3671. | #define HAVE_VSNPRINTF 1
  3672. | #define HAVE_SNPRINTF 1
  3673. | #define HAVE_STRUCT_STAT 1
  3674. | #define HAVE_STAT 1
  3675. | #define HAVE_FSTAT 1
  3676. | #define HAVE_DECL_STRCASECMP 1
  3677. | #define HAVE_DECL_STRICMP 0
  3678. | #define HAVE_DECL_STRNCASECMP 1
  3679. | #define HAVE_DECL_STRNICMP 0
  3680. | #define HAVE_DECL_STRSEP 1
  3681. | #define HAVE_DECL_STRLCPY 0
  3682. | #define HAVE_DECL_STRNLEN 1
  3683. | #define HAVE_DECL_STRRCHRNUL 0
  3684. | /* end confdefs.h. */
  3685. | #include <stdio.h>
  3686. | #ifdef HAVE_SYS_TYPES_H
  3687. | # include <sys/types.h>
  3688. | #endif
  3689. | #ifdef HAVE_SYS_STAT_H
  3690. | # include <sys/stat.h>
  3691. | #endif
  3692. | #ifdef STDC_HEADERS
  3693. | # include <stdlib.h>
  3694. | # include <stddef.h>
  3695. | #else
  3696. | # ifdef HAVE_STDLIB_H
  3697. | # include <stdlib.h>
  3698. | # endif
  3699. | #endif
  3700. | #ifdef HAVE_STRING_H
  3701. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  3702. | # include <memory.h>
  3703. | # endif
  3704. | # include <string.h>
  3705. | #endif
  3706. | #ifdef HAVE_STRINGS_H
  3707. | # include <strings.h>
  3708. | #endif
  3709. | #ifdef HAVE_INTTYPES_H
  3710. | # include <inttypes.h>
  3711. | #endif
  3712. | #ifdef HAVE_STDINT_H
  3713. | # include <stdint.h>
  3714. | #endif
  3715. | #ifdef HAVE_UNISTD_H
  3716. | # include <unistd.h>
  3717. | #endif
  3718. | int
  3719. | main ()
  3720. | {
  3721. | if (sizeof ((uintptr_t)))
  3722. | return 0;
  3723. | ;
  3724. | return 0;
  3725. | }
  3726. configure:6947: result: yes
  3727. configure:6999: checking endian.h usability
  3728. configure:6999: gcc -c -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  3729. configure:6999: $? = 0
  3730. configure:6999: result: yes
  3731. configure:6999: checking endian.h presence
  3732. configure:6999: gcc -E conftest.c
  3733. configure:6999: $? = 0
  3734. configure:6999: result: yes
  3735. configure:6999: checking for endian.h
  3736. configure:6999: result: yes
  3737. configure:7012: checking sys/endian.h usability
  3738. configure:7012: gcc -c -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  3739. conftest.c:114:24: fatal error: sys/endian.h: No such file or directory
  3740. #include <sys/endian.h>
  3741. ^
  3742. compilation terminated.
  3743. configure:7012: $? = 1
  3744. configure: failed program was:
  3745. | /* confdefs.h */
  3746. | #define PACKAGE_NAME ""
  3747. | #define PACKAGE_TARNAME ""
  3748. | #define PACKAGE_VERSION ""
  3749. | #define PACKAGE_STRING ""
  3750. | #define PACKAGE_BUGREPORT ""
  3751. | #define PACKAGE_URL ""
  3752. | #define STDC_HEADERS 1
  3753. | #define HAVE_SYS_TYPES_H 1
  3754. | #define HAVE_SYS_STAT_H 1
  3755. | #define HAVE_STDLIB_H 1
  3756. | #define HAVE_STRING_H 1
  3757. | #define HAVE_MEMORY_H 1
  3758. | #define HAVE_STRINGS_H 1
  3759. | #define HAVE_INTTYPES_H 1
  3760. | #define HAVE_STDINT_H 1
  3761. | #define HAVE_UNISTD_H 1
  3762. | #define __EXTENSIONS__ 1
  3763. | #define _ALL_SOURCE 1
  3764. | #define _GNU_SOURCE 1
  3765. | #define _POSIX_PTHREAD_SEMANTICS 1
  3766. | #define _TANDEM_SOURCE 1
  3767. | #define restrict __restrict
  3768. | #define WORDS_LITTLEENDIAN 1
  3769. | #define CFLAG_FWRAPV 1
  3770. | #define CFLAG_U_STRICT_ANSI 1
  3771. | #define CFLAG_FNO_COMMON 1
  3772. | #define STDC_HEADERS 1
  3773. | #define HAVE_INTTYPES_H 1
  3774. | #define HAVE_STRINGS_H 1
  3775. | #define HAVE__BOOL 1
  3776. | #define HAVE_STDBOOL_H 1
  3777. | #define HAVE_STDNORETURN_H 1
  3778. | #define HAVE_FCNTL_H 1
  3779. | #define HAVE_UNISTD_H 1
  3780. | #define HAVE_SYS_MMAN_H 1
  3781. | #define HAVE_SYS_TYPES_H 1
  3782. | #define HAVE_SYS_STAT_H 1
  3783. | #define HAVE_STRCASECMP 1
  3784. | #define HAVE_STRNCASECMP 1
  3785. | #define HAVE_STRSEP 1
  3786. | #define HAVE_STRNLEN 1
  3787. | #define HAVE_GETUID 1
  3788. | #define HAVE_GETGID 1
  3789. | #define HAVE_REALPATH 1
  3790. | #define HAVE_CANONICALIZE_FILE_NAME 1
  3791. | #define HAVE_PATHCONF 1
  3792. | #define HAVE_FSEEKO 1
  3793. | #define HAVE_FTRUNCATE 1
  3794. | #define HAVE_FILENO 1
  3795. | #define HAVE_STDLIB_H 1
  3796. | #define HAVE_UNISTD_H 1
  3797. | #define HAVE_SYS_PARAM_H 1
  3798. | #define HAVE_GETPAGESIZE 1
  3799. | #define HAVE_MMAP 1
  3800. | #define HAVE_GETPAGESIZE 1
  3801. | #define HAVE_SYSCONF 1
  3802. | #define HAVE_ACCESS 1
  3803. | #define HAVE_FACCESSAT 1
  3804. | #define HAVE___BUILTIN_EXPECT 1
  3805. | #define HAVE___BUILTIN_CLZ 1
  3806. | #define HAVE___BUILTIN_CLZL 1
  3807. | #define HAVE___BUILTIN_CLZLL 1
  3808. | #define HAVE_VSNPRINTF 1
  3809. | #define HAVE_SNPRINTF 1
  3810. | #define HAVE_STRUCT_STAT 1
  3811. | #define HAVE_STAT 1
  3812. | #define HAVE_FSTAT 1
  3813. | #define HAVE_DECL_STRCASECMP 1
  3814. | #define HAVE_DECL_STRICMP 0
  3815. | #define HAVE_DECL_STRNCASECMP 1
  3816. | #define HAVE_DECL_STRNICMP 0
  3817. | #define HAVE_DECL_STRSEP 1
  3818. | #define HAVE_DECL_STRLCPY 0
  3819. | #define HAVE_DECL_STRNLEN 1
  3820. | #define HAVE_DECL_STRRCHRNUL 0
  3821. | #define HAVE_UINTPTR_T 1
  3822. | #define HAVE_ENDIAN_H 1
  3823. | /* end confdefs.h. */
  3824. | #include <stdio.h>
  3825. | #ifdef HAVE_SYS_TYPES_H
  3826. | # include <sys/types.h>
  3827. | #endif
  3828. | #ifdef HAVE_SYS_STAT_H
  3829. | # include <sys/stat.h>
  3830. | #endif
  3831. | #ifdef STDC_HEADERS
  3832. | # include <stdlib.h>
  3833. | # include <stddef.h>
  3834. | #else
  3835. | # ifdef HAVE_STDLIB_H
  3836. | # include <stdlib.h>
  3837. | # endif
  3838. | #endif
  3839. | #ifdef HAVE_STRING_H
  3840. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  3841. | # include <memory.h>
  3842. | # endif
  3843. | # include <string.h>
  3844. | #endif
  3845. | #ifdef HAVE_STRINGS_H
  3846. | # include <strings.h>
  3847. | #endif
  3848. | #ifdef HAVE_INTTYPES_H
  3849. | # include <inttypes.h>
  3850. | #endif
  3851. | #ifdef HAVE_STDINT_H
  3852. | # include <stdint.h>
  3853. | #endif
  3854. | #ifdef HAVE_UNISTD_H
  3855. | # include <unistd.h>
  3856. | #endif
  3857. | #include <endian.h>
  3858. | #include <sys/endian.h>
  3859. configure:7012: result: no
  3860. configure:7012: checking sys/endian.h presence
  3861. configure:7012: gcc -E conftest.c
  3862. conftest.c:80:24: fatal error: sys/endian.h: No such file or directory
  3863. #include <sys/endian.h>
  3864. ^
  3865. compilation terminated.
  3866. configure:7012: $? = 1
  3867. configure: failed program was:
  3868. | /* confdefs.h */
  3869. | #define PACKAGE_NAME ""
  3870. | #define PACKAGE_TARNAME ""
  3871. | #define PACKAGE_VERSION ""
  3872. | #define PACKAGE_STRING ""
  3873. | #define PACKAGE_BUGREPORT ""
  3874. | #define PACKAGE_URL ""
  3875. | #define STDC_HEADERS 1
  3876. | #define HAVE_SYS_TYPES_H 1
  3877. | #define HAVE_SYS_STAT_H 1
  3878. | #define HAVE_STDLIB_H 1
  3879. | #define HAVE_STRING_H 1
  3880. | #define HAVE_MEMORY_H 1
  3881. | #define HAVE_STRINGS_H 1
  3882. | #define HAVE_INTTYPES_H 1
  3883. | #define HAVE_STDINT_H 1
  3884. | #define HAVE_UNISTD_H 1
  3885. | #define __EXTENSIONS__ 1
  3886. | #define _ALL_SOURCE 1
  3887. | #define _GNU_SOURCE 1
  3888. | #define _POSIX_PTHREAD_SEMANTICS 1
  3889. | #define _TANDEM_SOURCE 1
  3890. | #define restrict __restrict
  3891. | #define WORDS_LITTLEENDIAN 1
  3892. | #define CFLAG_FWRAPV 1
  3893. | #define CFLAG_U_STRICT_ANSI 1
  3894. | #define CFLAG_FNO_COMMON 1
  3895. | #define STDC_HEADERS 1
  3896. | #define HAVE_INTTYPES_H 1
  3897. | #define HAVE_STRINGS_H 1
  3898. | #define HAVE__BOOL 1
  3899. | #define HAVE_STDBOOL_H 1
  3900. | #define HAVE_STDNORETURN_H 1
  3901. | #define HAVE_FCNTL_H 1
  3902. | #define HAVE_UNISTD_H 1
  3903. | #define HAVE_SYS_MMAN_H 1
  3904. | #define HAVE_SYS_TYPES_H 1
  3905. | #define HAVE_SYS_STAT_H 1
  3906. | #define HAVE_STRCASECMP 1
  3907. | #define HAVE_STRNCASECMP 1
  3908. | #define HAVE_STRSEP 1
  3909. | #define HAVE_STRNLEN 1
  3910. | #define HAVE_GETUID 1
  3911. | #define HAVE_GETGID 1
  3912. | #define HAVE_REALPATH 1
  3913. | #define HAVE_CANONICALIZE_FILE_NAME 1
  3914. | #define HAVE_PATHCONF 1
  3915. | #define HAVE_FSEEKO 1
  3916. | #define HAVE_FTRUNCATE 1
  3917. | #define HAVE_FILENO 1
  3918. | #define HAVE_STDLIB_H 1
  3919. | #define HAVE_UNISTD_H 1
  3920. | #define HAVE_SYS_PARAM_H 1
  3921. | #define HAVE_GETPAGESIZE 1
  3922. | #define HAVE_MMAP 1
  3923. | #define HAVE_GETPAGESIZE 1
  3924. | #define HAVE_SYSCONF 1
  3925. | #define HAVE_ACCESS 1
  3926. | #define HAVE_FACCESSAT 1
  3927. | #define HAVE___BUILTIN_EXPECT 1
  3928. | #define HAVE___BUILTIN_CLZ 1
  3929. | #define HAVE___BUILTIN_CLZL 1
  3930. | #define HAVE___BUILTIN_CLZLL 1
  3931. | #define HAVE_VSNPRINTF 1
  3932. | #define HAVE_SNPRINTF 1
  3933. | #define HAVE_STRUCT_STAT 1
  3934. | #define HAVE_STAT 1
  3935. | #define HAVE_FSTAT 1
  3936. | #define HAVE_DECL_STRCASECMP 1
  3937. | #define HAVE_DECL_STRICMP 0
  3938. | #define HAVE_DECL_STRNCASECMP 1
  3939. | #define HAVE_DECL_STRNICMP 0
  3940. | #define HAVE_DECL_STRSEP 1
  3941. | #define HAVE_DECL_STRLCPY 0
  3942. | #define HAVE_DECL_STRNLEN 1
  3943. | #define HAVE_DECL_STRRCHRNUL 0
  3944. | #define HAVE_UINTPTR_T 1
  3945. | #define HAVE_ENDIAN_H 1
  3946. | /* end confdefs.h. */
  3947. | #include <sys/endian.h>
  3948. configure:7012: result: no
  3949. configure:7012: checking for sys/endian.h
  3950. configure:7012: result: no
  3951. configure:7025: checking machine/endian.h usability
  3952. configure:7025: gcc -c -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  3953. conftest.c:114:28: fatal error: machine/endian.h: No such file or directory
  3954. #include <machine/endian.h>
  3955. ^
  3956. compilation terminated.
  3957. configure:7025: $? = 1
  3958. configure: failed program was:
  3959. | /* confdefs.h */
  3960. | #define PACKAGE_NAME ""
  3961. | #define PACKAGE_TARNAME ""
  3962. | #define PACKAGE_VERSION ""
  3963. | #define PACKAGE_STRING ""
  3964. | #define PACKAGE_BUGREPORT ""
  3965. | #define PACKAGE_URL ""
  3966. | #define STDC_HEADERS 1
  3967. | #define HAVE_SYS_TYPES_H 1
  3968. | #define HAVE_SYS_STAT_H 1
  3969. | #define HAVE_STDLIB_H 1
  3970. | #define HAVE_STRING_H 1
  3971. | #define HAVE_MEMORY_H 1
  3972. | #define HAVE_STRINGS_H 1
  3973. | #define HAVE_INTTYPES_H 1
  3974. | #define HAVE_STDINT_H 1
  3975. | #define HAVE_UNISTD_H 1
  3976. | #define __EXTENSIONS__ 1
  3977. | #define _ALL_SOURCE 1
  3978. | #define _GNU_SOURCE 1
  3979. | #define _POSIX_PTHREAD_SEMANTICS 1
  3980. | #define _TANDEM_SOURCE 1
  3981. | #define restrict __restrict
  3982. | #define WORDS_LITTLEENDIAN 1
  3983. | #define CFLAG_FWRAPV 1
  3984. | #define CFLAG_U_STRICT_ANSI 1
  3985. | #define CFLAG_FNO_COMMON 1
  3986. | #define STDC_HEADERS 1
  3987. | #define HAVE_INTTYPES_H 1
  3988. | #define HAVE_STRINGS_H 1
  3989. | #define HAVE__BOOL 1
  3990. | #define HAVE_STDBOOL_H 1
  3991. | #define HAVE_STDNORETURN_H 1
  3992. | #define HAVE_FCNTL_H 1
  3993. | #define HAVE_UNISTD_H 1
  3994. | #define HAVE_SYS_MMAN_H 1
  3995. | #define HAVE_SYS_TYPES_H 1
  3996. | #define HAVE_SYS_STAT_H 1
  3997. | #define HAVE_STRCASECMP 1
  3998. | #define HAVE_STRNCASECMP 1
  3999. | #define HAVE_STRSEP 1
  4000. | #define HAVE_STRNLEN 1
  4001. | #define HAVE_GETUID 1
  4002. | #define HAVE_GETGID 1
  4003. | #define HAVE_REALPATH 1
  4004. | #define HAVE_CANONICALIZE_FILE_NAME 1
  4005. | #define HAVE_PATHCONF 1
  4006. | #define HAVE_FSEEKO 1
  4007. | #define HAVE_FTRUNCATE 1
  4008. | #define HAVE_FILENO 1
  4009. | #define HAVE_STDLIB_H 1
  4010. | #define HAVE_UNISTD_H 1
  4011. | #define HAVE_SYS_PARAM_H 1
  4012. | #define HAVE_GETPAGESIZE 1
  4013. | #define HAVE_MMAP 1
  4014. | #define HAVE_GETPAGESIZE 1
  4015. | #define HAVE_SYSCONF 1
  4016. | #define HAVE_ACCESS 1
  4017. | #define HAVE_FACCESSAT 1
  4018. | #define HAVE___BUILTIN_EXPECT 1
  4019. | #define HAVE___BUILTIN_CLZ 1
  4020. | #define HAVE___BUILTIN_CLZL 1
  4021. | #define HAVE___BUILTIN_CLZLL 1
  4022. | #define HAVE_VSNPRINTF 1
  4023. | #define HAVE_SNPRINTF 1
  4024. | #define HAVE_STRUCT_STAT 1
  4025. | #define HAVE_STAT 1
  4026. | #define HAVE_FSTAT 1
  4027. | #define HAVE_DECL_STRCASECMP 1
  4028. | #define HAVE_DECL_STRICMP 0
  4029. | #define HAVE_DECL_STRNCASECMP 1
  4030. | #define HAVE_DECL_STRNICMP 0
  4031. | #define HAVE_DECL_STRSEP 1
  4032. | #define HAVE_DECL_STRLCPY 0
  4033. | #define HAVE_DECL_STRNLEN 1
  4034. | #define HAVE_DECL_STRRCHRNUL 0
  4035. | #define HAVE_UINTPTR_T 1
  4036. | #define HAVE_ENDIAN_H 1
  4037. | /* end confdefs.h. */
  4038. | #include <stdio.h>
  4039. | #ifdef HAVE_SYS_TYPES_H
  4040. | # include <sys/types.h>
  4041. | #endif
  4042. | #ifdef HAVE_SYS_STAT_H
  4043. | # include <sys/stat.h>
  4044. | #endif
  4045. | #ifdef STDC_HEADERS
  4046. | # include <stdlib.h>
  4047. | # include <stddef.h>
  4048. | #else
  4049. | # ifdef HAVE_STDLIB_H
  4050. | # include <stdlib.h>
  4051. | # endif
  4052. | #endif
  4053. | #ifdef HAVE_STRING_H
  4054. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  4055. | # include <memory.h>
  4056. | # endif
  4057. | # include <string.h>
  4058. | #endif
  4059. | #ifdef HAVE_STRINGS_H
  4060. | # include <strings.h>
  4061. | #endif
  4062. | #ifdef HAVE_INTTYPES_H
  4063. | # include <inttypes.h>
  4064. | #endif
  4065. | #ifdef HAVE_STDINT_H
  4066. | # include <stdint.h>
  4067. | #endif
  4068. | #ifdef HAVE_UNISTD_H
  4069. | # include <unistd.h>
  4070. | #endif
  4071. | #include <endian.h>
  4072. | #include <machine/endian.h>
  4073. configure:7025: result: no
  4074. configure:7025: checking machine/endian.h presence
  4075. configure:7025: gcc -E conftest.c
  4076. conftest.c:80:28: fatal error: machine/endian.h: No such file or directory
  4077. #include <machine/endian.h>
  4078. ^
  4079. compilation terminated.
  4080. configure:7025: $? = 1
  4081. configure: failed program was:
  4082. | /* confdefs.h */
  4083. | #define PACKAGE_NAME ""
  4084. | #define PACKAGE_TARNAME ""
  4085. | #define PACKAGE_VERSION ""
  4086. | #define PACKAGE_STRING ""
  4087. | #define PACKAGE_BUGREPORT ""
  4088. | #define PACKAGE_URL ""
  4089. | #define STDC_HEADERS 1
  4090. | #define HAVE_SYS_TYPES_H 1
  4091. | #define HAVE_SYS_STAT_H 1
  4092. | #define HAVE_STDLIB_H 1
  4093. | #define HAVE_STRING_H 1
  4094. | #define HAVE_MEMORY_H 1
  4095. | #define HAVE_STRINGS_H 1
  4096. | #define HAVE_INTTYPES_H 1
  4097. | #define HAVE_STDINT_H 1
  4098. | #define HAVE_UNISTD_H 1
  4099. | #define __EXTENSIONS__ 1
  4100. | #define _ALL_SOURCE 1
  4101. | #define _GNU_SOURCE 1
  4102. | #define _POSIX_PTHREAD_SEMANTICS 1
  4103. | #define _TANDEM_SOURCE 1
  4104. | #define restrict __restrict
  4105. | #define WORDS_LITTLEENDIAN 1
  4106. | #define CFLAG_FWRAPV 1
  4107. | #define CFLAG_U_STRICT_ANSI 1
  4108. | #define CFLAG_FNO_COMMON 1
  4109. | #define STDC_HEADERS 1
  4110. | #define HAVE_INTTYPES_H 1
  4111. | #define HAVE_STRINGS_H 1
  4112. | #define HAVE__BOOL 1
  4113. | #define HAVE_STDBOOL_H 1
  4114. | #define HAVE_STDNORETURN_H 1
  4115. | #define HAVE_FCNTL_H 1
  4116. | #define HAVE_UNISTD_H 1
  4117. | #define HAVE_SYS_MMAN_H 1
  4118. | #define HAVE_SYS_TYPES_H 1
  4119. | #define HAVE_SYS_STAT_H 1
  4120. | #define HAVE_STRCASECMP 1
  4121. | #define HAVE_STRNCASECMP 1
  4122. | #define HAVE_STRSEP 1
  4123. | #define HAVE_STRNLEN 1
  4124. | #define HAVE_GETUID 1
  4125. | #define HAVE_GETGID 1
  4126. | #define HAVE_REALPATH 1
  4127. | #define HAVE_CANONICALIZE_FILE_NAME 1
  4128. | #define HAVE_PATHCONF 1
  4129. | #define HAVE_FSEEKO 1
  4130. | #define HAVE_FTRUNCATE 1
  4131. | #define HAVE_FILENO 1
  4132. | #define HAVE_STDLIB_H 1
  4133. | #define HAVE_UNISTD_H 1
  4134. | #define HAVE_SYS_PARAM_H 1
  4135. | #define HAVE_GETPAGESIZE 1
  4136. | #define HAVE_MMAP 1
  4137. | #define HAVE_GETPAGESIZE 1
  4138. | #define HAVE_SYSCONF 1
  4139. | #define HAVE_ACCESS 1
  4140. | #define HAVE_FACCESSAT 1
  4141. | #define HAVE___BUILTIN_EXPECT 1
  4142. | #define HAVE___BUILTIN_CLZ 1
  4143. | #define HAVE___BUILTIN_CLZL 1
  4144. | #define HAVE___BUILTIN_CLZLL 1
  4145. | #define HAVE_VSNPRINTF 1
  4146. | #define HAVE_SNPRINTF 1
  4147. | #define HAVE_STRUCT_STAT 1
  4148. | #define HAVE_STAT 1
  4149. | #define HAVE_FSTAT 1
  4150. | #define HAVE_DECL_STRCASECMP 1
  4151. | #define HAVE_DECL_STRICMP 0
  4152. | #define HAVE_DECL_STRNCASECMP 1
  4153. | #define HAVE_DECL_STRNICMP 0
  4154. | #define HAVE_DECL_STRSEP 1
  4155. | #define HAVE_DECL_STRLCPY 0
  4156. | #define HAVE_DECL_STRNLEN 1
  4157. | #define HAVE_DECL_STRRCHRNUL 0
  4158. | #define HAVE_UINTPTR_T 1
  4159. | #define HAVE_ENDIAN_H 1
  4160. | /* end confdefs.h. */
  4161. | #include <machine/endian.h>
  4162. configure:7025: result: no
  4163. configure:7025: checking for machine/endian.h
  4164. configure:7025: result: no
  4165. configure:7037: checking for cpu_to_le16
  4166. configure:7049: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  4167. conftest.c: In function 'main':
  4168. conftest.c:116:11: warning: implicit declaration of function 'cpu_to_le16' [-Wimplicit-function-declaration]
  4169. (void)cpu_to_le16(0);
  4170. ^~~~~~~~~~~
  4171. /tmp/cc52AzUI.o: In function `main':
  4172. /root/ffmpeg-raspberry-pi/nasm-2.14.02/conftest.c:116: undefined reference to `cpu_to_le16'
  4173. collect2: error: ld returned 1 exit status
  4174. configure:7049: $? = 1
  4175. configure: failed program was:
  4176. | /* confdefs.h */
  4177. | #define PACKAGE_NAME ""
  4178. | #define PACKAGE_TARNAME ""
  4179. | #define PACKAGE_VERSION ""
  4180. | #define PACKAGE_STRING ""
  4181. | #define PACKAGE_BUGREPORT ""
  4182. | #define PACKAGE_URL ""
  4183. | #define STDC_HEADERS 1
  4184. | #define HAVE_SYS_TYPES_H 1
  4185. | #define HAVE_SYS_STAT_H 1
  4186. | #define HAVE_STDLIB_H 1
  4187. | #define HAVE_STRING_H 1
  4188. | #define HAVE_MEMORY_H 1
  4189. | #define HAVE_STRINGS_H 1
  4190. | #define HAVE_INTTYPES_H 1
  4191. | #define HAVE_STDINT_H 1
  4192. | #define HAVE_UNISTD_H 1
  4193. | #define __EXTENSIONS__ 1
  4194. | #define _ALL_SOURCE 1
  4195. | #define _GNU_SOURCE 1
  4196. | #define _POSIX_PTHREAD_SEMANTICS 1
  4197. | #define _TANDEM_SOURCE 1
  4198. | #define restrict __restrict
  4199. | #define WORDS_LITTLEENDIAN 1
  4200. | #define CFLAG_FWRAPV 1
  4201. | #define CFLAG_U_STRICT_ANSI 1
  4202. | #define CFLAG_FNO_COMMON 1
  4203. | #define STDC_HEADERS 1
  4204. | #define HAVE_INTTYPES_H 1
  4205. | #define HAVE_STRINGS_H 1
  4206. | #define HAVE__BOOL 1
  4207. | #define HAVE_STDBOOL_H 1
  4208. | #define HAVE_STDNORETURN_H 1
  4209. | #define HAVE_FCNTL_H 1
  4210. | #define HAVE_UNISTD_H 1
  4211. | #define HAVE_SYS_MMAN_H 1
  4212. | #define HAVE_SYS_TYPES_H 1
  4213. | #define HAVE_SYS_STAT_H 1
  4214. | #define HAVE_STRCASECMP 1
  4215. | #define HAVE_STRNCASECMP 1
  4216. | #define HAVE_STRSEP 1
  4217. | #define HAVE_STRNLEN 1
  4218. | #define HAVE_GETUID 1
  4219. | #define HAVE_GETGID 1
  4220. | #define HAVE_REALPATH 1
  4221. | #define HAVE_CANONICALIZE_FILE_NAME 1
  4222. | #define HAVE_PATHCONF 1
  4223. | #define HAVE_FSEEKO 1
  4224. | #define HAVE_FTRUNCATE 1
  4225. | #define HAVE_FILENO 1
  4226. | #define HAVE_STDLIB_H 1
  4227. | #define HAVE_UNISTD_H 1
  4228. | #define HAVE_SYS_PARAM_H 1
  4229. | #define HAVE_GETPAGESIZE 1
  4230. | #define HAVE_MMAP 1
  4231. | #define HAVE_GETPAGESIZE 1
  4232. | #define HAVE_SYSCONF 1
  4233. | #define HAVE_ACCESS 1
  4234. | #define HAVE_FACCESSAT 1
  4235. | #define HAVE___BUILTIN_EXPECT 1
  4236. | #define HAVE___BUILTIN_CLZ 1
  4237. | #define HAVE___BUILTIN_CLZL 1
  4238. | #define HAVE___BUILTIN_CLZLL 1
  4239. | #define HAVE_VSNPRINTF 1
  4240. | #define HAVE_SNPRINTF 1
  4241. | #define HAVE_STRUCT_STAT 1
  4242. | #define HAVE_STAT 1
  4243. | #define HAVE_FSTAT 1
  4244. | #define HAVE_DECL_STRCASECMP 1
  4245. | #define HAVE_DECL_STRICMP 0
  4246. | #define HAVE_DECL_STRNCASECMP 1
  4247. | #define HAVE_DECL_STRNICMP 0
  4248. | #define HAVE_DECL_STRSEP 1
  4249. | #define HAVE_DECL_STRLCPY 0
  4250. | #define HAVE_DECL_STRNLEN 1
  4251. | #define HAVE_DECL_STRRCHRNUL 0
  4252. | #define HAVE_UINTPTR_T 1
  4253. | #define HAVE_ENDIAN_H 1
  4254. | /* end confdefs.h. */
  4255. |
  4256. | #include <stdio.h>
  4257. | #ifdef HAVE_SYS_TYPES_H
  4258. | # include <sys/types.h>
  4259. | #endif
  4260. | #ifdef HAVE_SYS_STAT_H
  4261. | # include <sys/stat.h>
  4262. | #endif
  4263. | #ifdef STDC_HEADERS
  4264. | # include <stdlib.h>
  4265. | # include <stddef.h>
  4266. | #else
  4267. | # ifdef HAVE_STDLIB_H
  4268. | # include <stdlib.h>
  4269. | # endif
  4270. | #endif
  4271. | #ifdef HAVE_STRING_H
  4272. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  4273. | # include <memory.h>
  4274. | # endif
  4275. | # include <string.h>
  4276. | #endif
  4277. | #ifdef HAVE_STRINGS_H
  4278. | # include <strings.h>
  4279. | #endif
  4280. | #ifdef HAVE_INTTYPES_H
  4281. | # include <inttypes.h>
  4282. | #endif
  4283. | #ifdef HAVE_STDINT_H
  4284. | # include <stdint.h>
  4285. | #endif
  4286. | #ifdef HAVE_UNISTD_H
  4287. | # include <unistd.h>
  4288. | #endif
  4289. | #include <endian.h>
  4290. | int main(void) {
  4291. | (void)cpu_to_le16(0);
  4292. | return 0;
  4293. | }
  4294. |
  4295. configure:7056: result: no
  4296. configure:7062: checking for cpu_to_le32
  4297. configure:7074: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  4298. conftest.c: In function 'main':
  4299. conftest.c:116:11: warning: implicit declaration of function 'cpu_to_le32' [-Wimplicit-function-declaration]
  4300. (void)cpu_to_le32(0);
  4301. ^~~~~~~~~~~
  4302. /tmp/ccaCbfWF.o: In function `main':
  4303. /root/ffmpeg-raspberry-pi/nasm-2.14.02/conftest.c:116: undefined reference to `cpu_to_le32'
  4304. collect2: error: ld returned 1 exit status
  4305. configure:7074: $? = 1
  4306. configure: failed program was:
  4307. | /* confdefs.h */
  4308. | #define PACKAGE_NAME ""
  4309. | #define PACKAGE_TARNAME ""
  4310. | #define PACKAGE_VERSION ""
  4311. | #define PACKAGE_STRING ""
  4312. | #define PACKAGE_BUGREPORT ""
  4313. | #define PACKAGE_URL ""
  4314. | #define STDC_HEADERS 1
  4315. | #define HAVE_SYS_TYPES_H 1
  4316. | #define HAVE_SYS_STAT_H 1
  4317. | #define HAVE_STDLIB_H 1
  4318. | #define HAVE_STRING_H 1
  4319. | #define HAVE_MEMORY_H 1
  4320. | #define HAVE_STRINGS_H 1
  4321. | #define HAVE_INTTYPES_H 1
  4322. | #define HAVE_STDINT_H 1
  4323. | #define HAVE_UNISTD_H 1
  4324. | #define __EXTENSIONS__ 1
  4325. | #define _ALL_SOURCE 1
  4326. | #define _GNU_SOURCE 1
  4327. | #define _POSIX_PTHREAD_SEMANTICS 1
  4328. | #define _TANDEM_SOURCE 1
  4329. | #define restrict __restrict
  4330. | #define WORDS_LITTLEENDIAN 1
  4331. | #define CFLAG_FWRAPV 1
  4332. | #define CFLAG_U_STRICT_ANSI 1
  4333. | #define CFLAG_FNO_COMMON 1
  4334. | #define STDC_HEADERS 1
  4335. | #define HAVE_INTTYPES_H 1
  4336. | #define HAVE_STRINGS_H 1
  4337. | #define HAVE__BOOL 1
  4338. | #define HAVE_STDBOOL_H 1
  4339. | #define HAVE_STDNORETURN_H 1
  4340. | #define HAVE_FCNTL_H 1
  4341. | #define HAVE_UNISTD_H 1
  4342. | #define HAVE_SYS_MMAN_H 1
  4343. | #define HAVE_SYS_TYPES_H 1
  4344. | #define HAVE_SYS_STAT_H 1
  4345. | #define HAVE_STRCASECMP 1
  4346. | #define HAVE_STRNCASECMP 1
  4347. | #define HAVE_STRSEP 1
  4348. | #define HAVE_STRNLEN 1
  4349. | #define HAVE_GETUID 1
  4350. | #define HAVE_GETGID 1
  4351. | #define HAVE_REALPATH 1
  4352. | #define HAVE_CANONICALIZE_FILE_NAME 1
  4353. | #define HAVE_PATHCONF 1
  4354. | #define HAVE_FSEEKO 1
  4355. | #define HAVE_FTRUNCATE 1
  4356. | #define HAVE_FILENO 1
  4357. | #define HAVE_STDLIB_H 1
  4358. | #define HAVE_UNISTD_H 1
  4359. | #define HAVE_SYS_PARAM_H 1
  4360. | #define HAVE_GETPAGESIZE 1
  4361. | #define HAVE_MMAP 1
  4362. | #define HAVE_GETPAGESIZE 1
  4363. | #define HAVE_SYSCONF 1
  4364. | #define HAVE_ACCESS 1
  4365. | #define HAVE_FACCESSAT 1
  4366. | #define HAVE___BUILTIN_EXPECT 1
  4367. | #define HAVE___BUILTIN_CLZ 1
  4368. | #define HAVE___BUILTIN_CLZL 1
  4369. | #define HAVE___BUILTIN_CLZLL 1
  4370. | #define HAVE_VSNPRINTF 1
  4371. | #define HAVE_SNPRINTF 1
  4372. | #define HAVE_STRUCT_STAT 1
  4373. | #define HAVE_STAT 1
  4374. | #define HAVE_FSTAT 1
  4375. | #define HAVE_DECL_STRCASECMP 1
  4376. | #define HAVE_DECL_STRICMP 0
  4377. | #define HAVE_DECL_STRNCASECMP 1
  4378. | #define HAVE_DECL_STRNICMP 0
  4379. | #define HAVE_DECL_STRSEP 1
  4380. | #define HAVE_DECL_STRLCPY 0
  4381. | #define HAVE_DECL_STRNLEN 1
  4382. | #define HAVE_DECL_STRRCHRNUL 0
  4383. | #define HAVE_UINTPTR_T 1
  4384. | #define HAVE_ENDIAN_H 1
  4385. | /* end confdefs.h. */
  4386. |
  4387. | #include <stdio.h>
  4388. | #ifdef HAVE_SYS_TYPES_H
  4389. | # include <sys/types.h>
  4390. | #endif
  4391. | #ifdef HAVE_SYS_STAT_H
  4392. | # include <sys/stat.h>
  4393. | #endif
  4394. | #ifdef STDC_HEADERS
  4395. | # include <stdlib.h>
  4396. | # include <stddef.h>
  4397. | #else
  4398. | # ifdef HAVE_STDLIB_H
  4399. | # include <stdlib.h>
  4400. | # endif
  4401. | #endif
  4402. | #ifdef HAVE_STRING_H
  4403. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  4404. | # include <memory.h>
  4405. | # endif
  4406. | # include <string.h>
  4407. | #endif
  4408. | #ifdef HAVE_STRINGS_H
  4409. | # include <strings.h>
  4410. | #endif
  4411. | #ifdef HAVE_INTTYPES_H
  4412. | # include <inttypes.h>
  4413. | #endif
  4414. | #ifdef HAVE_STDINT_H
  4415. | # include <stdint.h>
  4416. | #endif
  4417. | #ifdef HAVE_UNISTD_H
  4418. | # include <unistd.h>
  4419. | #endif
  4420. | #include <endian.h>
  4421. | int main(void) {
  4422. | (void)cpu_to_le32(0);
  4423. | return 0;
  4424. | }
  4425. |
  4426. configure:7081: result: no
  4427. configure:7087: checking for cpu_to_le64
  4428. configure:7099: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  4429. conftest.c: In function 'main':
  4430. conftest.c:116:11: warning: implicit declaration of function 'cpu_to_le64' [-Wimplicit-function-declaration]
  4431. (void)cpu_to_le64(0);
  4432. ^~~~~~~~~~~
  4433. /tmp/ccc1Dc7K.o: In function `main':
  4434. /root/ffmpeg-raspberry-pi/nasm-2.14.02/conftest.c:116: undefined reference to `cpu_to_le64'
  4435. collect2: error: ld returned 1 exit status
  4436. configure:7099: $? = 1
  4437. configure: failed program was:
  4438. | /* confdefs.h */
  4439. | #define PACKAGE_NAME ""
  4440. | #define PACKAGE_TARNAME ""
  4441. | #define PACKAGE_VERSION ""
  4442. | #define PACKAGE_STRING ""
  4443. | #define PACKAGE_BUGREPORT ""
  4444. | #define PACKAGE_URL ""
  4445. | #define STDC_HEADERS 1
  4446. | #define HAVE_SYS_TYPES_H 1
  4447. | #define HAVE_SYS_STAT_H 1
  4448. | #define HAVE_STDLIB_H 1
  4449. | #define HAVE_STRING_H 1
  4450. | #define HAVE_MEMORY_H 1
  4451. | #define HAVE_STRINGS_H 1
  4452. | #define HAVE_INTTYPES_H 1
  4453. | #define HAVE_STDINT_H 1
  4454. | #define HAVE_UNISTD_H 1
  4455. | #define __EXTENSIONS__ 1
  4456. | #define _ALL_SOURCE 1
  4457. | #define _GNU_SOURCE 1
  4458. | #define _POSIX_PTHREAD_SEMANTICS 1
  4459. | #define _TANDEM_SOURCE 1
  4460. | #define restrict __restrict
  4461. | #define WORDS_LITTLEENDIAN 1
  4462. | #define CFLAG_FWRAPV 1
  4463. | #define CFLAG_U_STRICT_ANSI 1
  4464. | #define CFLAG_FNO_COMMON 1
  4465. | #define STDC_HEADERS 1
  4466. | #define HAVE_INTTYPES_H 1
  4467. | #define HAVE_STRINGS_H 1
  4468. | #define HAVE__BOOL 1
  4469. | #define HAVE_STDBOOL_H 1
  4470. | #define HAVE_STDNORETURN_H 1
  4471. | #define HAVE_FCNTL_H 1
  4472. | #define HAVE_UNISTD_H 1
  4473. | #define HAVE_SYS_MMAN_H 1
  4474. | #define HAVE_SYS_TYPES_H 1
  4475. | #define HAVE_SYS_STAT_H 1
  4476. | #define HAVE_STRCASECMP 1
  4477. | #define HAVE_STRNCASECMP 1
  4478. | #define HAVE_STRSEP 1
  4479. | #define HAVE_STRNLEN 1
  4480. | #define HAVE_GETUID 1
  4481. | #define HAVE_GETGID 1
  4482. | #define HAVE_REALPATH 1
  4483. | #define HAVE_CANONICALIZE_FILE_NAME 1
  4484. | #define HAVE_PATHCONF 1
  4485. | #define HAVE_FSEEKO 1
  4486. | #define HAVE_FTRUNCATE 1
  4487. | #define HAVE_FILENO 1
  4488. | #define HAVE_STDLIB_H 1
  4489. | #define HAVE_UNISTD_H 1
  4490. | #define HAVE_SYS_PARAM_H 1
  4491. | #define HAVE_GETPAGESIZE 1
  4492. | #define HAVE_MMAP 1
  4493. | #define HAVE_GETPAGESIZE 1
  4494. | #define HAVE_SYSCONF 1
  4495. | #define HAVE_ACCESS 1
  4496. | #define HAVE_FACCESSAT 1
  4497. | #define HAVE___BUILTIN_EXPECT 1
  4498. | #define HAVE___BUILTIN_CLZ 1
  4499. | #define HAVE___BUILTIN_CLZL 1
  4500. | #define HAVE___BUILTIN_CLZLL 1
  4501. | #define HAVE_VSNPRINTF 1
  4502. | #define HAVE_SNPRINTF 1
  4503. | #define HAVE_STRUCT_STAT 1
  4504. | #define HAVE_STAT 1
  4505. | #define HAVE_FSTAT 1
  4506. | #define HAVE_DECL_STRCASECMP 1
  4507. | #define HAVE_DECL_STRICMP 0
  4508. | #define HAVE_DECL_STRNCASECMP 1
  4509. | #define HAVE_DECL_STRNICMP 0
  4510. | #define HAVE_DECL_STRSEP 1
  4511. | #define HAVE_DECL_STRLCPY 0
  4512. | #define HAVE_DECL_STRNLEN 1
  4513. | #define HAVE_DECL_STRRCHRNUL 0
  4514. | #define HAVE_UINTPTR_T 1
  4515. | #define HAVE_ENDIAN_H 1
  4516. | /* end confdefs.h. */
  4517. |
  4518. | #include <stdio.h>
  4519. | #ifdef HAVE_SYS_TYPES_H
  4520. | # include <sys/types.h>
  4521. | #endif
  4522. | #ifdef HAVE_SYS_STAT_H
  4523. | # include <sys/stat.h>
  4524. | #endif
  4525. | #ifdef STDC_HEADERS
  4526. | # include <stdlib.h>
  4527. | # include <stddef.h>
  4528. | #else
  4529. | # ifdef HAVE_STDLIB_H
  4530. | # include <stdlib.h>
  4531. | # endif
  4532. | #endif
  4533. | #ifdef HAVE_STRING_H
  4534. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  4535. | # include <memory.h>
  4536. | # endif
  4537. | # include <string.h>
  4538. | #endif
  4539. | #ifdef HAVE_STRINGS_H
  4540. | # include <strings.h>
  4541. | #endif
  4542. | #ifdef HAVE_INTTYPES_H
  4543. | # include <inttypes.h>
  4544. | #endif
  4545. | #ifdef HAVE_STDINT_H
  4546. | # include <stdint.h>
  4547. | #endif
  4548. | #ifdef HAVE_UNISTD_H
  4549. | # include <unistd.h>
  4550. | #endif
  4551. | #include <endian.h>
  4552. | int main(void) {
  4553. | (void)cpu_to_le64(0);
  4554. | return 0;
  4555. | }
  4556. |
  4557. configure:7106: result: no
  4558. configure:7112: checking for __cpu_to_le16
  4559. configure:7124: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  4560. conftest.c: In function 'main':
  4561. conftest.c:116:11: warning: implicit declaration of function '__cpu_to_le16' [-Wimplicit-function-declaration]
  4562. (void)__cpu_to_le16(0);
  4563. ^~~~~~~~~~~~~
  4564. /tmp/cc7wFUlP.o: In function `main':
  4565. /root/ffmpeg-raspberry-pi/nasm-2.14.02/conftest.c:116: undefined reference to `__cpu_to_le16'
  4566. collect2: error: ld returned 1 exit status
  4567. configure:7124: $? = 1
  4568. configure: failed program was:
  4569. | /* confdefs.h */
  4570. | #define PACKAGE_NAME ""
  4571. | #define PACKAGE_TARNAME ""
  4572. | #define PACKAGE_VERSION ""
  4573. | #define PACKAGE_STRING ""
  4574. | #define PACKAGE_BUGREPORT ""
  4575. | #define PACKAGE_URL ""
  4576. | #define STDC_HEADERS 1
  4577. | #define HAVE_SYS_TYPES_H 1
  4578. | #define HAVE_SYS_STAT_H 1
  4579. | #define HAVE_STDLIB_H 1
  4580. | #define HAVE_STRING_H 1
  4581. | #define HAVE_MEMORY_H 1
  4582. | #define HAVE_STRINGS_H 1
  4583. | #define HAVE_INTTYPES_H 1
  4584. | #define HAVE_STDINT_H 1
  4585. | #define HAVE_UNISTD_H 1
  4586. | #define __EXTENSIONS__ 1
  4587. | #define _ALL_SOURCE 1
  4588. | #define _GNU_SOURCE 1
  4589. | #define _POSIX_PTHREAD_SEMANTICS 1
  4590. | #define _TANDEM_SOURCE 1
  4591. | #define restrict __restrict
  4592. | #define WORDS_LITTLEENDIAN 1
  4593. | #define CFLAG_FWRAPV 1
  4594. | #define CFLAG_U_STRICT_ANSI 1
  4595. | #define CFLAG_FNO_COMMON 1
  4596. | #define STDC_HEADERS 1
  4597. | #define HAVE_INTTYPES_H 1
  4598. | #define HAVE_STRINGS_H 1
  4599. | #define HAVE__BOOL 1
  4600. | #define HAVE_STDBOOL_H 1
  4601. | #define HAVE_STDNORETURN_H 1
  4602. | #define HAVE_FCNTL_H 1
  4603. | #define HAVE_UNISTD_H 1
  4604. | #define HAVE_SYS_MMAN_H 1
  4605. | #define HAVE_SYS_TYPES_H 1
  4606. | #define HAVE_SYS_STAT_H 1
  4607. | #define HAVE_STRCASECMP 1
  4608. | #define HAVE_STRNCASECMP 1
  4609. | #define HAVE_STRSEP 1
  4610. | #define HAVE_STRNLEN 1
  4611. | #define HAVE_GETUID 1
  4612. | #define HAVE_GETGID 1
  4613. | #define HAVE_REALPATH 1
  4614. | #define HAVE_CANONICALIZE_FILE_NAME 1
  4615. | #define HAVE_PATHCONF 1
  4616. | #define HAVE_FSEEKO 1
  4617. | #define HAVE_FTRUNCATE 1
  4618. | #define HAVE_FILENO 1
  4619. | #define HAVE_STDLIB_H 1
  4620. | #define HAVE_UNISTD_H 1
  4621. | #define HAVE_SYS_PARAM_H 1
  4622. | #define HAVE_GETPAGESIZE 1
  4623. | #define HAVE_MMAP 1
  4624. | #define HAVE_GETPAGESIZE 1
  4625. | #define HAVE_SYSCONF 1
  4626. | #define HAVE_ACCESS 1
  4627. | #define HAVE_FACCESSAT 1
  4628. | #define HAVE___BUILTIN_EXPECT 1
  4629. | #define HAVE___BUILTIN_CLZ 1
  4630. | #define HAVE___BUILTIN_CLZL 1
  4631. | #define HAVE___BUILTIN_CLZLL 1
  4632. | #define HAVE_VSNPRINTF 1
  4633. | #define HAVE_SNPRINTF 1
  4634. | #define HAVE_STRUCT_STAT 1
  4635. | #define HAVE_STAT 1
  4636. | #define HAVE_FSTAT 1
  4637. | #define HAVE_DECL_STRCASECMP 1
  4638. | #define HAVE_DECL_STRICMP 0
  4639. | #define HAVE_DECL_STRNCASECMP 1
  4640. | #define HAVE_DECL_STRNICMP 0
  4641. | #define HAVE_DECL_STRSEP 1
  4642. | #define HAVE_DECL_STRLCPY 0
  4643. | #define HAVE_DECL_STRNLEN 1
  4644. | #define HAVE_DECL_STRRCHRNUL 0
  4645. | #define HAVE_UINTPTR_T 1
  4646. | #define HAVE_ENDIAN_H 1
  4647. | /* end confdefs.h. */
  4648. |
  4649. | #include <stdio.h>
  4650. | #ifdef HAVE_SYS_TYPES_H
  4651. | # include <sys/types.h>
  4652. | #endif
  4653. | #ifdef HAVE_SYS_STAT_H
  4654. | # include <sys/stat.h>
  4655. | #endif
  4656. | #ifdef STDC_HEADERS
  4657. | # include <stdlib.h>
  4658. | # include <stddef.h>
  4659. | #else
  4660. | # ifdef HAVE_STDLIB_H
  4661. | # include <stdlib.h>
  4662. | # endif
  4663. | #endif
  4664. | #ifdef HAVE_STRING_H
  4665. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  4666. | # include <memory.h>
  4667. | # endif
  4668. | # include <string.h>
  4669. | #endif
  4670. | #ifdef HAVE_STRINGS_H
  4671. | # include <strings.h>
  4672. | #endif
  4673. | #ifdef HAVE_INTTYPES_H
  4674. | # include <inttypes.h>
  4675. | #endif
  4676. | #ifdef HAVE_STDINT_H
  4677. | # include <stdint.h>
  4678. | #endif
  4679. | #ifdef HAVE_UNISTD_H
  4680. | # include <unistd.h>
  4681. | #endif
  4682. | #include <endian.h>
  4683. | int main(void) {
  4684. | (void)__cpu_to_le16(0);
  4685. | return 0;
  4686. | }
  4687. |
  4688. configure:7131: result: no
  4689. configure:7137: checking for __cpu_to_le32
  4690. configure:7149: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  4691. conftest.c: In function 'main':
  4692. conftest.c:116:11: warning: implicit declaration of function '__cpu_to_le32' [-Wimplicit-function-declaration]
  4693. (void)__cpu_to_le32(0);
  4694. ^~~~~~~~~~~~~
  4695. /tmp/ccGwB22W.o: In function `main':
  4696. /root/ffmpeg-raspberry-pi/nasm-2.14.02/conftest.c:116: undefined reference to `__cpu_to_le32'
  4697. collect2: error: ld returned 1 exit status
  4698. configure:7149: $? = 1
  4699. configure: failed program was:
  4700. | /* confdefs.h */
  4701. | #define PACKAGE_NAME ""
  4702. | #define PACKAGE_TARNAME ""
  4703. | #define PACKAGE_VERSION ""
  4704. | #define PACKAGE_STRING ""
  4705. | #define PACKAGE_BUGREPORT ""
  4706. | #define PACKAGE_URL ""
  4707. | #define STDC_HEADERS 1
  4708. | #define HAVE_SYS_TYPES_H 1
  4709. | #define HAVE_SYS_STAT_H 1
  4710. | #define HAVE_STDLIB_H 1
  4711. | #define HAVE_STRING_H 1
  4712. | #define HAVE_MEMORY_H 1
  4713. | #define HAVE_STRINGS_H 1
  4714. | #define HAVE_INTTYPES_H 1
  4715. | #define HAVE_STDINT_H 1
  4716. | #define HAVE_UNISTD_H 1
  4717. | #define __EXTENSIONS__ 1
  4718. | #define _ALL_SOURCE 1
  4719. | #define _GNU_SOURCE 1
  4720. | #define _POSIX_PTHREAD_SEMANTICS 1
  4721. | #define _TANDEM_SOURCE 1
  4722. | #define restrict __restrict
  4723. | #define WORDS_LITTLEENDIAN 1
  4724. | #define CFLAG_FWRAPV 1
  4725. | #define CFLAG_U_STRICT_ANSI 1
  4726. | #define CFLAG_FNO_COMMON 1
  4727. | #define STDC_HEADERS 1
  4728. | #define HAVE_INTTYPES_H 1
  4729. | #define HAVE_STRINGS_H 1
  4730. | #define HAVE__BOOL 1
  4731. | #define HAVE_STDBOOL_H 1
  4732. | #define HAVE_STDNORETURN_H 1
  4733. | #define HAVE_FCNTL_H 1
  4734. | #define HAVE_UNISTD_H 1
  4735. | #define HAVE_SYS_MMAN_H 1
  4736. | #define HAVE_SYS_TYPES_H 1
  4737. | #define HAVE_SYS_STAT_H 1
  4738. | #define HAVE_STRCASECMP 1
  4739. | #define HAVE_STRNCASECMP 1
  4740. | #define HAVE_STRSEP 1
  4741. | #define HAVE_STRNLEN 1
  4742. | #define HAVE_GETUID 1
  4743. | #define HAVE_GETGID 1
  4744. | #define HAVE_REALPATH 1
  4745. | #define HAVE_CANONICALIZE_FILE_NAME 1
  4746. | #define HAVE_PATHCONF 1
  4747. | #define HAVE_FSEEKO 1
  4748. | #define HAVE_FTRUNCATE 1
  4749. | #define HAVE_FILENO 1
  4750. | #define HAVE_STDLIB_H 1
  4751. | #define HAVE_UNISTD_H 1
  4752. | #define HAVE_SYS_PARAM_H 1
  4753. | #define HAVE_GETPAGESIZE 1
  4754. | #define HAVE_MMAP 1
  4755. | #define HAVE_GETPAGESIZE 1
  4756. | #define HAVE_SYSCONF 1
  4757. | #define HAVE_ACCESS 1
  4758. | #define HAVE_FACCESSAT 1
  4759. | #define HAVE___BUILTIN_EXPECT 1
  4760. | #define HAVE___BUILTIN_CLZ 1
  4761. | #define HAVE___BUILTIN_CLZL 1
  4762. | #define HAVE___BUILTIN_CLZLL 1
  4763. | #define HAVE_VSNPRINTF 1
  4764. | #define HAVE_SNPRINTF 1
  4765. | #define HAVE_STRUCT_STAT 1
  4766. | #define HAVE_STAT 1
  4767. | #define HAVE_FSTAT 1
  4768. | #define HAVE_DECL_STRCASECMP 1
  4769. | #define HAVE_DECL_STRICMP 0
  4770. | #define HAVE_DECL_STRNCASECMP 1
  4771. | #define HAVE_DECL_STRNICMP 0
  4772. | #define HAVE_DECL_STRSEP 1
  4773. | #define HAVE_DECL_STRLCPY 0
  4774. | #define HAVE_DECL_STRNLEN 1
  4775. | #define HAVE_DECL_STRRCHRNUL 0
  4776. | #define HAVE_UINTPTR_T 1
  4777. | #define HAVE_ENDIAN_H 1
  4778. | /* end confdefs.h. */
  4779. |
  4780. | #include <stdio.h>
  4781. | #ifdef HAVE_SYS_TYPES_H
  4782. | # include <sys/types.h>
  4783. | #endif
  4784. | #ifdef HAVE_SYS_STAT_H
  4785. | # include <sys/stat.h>
  4786. | #endif
  4787. | #ifdef STDC_HEADERS
  4788. | # include <stdlib.h>
  4789. | # include <stddef.h>
  4790. | #else
  4791. | # ifdef HAVE_STDLIB_H
  4792. | # include <stdlib.h>
  4793. | # endif
  4794. | #endif
  4795. | #ifdef HAVE_STRING_H
  4796. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  4797. | # include <memory.h>
  4798. | # endif
  4799. | # include <string.h>
  4800. | #endif
  4801. | #ifdef HAVE_STRINGS_H
  4802. | # include <strings.h>
  4803. | #endif
  4804. | #ifdef HAVE_INTTYPES_H
  4805. | # include <inttypes.h>
  4806. | #endif
  4807. | #ifdef HAVE_STDINT_H
  4808. | # include <stdint.h>
  4809. | #endif
  4810. | #ifdef HAVE_UNISTD_H
  4811. | # include <unistd.h>
  4812. | #endif
  4813. | #include <endian.h>
  4814. | int main(void) {
  4815. | (void)__cpu_to_le32(0);
  4816. | return 0;
  4817. | }
  4818. |
  4819. configure:7156: result: no
  4820. configure:7162: checking for __cpu_to_le64
  4821. configure:7174: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  4822. conftest.c: In function 'main':
  4823. conftest.c:116:11: warning: implicit declaration of function '__cpu_to_le64' [-Wimplicit-function-declaration]
  4824. (void)__cpu_to_le64(0);
  4825. ^~~~~~~~~~~~~
  4826. /tmp/cc4I7370.o: In function `main':
  4827. /root/ffmpeg-raspberry-pi/nasm-2.14.02/conftest.c:116: undefined reference to `__cpu_to_le64'
  4828. collect2: error: ld returned 1 exit status
  4829. configure:7174: $? = 1
  4830. configure: failed program was:
  4831. | /* confdefs.h */
  4832. | #define PACKAGE_NAME ""
  4833. | #define PACKAGE_TARNAME ""
  4834. | #define PACKAGE_VERSION ""
  4835. | #define PACKAGE_STRING ""
  4836. | #define PACKAGE_BUGREPORT ""
  4837. | #define PACKAGE_URL ""
  4838. | #define STDC_HEADERS 1
  4839. | #define HAVE_SYS_TYPES_H 1
  4840. | #define HAVE_SYS_STAT_H 1
  4841. | #define HAVE_STDLIB_H 1
  4842. | #define HAVE_STRING_H 1
  4843. | #define HAVE_MEMORY_H 1
  4844. | #define HAVE_STRINGS_H 1
  4845. | #define HAVE_INTTYPES_H 1
  4846. | #define HAVE_STDINT_H 1
  4847. | #define HAVE_UNISTD_H 1
  4848. | #define __EXTENSIONS__ 1
  4849. | #define _ALL_SOURCE 1
  4850. | #define _GNU_SOURCE 1
  4851. | #define _POSIX_PTHREAD_SEMANTICS 1
  4852. | #define _TANDEM_SOURCE 1
  4853. | #define restrict __restrict
  4854. | #define WORDS_LITTLEENDIAN 1
  4855. | #define CFLAG_FWRAPV 1
  4856. | #define CFLAG_U_STRICT_ANSI 1
  4857. | #define CFLAG_FNO_COMMON 1
  4858. | #define STDC_HEADERS 1
  4859. | #define HAVE_INTTYPES_H 1
  4860. | #define HAVE_STRINGS_H 1
  4861. | #define HAVE__BOOL 1
  4862. | #define HAVE_STDBOOL_H 1
  4863. | #define HAVE_STDNORETURN_H 1
  4864. | #define HAVE_FCNTL_H 1
  4865. | #define HAVE_UNISTD_H 1
  4866. | #define HAVE_SYS_MMAN_H 1
  4867. | #define HAVE_SYS_TYPES_H 1
  4868. | #define HAVE_SYS_STAT_H 1
  4869. | #define HAVE_STRCASECMP 1
  4870. | #define HAVE_STRNCASECMP 1
  4871. | #define HAVE_STRSEP 1
  4872. | #define HAVE_STRNLEN 1
  4873. | #define HAVE_GETUID 1
  4874. | #define HAVE_GETGID 1
  4875. | #define HAVE_REALPATH 1
  4876. | #define HAVE_CANONICALIZE_FILE_NAME 1
  4877. | #define HAVE_PATHCONF 1
  4878. | #define HAVE_FSEEKO 1
  4879. | #define HAVE_FTRUNCATE 1
  4880. | #define HAVE_FILENO 1
  4881. | #define HAVE_STDLIB_H 1
  4882. | #define HAVE_UNISTD_H 1
  4883. | #define HAVE_SYS_PARAM_H 1
  4884. | #define HAVE_GETPAGESIZE 1
  4885. | #define HAVE_MMAP 1
  4886. | #define HAVE_GETPAGESIZE 1
  4887. | #define HAVE_SYSCONF 1
  4888. | #define HAVE_ACCESS 1
  4889. | #define HAVE_FACCESSAT 1
  4890. | #define HAVE___BUILTIN_EXPECT 1
  4891. | #define HAVE___BUILTIN_CLZ 1
  4892. | #define HAVE___BUILTIN_CLZL 1
  4893. | #define HAVE___BUILTIN_CLZLL 1
  4894. | #define HAVE_VSNPRINTF 1
  4895. | #define HAVE_SNPRINTF 1
  4896. | #define HAVE_STRUCT_STAT 1
  4897. | #define HAVE_STAT 1
  4898. | #define HAVE_FSTAT 1
  4899. | #define HAVE_DECL_STRCASECMP 1
  4900. | #define HAVE_DECL_STRICMP 0
  4901. | #define HAVE_DECL_STRNCASECMP 1
  4902. | #define HAVE_DECL_STRNICMP 0
  4903. | #define HAVE_DECL_STRSEP 1
  4904. | #define HAVE_DECL_STRLCPY 0
  4905. | #define HAVE_DECL_STRNLEN 1
  4906. | #define HAVE_DECL_STRRCHRNUL 0
  4907. | #define HAVE_UINTPTR_T 1
  4908. | #define HAVE_ENDIAN_H 1
  4909. | /* end confdefs.h. */
  4910. |
  4911. | #include <stdio.h>
  4912. | #ifdef HAVE_SYS_TYPES_H
  4913. | # include <sys/types.h>
  4914. | #endif
  4915. | #ifdef HAVE_SYS_STAT_H
  4916. | # include <sys/stat.h>
  4917. | #endif
  4918. | #ifdef STDC_HEADERS
  4919. | # include <stdlib.h>
  4920. | # include <stddef.h>
  4921. | #else
  4922. | # ifdef HAVE_STDLIB_H
  4923. | # include <stdlib.h>
  4924. | # endif
  4925. | #endif
  4926. | #ifdef HAVE_STRING_H
  4927. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  4928. | # include <memory.h>
  4929. | # endif
  4930. | # include <string.h>
  4931. | #endif
  4932. | #ifdef HAVE_STRINGS_H
  4933. | # include <strings.h>
  4934. | #endif
  4935. | #ifdef HAVE_INTTYPES_H
  4936. | # include <inttypes.h>
  4937. | #endif
  4938. | #ifdef HAVE_STDINT_H
  4939. | # include <stdint.h>
  4940. | #endif
  4941. | #ifdef HAVE_UNISTD_H
  4942. | # include <unistd.h>
  4943. | #endif
  4944. | #include <endian.h>
  4945. | int main(void) {
  4946. | (void)__cpu_to_le64(0);
  4947. | return 0;
  4948. | }
  4949. |
  4950. configure:7181: result: no
  4951. configure:7187: checking for htole16
  4952. configure:7199: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  4953. configure:7199: $? = 0
  4954. configure:7200: result: yes
  4955. configure:7212: checking for htole32
  4956. configure:7224: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  4957. configure:7224: $? = 0
  4958. configure:7225: result: yes
  4959. configure:7237: checking for htole64
  4960. configure:7249: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  4961. configure:7249: $? = 0
  4962. configure:7250: result: yes
  4963. configure:7262: checking for __bswap_16
  4964. configure:7274: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  4965. configure:7274: $? = 0
  4966. configure:7275: result: yes
  4967. configure:7287: checking for __bswap_32
  4968. configure:7299: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  4969. configure:7299: $? = 0
  4970. configure:7300: result: yes
  4971. configure:7312: checking for __bswap_64
  4972. configure:7324: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  4973. configure:7324: $? = 0
  4974. configure:7325: result: yes
  4975. configure:7337: checking for __builtin_bswap16
  4976. configure:7349: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  4977. configure:7349: $? = 0
  4978. configure:7350: result: yes
  4979. configure:7362: checking for __builtin_bswap32
  4980. configure:7374: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  4981. configure:7374: $? = 0
  4982. configure:7375: result: yes
  4983. configure:7387: checking for __builtin_bswap64
  4984. configure:7399: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  4985. configure:7399: $? = 0
  4986. configure:7400: result: yes
  4987. configure:7412: checking for _byteswap_ushort
  4988. configure:7424: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  4989. conftest.c: In function 'main':
  4990. conftest.c:125:11: warning: implicit declaration of function '_byteswap_ushort' [-Wimplicit-function-declaration]
  4991. (void)_byteswap_ushort(0);
  4992. ^~~~~~~~~~~~~~~~
  4993. /tmp/cchplciI.o: In function `main':
  4994. /root/ffmpeg-raspberry-pi/nasm-2.14.02/conftest.c:125: undefined reference to `_byteswap_ushort'
  4995. collect2: error: ld returned 1 exit status
  4996. configure:7424: $? = 1
  4997. configure: failed program was:
  4998. | /* confdefs.h */
  4999. | #define PACKAGE_NAME ""
  5000. | #define PACKAGE_TARNAME ""
  5001. | #define PACKAGE_VERSION ""
  5002. | #define PACKAGE_STRING ""
  5003. | #define PACKAGE_BUGREPORT ""
  5004. | #define PACKAGE_URL ""
  5005. | #define STDC_HEADERS 1
  5006. | #define HAVE_SYS_TYPES_H 1
  5007. | #define HAVE_SYS_STAT_H 1
  5008. | #define HAVE_STDLIB_H 1
  5009. | #define HAVE_STRING_H 1
  5010. | #define HAVE_MEMORY_H 1
  5011. | #define HAVE_STRINGS_H 1
  5012. | #define HAVE_INTTYPES_H 1
  5013. | #define HAVE_STDINT_H 1
  5014. | #define HAVE_UNISTD_H 1
  5015. | #define __EXTENSIONS__ 1
  5016. | #define _ALL_SOURCE 1
  5017. | #define _GNU_SOURCE 1
  5018. | #define _POSIX_PTHREAD_SEMANTICS 1
  5019. | #define _TANDEM_SOURCE 1
  5020. | #define restrict __restrict
  5021. | #define WORDS_LITTLEENDIAN 1
  5022. | #define CFLAG_FWRAPV 1
  5023. | #define CFLAG_U_STRICT_ANSI 1
  5024. | #define CFLAG_FNO_COMMON 1
  5025. | #define STDC_HEADERS 1
  5026. | #define HAVE_INTTYPES_H 1
  5027. | #define HAVE_STRINGS_H 1
  5028. | #define HAVE__BOOL 1
  5029. | #define HAVE_STDBOOL_H 1
  5030. | #define HAVE_STDNORETURN_H 1
  5031. | #define HAVE_FCNTL_H 1
  5032. | #define HAVE_UNISTD_H 1
  5033. | #define HAVE_SYS_MMAN_H 1
  5034. | #define HAVE_SYS_TYPES_H 1
  5035. | #define HAVE_SYS_STAT_H 1
  5036. | #define HAVE_STRCASECMP 1
  5037. | #define HAVE_STRNCASECMP 1
  5038. | #define HAVE_STRSEP 1
  5039. | #define HAVE_STRNLEN 1
  5040. | #define HAVE_GETUID 1
  5041. | #define HAVE_GETGID 1
  5042. | #define HAVE_REALPATH 1
  5043. | #define HAVE_CANONICALIZE_FILE_NAME 1
  5044. | #define HAVE_PATHCONF 1
  5045. | #define HAVE_FSEEKO 1
  5046. | #define HAVE_FTRUNCATE 1
  5047. | #define HAVE_FILENO 1
  5048. | #define HAVE_STDLIB_H 1
  5049. | #define HAVE_UNISTD_H 1
  5050. | #define HAVE_SYS_PARAM_H 1
  5051. | #define HAVE_GETPAGESIZE 1
  5052. | #define HAVE_MMAP 1
  5053. | #define HAVE_GETPAGESIZE 1
  5054. | #define HAVE_SYSCONF 1
  5055. | #define HAVE_ACCESS 1
  5056. | #define HAVE_FACCESSAT 1
  5057. | #define HAVE___BUILTIN_EXPECT 1
  5058. | #define HAVE___BUILTIN_CLZ 1
  5059. | #define HAVE___BUILTIN_CLZL 1
  5060. | #define HAVE___BUILTIN_CLZLL 1
  5061. | #define HAVE_VSNPRINTF 1
  5062. | #define HAVE_SNPRINTF 1
  5063. | #define HAVE_STRUCT_STAT 1
  5064. | #define HAVE_STAT 1
  5065. | #define HAVE_FSTAT 1
  5066. | #define HAVE_DECL_STRCASECMP 1
  5067. | #define HAVE_DECL_STRICMP 0
  5068. | #define HAVE_DECL_STRNCASECMP 1
  5069. | #define HAVE_DECL_STRNICMP 0
  5070. | #define HAVE_DECL_STRSEP 1
  5071. | #define HAVE_DECL_STRLCPY 0
  5072. | #define HAVE_DECL_STRNLEN 1
  5073. | #define HAVE_DECL_STRRCHRNUL 0
  5074. | #define HAVE_UINTPTR_T 1
  5075. | #define HAVE_ENDIAN_H 1
  5076. | #define HAVE_HTOLE16 1
  5077. | #define HAVE_HTOLE32 1
  5078. | #define HAVE_HTOLE64 1
  5079. | #define HAVE___BSWAP_16 1
  5080. | #define HAVE___BSWAP_32 1
  5081. | #define HAVE___BSWAP_64 1
  5082. | #define HAVE___BUILTIN_BSWAP16 1
  5083. | #define HAVE___BUILTIN_BSWAP32 1
  5084. | #define HAVE___BUILTIN_BSWAP64 1
  5085. | /* end confdefs.h. */
  5086. |
  5087. | #include <stdio.h>
  5088. | #ifdef HAVE_SYS_TYPES_H
  5089. | # include <sys/types.h>
  5090. | #endif
  5091. | #ifdef HAVE_SYS_STAT_H
  5092. | # include <sys/stat.h>
  5093. | #endif
  5094. | #ifdef STDC_HEADERS
  5095. | # include <stdlib.h>
  5096. | # include <stddef.h>
  5097. | #else
  5098. | # ifdef HAVE_STDLIB_H
  5099. | # include <stdlib.h>
  5100. | # endif
  5101. | #endif
  5102. | #ifdef HAVE_STRING_H
  5103. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  5104. | # include <memory.h>
  5105. | # endif
  5106. | # include <string.h>
  5107. | #endif
  5108. | #ifdef HAVE_STRINGS_H
  5109. | # include <strings.h>
  5110. | #endif
  5111. | #ifdef HAVE_INTTYPES_H
  5112. | # include <inttypes.h>
  5113. | #endif
  5114. | #ifdef HAVE_STDINT_H
  5115. | # include <stdint.h>
  5116. | #endif
  5117. | #ifdef HAVE_UNISTD_H
  5118. | # include <unistd.h>
  5119. | #endif
  5120. | #include <endian.h>
  5121. | int main(void) {
  5122. | (void)_byteswap_ushort(0);
  5123. | return 0;
  5124. | }
  5125. |
  5126. configure:7431: result: no
  5127. configure:7437: checking for _byteswap_ulong
  5128. configure:7449: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  5129. conftest.c: In function 'main':
  5130. conftest.c:125:11: warning: implicit declaration of function '_byteswap_ulong' [-Wimplicit-function-declaration]
  5131. (void)_byteswap_ulong(0);
  5132. ^~~~~~~~~~~~~~~
  5133. /tmp/ccNUIMiR.o: In function `main':
  5134. /root/ffmpeg-raspberry-pi/nasm-2.14.02/conftest.c:125: undefined reference to `_byteswap_ulong'
  5135. collect2: error: ld returned 1 exit status
  5136. configure:7449: $? = 1
  5137. configure: failed program was:
  5138. | /* confdefs.h */
  5139. | #define PACKAGE_NAME ""
  5140. | #define PACKAGE_TARNAME ""
  5141. | #define PACKAGE_VERSION ""
  5142. | #define PACKAGE_STRING ""
  5143. | #define PACKAGE_BUGREPORT ""
  5144. | #define PACKAGE_URL ""
  5145. | #define STDC_HEADERS 1
  5146. | #define HAVE_SYS_TYPES_H 1
  5147. | #define HAVE_SYS_STAT_H 1
  5148. | #define HAVE_STDLIB_H 1
  5149. | #define HAVE_STRING_H 1
  5150. | #define HAVE_MEMORY_H 1
  5151. | #define HAVE_STRINGS_H 1
  5152. | #define HAVE_INTTYPES_H 1
  5153. | #define HAVE_STDINT_H 1
  5154. | #define HAVE_UNISTD_H 1
  5155. | #define __EXTENSIONS__ 1
  5156. | #define _ALL_SOURCE 1
  5157. | #define _GNU_SOURCE 1
  5158. | #define _POSIX_PTHREAD_SEMANTICS 1
  5159. | #define _TANDEM_SOURCE 1
  5160. | #define restrict __restrict
  5161. | #define WORDS_LITTLEENDIAN 1
  5162. | #define CFLAG_FWRAPV 1
  5163. | #define CFLAG_U_STRICT_ANSI 1
  5164. | #define CFLAG_FNO_COMMON 1
  5165. | #define STDC_HEADERS 1
  5166. | #define HAVE_INTTYPES_H 1
  5167. | #define HAVE_STRINGS_H 1
  5168. | #define HAVE__BOOL 1
  5169. | #define HAVE_STDBOOL_H 1
  5170. | #define HAVE_STDNORETURN_H 1
  5171. | #define HAVE_FCNTL_H 1
  5172. | #define HAVE_UNISTD_H 1
  5173. | #define HAVE_SYS_MMAN_H 1
  5174. | #define HAVE_SYS_TYPES_H 1
  5175. | #define HAVE_SYS_STAT_H 1
  5176. | #define HAVE_STRCASECMP 1
  5177. | #define HAVE_STRNCASECMP 1
  5178. | #define HAVE_STRSEP 1
  5179. | #define HAVE_STRNLEN 1
  5180. | #define HAVE_GETUID 1
  5181. | #define HAVE_GETGID 1
  5182. | #define HAVE_REALPATH 1
  5183. | #define HAVE_CANONICALIZE_FILE_NAME 1
  5184. | #define HAVE_PATHCONF 1
  5185. | #define HAVE_FSEEKO 1
  5186. | #define HAVE_FTRUNCATE 1
  5187. | #define HAVE_FILENO 1
  5188. | #define HAVE_STDLIB_H 1
  5189. | #define HAVE_UNISTD_H 1
  5190. | #define HAVE_SYS_PARAM_H 1
  5191. | #define HAVE_GETPAGESIZE 1
  5192. | #define HAVE_MMAP 1
  5193. | #define HAVE_GETPAGESIZE 1
  5194. | #define HAVE_SYSCONF 1
  5195. | #define HAVE_ACCESS 1
  5196. | #define HAVE_FACCESSAT 1
  5197. | #define HAVE___BUILTIN_EXPECT 1
  5198. | #define HAVE___BUILTIN_CLZ 1
  5199. | #define HAVE___BUILTIN_CLZL 1
  5200. | #define HAVE___BUILTIN_CLZLL 1
  5201. | #define HAVE_VSNPRINTF 1
  5202. | #define HAVE_SNPRINTF 1
  5203. | #define HAVE_STRUCT_STAT 1
  5204. | #define HAVE_STAT 1
  5205. | #define HAVE_FSTAT 1
  5206. | #define HAVE_DECL_STRCASECMP 1
  5207. | #define HAVE_DECL_STRICMP 0
  5208. | #define HAVE_DECL_STRNCASECMP 1
  5209. | #define HAVE_DECL_STRNICMP 0
  5210. | #define HAVE_DECL_STRSEP 1
  5211. | #define HAVE_DECL_STRLCPY 0
  5212. | #define HAVE_DECL_STRNLEN 1
  5213. | #define HAVE_DECL_STRRCHRNUL 0
  5214. | #define HAVE_UINTPTR_T 1
  5215. | #define HAVE_ENDIAN_H 1
  5216. | #define HAVE_HTOLE16 1
  5217. | #define HAVE_HTOLE32 1
  5218. | #define HAVE_HTOLE64 1
  5219. | #define HAVE___BSWAP_16 1
  5220. | #define HAVE___BSWAP_32 1
  5221. | #define HAVE___BSWAP_64 1
  5222. | #define HAVE___BUILTIN_BSWAP16 1
  5223. | #define HAVE___BUILTIN_BSWAP32 1
  5224. | #define HAVE___BUILTIN_BSWAP64 1
  5225. | /* end confdefs.h. */
  5226. |
  5227. | #include <stdio.h>
  5228. | #ifdef HAVE_SYS_TYPES_H
  5229. | # include <sys/types.h>
  5230. | #endif
  5231. | #ifdef HAVE_SYS_STAT_H
  5232. | # include <sys/stat.h>
  5233. | #endif
  5234. | #ifdef STDC_HEADERS
  5235. | # include <stdlib.h>
  5236. | # include <stddef.h>
  5237. | #else
  5238. | # ifdef HAVE_STDLIB_H
  5239. | # include <stdlib.h>
  5240. | # endif
  5241. | #endif
  5242. | #ifdef HAVE_STRING_H
  5243. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  5244. | # include <memory.h>
  5245. | # endif
  5246. | # include <string.h>
  5247. | #endif
  5248. | #ifdef HAVE_STRINGS_H
  5249. | # include <strings.h>
  5250. | #endif
  5251. | #ifdef HAVE_INTTYPES_H
  5252. | # include <inttypes.h>
  5253. | #endif
  5254. | #ifdef HAVE_STDINT_H
  5255. | # include <stdint.h>
  5256. | #endif
  5257. | #ifdef HAVE_UNISTD_H
  5258. | # include <unistd.h>
  5259. | #endif
  5260. | #include <endian.h>
  5261. | int main(void) {
  5262. | (void)_byteswap_ulong(0);
  5263. | return 0;
  5264. | }
  5265. |
  5266. configure:7456: result: no
  5267. configure:7462: checking for _byteswap_uint64
  5268. configure:7474: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  5269. conftest.c: In function 'main':
  5270. conftest.c:125:11: warning: implicit declaration of function '_byteswap_uint64' [-Wimplicit-function-declaration]
  5271. (void)_byteswap_uint64(0);
  5272. ^~~~~~~~~~~~~~~~
  5273. /tmp/ccwFLKxW.o: In function `main':
  5274. /root/ffmpeg-raspberry-pi/nasm-2.14.02/conftest.c:125: undefined reference to `_byteswap_uint64'
  5275. collect2: error: ld returned 1 exit status
  5276. configure:7474: $? = 1
  5277. configure: failed program was:
  5278. | /* confdefs.h */
  5279. | #define PACKAGE_NAME ""
  5280. | #define PACKAGE_TARNAME ""
  5281. | #define PACKAGE_VERSION ""
  5282. | #define PACKAGE_STRING ""
  5283. | #define PACKAGE_BUGREPORT ""
  5284. | #define PACKAGE_URL ""
  5285. | #define STDC_HEADERS 1
  5286. | #define HAVE_SYS_TYPES_H 1
  5287. | #define HAVE_SYS_STAT_H 1
  5288. | #define HAVE_STDLIB_H 1
  5289. | #define HAVE_STRING_H 1
  5290. | #define HAVE_MEMORY_H 1
  5291. | #define HAVE_STRINGS_H 1
  5292. | #define HAVE_INTTYPES_H 1
  5293. | #define HAVE_STDINT_H 1
  5294. | #define HAVE_UNISTD_H 1
  5295. | #define __EXTENSIONS__ 1
  5296. | #define _ALL_SOURCE 1
  5297. | #define _GNU_SOURCE 1
  5298. | #define _POSIX_PTHREAD_SEMANTICS 1
  5299. | #define _TANDEM_SOURCE 1
  5300. | #define restrict __restrict
  5301. | #define WORDS_LITTLEENDIAN 1
  5302. | #define CFLAG_FWRAPV 1
  5303. | #define CFLAG_U_STRICT_ANSI 1
  5304. | #define CFLAG_FNO_COMMON 1
  5305. | #define STDC_HEADERS 1
  5306. | #define HAVE_INTTYPES_H 1
  5307. | #define HAVE_STRINGS_H 1
  5308. | #define HAVE__BOOL 1
  5309. | #define HAVE_STDBOOL_H 1
  5310. | #define HAVE_STDNORETURN_H 1
  5311. | #define HAVE_FCNTL_H 1
  5312. | #define HAVE_UNISTD_H 1
  5313. | #define HAVE_SYS_MMAN_H 1
  5314. | #define HAVE_SYS_TYPES_H 1
  5315. | #define HAVE_SYS_STAT_H 1
  5316. | #define HAVE_STRCASECMP 1
  5317. | #define HAVE_STRNCASECMP 1
  5318. | #define HAVE_STRSEP 1
  5319. | #define HAVE_STRNLEN 1
  5320. | #define HAVE_GETUID 1
  5321. | #define HAVE_GETGID 1
  5322. | #define HAVE_REALPATH 1
  5323. | #define HAVE_CANONICALIZE_FILE_NAME 1
  5324. | #define HAVE_PATHCONF 1
  5325. | #define HAVE_FSEEKO 1
  5326. | #define HAVE_FTRUNCATE 1
  5327. | #define HAVE_FILENO 1
  5328. | #define HAVE_STDLIB_H 1
  5329. | #define HAVE_UNISTD_H 1
  5330. | #define HAVE_SYS_PARAM_H 1
  5331. | #define HAVE_GETPAGESIZE 1
  5332. | #define HAVE_MMAP 1
  5333. | #define HAVE_GETPAGESIZE 1
  5334. | #define HAVE_SYSCONF 1
  5335. | #define HAVE_ACCESS 1
  5336. | #define HAVE_FACCESSAT 1
  5337. | #define HAVE___BUILTIN_EXPECT 1
  5338. | #define HAVE___BUILTIN_CLZ 1
  5339. | #define HAVE___BUILTIN_CLZL 1
  5340. | #define HAVE___BUILTIN_CLZLL 1
  5341. | #define HAVE_VSNPRINTF 1
  5342. | #define HAVE_SNPRINTF 1
  5343. | #define HAVE_STRUCT_STAT 1
  5344. | #define HAVE_STAT 1
  5345. | #define HAVE_FSTAT 1
  5346. | #define HAVE_DECL_STRCASECMP 1
  5347. | #define HAVE_DECL_STRICMP 0
  5348. | #define HAVE_DECL_STRNCASECMP 1
  5349. | #define HAVE_DECL_STRNICMP 0
  5350. | #define HAVE_DECL_STRSEP 1
  5351. | #define HAVE_DECL_STRLCPY 0
  5352. | #define HAVE_DECL_STRNLEN 1
  5353. | #define HAVE_DECL_STRRCHRNUL 0
  5354. | #define HAVE_UINTPTR_T 1
  5355. | #define HAVE_ENDIAN_H 1
  5356. | #define HAVE_HTOLE16 1
  5357. | #define HAVE_HTOLE32 1
  5358. | #define HAVE_HTOLE64 1
  5359. | #define HAVE___BSWAP_16 1
  5360. | #define HAVE___BSWAP_32 1
  5361. | #define HAVE___BSWAP_64 1
  5362. | #define HAVE___BUILTIN_BSWAP16 1
  5363. | #define HAVE___BUILTIN_BSWAP32 1
  5364. | #define HAVE___BUILTIN_BSWAP64 1
  5365. | /* end confdefs.h. */
  5366. |
  5367. | #include <stdio.h>
  5368. | #ifdef HAVE_SYS_TYPES_H
  5369. | # include <sys/types.h>
  5370. | #endif
  5371. | #ifdef HAVE_SYS_STAT_H
  5372. | # include <sys/stat.h>
  5373. | #endif
  5374. | #ifdef STDC_HEADERS
  5375. | # include <stdlib.h>
  5376. | # include <stddef.h>
  5377. | #else
  5378. | # ifdef HAVE_STDLIB_H
  5379. | # include <stdlib.h>
  5380. | # endif
  5381. | #endif
  5382. | #ifdef HAVE_STRING_H
  5383. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  5384. | # include <memory.h>
  5385. | # endif
  5386. | # include <string.h>
  5387. | #endif
  5388. | #ifdef HAVE_STRINGS_H
  5389. | # include <strings.h>
  5390. | #endif
  5391. | #ifdef HAVE_INTTYPES_H
  5392. | # include <inttypes.h>
  5393. | #endif
  5394. | #ifdef HAVE_STDINT_H
  5395. | # include <stdint.h>
  5396. | #endif
  5397. | #ifdef HAVE_UNISTD_H
  5398. | # include <unistd.h>
  5399. | #endif
  5400. | #include <endian.h>
  5401. | int main(void) {
  5402. | (void)_byteswap_uint64(0);
  5403. | return 0;
  5404. | }
  5405. |
  5406. configure:7481: result: no
  5407. configure:7488: checking for __builtin_constant_p
  5408. configure:7500: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common conftest.c >&5
  5409. configure:7500: $? = 0
  5410. configure:7501: result: yes
  5411. configure:7514: checking if gcc accepts -Werror=attributes
  5412. configure:7529: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common -Werror=attributes conftest.c >&5
  5413. configure:7529: $? = 0
  5414. configure:7530: result: yes
  5415. configure:7543: checking if gcc supports the noreturn function attribute
  5416. configure:7559: gcc -c -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common -Werror=attributes conftest.c >&5
  5417. configure:7559: $? = 0
  5418. configure:7560: result: yes
  5419. configure:7571: checking if gcc supports the returns_nonnull function attribute
  5420. configure:7587: gcc -c -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common -Werror=attributes conftest.c >&5
  5421. configure:7587: $? = 0
  5422. configure:7588: result: yes
  5423. configure:7599: checking if gcc supports the malloc function attribute
  5424. configure:7615: gcc -c -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common -Werror=attributes conftest.c >&5
  5425. configure:7615: $? = 0
  5426. configure:7616: result: yes
  5427. configure:7627: checking if gcc supports the alloc_size function attribute
  5428. configure:7643: gcc -c -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common -Werror=attributes conftest.c >&5
  5429. configure:7643: $? = 0
  5430. configure:7644: result: yes
  5431. configure:7655: checking if gcc supports the sentinel function attribute
  5432. configure:7671: gcc -c -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common -Werror=attributes conftest.c >&5
  5433. configure:7671: $? = 0
  5434. configure:7672: result: yes
  5435. configure:7683: checking if gcc supports the format function attribute
  5436. configure:7699: gcc -c -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common -Werror=attributes conftest.c >&5
  5437. configure:7699: $? = 0
  5438. configure:7700: result: yes
  5439. configure:7711: checking if gcc supports the const function attribute
  5440. configure:7727: gcc -c -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common -Werror=attributes conftest.c >&5
  5441. configure:7727: $? = 0
  5442. configure:7728: result: yes
  5443. configure:7739: checking if gcc supports the pure function attribute
  5444. configure:7755: gcc -c -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common -Werror=attributes conftest.c >&5
  5445. configure:7755: $? = 0
  5446. configure:7756: result: yes
  5447. configure:7767: checking if gcc supports the cold function attribute
  5448. configure:7783: gcc -c -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common -Werror=attributes conftest.c >&5
  5449. configure:7783: $? = 0
  5450. configure:7784: result: yes
  5451. configure:7795: checking if gcc supports the error function attribute
  5452. configure:7810: gcc -c -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common -Werror=attributes conftest.c >&5
  5453. configure:7810: $? = 0
  5454. configure:7811: result: yes
  5455. configure:8172: checking if gcc accepts -fvisibility=hidden
  5456. configure:8189: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common -Werror=attributes -fvisibility=hidden -fvisibility=hidden conftest.c >&5
  5457. configure:8189: $? = 0
  5458. configure:8190: result: yes
  5459. configure:8206: checking if gcc accepts -W
  5460. configure:8221: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common -Werror=attributes -fvisibility=hidden -W -fvisibility=hidden conftest.c >&5
  5461. configure:8221: $? = 0
  5462. configure:8222: result: yes
  5463. configure:8235: checking if gcc accepts -Wall
  5464. configure:8250: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common -Werror=attributes -fvisibility=hidden -W -Wall -fvisibility=hidden conftest.c >&5
  5465. configure:8250: $? = 0
  5466. configure:8251: result: yes
  5467. configure:8264: checking if gcc accepts -pedantic
  5468. configure:8279: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common -Werror=attributes -fvisibility=hidden -W -Wall -pedantic -fvisibility=hidden conftest.c >&5
  5469. configure:8279: $? = 0
  5470. configure:8280: result: yes
  5471. configure:8293: checking if gcc accepts -Werror=unknown-warning-option
  5472. configure:8308: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common -Werror=attributes -fvisibility=hidden -W -Wall -pedantic -Werror=unknown-warning-option -fvisibility=hidden conftest.c >&5
  5473. cc1: error: -Werror=unknown-warning-option: no option -Wunknown-warning-option
  5474. configure:8308: $? = 1
  5475. configure: failed program was:
  5476. | /* confdefs.h */
  5477. | #define PACKAGE_NAME ""
  5478. | #define PACKAGE_TARNAME ""
  5479. | #define PACKAGE_VERSION ""
  5480. | #define PACKAGE_STRING ""
  5481. | #define PACKAGE_BUGREPORT ""
  5482. | #define PACKAGE_URL ""
  5483. | #define STDC_HEADERS 1
  5484. | #define HAVE_SYS_TYPES_H 1
  5485. | #define HAVE_SYS_STAT_H 1
  5486. | #define HAVE_STDLIB_H 1
  5487. | #define HAVE_STRING_H 1
  5488. | #define HAVE_MEMORY_H 1
  5489. | #define HAVE_STRINGS_H 1
  5490. | #define HAVE_INTTYPES_H 1
  5491. | #define HAVE_STDINT_H 1
  5492. | #define HAVE_UNISTD_H 1
  5493. | #define __EXTENSIONS__ 1
  5494. | #define _ALL_SOURCE 1
  5495. | #define _GNU_SOURCE 1
  5496. | #define _POSIX_PTHREAD_SEMANTICS 1
  5497. | #define _TANDEM_SOURCE 1
  5498. | #define restrict __restrict
  5499. | #define WORDS_LITTLEENDIAN 1
  5500. | #define CFLAG_FWRAPV 1
  5501. | #define CFLAG_U_STRICT_ANSI 1
  5502. | #define CFLAG_FNO_COMMON 1
  5503. | #define STDC_HEADERS 1
  5504. | #define HAVE_INTTYPES_H 1
  5505. | #define HAVE_STRINGS_H 1
  5506. | #define HAVE__BOOL 1
  5507. | #define HAVE_STDBOOL_H 1
  5508. | #define HAVE_STDNORETURN_H 1
  5509. | #define HAVE_FCNTL_H 1
  5510. | #define HAVE_UNISTD_H 1
  5511. | #define HAVE_SYS_MMAN_H 1
  5512. | #define HAVE_SYS_TYPES_H 1
  5513. | #define HAVE_SYS_STAT_H 1
  5514. | #define HAVE_STRCASECMP 1
  5515. | #define HAVE_STRNCASECMP 1
  5516. | #define HAVE_STRSEP 1
  5517. | #define HAVE_STRNLEN 1
  5518. | #define HAVE_GETUID 1
  5519. | #define HAVE_GETGID 1
  5520. | #define HAVE_REALPATH 1
  5521. | #define HAVE_CANONICALIZE_FILE_NAME 1
  5522. | #define HAVE_PATHCONF 1
  5523. | #define HAVE_FSEEKO 1
  5524. | #define HAVE_FTRUNCATE 1
  5525. | #define HAVE_FILENO 1
  5526. | #define HAVE_STDLIB_H 1
  5527. | #define HAVE_UNISTD_H 1
  5528. | #define HAVE_SYS_PARAM_H 1
  5529. | #define HAVE_GETPAGESIZE 1
  5530. | #define HAVE_MMAP 1
  5531. | #define HAVE_GETPAGESIZE 1
  5532. | #define HAVE_SYSCONF 1
  5533. | #define HAVE_ACCESS 1
  5534. | #define HAVE_FACCESSAT 1
  5535. | #define HAVE___BUILTIN_EXPECT 1
  5536. | #define HAVE___BUILTIN_CLZ 1
  5537. | #define HAVE___BUILTIN_CLZL 1
  5538. | #define HAVE___BUILTIN_CLZLL 1
  5539. | #define HAVE_VSNPRINTF 1
  5540. | #define HAVE_SNPRINTF 1
  5541. | #define HAVE_STRUCT_STAT 1
  5542. | #define HAVE_STAT 1
  5543. | #define HAVE_FSTAT 1
  5544. | #define HAVE_DECL_STRCASECMP 1
  5545. | #define HAVE_DECL_STRICMP 0
  5546. | #define HAVE_DECL_STRNCASECMP 1
  5547. | #define HAVE_DECL_STRNICMP 0
  5548. | #define HAVE_DECL_STRSEP 1
  5549. | #define HAVE_DECL_STRLCPY 0
  5550. | #define HAVE_DECL_STRNLEN 1
  5551. | #define HAVE_DECL_STRRCHRNUL 0
  5552. | #define HAVE_UINTPTR_T 1
  5553. | #define HAVE_ENDIAN_H 1
  5554. | #define HAVE_HTOLE16 1
  5555. | #define HAVE_HTOLE32 1
  5556. | #define HAVE_HTOLE64 1
  5557. | #define HAVE___BSWAP_16 1
  5558. | #define HAVE___BSWAP_32 1
  5559. | #define HAVE___BSWAP_64 1
  5560. | #define HAVE___BUILTIN_BSWAP16 1
  5561. | #define HAVE___BUILTIN_BSWAP32 1
  5562. | #define HAVE___BUILTIN_BSWAP64 1
  5563. | #define HAVE___BUILTIN_CONSTANT_P 1
  5564. | #define CFLAG_WERROR_ATTRIBUTES 1
  5565. | #define HAVE_FUNC_ATTRIBUTE_NORETURN 1
  5566. | #define HAVE_FUNC_ATTRIBUTE_RETURNS_NONNULL 1
  5567. | #define HAVE_FUNC_ATTRIBUTE_MALLOC 1
  5568. | #define HAVE_FUNC_ATTRIBUTE_ALLOC_SIZE 1
  5569. | #define HAVE_FUNC_ATTRIBUTE_SENTINEL 1
  5570. | #define HAVE_FUNC_ATTRIBUTE_FORMAT 1
  5571. | #define HAVE_FUNC_ATTRIBUTE_CONST 1
  5572. | #define HAVE_FUNC_ATTRIBUTE_PURE 1
  5573. | #define HAVE_FUNC_ATTRIBUTE_COLD 1
  5574. | #define HAVE_FUNC_ATTRIBUTE_ERROR 1
  5575. | #define CFLAG_FVISIBILITY_HIDDEN 1
  5576. | #define CFLAG_W 1
  5577. | #define CFLAG_WALL 1
  5578. | #define CFLAG_PEDANTIC 1
  5579. | /* end confdefs.h. */
  5580. | #include <stdio.h>
  5581. | #ifdef HAVE_SYS_TYPES_H
  5582. | # include <sys/types.h>
  5583. | #endif
  5584. | #ifdef HAVE_SYS_STAT_H
  5585. | # include <sys/stat.h>
  5586. | #endif
  5587. | #ifdef STDC_HEADERS
  5588. | # include <stdlib.h>
  5589. | # include <stddef.h>
  5590. | #else
  5591. | # ifdef HAVE_STDLIB_H
  5592. | # include <stdlib.h>
  5593. | # endif
  5594. | #endif
  5595. | #ifdef HAVE_STRING_H
  5596. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  5597. | # include <memory.h>
  5598. | # endif
  5599. | # include <string.h>
  5600. | #endif
  5601. | #ifdef HAVE_STRINGS_H
  5602. | # include <strings.h>
  5603. | #endif
  5604. | #ifdef HAVE_INTTYPES_H
  5605. | # include <inttypes.h>
  5606. | #endif
  5607. | #ifdef HAVE_STDINT_H
  5608. | # include <stdint.h>
  5609. | #endif
  5610. | #ifdef HAVE_UNISTD_H
  5611. | # include <unistd.h>
  5612. | #endif
  5613. | #include <endian.h>
  5614. | int
  5615. | main ()
  5616. | {
  5617. | printf("Hello, World!\n");
  5618. | ;
  5619. | return 0;
  5620. | }
  5621. configure:8316: result: no
  5622. configure:8322: checking if gcc accepts -Wpedantic-ms-format
  5623. configure:8337: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common -Werror=attributes -fvisibility=hidden -W -Wall -pedantic -Wpedantic-ms-format -fvisibility=hidden conftest.c >&5
  5624. gcc: error: unrecognized command line option '-Wpedantic-ms-format'; did you mean '--pedantic-errors'?
  5625. configure:8337: $? = 1
  5626. configure: failed program was:
  5627. | /* confdefs.h */
  5628. | #define PACKAGE_NAME ""
  5629. | #define PACKAGE_TARNAME ""
  5630. | #define PACKAGE_VERSION ""
  5631. | #define PACKAGE_STRING ""
  5632. | #define PACKAGE_BUGREPORT ""
  5633. | #define PACKAGE_URL ""
  5634. | #define STDC_HEADERS 1
  5635. | #define HAVE_SYS_TYPES_H 1
  5636. | #define HAVE_SYS_STAT_H 1
  5637. | #define HAVE_STDLIB_H 1
  5638. | #define HAVE_STRING_H 1
  5639. | #define HAVE_MEMORY_H 1
  5640. | #define HAVE_STRINGS_H 1
  5641. | #define HAVE_INTTYPES_H 1
  5642. | #define HAVE_STDINT_H 1
  5643. | #define HAVE_UNISTD_H 1
  5644. | #define __EXTENSIONS__ 1
  5645. | #define _ALL_SOURCE 1
  5646. | #define _GNU_SOURCE 1
  5647. | #define _POSIX_PTHREAD_SEMANTICS 1
  5648. | #define _TANDEM_SOURCE 1
  5649. | #define restrict __restrict
  5650. | #define WORDS_LITTLEENDIAN 1
  5651. | #define CFLAG_FWRAPV 1
  5652. | #define CFLAG_U_STRICT_ANSI 1
  5653. | #define CFLAG_FNO_COMMON 1
  5654. | #define STDC_HEADERS 1
  5655. | #define HAVE_INTTYPES_H 1
  5656. | #define HAVE_STRINGS_H 1
  5657. | #define HAVE__BOOL 1
  5658. | #define HAVE_STDBOOL_H 1
  5659. | #define HAVE_STDNORETURN_H 1
  5660. | #define HAVE_FCNTL_H 1
  5661. | #define HAVE_UNISTD_H 1
  5662. | #define HAVE_SYS_MMAN_H 1
  5663. | #define HAVE_SYS_TYPES_H 1
  5664. | #define HAVE_SYS_STAT_H 1
  5665. | #define HAVE_STRCASECMP 1
  5666. | #define HAVE_STRNCASECMP 1
  5667. | #define HAVE_STRSEP 1
  5668. | #define HAVE_STRNLEN 1
  5669. | #define HAVE_GETUID 1
  5670. | #define HAVE_GETGID 1
  5671. | #define HAVE_REALPATH 1
  5672. | #define HAVE_CANONICALIZE_FILE_NAME 1
  5673. | #define HAVE_PATHCONF 1
  5674. | #define HAVE_FSEEKO 1
  5675. | #define HAVE_FTRUNCATE 1
  5676. | #define HAVE_FILENO 1
  5677. | #define HAVE_STDLIB_H 1
  5678. | #define HAVE_UNISTD_H 1
  5679. | #define HAVE_SYS_PARAM_H 1
  5680. | #define HAVE_GETPAGESIZE 1
  5681. | #define HAVE_MMAP 1
  5682. | #define HAVE_GETPAGESIZE 1
  5683. | #define HAVE_SYSCONF 1
  5684. | #define HAVE_ACCESS 1
  5685. | #define HAVE_FACCESSAT 1
  5686. | #define HAVE___BUILTIN_EXPECT 1
  5687. | #define HAVE___BUILTIN_CLZ 1
  5688. | #define HAVE___BUILTIN_CLZL 1
  5689. | #define HAVE___BUILTIN_CLZLL 1
  5690. | #define HAVE_VSNPRINTF 1
  5691. | #define HAVE_SNPRINTF 1
  5692. | #define HAVE_STRUCT_STAT 1
  5693. | #define HAVE_STAT 1
  5694. | #define HAVE_FSTAT 1
  5695. | #define HAVE_DECL_STRCASECMP 1
  5696. | #define HAVE_DECL_STRICMP 0
  5697. | #define HAVE_DECL_STRNCASECMP 1
  5698. | #define HAVE_DECL_STRNICMP 0
  5699. | #define HAVE_DECL_STRSEP 1
  5700. | #define HAVE_DECL_STRLCPY 0
  5701. | #define HAVE_DECL_STRNLEN 1
  5702. | #define HAVE_DECL_STRRCHRNUL 0
  5703. | #define HAVE_UINTPTR_T 1
  5704. | #define HAVE_ENDIAN_H 1
  5705. | #define HAVE_HTOLE16 1
  5706. | #define HAVE_HTOLE32 1
  5707. | #define HAVE_HTOLE64 1
  5708. | #define HAVE___BSWAP_16 1
  5709. | #define HAVE___BSWAP_32 1
  5710. | #define HAVE___BSWAP_64 1
  5711. | #define HAVE___BUILTIN_BSWAP16 1
  5712. | #define HAVE___BUILTIN_BSWAP32 1
  5713. | #define HAVE___BUILTIN_BSWAP64 1
  5714. | #define HAVE___BUILTIN_CONSTANT_P 1
  5715. | #define CFLAG_WERROR_ATTRIBUTES 1
  5716. | #define HAVE_FUNC_ATTRIBUTE_NORETURN 1
  5717. | #define HAVE_FUNC_ATTRIBUTE_RETURNS_NONNULL 1
  5718. | #define HAVE_FUNC_ATTRIBUTE_MALLOC 1
  5719. | #define HAVE_FUNC_ATTRIBUTE_ALLOC_SIZE 1
  5720. | #define HAVE_FUNC_ATTRIBUTE_SENTINEL 1
  5721. | #define HAVE_FUNC_ATTRIBUTE_FORMAT 1
  5722. | #define HAVE_FUNC_ATTRIBUTE_CONST 1
  5723. | #define HAVE_FUNC_ATTRIBUTE_PURE 1
  5724. | #define HAVE_FUNC_ATTRIBUTE_COLD 1
  5725. | #define HAVE_FUNC_ATTRIBUTE_ERROR 1
  5726. | #define CFLAG_FVISIBILITY_HIDDEN 1
  5727. | #define CFLAG_W 1
  5728. | #define CFLAG_WALL 1
  5729. | #define CFLAG_PEDANTIC 1
  5730. | /* end confdefs.h. */
  5731. | #include <stdio.h>
  5732. | #ifdef HAVE_SYS_TYPES_H
  5733. | # include <sys/types.h>
  5734. | #endif
  5735. | #ifdef HAVE_SYS_STAT_H
  5736. | # include <sys/stat.h>
  5737. | #endif
  5738. | #ifdef STDC_HEADERS
  5739. | # include <stdlib.h>
  5740. | # include <stddef.h>
  5741. | #else
  5742. | # ifdef HAVE_STDLIB_H
  5743. | # include <stdlib.h>
  5744. | # endif
  5745. | #endif
  5746. | #ifdef HAVE_STRING_H
  5747. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  5748. | # include <memory.h>
  5749. | # endif
  5750. | # include <string.h>
  5751. | #endif
  5752. | #ifdef HAVE_STRINGS_H
  5753. | # include <strings.h>
  5754. | #endif
  5755. | #ifdef HAVE_INTTYPES_H
  5756. | # include <inttypes.h>
  5757. | #endif
  5758. | #ifdef HAVE_STDINT_H
  5759. | # include <stdint.h>
  5760. | #endif
  5761. | #ifdef HAVE_UNISTD_H
  5762. | # include <unistd.h>
  5763. | #endif
  5764. | #include <endian.h>
  5765. | int
  5766. | main ()
  5767. | {
  5768. | printf("Hello, World!\n");
  5769. | ;
  5770. | return 0;
  5771. | }
  5772. configure:8345: result: no
  5773. configure:8351: checking if gcc accepts -Wc90-c99-compat
  5774. configure:8366: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common -Werror=attributes -fvisibility=hidden -W -Wall -pedantic -Wc90-c99-compat -fvisibility=hidden conftest.c >&5
  5775. configure:8366: $? = 0
  5776. configure:8367: result: yes
  5777. configure:8380: checking if gcc accepts -Wlong-long
  5778. configure:8395: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common -Werror=attributes -fvisibility=hidden -W -Wall -pedantic -Wc90-c99-compat -Wlong-long -fvisibility=hidden conftest.c >&5
  5779. configure:8395: $? = 0
  5780. configure:8396: result: yes
  5781. configure:8409: checking if gcc accepts -Wstringop-truncation
  5782. configure:8424: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common -Werror=attributes -fvisibility=hidden -W -Wall -pedantic -Wc90-c99-compat -Wno-long-long -Wstringop-truncation -fvisibility=hidden conftest.c >&5
  5783. gcc: error: unrecognized command line option '-Wstringop-truncation'; did you mean '-Wline-truncation'?
  5784. configure:8424: $? = 1
  5785. configure: failed program was:
  5786. | /* confdefs.h */
  5787. | #define PACKAGE_NAME ""
  5788. | #define PACKAGE_TARNAME ""
  5789. | #define PACKAGE_VERSION ""
  5790. | #define PACKAGE_STRING ""
  5791. | #define PACKAGE_BUGREPORT ""
  5792. | #define PACKAGE_URL ""
  5793. | #define STDC_HEADERS 1
  5794. | #define HAVE_SYS_TYPES_H 1
  5795. | #define HAVE_SYS_STAT_H 1
  5796. | #define HAVE_STDLIB_H 1
  5797. | #define HAVE_STRING_H 1
  5798. | #define HAVE_MEMORY_H 1
  5799. | #define HAVE_STRINGS_H 1
  5800. | #define HAVE_INTTYPES_H 1
  5801. | #define HAVE_STDINT_H 1
  5802. | #define HAVE_UNISTD_H 1
  5803. | #define __EXTENSIONS__ 1
  5804. | #define _ALL_SOURCE 1
  5805. | #define _GNU_SOURCE 1
  5806. | #define _POSIX_PTHREAD_SEMANTICS 1
  5807. | #define _TANDEM_SOURCE 1
  5808. | #define restrict __restrict
  5809. | #define WORDS_LITTLEENDIAN 1
  5810. | #define CFLAG_FWRAPV 1
  5811. | #define CFLAG_U_STRICT_ANSI 1
  5812. | #define CFLAG_FNO_COMMON 1
  5813. | #define STDC_HEADERS 1
  5814. | #define HAVE_INTTYPES_H 1
  5815. | #define HAVE_STRINGS_H 1
  5816. | #define HAVE__BOOL 1
  5817. | #define HAVE_STDBOOL_H 1
  5818. | #define HAVE_STDNORETURN_H 1
  5819. | #define HAVE_FCNTL_H 1
  5820. | #define HAVE_UNISTD_H 1
  5821. | #define HAVE_SYS_MMAN_H 1
  5822. | #define HAVE_SYS_TYPES_H 1
  5823. | #define HAVE_SYS_STAT_H 1
  5824. | #define HAVE_STRCASECMP 1
  5825. | #define HAVE_STRNCASECMP 1
  5826. | #define HAVE_STRSEP 1
  5827. | #define HAVE_STRNLEN 1
  5828. | #define HAVE_GETUID 1
  5829. | #define HAVE_GETGID 1
  5830. | #define HAVE_REALPATH 1
  5831. | #define HAVE_CANONICALIZE_FILE_NAME 1
  5832. | #define HAVE_PATHCONF 1
  5833. | #define HAVE_FSEEKO 1
  5834. | #define HAVE_FTRUNCATE 1
  5835. | #define HAVE_FILENO 1
  5836. | #define HAVE_STDLIB_H 1
  5837. | #define HAVE_UNISTD_H 1
  5838. | #define HAVE_SYS_PARAM_H 1
  5839. | #define HAVE_GETPAGESIZE 1
  5840. | #define HAVE_MMAP 1
  5841. | #define HAVE_GETPAGESIZE 1
  5842. | #define HAVE_SYSCONF 1
  5843. | #define HAVE_ACCESS 1
  5844. | #define HAVE_FACCESSAT 1
  5845. | #define HAVE___BUILTIN_EXPECT 1
  5846. | #define HAVE___BUILTIN_CLZ 1
  5847. | #define HAVE___BUILTIN_CLZL 1
  5848. | #define HAVE___BUILTIN_CLZLL 1
  5849. | #define HAVE_VSNPRINTF 1
  5850. | #define HAVE_SNPRINTF 1
  5851. | #define HAVE_STRUCT_STAT 1
  5852. | #define HAVE_STAT 1
  5853. | #define HAVE_FSTAT 1
  5854. | #define HAVE_DECL_STRCASECMP 1
  5855. | #define HAVE_DECL_STRICMP 0
  5856. | #define HAVE_DECL_STRNCASECMP 1
  5857. | #define HAVE_DECL_STRNICMP 0
  5858. | #define HAVE_DECL_STRSEP 1
  5859. | #define HAVE_DECL_STRLCPY 0
  5860. | #define HAVE_DECL_STRNLEN 1
  5861. | #define HAVE_DECL_STRRCHRNUL 0
  5862. | #define HAVE_UINTPTR_T 1
  5863. | #define HAVE_ENDIAN_H 1
  5864. | #define HAVE_HTOLE16 1
  5865. | #define HAVE_HTOLE32 1
  5866. | #define HAVE_HTOLE64 1
  5867. | #define HAVE___BSWAP_16 1
  5868. | #define HAVE___BSWAP_32 1
  5869. | #define HAVE___BSWAP_64 1
  5870. | #define HAVE___BUILTIN_BSWAP16 1
  5871. | #define HAVE___BUILTIN_BSWAP32 1
  5872. | #define HAVE___BUILTIN_BSWAP64 1
  5873. | #define HAVE___BUILTIN_CONSTANT_P 1
  5874. | #define CFLAG_WERROR_ATTRIBUTES 1
  5875. | #define HAVE_FUNC_ATTRIBUTE_NORETURN 1
  5876. | #define HAVE_FUNC_ATTRIBUTE_RETURNS_NONNULL 1
  5877. | #define HAVE_FUNC_ATTRIBUTE_MALLOC 1
  5878. | #define HAVE_FUNC_ATTRIBUTE_ALLOC_SIZE 1
  5879. | #define HAVE_FUNC_ATTRIBUTE_SENTINEL 1
  5880. | #define HAVE_FUNC_ATTRIBUTE_FORMAT 1
  5881. | #define HAVE_FUNC_ATTRIBUTE_CONST 1
  5882. | #define HAVE_FUNC_ATTRIBUTE_PURE 1
  5883. | #define HAVE_FUNC_ATTRIBUTE_COLD 1
  5884. | #define HAVE_FUNC_ATTRIBUTE_ERROR 1
  5885. | #define CFLAG_FVISIBILITY_HIDDEN 1
  5886. | #define CFLAG_W 1
  5887. | #define CFLAG_WALL 1
  5888. | #define CFLAG_PEDANTIC 1
  5889. | #define CFLAG_WC90_C99_COMPAT 1
  5890. | #define CFLAG_WLONG_LONG 1
  5891. | /* end confdefs.h. */
  5892. | #include <stdio.h>
  5893. | #ifdef HAVE_SYS_TYPES_H
  5894. | # include <sys/types.h>
  5895. | #endif
  5896. | #ifdef HAVE_SYS_STAT_H
  5897. | # include <sys/stat.h>
  5898. | #endif
  5899. | #ifdef STDC_HEADERS
  5900. | # include <stdlib.h>
  5901. | # include <stddef.h>
  5902. | #else
  5903. | # ifdef HAVE_STDLIB_H
  5904. | # include <stdlib.h>
  5905. | # endif
  5906. | #endif
  5907. | #ifdef HAVE_STRING_H
  5908. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  5909. | # include <memory.h>
  5910. | # endif
  5911. | # include <string.h>
  5912. | #endif
  5913. | #ifdef HAVE_STRINGS_H
  5914. | # include <strings.h>
  5915. | #endif
  5916. | #ifdef HAVE_INTTYPES_H
  5917. | # include <inttypes.h>
  5918. | #endif
  5919. | #ifdef HAVE_STDINT_H
  5920. | # include <stdint.h>
  5921. | #endif
  5922. | #ifdef HAVE_UNISTD_H
  5923. | # include <unistd.h>
  5924. | #endif
  5925. | #include <endian.h>
  5926. | int
  5927. | main ()
  5928. | {
  5929. | printf("Hello, World!\n");
  5930. | ;
  5931. | return 0;
  5932. | }
  5933. configure:8432: result: no
  5934. configure:8438: checking if gcc accepts -Wshift-negative-value
  5935. configure:8453: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common -Werror=attributes -fvisibility=hidden -W -Wall -pedantic -Wc90-c99-compat -Wno-long-long -Wshift-negative-value -fvisibility=hidden conftest.c >&5
  5936. configure:8453: $? = 0
  5937. configure:8454: result: yes
  5938. configure:8506: checking if gcc accepts -Werror=implicit
  5939. configure:8521: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common -Werror=attributes -fvisibility=hidden -W -Wall -pedantic -Wc90-c99-compat -Wno-long-long -Wno-shift-negative-value -Werror=implicit -fvisibility=hidden conftest.c >&5
  5940. configure:8521: $? = 0
  5941. configure:8522: result: yes
  5942. configure:8535: checking if gcc accepts -Werror=missing-braces
  5943. configure:8550: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common -Werror=attributes -fvisibility=hidden -W -Wall -pedantic -Wc90-c99-compat -Wno-long-long -Wno-shift-negative-value -Werror=implicit -Werror=missing-braces -fvisibility=hidden conftest.c >&5
  5944. configure:8550: $? = 0
  5945. configure:8551: result: yes
  5946. configure:8564: checking if gcc accepts -Werror=return-type
  5947. configure:8579: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common -Werror=attributes -fvisibility=hidden -W -Wall -pedantic -Wc90-c99-compat -Wno-long-long -Wno-shift-negative-value -Werror=implicit -Werror=missing-braces -Werror=return-type -fvisibility=hidden conftest.c >&5
  5948. configure:8579: $? = 0
  5949. configure:8580: result: yes
  5950. configure:8593: checking if gcc accepts -Werror=trigraphs
  5951. configure:8608: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common -Werror=attributes -fvisibility=hidden -W -Wall -pedantic -Wc90-c99-compat -Wno-long-long -Wno-shift-negative-value -Werror=implicit -Werror=missing-braces -Werror=return-type -Werror=trigraphs -fvisibility=hidden conftest.c >&5
  5952. configure:8608: $? = 0
  5953. configure:8609: result: yes
  5954. configure:8622: checking if gcc accepts -Werror=pointer-arith
  5955. configure:8637: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common -Werror=attributes -fvisibility=hidden -W -Wall -pedantic -Wc90-c99-compat -Wno-long-long -Wno-shift-negative-value -Werror=implicit -Werror=missing-braces -Werror=return-type -Werror=trigraphs -Werror=pointer-arith -fvisibility=hidden conftest.c >&5
  5956. configure:8637: $? = 0
  5957. configure:8638: result: yes
  5958. configure:8651: checking if gcc accepts -Werror=strict-prototypes
  5959. configure:8666: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common -Werror=attributes -fvisibility=hidden -W -Wall -pedantic -Wc90-c99-compat -Wno-long-long -Wno-shift-negative-value -Werror=implicit -Werror=missing-braces -Werror=return-type -Werror=trigraphs -Werror=pointer-arith -Werror=strict-prototypes -fvisibility=hidden conftest.c >&5
  5960. conftest.c:148:1: error: function declaration isn't a prototype [-Werror=strict-prototypes]
  5961. main ()
  5962. ^~~~
  5963. cc1: some warnings being treated as errors
  5964. configure:8666: $? = 1
  5965. configure: failed program was:
  5966. | /* confdefs.h */
  5967. | #define PACKAGE_NAME ""
  5968. | #define PACKAGE_TARNAME ""
  5969. | #define PACKAGE_VERSION ""
  5970. | #define PACKAGE_STRING ""
  5971. | #define PACKAGE_BUGREPORT ""
  5972. | #define PACKAGE_URL ""
  5973. | #define STDC_HEADERS 1
  5974. | #define HAVE_SYS_TYPES_H 1
  5975. | #define HAVE_SYS_STAT_H 1
  5976. | #define HAVE_STDLIB_H 1
  5977. | #define HAVE_STRING_H 1
  5978. | #define HAVE_MEMORY_H 1
  5979. | #define HAVE_STRINGS_H 1
  5980. | #define HAVE_INTTYPES_H 1
  5981. | #define HAVE_STDINT_H 1
  5982. | #define HAVE_UNISTD_H 1
  5983. | #define __EXTENSIONS__ 1
  5984. | #define _ALL_SOURCE 1
  5985. | #define _GNU_SOURCE 1
  5986. | #define _POSIX_PTHREAD_SEMANTICS 1
  5987. | #define _TANDEM_SOURCE 1
  5988. | #define restrict __restrict
  5989. | #define WORDS_LITTLEENDIAN 1
  5990. | #define CFLAG_FWRAPV 1
  5991. | #define CFLAG_U_STRICT_ANSI 1
  5992. | #define CFLAG_FNO_COMMON 1
  5993. | #define STDC_HEADERS 1
  5994. | #define HAVE_INTTYPES_H 1
  5995. | #define HAVE_STRINGS_H 1
  5996. | #define HAVE__BOOL 1
  5997. | #define HAVE_STDBOOL_H 1
  5998. | #define HAVE_STDNORETURN_H 1
  5999. | #define HAVE_FCNTL_H 1
  6000. | #define HAVE_UNISTD_H 1
  6001. | #define HAVE_SYS_MMAN_H 1
  6002. | #define HAVE_SYS_TYPES_H 1
  6003. | #define HAVE_SYS_STAT_H 1
  6004. | #define HAVE_STRCASECMP 1
  6005. | #define HAVE_STRNCASECMP 1
  6006. | #define HAVE_STRSEP 1
  6007. | #define HAVE_STRNLEN 1
  6008. | #define HAVE_GETUID 1
  6009. | #define HAVE_GETGID 1
  6010. | #define HAVE_REALPATH 1
  6011. | #define HAVE_CANONICALIZE_FILE_NAME 1
  6012. | #define HAVE_PATHCONF 1
  6013. | #define HAVE_FSEEKO 1
  6014. | #define HAVE_FTRUNCATE 1
  6015. | #define HAVE_FILENO 1
  6016. | #define HAVE_STDLIB_H 1
  6017. | #define HAVE_UNISTD_H 1
  6018. | #define HAVE_SYS_PARAM_H 1
  6019. | #define HAVE_GETPAGESIZE 1
  6020. | #define HAVE_MMAP 1
  6021. | #define HAVE_GETPAGESIZE 1
  6022. | #define HAVE_SYSCONF 1
  6023. | #define HAVE_ACCESS 1
  6024. | #define HAVE_FACCESSAT 1
  6025. | #define HAVE___BUILTIN_EXPECT 1
  6026. | #define HAVE___BUILTIN_CLZ 1
  6027. | #define HAVE___BUILTIN_CLZL 1
  6028. | #define HAVE___BUILTIN_CLZLL 1
  6029. | #define HAVE_VSNPRINTF 1
  6030. | #define HAVE_SNPRINTF 1
  6031. | #define HAVE_STRUCT_STAT 1
  6032. | #define HAVE_STAT 1
  6033. | #define HAVE_FSTAT 1
  6034. | #define HAVE_DECL_STRCASECMP 1
  6035. | #define HAVE_DECL_STRICMP 0
  6036. | #define HAVE_DECL_STRNCASECMP 1
  6037. | #define HAVE_DECL_STRNICMP 0
  6038. | #define HAVE_DECL_STRSEP 1
  6039. | #define HAVE_DECL_STRLCPY 0
  6040. | #define HAVE_DECL_STRNLEN 1
  6041. | #define HAVE_DECL_STRRCHRNUL 0
  6042. | #define HAVE_UINTPTR_T 1
  6043. | #define HAVE_ENDIAN_H 1
  6044. | #define HAVE_HTOLE16 1
  6045. | #define HAVE_HTOLE32 1
  6046. | #define HAVE_HTOLE64 1
  6047. | #define HAVE___BSWAP_16 1
  6048. | #define HAVE___BSWAP_32 1
  6049. | #define HAVE___BSWAP_64 1
  6050. | #define HAVE___BUILTIN_BSWAP16 1
  6051. | #define HAVE___BUILTIN_BSWAP32 1
  6052. | #define HAVE___BUILTIN_BSWAP64 1
  6053. | #define HAVE___BUILTIN_CONSTANT_P 1
  6054. | #define CFLAG_WERROR_ATTRIBUTES 1
  6055. | #define HAVE_FUNC_ATTRIBUTE_NORETURN 1
  6056. | #define HAVE_FUNC_ATTRIBUTE_RETURNS_NONNULL 1
  6057. | #define HAVE_FUNC_ATTRIBUTE_MALLOC 1
  6058. | #define HAVE_FUNC_ATTRIBUTE_ALLOC_SIZE 1
  6059. | #define HAVE_FUNC_ATTRIBUTE_SENTINEL 1
  6060. | #define HAVE_FUNC_ATTRIBUTE_FORMAT 1
  6061. | #define HAVE_FUNC_ATTRIBUTE_CONST 1
  6062. | #define HAVE_FUNC_ATTRIBUTE_PURE 1
  6063. | #define HAVE_FUNC_ATTRIBUTE_COLD 1
  6064. | #define HAVE_FUNC_ATTRIBUTE_ERROR 1
  6065. | #define CFLAG_FVISIBILITY_HIDDEN 1
  6066. | #define CFLAG_W 1
  6067. | #define CFLAG_WALL 1
  6068. | #define CFLAG_PEDANTIC 1
  6069. | #define CFLAG_WC90_C99_COMPAT 1
  6070. | #define CFLAG_WLONG_LONG 1
  6071. | #define CFLAG_WSHIFT_NEGATIVE_VALUE 1
  6072. | #define CFLAG_WERROR_IMPLICIT 1
  6073. | #define CFLAG_WERROR_MISSING_BRACES 1
  6074. | #define CFLAG_WERROR_RETURN_TYPE 1
  6075. | #define CFLAG_WERROR_TRIGRAPHS 1
  6076. | #define CFLAG_WERROR_POINTER_ARITH 1
  6077. | /* end confdefs.h. */
  6078. | #include <stdio.h>
  6079. | #ifdef HAVE_SYS_TYPES_H
  6080. | # include <sys/types.h>
  6081. | #endif
  6082. | #ifdef HAVE_SYS_STAT_H
  6083. | # include <sys/stat.h>
  6084. | #endif
  6085. | #ifdef STDC_HEADERS
  6086. | # include <stdlib.h>
  6087. | # include <stddef.h>
  6088. | #else
  6089. | # ifdef HAVE_STDLIB_H
  6090. | # include <stdlib.h>
  6091. | # endif
  6092. | #endif
  6093. | #ifdef HAVE_STRING_H
  6094. | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
  6095. | # include <memory.h>
  6096. | # endif
  6097. | # include <string.h>
  6098. | #endif
  6099. | #ifdef HAVE_STRINGS_H
  6100. | # include <strings.h>
  6101. | #endif
  6102. | #ifdef HAVE_INTTYPES_H
  6103. | # include <inttypes.h>
  6104. | #endif
  6105. | #ifdef HAVE_STDINT_H
  6106. | # include <stdint.h>
  6107. | #endif
  6108. | #ifdef HAVE_UNISTD_H
  6109. | # include <unistd.h>
  6110. | #endif
  6111. | #include <endian.h>
  6112. | int
  6113. | main ()
  6114. | {
  6115. | printf("Hello, World!\n");
  6116. | ;
  6117. | return 0;
  6118. | }
  6119. configure:8674: result: no
  6120. configure:8680: checking if gcc accepts -Werror=missing-prototypes
  6121. configure:8695: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common -Werror=attributes -fvisibility=hidden -W -Wall -pedantic -Wc90-c99-compat -Wno-long-long -Wno-shift-negative-value -Werror=implicit -Werror=missing-braces -Werror=return-type -Werror=trigraphs -Werror=pointer-arith -Werror=missing-prototypes -fvisibility=hidden conftest.c >&5
  6122. configure:8695: $? = 0
  6123. configure:8696: result: yes
  6124. configure:8709: checking if gcc accepts -Werror=missing-declarations
  6125. configure:8724: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common -Werror=attributes -fvisibility=hidden -W -Wall -pedantic -Wc90-c99-compat -Wno-long-long -Wno-shift-negative-value -Werror=implicit -Werror=missing-braces -Werror=return-type -Werror=trigraphs -Werror=pointer-arith -Werror=missing-prototypes -Werror=missing-declarations -fvisibility=hidden conftest.c >&5
  6126. configure:8724: $? = 0
  6127. configure:8725: result: yes
  6128. configure:8738: checking if gcc accepts -Werror=comment
  6129. configure:8753: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common -Werror=attributes -fvisibility=hidden -W -Wall -pedantic -Wc90-c99-compat -Wno-long-long -Wno-shift-negative-value -Werror=implicit -Werror=missing-braces -Werror=return-type -Werror=trigraphs -Werror=pointer-arith -Werror=missing-prototypes -Werror=missing-declarations -Werror=comment -fvisibility=hidden conftest.c >&5
  6130. configure:8753: $? = 0
  6131. configure:8754: result: yes
  6132. configure:8767: checking if gcc accepts -Werror=vla
  6133. configure:8782: gcc -o conftest -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common -Werror=attributes -fvisibility=hidden -W -Wall -pedantic -Wc90-c99-compat -Wno-long-long -Wno-shift-negative-value -Werror=implicit -Werror=missing-braces -Werror=return-type -Werror=trigraphs -Werror=pointer-arith -Werror=missing-prototypes -Werror=missing-declarations -Werror=comment -Werror=vla -fvisibility=hidden conftest.c >&5
  6134. configure:8782: $? = 0
  6135. configure:8783: result: yes
  6136. configure:8800: checking if gcc supports C99 external inlines
  6137. configure:8818: gcc -c -g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common -Werror=attributes -fvisibility=hidden -W -Wall -pedantic -Wc90-c99-compat -Wno-long-long -Wno-shift-negative-value -Werror=implicit -Werror=missing-braces -Werror=return-type -Werror=trigraphs -Werror=pointer-arith -Werror=missing-prototypes -Werror=missing-declarations -Werror=comment -Werror=vla conftest.c >&5
  6138. configure:8818: $? = 0
  6139. configure:8819: result: yes
  6140. configure:8990: creating ./config.status
  6141. ## ---------------------- ##
  6142. ## Running config.status. ##
  6143. ## ---------------------- ##
  6144. This file was extended by config.status, which was
  6145. generated by GNU Autoconf 2.69. Invocation command line was
  6146. CONFIG_FILES =
  6147. CONFIG_HEADERS =
  6148. CONFIG_LINKS =
  6149. CONFIG_COMMANDS =
  6150. $ ./config.status
  6151. on do3
  6152. config.status:927: creating Makefile
  6153. config.status:927: creating doc/Makefile
  6154. config.status:927: creating config/config.h
  6155. config.status:1116: executing default-1 commands
  6156. ## ---------------- ##
  6157. ## Cache variables. ##
  6158. ## ---------------- ##
  6159. ac_cv_c_bigendian=no
  6160. ac_cv_c_compiler_gnu=yes
  6161. ac_cv_c_const=yes
  6162. ac_cv_c_inline=inline
  6163. ac_cv_c_restrict=__restrict
  6164. ac_cv_env_CC_set=
  6165. ac_cv_env_CC_value=
  6166. ac_cv_env_CFLAGS_set=
  6167. ac_cv_env_CFLAGS_value=
  6168. ac_cv_env_CPPFLAGS_set=
  6169. ac_cv_env_CPPFLAGS_value=
  6170. ac_cv_env_CPP_set=
  6171. ac_cv_env_CPP_value=
  6172. ac_cv_env_LDFLAGS_set=
  6173. ac_cv_env_LDFLAGS_value=
  6174. ac_cv_env_LIBS_set=
  6175. ac_cv_env_LIBS_value=
  6176. ac_cv_env_build_alias_set=
  6177. ac_cv_env_build_alias_value=
  6178. ac_cv_env_host_alias_set=
  6179. ac_cv_env_host_alias_value=
  6180. ac_cv_env_target_alias_set=
  6181. ac_cv_env_target_alias_value=
  6182. ac_cv_func__access=no
  6183. ac_cv_func__chsize=no
  6184. ac_cv_func__chsize_s=no
  6185. ac_cv_func__filelengthi64=no
  6186. ac_cv_func__fileno=no
  6187. ac_cv_func__fseeki64=no
  6188. ac_cv_func__fstati64=no
  6189. ac_cv_func__fullpath=no
  6190. ac_cv_func__snprintf=no
  6191. ac_cv_func__stati64=no
  6192. ac_cv_func__vsnprintf=no
  6193. ac_cv_func_access=yes
  6194. ac_cv_func_canonicalize_file_name=yes
  6195. ac_cv_func_faccessat=yes
  6196. ac_cv_func_fileno=yes
  6197. ac_cv_func_fstat=yes
  6198. ac_cv_func_ftruncate=yes
  6199. ac_cv_func_getgid=yes
  6200. ac_cv_func_getpagesize=yes
  6201. ac_cv_func_getuid=yes
  6202. ac_cv_func_mmap_fixed_mapped=yes
  6203. ac_cv_func_pathconf=yes
  6204. ac_cv_func_realpath=yes
  6205. ac_cv_func_snprintf=yes
  6206. ac_cv_func_stat=yes
  6207. ac_cv_func_strcasecmp=yes
  6208. ac_cv_func_stricmp=no
  6209. ac_cv_func_strlcpy=no
  6210. ac_cv_func_strncasecmp=yes
  6211. ac_cv_func_strnicmp=no
  6212. ac_cv_func_strnlen=yes
  6213. ac_cv_func_strrchrnul=no
  6214. ac_cv_func_strsep=yes
  6215. ac_cv_func_sysconf=yes
  6216. ac_cv_func_vsnprintf=yes
  6217. ac_cv_have_decl_strcasecmp=yes
  6218. ac_cv_have_decl_stricmp=no
  6219. ac_cv_have_decl_strlcpy=no
  6220. ac_cv_have_decl_strncasecmp=yes
  6221. ac_cv_have_decl_strnicmp=no
  6222. ac_cv_have_decl_strnlen=yes
  6223. ac_cv_have_decl_strrchrnul=no
  6224. ac_cv_have_decl_strsep=yes
  6225. ac_cv_header_endian_h=yes
  6226. ac_cv_header_fcntl_h=yes
  6227. ac_cv_header_intrin_h=no
  6228. ac_cv_header_inttypes_h=yes
  6229. ac_cv_header_io_h=no
  6230. ac_cv_header_machine_endian_h=no
  6231. ac_cv_header_memory_h=yes
  6232. ac_cv_header_minix_config_h=no
  6233. ac_cv_header_stdbool_h=yes
  6234. ac_cv_header_stdc=yes
  6235. ac_cv_header_stdint_h=yes
  6236. ac_cv_header_stdlib_h=yes
  6237. ac_cv_header_stdnoreturn_h=yes
  6238. ac_cv_header_string_h=yes
  6239. ac_cv_header_strings_h=yes
  6240. ac_cv_header_sys_endian_h=no
  6241. ac_cv_header_sys_mman_h=yes
  6242. ac_cv_header_sys_param_h=yes
  6243. ac_cv_header_sys_stat_h=yes
  6244. ac_cv_header_sys_types_h=yes
  6245. ac_cv_header_unistd_h=yes
  6246. ac_cv_objext=o
  6247. ac_cv_path_EGREP='/bin/grep -E'
  6248. ac_cv_path_GREP=/bin/grep
  6249. ac_cv_path_ac_prefix_program=/usr/bin/nasm
  6250. ac_cv_path_install='/usr/bin/install -c'
  6251. ac_cv_prog_CPP='gcc -E'
  6252. ac_cv_prog_ac_ct_AR=ar
  6253. ac_cv_prog_ac_ct_CC=gcc
  6254. ac_cv_prog_ac_ct_RANLIB=ranlib
  6255. ac_cv_prog_ac_ct_STRIP=strip
  6256. ac_cv_prog_cc_c89=
  6257. ac_cv_prog_cc_c99=
  6258. ac_cv_prog_cc_g=yes
  6259. ac_cv_prog_cc_stdc=
  6260. ac_cv_prog_make_make_set=yes
  6261. ac_cv_safe_to_define___extensions__=yes
  6262. ac_cv_sys_file_offset_bits=no
  6263. ac_cv_sys_largefile_CC=no
  6264. ac_cv_sys_largefile_source=no
  6265. ac_cv_type__Bool=yes
  6266. ac_cv_type_size_t=yes
  6267. ac_cv_type_struct__stati64=no
  6268. ac_cv_type_struct_stat=yes
  6269. ac_cv_type_uintptr_t=yes
  6270. ## ----------------- ##
  6271. ## Output variables. ##
  6272. ## ----------------- ##
  6273. AR='ar'
  6274. ASCIIDOC='false'
  6275. CC='gcc'
  6276. CC_AR=''
  6277. CC_RANLIB=''
  6278. CFLAGS='-g -O3 -fwrapv -U__STRICT_ANSI__ -fno-common -Werror=attributes -fvisibility=hidden -W -Wall -pedantic -Wc90-c99-compat -Wno-long-long -Wno-shift-negative-value -Werror=implicit -Werror=missing-braces -Werror=return-type -Werror=trigraphs -Werror=pointer-arith -Werror=missing-prototypes -Werror=missing-declarations -Werror=comment -Werror=vla'
  6279. CPP='gcc -E'
  6280. CPPFLAGS=''
  6281. DEFS='-DHAVE_CONFIG_H'
  6282. ECHO_C=''
  6283. ECHO_N='-n'
  6284. ECHO_T=''
  6285. EGREP='/bin/grep -E'
  6286. EXEEXT=''
  6287. GREP='/bin/grep'
  6288. INSTALL_DATA='${INSTALL} -m 644'
  6289. INSTALL_PROGRAM='${INSTALL}'
  6290. INSTALL_SCRIPT='${INSTALL}'
  6291. LDFLAGS=' -fvisibility=hidden'
  6292. LIBEXT='a'
  6293. LIBOBJS=''
  6294. LIBS=''
  6295. LN_S='ln -s'
  6296. LTLIBOBJS=''
  6297. NROFF='false'
  6298. OBJEXT='o'
  6299. PACKAGE_BUGREPORT=''
  6300. PACKAGE_NAME=''
  6301. PACKAGE_STRING=''
  6302. PACKAGE_TARNAME=''
  6303. PACKAGE_URL=''
  6304. PACKAGE_VERSION=''
  6305. PATH_SEPARATOR=':'
  6306. PDFOPT=''
  6307. RANLIB='ranlib'
  6308. SET_MAKE=''
  6309. SHELL='/bin/bash'
  6310. STRIP='strip'
  6311. XMLTO='false'
  6312. ac_ct_CC='gcc'
  6313. ac_prefix_program='/usr/bin/nasm'
  6314. bindir='${exec_prefix}/bin'
  6315. build_alias=''
  6316. datadir='${datarootdir}'
  6317. datarootdir='${prefix}/share'
  6318. docdir='${datarootdir}/doc/${PACKAGE}'
  6319. dvidir='${docdir}'
  6320. exec_prefix='${prefix}'
  6321. host_alias=''
  6322. htmldir='${docdir}'
  6323. includedir='${prefix}/include'
  6324. infodir='${datarootdir}/info'
  6325. libdir='${exec_prefix}/lib'
  6326. libexecdir='${exec_prefix}/libexec'
  6327. localedir='${datarootdir}/locale'
  6328. localstatedir='${prefix}/var'
  6329. mandir='${datarootdir}/man'
  6330. oldincludedir='/usr/include'
  6331. pdfdir='${docdir}'
  6332. prefix='/usr'
  6333. program_transform_name='s,x,x,'
  6334. psdir='${docdir}'
  6335. sbindir='${exec_prefix}/sbin'
  6336. sharedstatedir='${prefix}/com'
  6337. sysconfdir='${prefix}/etc'
  6338. target_alias=''
  6339. ## ----------- ##
  6340. ## confdefs.h. ##
  6341. ## ----------- ##
  6342. /* confdefs.h */
  6343. #define PACKAGE_NAME ""
  6344. #define PACKAGE_TARNAME ""
  6345. #define PACKAGE_VERSION ""
  6346. #define PACKAGE_STRING ""
  6347. #define PACKAGE_BUGREPORT ""
  6348. #define PACKAGE_URL ""
  6349. #define STDC_HEADERS 1
  6350. #define HAVE_SYS_TYPES_H 1
  6351. #define HAVE_SYS_STAT_H 1
  6352. #define HAVE_STDLIB_H 1
  6353. #define HAVE_STRING_H 1
  6354. #define HAVE_MEMORY_H 1
  6355. #define HAVE_STRINGS_H 1
  6356. #define HAVE_INTTYPES_H 1
  6357. #define HAVE_STDINT_H 1
  6358. #define HAVE_UNISTD_H 1
  6359. #define __EXTENSIONS__ 1
  6360. #define _ALL_SOURCE 1
  6361. #define _GNU_SOURCE 1
  6362. #define _POSIX_PTHREAD_SEMANTICS 1
  6363. #define _TANDEM_SOURCE 1
  6364. #define restrict __restrict
  6365. #define WORDS_LITTLEENDIAN 1
  6366. #define CFLAG_FWRAPV 1
  6367. #define CFLAG_U_STRICT_ANSI 1
  6368. #define CFLAG_FNO_COMMON 1
  6369. #define STDC_HEADERS 1
  6370. #define HAVE_INTTYPES_H 1
  6371. #define HAVE_STRINGS_H 1
  6372. #define HAVE__BOOL 1
  6373. #define HAVE_STDBOOL_H 1
  6374. #define HAVE_STDNORETURN_H 1
  6375. #define HAVE_FCNTL_H 1
  6376. #define HAVE_UNISTD_H 1
  6377. #define HAVE_SYS_MMAN_H 1
  6378. #define HAVE_SYS_TYPES_H 1
  6379. #define HAVE_SYS_STAT_H 1
  6380. #define HAVE_STRCASECMP 1
  6381. #define HAVE_STRNCASECMP 1
  6382. #define HAVE_STRSEP 1
  6383. #define HAVE_STRNLEN 1
  6384. #define HAVE_GETUID 1
  6385. #define HAVE_GETGID 1
  6386. #define HAVE_REALPATH 1
  6387. #define HAVE_CANONICALIZE_FILE_NAME 1
  6388. #define HAVE_PATHCONF 1
  6389. #define HAVE_FSEEKO 1
  6390. #define HAVE_FTRUNCATE 1
  6391. #define HAVE_FILENO 1
  6392. #define HAVE_STDLIB_H 1
  6393. #define HAVE_UNISTD_H 1
  6394. #define HAVE_SYS_PARAM_H 1
  6395. #define HAVE_GETPAGESIZE 1
  6396. #define HAVE_MMAP 1
  6397. #define HAVE_GETPAGESIZE 1
  6398. #define HAVE_SYSCONF 1
  6399. #define HAVE_ACCESS 1
  6400. #define HAVE_FACCESSAT 1
  6401. #define HAVE___BUILTIN_EXPECT 1
  6402. #define HAVE___BUILTIN_CLZ 1
  6403. #define HAVE___BUILTIN_CLZL 1
  6404. #define HAVE___BUILTIN_CLZLL 1
  6405. #define HAVE_VSNPRINTF 1
  6406. #define HAVE_SNPRINTF 1
  6407. #define HAVE_STRUCT_STAT 1
  6408. #define HAVE_STAT 1
  6409. #define HAVE_FSTAT 1
  6410. #define HAVE_DECL_STRCASECMP 1
  6411. #define HAVE_DECL_STRICMP 0
  6412. #define HAVE_DECL_STRNCASECMP 1
  6413. #define HAVE_DECL_STRNICMP 0
  6414. #define HAVE_DECL_STRSEP 1
  6415. #define HAVE_DECL_STRLCPY 0
  6416. #define HAVE_DECL_STRNLEN 1
  6417. #define HAVE_DECL_STRRCHRNUL 0
  6418. #define HAVE_UINTPTR_T 1
  6419. #define HAVE_ENDIAN_H 1
  6420. #define HAVE_HTOLE16 1
  6421. #define HAVE_HTOLE32 1
  6422. #define HAVE_HTOLE64 1
  6423. #define HAVE___BSWAP_16 1
  6424. #define HAVE___BSWAP_32 1
  6425. #define HAVE___BSWAP_64 1
  6426. #define HAVE___BUILTIN_BSWAP16 1
  6427. #define HAVE___BUILTIN_BSWAP32 1
  6428. #define HAVE___BUILTIN_BSWAP64 1
  6429. #define HAVE___BUILTIN_CONSTANT_P 1
  6430. #define CFLAG_WERROR_ATTRIBUTES 1
  6431. #define HAVE_FUNC_ATTRIBUTE_NORETURN 1
  6432. #define HAVE_FUNC_ATTRIBUTE_RETURNS_NONNULL 1
  6433. #define HAVE_FUNC_ATTRIBUTE_MALLOC 1
  6434. #define HAVE_FUNC_ATTRIBUTE_ALLOC_SIZE 1
  6435. #define HAVE_FUNC_ATTRIBUTE_SENTINEL 1
  6436. #define HAVE_FUNC_ATTRIBUTE_FORMAT 1
  6437. #define HAVE_FUNC_ATTRIBUTE_CONST 1
  6438. #define HAVE_FUNC_ATTRIBUTE_PURE 1
  6439. #define HAVE_FUNC_ATTRIBUTE_COLD 1
  6440. #define HAVE_FUNC_ATTRIBUTE_ERROR 1
  6441. #define CFLAG_FVISIBILITY_HIDDEN 1
  6442. #define CFLAG_W 1
  6443. #define CFLAG_WALL 1
  6444. #define CFLAG_PEDANTIC 1
  6445. #define CFLAG_WC90_C99_COMPAT 1
  6446. #define CFLAG_WLONG_LONG 1
  6447. #define CFLAG_WSHIFT_NEGATIVE_VALUE 1
  6448. #define CFLAG_WERROR_IMPLICIT 1
  6449. #define CFLAG_WERROR_MISSING_BRACES 1
  6450. #define CFLAG_WERROR_RETURN_TYPE 1
  6451. #define CFLAG_WERROR_TRIGRAPHS 1
  6452. #define CFLAG_WERROR_POINTER_ARITH 1
  6453. #define CFLAG_WERROR_MISSING_PROTOTYPES 1
  6454. #define CFLAG_WERROR_MISSING_DECLARATIONS 1
  6455. #define CFLAG_WERROR_COMMENT 1
  6456. #define CFLAG_WERROR_VLA 1
  6457. #define HAVE_STDC_INLINE 1
  6458. configure: exit 0