aclocal.m4 337 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585
  1. # generated automatically by aclocal 1.12.3 -*- Autoconf -*-
  2. # Copyright (C) 1996-2012 Free Software Foundation, Inc.
  3. # This file is free software; the Free Software Foundation
  4. # gives unlimited permission to copy and/or distribute it,
  5. # with or without modifications, as long as this notice is preserved.
  6. # This program is distributed in the hope that it will be useful,
  7. # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
  8. # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  9. # PARTICULAR PURPOSE.
  10. m4_ifndef([AC_AUTOCONF_VERSION],
  11. [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
  12. m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.69],,
  13. [m4_warning([this file was generated for autoconf 2.69.
  14. You have another version of autoconf. It may work, but is not guaranteed to.
  15. If you have problems, you may need to regenerate the build system entirely.
  16. To do so, use the procedure documented by the package, typically 'autoreconf'.])])
  17. # codeset.m4 serial 4 (gettext-0.18)
  18. dnl Copyright (C) 2000-2002, 2006, 2008-2010 Free Software Foundation, Inc.
  19. dnl This file is free software; the Free Software Foundation
  20. dnl gives unlimited permission to copy and/or distribute it,
  21. dnl with or without modifications, as long as this notice is preserved.
  22. dnl From Bruno Haible.
  23. AC_DEFUN([AM_LANGINFO_CODESET],
  24. [
  25. AC_CACHE_CHECK([for nl_langinfo and CODESET], [am_cv_langinfo_codeset],
  26. [AC_TRY_LINK([#include <langinfo.h>],
  27. [char* cs = nl_langinfo(CODESET); return !cs;],
  28. [am_cv_langinfo_codeset=yes],
  29. [am_cv_langinfo_codeset=no])
  30. ])
  31. if test $am_cv_langinfo_codeset = yes; then
  32. AC_DEFINE([HAVE_LANGINFO_CODESET], [1],
  33. [Define if you have <langinfo.h> and nl_langinfo(CODESET).])
  34. fi
  35. ])
  36. # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*-
  37. #
  38. # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
  39. # 2006, 2007, 2008, 2009, 2010, 2011 Free Software
  40. # Foundation, Inc.
  41. # Written by Gordon Matzigkeit, 1996
  42. #
  43. # This file is free software; the Free Software Foundation gives
  44. # unlimited permission to copy and/or distribute it, with or without
  45. # modifications, as long as this notice is preserved.
  46. m4_define([_LT_COPYING], [dnl
  47. # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
  48. # 2006, 2007, 2008, 2009, 2010, 2011 Free Software
  49. # Foundation, Inc.
  50. # Written by Gordon Matzigkeit, 1996
  51. #
  52. # This file is part of GNU Libtool.
  53. #
  54. # GNU Libtool is free software; you can redistribute it and/or
  55. # modify it under the terms of the GNU General Public License as
  56. # published by the Free Software Foundation; either version 2 of
  57. # the License, or (at your option) any later version.
  58. #
  59. # As a special exception to the GNU General Public License,
  60. # if you distribute this file as part of a program or library that
  61. # is built using GNU Libtool, you may include this file under the
  62. # same distribution terms that you use for the rest of that program.
  63. #
  64. # GNU Libtool is distributed in the hope that it will be useful,
  65. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  66. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  67. # GNU General Public License for more details.
  68. #
  69. # You should have received a copy of the GNU General Public License
  70. # along with GNU Libtool; see the file COPYING. If not, a copy
  71. # can be downloaded from http://www.gnu.org/licenses/gpl.html, or
  72. # obtained by writing to the Free Software Foundation, Inc.,
  73. # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  74. ])
  75. # serial 57 LT_INIT
  76. # LT_PREREQ(VERSION)
  77. # ------------------
  78. # Complain and exit if this libtool version is less that VERSION.
  79. m4_defun([LT_PREREQ],
  80. [m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1,
  81. [m4_default([$3],
  82. [m4_fatal([Libtool version $1 or higher is required],
  83. 63)])],
  84. [$2])])
  85. # _LT_CHECK_BUILDDIR
  86. # ------------------
  87. # Complain if the absolute build directory name contains unusual characters
  88. m4_defun([_LT_CHECK_BUILDDIR],
  89. [case `pwd` in
  90. *\ * | *\ *)
  91. AC_MSG_WARN([Libtool does not cope well with whitespace in `pwd`]) ;;
  92. esac
  93. ])
  94. # LT_INIT([OPTIONS])
  95. # ------------------
  96. AC_DEFUN([LT_INIT],
  97. [AC_PREREQ([2.58])dnl We use AC_INCLUDES_DEFAULT
  98. AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl
  99. AC_BEFORE([$0], [LT_LANG])dnl
  100. AC_BEFORE([$0], [LT_OUTPUT])dnl
  101. AC_BEFORE([$0], [LTDL_INIT])dnl
  102. m4_require([_LT_CHECK_BUILDDIR])dnl
  103. dnl Autoconf doesn't catch unexpanded LT_ macros by default:
  104. m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl
  105. m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl
  106. dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4
  107. dnl unless we require an AC_DEFUNed macro:
  108. AC_REQUIRE([LTOPTIONS_VERSION])dnl
  109. AC_REQUIRE([LTSUGAR_VERSION])dnl
  110. AC_REQUIRE([LTVERSION_VERSION])dnl
  111. AC_REQUIRE([LTOBSOLETE_VERSION])dnl
  112. m4_require([_LT_PROG_LTMAIN])dnl
  113. _LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}])
  114. dnl Parse OPTIONS
  115. _LT_SET_OPTIONS([$0], [$1])
  116. # This can be used to rebuild libtool when needed
  117. LIBTOOL_DEPS="$ltmain"
  118. # Always use our own libtool.
  119. LIBTOOL='$(SHELL) $(top_builddir)/libtool'
  120. AC_SUBST(LIBTOOL)dnl
  121. _LT_SETUP
  122. # Only expand once:
  123. m4_define([LT_INIT])
  124. ])# LT_INIT
  125. # Old names:
  126. AU_ALIAS([AC_PROG_LIBTOOL], [LT_INIT])
  127. AU_ALIAS([AM_PROG_LIBTOOL], [LT_INIT])
  128. dnl aclocal-1.4 backwards compatibility:
  129. dnl AC_DEFUN([AC_PROG_LIBTOOL], [])
  130. dnl AC_DEFUN([AM_PROG_LIBTOOL], [])
  131. # _LT_CC_BASENAME(CC)
  132. # -------------------
  133. # Calculate cc_basename. Skip known compiler wrappers and cross-prefix.
  134. m4_defun([_LT_CC_BASENAME],
  135. [for cc_temp in $1""; do
  136. case $cc_temp in
  137. compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;;
  138. distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;;
  139. \-*) ;;
  140. *) break;;
  141. esac
  142. done
  143. cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"`
  144. ])
  145. # _LT_FILEUTILS_DEFAULTS
  146. # ----------------------
  147. # It is okay to use these file commands and assume they have been set
  148. # sensibly after `m4_require([_LT_FILEUTILS_DEFAULTS])'.
  149. m4_defun([_LT_FILEUTILS_DEFAULTS],
  150. [: ${CP="cp -f"}
  151. : ${MV="mv -f"}
  152. : ${RM="rm -f"}
  153. ])# _LT_FILEUTILS_DEFAULTS
  154. # _LT_SETUP
  155. # ---------
  156. m4_defun([_LT_SETUP],
  157. [AC_REQUIRE([AC_CANONICAL_HOST])dnl
  158. AC_REQUIRE([AC_CANONICAL_BUILD])dnl
  159. AC_REQUIRE([_LT_PREPARE_SED_QUOTE_VARS])dnl
  160. AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl
  161. _LT_DECL([], [PATH_SEPARATOR], [1], [The PATH separator for the build system])dnl
  162. dnl
  163. _LT_DECL([], [host_alias], [0], [The host system])dnl
  164. _LT_DECL([], [host], [0])dnl
  165. _LT_DECL([], [host_os], [0])dnl
  166. dnl
  167. _LT_DECL([], [build_alias], [0], [The build system])dnl
  168. _LT_DECL([], [build], [0])dnl
  169. _LT_DECL([], [build_os], [0])dnl
  170. dnl
  171. AC_REQUIRE([AC_PROG_CC])dnl
  172. AC_REQUIRE([LT_PATH_LD])dnl
  173. AC_REQUIRE([LT_PATH_NM])dnl
  174. dnl
  175. AC_REQUIRE([AC_PROG_LN_S])dnl
  176. test -z "$LN_S" && LN_S="ln -s"
  177. _LT_DECL([], [LN_S], [1], [Whether we need soft or hard links])dnl
  178. dnl
  179. AC_REQUIRE([LT_CMD_MAX_LEN])dnl
  180. _LT_DECL([objext], [ac_objext], [0], [Object file suffix (normally "o")])dnl
  181. _LT_DECL([], [exeext], [0], [Executable file suffix (normally "")])dnl
  182. dnl
  183. m4_require([_LT_FILEUTILS_DEFAULTS])dnl
  184. m4_require([_LT_CHECK_SHELL_FEATURES])dnl
  185. m4_require([_LT_PATH_CONVERSION_FUNCTIONS])dnl
  186. m4_require([_LT_CMD_RELOAD])dnl
  187. m4_require([_LT_CHECK_MAGIC_METHOD])dnl
  188. m4_require([_LT_CHECK_SHAREDLIB_FROM_LINKLIB])dnl
  189. m4_require([_LT_CMD_OLD_ARCHIVE])dnl
  190. m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl
  191. m4_require([_LT_WITH_SYSROOT])dnl
  192. _LT_CONFIG_LIBTOOL_INIT([
  193. # See if we are running on zsh, and set the options which allow our
  194. # commands through without removal of \ escapes INIT.
  195. if test -n "\${ZSH_VERSION+set}" ; then
  196. setopt NO_GLOB_SUBST
  197. fi
  198. ])
  199. if test -n "${ZSH_VERSION+set}" ; then
  200. setopt NO_GLOB_SUBST
  201. fi
  202. _LT_CHECK_OBJDIR
  203. m4_require([_LT_TAG_COMPILER])dnl
  204. case $host_os in
  205. aix3*)
  206. # AIX sometimes has problems with the GCC collect2 program. For some
  207. # reason, if we set the COLLECT_NAMES environment variable, the problems
  208. # vanish in a puff of smoke.
  209. if test "X${COLLECT_NAMES+set}" != Xset; then
  210. COLLECT_NAMES=
  211. export COLLECT_NAMES
  212. fi
  213. ;;
  214. esac
  215. # Global variables:
  216. ofile=libtool
  217. can_build_shared=yes
  218. # All known linkers require a `.a' archive for static linking (except MSVC,
  219. # which needs '.lib').
  220. libext=a
  221. with_gnu_ld="$lt_cv_prog_gnu_ld"
  222. old_CC="$CC"
  223. old_CFLAGS="$CFLAGS"
  224. # Set sane defaults for various variables
  225. test -z "$CC" && CC=cc
  226. test -z "$LTCC" && LTCC=$CC
  227. test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS
  228. test -z "$LD" && LD=ld
  229. test -z "$ac_objext" && ac_objext=o
  230. _LT_CC_BASENAME([$compiler])
  231. # Only perform the check for file, if the check method requires it
  232. test -z "$MAGIC_CMD" && MAGIC_CMD=file
  233. case $deplibs_check_method in
  234. file_magic*)
  235. if test "$file_magic_cmd" = '$MAGIC_CMD'; then
  236. _LT_PATH_MAGIC
  237. fi
  238. ;;
  239. esac
  240. # Use C for the default configuration in the libtool script
  241. LT_SUPPORTED_TAG([CC])
  242. _LT_LANG_C_CONFIG
  243. _LT_LANG_DEFAULT_CONFIG
  244. _LT_CONFIG_COMMANDS
  245. ])# _LT_SETUP
  246. # _LT_PREPARE_SED_QUOTE_VARS
  247. # --------------------------
  248. # Define a few sed substitution that help us do robust quoting.
  249. m4_defun([_LT_PREPARE_SED_QUOTE_VARS],
  250. [# Backslashify metacharacters that are still active within
  251. # double-quoted strings.
  252. sed_quote_subst='s/\([["`$\\]]\)/\\\1/g'
  253. # Same as above, but do not quote variable references.
  254. double_quote_subst='s/\([["`\\]]\)/\\\1/g'
  255. # Sed substitution to delay expansion of an escaped shell variable in a
  256. # double_quote_subst'ed string.
  257. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g'
  258. # Sed substitution to delay expansion of an escaped single quote.
  259. delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g'
  260. # Sed substitution to avoid accidental globbing in evaled expressions
  261. no_glob_subst='s/\*/\\\*/g'
  262. ])
  263. # _LT_PROG_LTMAIN
  264. # ---------------
  265. # Note that this code is called both from `configure', and `config.status'
  266. # now that we use AC_CONFIG_COMMANDS to generate libtool. Notably,
  267. # `config.status' has no value for ac_aux_dir unless we are using Automake,
  268. # so we pass a copy along to make sure it has a sensible value anyway.
  269. m4_defun([_LT_PROG_LTMAIN],
  270. [m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([ltmain.sh])])dnl
  271. _LT_CONFIG_LIBTOOL_INIT([ac_aux_dir='$ac_aux_dir'])
  272. ltmain="$ac_aux_dir/ltmain.sh"
  273. ])# _LT_PROG_LTMAIN
  274. # So that we can recreate a full libtool script including additional
  275. # tags, we accumulate the chunks of code to send to AC_CONFIG_COMMANDS
  276. # in macros and then make a single call at the end using the `libtool'
  277. # label.
  278. # _LT_CONFIG_LIBTOOL_INIT([INIT-COMMANDS])
  279. # ----------------------------------------
  280. # Register INIT-COMMANDS to be passed to AC_CONFIG_COMMANDS later.
  281. m4_define([_LT_CONFIG_LIBTOOL_INIT],
  282. [m4_ifval([$1],
  283. [m4_append([_LT_OUTPUT_LIBTOOL_INIT],
  284. [$1
  285. ])])])
  286. # Initialize.
  287. m4_define([_LT_OUTPUT_LIBTOOL_INIT])
  288. # _LT_CONFIG_LIBTOOL([COMMANDS])
  289. # ------------------------------
  290. # Register COMMANDS to be passed to AC_CONFIG_COMMANDS later.
  291. m4_define([_LT_CONFIG_LIBTOOL],
  292. [m4_ifval([$1],
  293. [m4_append([_LT_OUTPUT_LIBTOOL_COMMANDS],
  294. [$1
  295. ])])])
  296. # Initialize.
  297. m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS])
  298. # _LT_CONFIG_SAVE_COMMANDS([COMMANDS], [INIT_COMMANDS])
  299. # -----------------------------------------------------
  300. m4_defun([_LT_CONFIG_SAVE_COMMANDS],
  301. [_LT_CONFIG_LIBTOOL([$1])
  302. _LT_CONFIG_LIBTOOL_INIT([$2])
  303. ])
  304. # _LT_FORMAT_COMMENT([COMMENT])
  305. # -----------------------------
  306. # Add leading comment marks to the start of each line, and a trailing
  307. # full-stop to the whole comment if one is not present already.
  308. m4_define([_LT_FORMAT_COMMENT],
  309. [m4_ifval([$1], [
  310. m4_bpatsubst([m4_bpatsubst([$1], [^ *], [# ])],
  311. [['`$\]], [\\\&])]m4_bmatch([$1], [[!?.]$], [], [.])
  312. )])
  313. # _LT_DECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION], [IS-TAGGED?])
  314. # -------------------------------------------------------------------
  315. # CONFIGNAME is the name given to the value in the libtool script.
  316. # VARNAME is the (base) name used in the configure script.
  317. # VALUE may be 0, 1 or 2 for a computed quote escaped value based on
  318. # VARNAME. Any other value will be used directly.
  319. m4_define([_LT_DECL],
  320. [lt_if_append_uniq([lt_decl_varnames], [$2], [, ],
  321. [lt_dict_add_subkey([lt_decl_dict], [$2], [libtool_name],
  322. [m4_ifval([$1], [$1], [$2])])
  323. lt_dict_add_subkey([lt_decl_dict], [$2], [value], [$3])
  324. m4_ifval([$4],
  325. [lt_dict_add_subkey([lt_decl_dict], [$2], [description], [$4])])
  326. lt_dict_add_subkey([lt_decl_dict], [$2],
  327. [tagged?], [m4_ifval([$5], [yes], [no])])])
  328. ])
  329. # _LT_TAGDECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION])
  330. # --------------------------------------------------------
  331. m4_define([_LT_TAGDECL], [_LT_DECL([$1], [$2], [$3], [$4], [yes])])
  332. # lt_decl_tag_varnames([SEPARATOR], [VARNAME1...])
  333. # ------------------------------------------------
  334. m4_define([lt_decl_tag_varnames],
  335. [_lt_decl_filter([tagged?], [yes], $@)])
  336. # _lt_decl_filter(SUBKEY, VALUE, [SEPARATOR], [VARNAME1..])
  337. # ---------------------------------------------------------
  338. m4_define([_lt_decl_filter],
  339. [m4_case([$#],
  340. [0], [m4_fatal([$0: too few arguments: $#])],
  341. [1], [m4_fatal([$0: too few arguments: $#: $1])],
  342. [2], [lt_dict_filter([lt_decl_dict], [$1], [$2], [], lt_decl_varnames)],
  343. [3], [lt_dict_filter([lt_decl_dict], [$1], [$2], [$3], lt_decl_varnames)],
  344. [lt_dict_filter([lt_decl_dict], $@)])[]dnl
  345. ])
  346. # lt_decl_quote_varnames([SEPARATOR], [VARNAME1...])
  347. # --------------------------------------------------
  348. m4_define([lt_decl_quote_varnames],
  349. [_lt_decl_filter([value], [1], $@)])
  350. # lt_decl_dquote_varnames([SEPARATOR], [VARNAME1...])
  351. # ---------------------------------------------------
  352. m4_define([lt_decl_dquote_varnames],
  353. [_lt_decl_filter([value], [2], $@)])
  354. # lt_decl_varnames_tagged([SEPARATOR], [VARNAME1...])
  355. # ---------------------------------------------------
  356. m4_define([lt_decl_varnames_tagged],
  357. [m4_assert([$# <= 2])dnl
  358. _$0(m4_quote(m4_default([$1], [[, ]])),
  359. m4_ifval([$2], [[$2]], [m4_dquote(lt_decl_tag_varnames)]),
  360. m4_split(m4_normalize(m4_quote(_LT_TAGS)), [ ]))])
  361. m4_define([_lt_decl_varnames_tagged],
  362. [m4_ifval([$3], [lt_combine([$1], [$2], [_], $3)])])
  363. # lt_decl_all_varnames([SEPARATOR], [VARNAME1...])
  364. # ------------------------------------------------
  365. m4_define([lt_decl_all_varnames],
  366. [_$0(m4_quote(m4_default([$1], [[, ]])),
  367. m4_if([$2], [],
  368. m4_quote(lt_decl_varnames),
  369. m4_quote(m4_shift($@))))[]dnl
  370. ])
  371. m4_define([_lt_decl_all_varnames],
  372. [lt_join($@, lt_decl_varnames_tagged([$1],
  373. lt_decl_tag_varnames([[, ]], m4_shift($@))))dnl
  374. ])
  375. # _LT_CONFIG_STATUS_DECLARE([VARNAME])
  376. # ------------------------------------
  377. # Quote a variable value, and forward it to `config.status' so that its
  378. # declaration there will have the same value as in `configure'. VARNAME
  379. # must have a single quote delimited value for this to work.
  380. m4_define([_LT_CONFIG_STATUS_DECLARE],
  381. [$1='`$ECHO "$][$1" | $SED "$delay_single_quote_subst"`'])
  382. # _LT_CONFIG_STATUS_DECLARATIONS
  383. # ------------------------------
  384. # We delimit libtool config variables with single quotes, so when
  385. # we write them to config.status, we have to be sure to quote all
  386. # embedded single quotes properly. In configure, this macro expands
  387. # each variable declared with _LT_DECL (and _LT_TAGDECL) into:
  388. #
  389. # <var>='`$ECHO "$<var>" | $SED "$delay_single_quote_subst"`'
  390. m4_defun([_LT_CONFIG_STATUS_DECLARATIONS],
  391. [m4_foreach([_lt_var], m4_quote(lt_decl_all_varnames),
  392. [m4_n([_LT_CONFIG_STATUS_DECLARE(_lt_var)])])])
  393. # _LT_LIBTOOL_TAGS
  394. # ----------------
  395. # Output comment and list of tags supported by the script
  396. m4_defun([_LT_LIBTOOL_TAGS],
  397. [_LT_FORMAT_COMMENT([The names of the tagged configurations supported by this script])dnl
  398. available_tags="_LT_TAGS"dnl
  399. ])
  400. # _LT_LIBTOOL_DECLARE(VARNAME, [TAG])
  401. # -----------------------------------
  402. # Extract the dictionary values for VARNAME (optionally with TAG) and
  403. # expand to a commented shell variable setting:
  404. #
  405. # # Some comment about what VAR is for.
  406. # visible_name=$lt_internal_name
  407. m4_define([_LT_LIBTOOL_DECLARE],
  408. [_LT_FORMAT_COMMENT(m4_quote(lt_dict_fetch([lt_decl_dict], [$1],
  409. [description])))[]dnl
  410. m4_pushdef([_libtool_name],
  411. m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [libtool_name])))[]dnl
  412. m4_case(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [value])),
  413. [0], [_libtool_name=[$]$1],
  414. [1], [_libtool_name=$lt_[]$1],
  415. [2], [_libtool_name=$lt_[]$1],
  416. [_libtool_name=lt_dict_fetch([lt_decl_dict], [$1], [value])])[]dnl
  417. m4_ifval([$2], [_$2])[]m4_popdef([_libtool_name])[]dnl
  418. ])
  419. # _LT_LIBTOOL_CONFIG_VARS
  420. # -----------------------
  421. # Produce commented declarations of non-tagged libtool config variables
  422. # suitable for insertion in the LIBTOOL CONFIG section of the `libtool'
  423. # script. Tagged libtool config variables (even for the LIBTOOL CONFIG
  424. # section) are produced by _LT_LIBTOOL_TAG_VARS.
  425. m4_defun([_LT_LIBTOOL_CONFIG_VARS],
  426. [m4_foreach([_lt_var],
  427. m4_quote(_lt_decl_filter([tagged?], [no], [], lt_decl_varnames)),
  428. [m4_n([_LT_LIBTOOL_DECLARE(_lt_var)])])])
  429. # _LT_LIBTOOL_TAG_VARS(TAG)
  430. # -------------------------
  431. m4_define([_LT_LIBTOOL_TAG_VARS],
  432. [m4_foreach([_lt_var], m4_quote(lt_decl_tag_varnames),
  433. [m4_n([_LT_LIBTOOL_DECLARE(_lt_var, [$1])])])])
  434. # _LT_TAGVAR(VARNAME, [TAGNAME])
  435. # ------------------------------
  436. m4_define([_LT_TAGVAR], [m4_ifval([$2], [$1_$2], [$1])])
  437. # _LT_CONFIG_COMMANDS
  438. # -------------------
  439. # Send accumulated output to $CONFIG_STATUS. Thanks to the lists of
  440. # variables for single and double quote escaping we saved from calls
  441. # to _LT_DECL, we can put quote escaped variables declarations
  442. # into `config.status', and then the shell code to quote escape them in
  443. # for loops in `config.status'. Finally, any additional code accumulated
  444. # from calls to _LT_CONFIG_LIBTOOL_INIT is expanded.
  445. m4_defun([_LT_CONFIG_COMMANDS],
  446. [AC_PROVIDE_IFELSE([LT_OUTPUT],
  447. dnl If the libtool generation code has been placed in $CONFIG_LT,
  448. dnl instead of duplicating it all over again into config.status,
  449. dnl then we will have config.status run $CONFIG_LT later, so it
  450. dnl needs to know what name is stored there:
  451. [AC_CONFIG_COMMANDS([libtool],
  452. [$SHELL $CONFIG_LT || AS_EXIT(1)], [CONFIG_LT='$CONFIG_LT'])],
  453. dnl If the libtool generation code is destined for config.status,
  454. dnl expand the accumulated commands and init code now:
  455. [AC_CONFIG_COMMANDS([libtool],
  456. [_LT_OUTPUT_LIBTOOL_COMMANDS], [_LT_OUTPUT_LIBTOOL_COMMANDS_INIT])])
  457. ])#_LT_CONFIG_COMMANDS
  458. # Initialize.
  459. m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS_INIT],
  460. [
  461. # The HP-UX ksh and POSIX shell print the target directory to stdout
  462. # if CDPATH is set.
  463. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
  464. sed_quote_subst='$sed_quote_subst'
  465. double_quote_subst='$double_quote_subst'
  466. delay_variable_subst='$delay_variable_subst'
  467. _LT_CONFIG_STATUS_DECLARATIONS
  468. LTCC='$LTCC'
  469. LTCFLAGS='$LTCFLAGS'
  470. compiler='$compiler_DEFAULT'
  471. # A function that is used when there is no print builtin or printf.
  472. func_fallback_echo ()
  473. {
  474. eval 'cat <<_LTECHO_EOF
  475. \$[]1
  476. _LTECHO_EOF'
  477. }
  478. # Quote evaled strings.
  479. for var in lt_decl_all_varnames([[ \
  480. ]], lt_decl_quote_varnames); do
  481. case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in
  482. *[[\\\\\\\`\\"\\\$]]*)
  483. eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\""
  484. ;;
  485. *)
  486. eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\""
  487. ;;
  488. esac
  489. done
  490. # Double-quote double-evaled strings.
  491. for var in lt_decl_all_varnames([[ \
  492. ]], lt_decl_dquote_varnames); do
  493. case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in
  494. *[[\\\\\\\`\\"\\\$]]*)
  495. eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\""
  496. ;;
  497. *)
  498. eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\""
  499. ;;
  500. esac
  501. done
  502. _LT_OUTPUT_LIBTOOL_INIT
  503. ])
  504. # _LT_GENERATED_FILE_INIT(FILE, [COMMENT])
  505. # ------------------------------------
  506. # Generate a child script FILE with all initialization necessary to
  507. # reuse the environment learned by the parent script, and make the
  508. # file executable. If COMMENT is supplied, it is inserted after the
  509. # `#!' sequence but before initialization text begins. After this
  510. # macro, additional text can be appended to FILE to form the body of
  511. # the child script. The macro ends with non-zero status if the
  512. # file could not be fully written (such as if the disk is full).
  513. m4_ifdef([AS_INIT_GENERATED],
  514. [m4_defun([_LT_GENERATED_FILE_INIT],[AS_INIT_GENERATED($@)])],
  515. [m4_defun([_LT_GENERATED_FILE_INIT],
  516. [m4_require([AS_PREPARE])]dnl
  517. [m4_pushdef([AS_MESSAGE_LOG_FD])]dnl
  518. [lt_write_fail=0
  519. cat >$1 <<_ASEOF || lt_write_fail=1
  520. #! $SHELL
  521. # Generated by $as_me.
  522. $2
  523. SHELL=\${CONFIG_SHELL-$SHELL}
  524. export SHELL
  525. _ASEOF
  526. cat >>$1 <<\_ASEOF || lt_write_fail=1
  527. AS_SHELL_SANITIZE
  528. _AS_PREPARE
  529. exec AS_MESSAGE_FD>&1
  530. _ASEOF
  531. test $lt_write_fail = 0 && chmod +x $1[]dnl
  532. m4_popdef([AS_MESSAGE_LOG_FD])])])# _LT_GENERATED_FILE_INIT
  533. # LT_OUTPUT
  534. # ---------
  535. # This macro allows early generation of the libtool script (before
  536. # AC_OUTPUT is called), incase it is used in configure for compilation
  537. # tests.
  538. AC_DEFUN([LT_OUTPUT],
  539. [: ${CONFIG_LT=./config.lt}
  540. AC_MSG_NOTICE([creating $CONFIG_LT])
  541. _LT_GENERATED_FILE_INIT(["$CONFIG_LT"],
  542. [# Run this file to recreate a libtool stub with the current configuration.])
  543. cat >>"$CONFIG_LT" <<\_LTEOF
  544. lt_cl_silent=false
  545. exec AS_MESSAGE_LOG_FD>>config.log
  546. {
  547. echo
  548. AS_BOX([Running $as_me.])
  549. } >&AS_MESSAGE_LOG_FD
  550. lt_cl_help="\
  551. \`$as_me' creates a local libtool stub from the current configuration,
  552. for use in further configure time tests before the real libtool is
  553. generated.
  554. Usage: $[0] [[OPTIONS]]
  555. -h, --help print this help, then exit
  556. -V, --version print version number, then exit
  557. -q, --quiet do not print progress messages
  558. -d, --debug don't remove temporary files
  559. Report bugs to <bug-libtool@gnu.org>."
  560. lt_cl_version="\
  561. m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl
  562. m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION])
  563. configured by $[0], generated by m4_PACKAGE_STRING.
  564. Copyright (C) 2011 Free Software Foundation, Inc.
  565. This config.lt script is free software; the Free Software Foundation
  566. gives unlimited permision to copy, distribute and modify it."
  567. while test $[#] != 0
  568. do
  569. case $[1] in
  570. --version | --v* | -V )
  571. echo "$lt_cl_version"; exit 0 ;;
  572. --help | --h* | -h )
  573. echo "$lt_cl_help"; exit 0 ;;
  574. --debug | --d* | -d )
  575. debug=: ;;
  576. --quiet | --q* | --silent | --s* | -q )
  577. lt_cl_silent=: ;;
  578. -*) AC_MSG_ERROR([unrecognized option: $[1]
  579. Try \`$[0] --help' for more information.]) ;;
  580. *) AC_MSG_ERROR([unrecognized argument: $[1]
  581. Try \`$[0] --help' for more information.]) ;;
  582. esac
  583. shift
  584. done
  585. if $lt_cl_silent; then
  586. exec AS_MESSAGE_FD>/dev/null
  587. fi
  588. _LTEOF
  589. cat >>"$CONFIG_LT" <<_LTEOF
  590. _LT_OUTPUT_LIBTOOL_COMMANDS_INIT
  591. _LTEOF
  592. cat >>"$CONFIG_LT" <<\_LTEOF
  593. AC_MSG_NOTICE([creating $ofile])
  594. _LT_OUTPUT_LIBTOOL_COMMANDS
  595. AS_EXIT(0)
  596. _LTEOF
  597. chmod +x "$CONFIG_LT"
  598. # configure is writing to config.log, but config.lt does its own redirection,
  599. # appending to config.log, which fails on DOS, as config.log is still kept
  600. # open by configure. Here we exec the FD to /dev/null, effectively closing
  601. # config.log, so it can be properly (re)opened and appended to by config.lt.
  602. lt_cl_success=:
  603. test "$silent" = yes &&
  604. lt_config_lt_args="$lt_config_lt_args --quiet"
  605. exec AS_MESSAGE_LOG_FD>/dev/null
  606. $SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false
  607. exec AS_MESSAGE_LOG_FD>>config.log
  608. $lt_cl_success || AS_EXIT(1)
  609. ])# LT_OUTPUT
  610. # _LT_CONFIG(TAG)
  611. # ---------------
  612. # If TAG is the built-in tag, create an initial libtool script with a
  613. # default configuration from the untagged config vars. Otherwise add code
  614. # to config.status for appending the configuration named by TAG from the
  615. # matching tagged config vars.
  616. m4_defun([_LT_CONFIG],
  617. [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
  618. _LT_CONFIG_SAVE_COMMANDS([
  619. m4_define([_LT_TAG], m4_if([$1], [], [C], [$1]))dnl
  620. m4_if(_LT_TAG, [C], [
  621. # See if we are running on zsh, and set the options which allow our
  622. # commands through without removal of \ escapes.
  623. if test -n "${ZSH_VERSION+set}" ; then
  624. setopt NO_GLOB_SUBST
  625. fi
  626. cfgfile="${ofile}T"
  627. trap "$RM \"$cfgfile\"; exit 1" 1 2 15
  628. $RM "$cfgfile"
  629. cat <<_LT_EOF >> "$cfgfile"
  630. #! $SHELL
  631. # `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services.
  632. # Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION
  633. # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
  634. # NOTE: Changes made to this file will be lost: look at ltmain.sh.
  635. #
  636. _LT_COPYING
  637. _LT_LIBTOOL_TAGS
  638. # ### BEGIN LIBTOOL CONFIG
  639. _LT_LIBTOOL_CONFIG_VARS
  640. _LT_LIBTOOL_TAG_VARS
  641. # ### END LIBTOOL CONFIG
  642. _LT_EOF
  643. case $host_os in
  644. aix3*)
  645. cat <<\_LT_EOF >> "$cfgfile"
  646. # AIX sometimes has problems with the GCC collect2 program. For some
  647. # reason, if we set the COLLECT_NAMES environment variable, the problems
  648. # vanish in a puff of smoke.
  649. if test "X${COLLECT_NAMES+set}" != Xset; then
  650. COLLECT_NAMES=
  651. export COLLECT_NAMES
  652. fi
  653. _LT_EOF
  654. ;;
  655. esac
  656. _LT_PROG_LTMAIN
  657. # We use sed instead of cat because bash on DJGPP gets confused if
  658. # if finds mixed CR/LF and LF-only lines. Since sed operates in
  659. # text mode, it properly converts lines to CR/LF. This bash problem
  660. # is reportedly fixed, but why not run on old versions too?
  661. sed '$q' "$ltmain" >> "$cfgfile" \
  662. || (rm -f "$cfgfile"; exit 1)
  663. _LT_PROG_REPLACE_SHELLFNS
  664. mv -f "$cfgfile" "$ofile" ||
  665. (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile")
  666. chmod +x "$ofile"
  667. ],
  668. [cat <<_LT_EOF >> "$ofile"
  669. dnl Unfortunately we have to use $1 here, since _LT_TAG is not expanded
  670. dnl in a comment (ie after a #).
  671. # ### BEGIN LIBTOOL TAG CONFIG: $1
  672. _LT_LIBTOOL_TAG_VARS(_LT_TAG)
  673. # ### END LIBTOOL TAG CONFIG: $1
  674. _LT_EOF
  675. ])dnl /m4_if
  676. ],
  677. [m4_if([$1], [], [
  678. PACKAGE='$PACKAGE'
  679. VERSION='$VERSION'
  680. TIMESTAMP='$TIMESTAMP'
  681. RM='$RM'
  682. ofile='$ofile'], [])
  683. ])dnl /_LT_CONFIG_SAVE_COMMANDS
  684. ])# _LT_CONFIG
  685. # LT_SUPPORTED_TAG(TAG)
  686. # ---------------------
  687. # Trace this macro to discover what tags are supported by the libtool
  688. # --tag option, using:
  689. # autoconf --trace 'LT_SUPPORTED_TAG:$1'
  690. AC_DEFUN([LT_SUPPORTED_TAG], [])
  691. # C support is built-in for now
  692. m4_define([_LT_LANG_C_enabled], [])
  693. m4_define([_LT_TAGS], [])
  694. # LT_LANG(LANG)
  695. # -------------
  696. # Enable libtool support for the given language if not already enabled.
  697. AC_DEFUN([LT_LANG],
  698. [AC_BEFORE([$0], [LT_OUTPUT])dnl
  699. m4_case([$1],
  700. [C], [_LT_LANG(C)],
  701. [C++], [_LT_LANG(CXX)],
  702. [Go], [_LT_LANG(GO)],
  703. [Java], [_LT_LANG(GCJ)],
  704. [Fortran 77], [_LT_LANG(F77)],
  705. [Fortran], [_LT_LANG(FC)],
  706. [Windows Resource], [_LT_LANG(RC)],
  707. [m4_ifdef([_LT_LANG_]$1[_CONFIG],
  708. [_LT_LANG($1)],
  709. [m4_fatal([$0: unsupported language: "$1"])])])dnl
  710. ])# LT_LANG
  711. # _LT_LANG(LANGNAME)
  712. # ------------------
  713. m4_defun([_LT_LANG],
  714. [m4_ifdef([_LT_LANG_]$1[_enabled], [],
  715. [LT_SUPPORTED_TAG([$1])dnl
  716. m4_append([_LT_TAGS], [$1 ])dnl
  717. m4_define([_LT_LANG_]$1[_enabled], [])dnl
  718. _LT_LANG_$1_CONFIG($1)])dnl
  719. ])# _LT_LANG
  720. m4_ifndef([AC_PROG_GO], [
  721. # NOTE: This macro has been submitted for inclusion into #
  722. # GNU Autoconf as AC_PROG_GO. When it is available in #
  723. # a released version of Autoconf we should remove this #
  724. # macro and use it instead. #
  725. m4_defun([AC_PROG_GO],
  726. [AC_LANG_PUSH(Go)dnl
  727. AC_ARG_VAR([GOC], [Go compiler command])dnl
  728. AC_ARG_VAR([GOFLAGS], [Go compiler flags])dnl
  729. _AC_ARG_VAR_LDFLAGS()dnl
  730. AC_CHECK_TOOL(GOC, gccgo)
  731. if test -z "$GOC"; then
  732. if test -n "$ac_tool_prefix"; then
  733. AC_CHECK_PROG(GOC, [${ac_tool_prefix}gccgo], [${ac_tool_prefix}gccgo])
  734. fi
  735. fi
  736. if test -z "$GOC"; then
  737. AC_CHECK_PROG(GOC, gccgo, gccgo, false)
  738. fi
  739. ])#m4_defun
  740. ])#m4_ifndef
  741. # _LT_LANG_DEFAULT_CONFIG
  742. # -----------------------
  743. m4_defun([_LT_LANG_DEFAULT_CONFIG],
  744. [AC_PROVIDE_IFELSE([AC_PROG_CXX],
  745. [LT_LANG(CXX)],
  746. [m4_define([AC_PROG_CXX], defn([AC_PROG_CXX])[LT_LANG(CXX)])])
  747. AC_PROVIDE_IFELSE([AC_PROG_F77],
  748. [LT_LANG(F77)],
  749. [m4_define([AC_PROG_F77], defn([AC_PROG_F77])[LT_LANG(F77)])])
  750. AC_PROVIDE_IFELSE([AC_PROG_FC],
  751. [LT_LANG(FC)],
  752. [m4_define([AC_PROG_FC], defn([AC_PROG_FC])[LT_LANG(FC)])])
  753. dnl The call to [A][M_PROG_GCJ] is quoted like that to stop aclocal
  754. dnl pulling things in needlessly.
  755. AC_PROVIDE_IFELSE([AC_PROG_GCJ],
  756. [LT_LANG(GCJ)],
  757. [AC_PROVIDE_IFELSE([A][M_PROG_GCJ],
  758. [LT_LANG(GCJ)],
  759. [AC_PROVIDE_IFELSE([LT_PROG_GCJ],
  760. [LT_LANG(GCJ)],
  761. [m4_ifdef([AC_PROG_GCJ],
  762. [m4_define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[LT_LANG(GCJ)])])
  763. m4_ifdef([A][M_PROG_GCJ],
  764. [m4_define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[LT_LANG(GCJ)])])
  765. m4_ifdef([LT_PROG_GCJ],
  766. [m4_define([LT_PROG_GCJ], defn([LT_PROG_GCJ])[LT_LANG(GCJ)])])])])])
  767. AC_PROVIDE_IFELSE([AC_PROG_GO],
  768. [LT_LANG(GO)],
  769. [m4_define([AC_PROG_GO], defn([AC_PROG_GO])[LT_LANG(GO)])])
  770. AC_PROVIDE_IFELSE([LT_PROG_RC],
  771. [LT_LANG(RC)],
  772. [m4_define([LT_PROG_RC], defn([LT_PROG_RC])[LT_LANG(RC)])])
  773. ])# _LT_LANG_DEFAULT_CONFIG
  774. # Obsolete macros:
  775. AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)])
  776. AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)])
  777. AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)])
  778. AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)])
  779. AU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)])
  780. dnl aclocal-1.4 backwards compatibility:
  781. dnl AC_DEFUN([AC_LIBTOOL_CXX], [])
  782. dnl AC_DEFUN([AC_LIBTOOL_F77], [])
  783. dnl AC_DEFUN([AC_LIBTOOL_FC], [])
  784. dnl AC_DEFUN([AC_LIBTOOL_GCJ], [])
  785. dnl AC_DEFUN([AC_LIBTOOL_RC], [])
  786. # _LT_TAG_COMPILER
  787. # ----------------
  788. m4_defun([_LT_TAG_COMPILER],
  789. [AC_REQUIRE([AC_PROG_CC])dnl
  790. _LT_DECL([LTCC], [CC], [1], [A C compiler])dnl
  791. _LT_DECL([LTCFLAGS], [CFLAGS], [1], [LTCC compiler flags])dnl
  792. _LT_TAGDECL([CC], [compiler], [1], [A language specific compiler])dnl
  793. _LT_TAGDECL([with_gcc], [GCC], [0], [Is the compiler the GNU compiler?])dnl
  794. # If no C compiler was specified, use CC.
  795. LTCC=${LTCC-"$CC"}
  796. # If no C compiler flags were specified, use CFLAGS.
  797. LTCFLAGS=${LTCFLAGS-"$CFLAGS"}
  798. # Allow CC to be a program name with arguments.
  799. compiler=$CC
  800. ])# _LT_TAG_COMPILER
  801. # _LT_COMPILER_BOILERPLATE
  802. # ------------------------
  803. # Check for compiler boilerplate output or warnings with
  804. # the simple compiler test code.
  805. m4_defun([_LT_COMPILER_BOILERPLATE],
  806. [m4_require([_LT_DECL_SED])dnl
  807. ac_outfile=conftest.$ac_objext
  808. echo "$lt_simple_compile_test_code" >conftest.$ac_ext
  809. eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err
  810. _lt_compiler_boilerplate=`cat conftest.err`
  811. $RM conftest*
  812. ])# _LT_COMPILER_BOILERPLATE
  813. # _LT_LINKER_BOILERPLATE
  814. # ----------------------
  815. # Check for linker boilerplate output or warnings with
  816. # the simple link test code.
  817. m4_defun([_LT_LINKER_BOILERPLATE],
  818. [m4_require([_LT_DECL_SED])dnl
  819. ac_outfile=conftest.$ac_objext
  820. echo "$lt_simple_link_test_code" >conftest.$ac_ext
  821. eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err
  822. _lt_linker_boilerplate=`cat conftest.err`
  823. $RM -r conftest*
  824. ])# _LT_LINKER_BOILERPLATE
  825. # _LT_REQUIRED_DARWIN_CHECKS
  826. # -------------------------
  827. m4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[
  828. case $host_os in
  829. rhapsody* | darwin*)
  830. AC_CHECK_TOOL([DSYMUTIL], [dsymutil], [:])
  831. AC_CHECK_TOOL([NMEDIT], [nmedit], [:])
  832. AC_CHECK_TOOL([LIPO], [lipo], [:])
  833. AC_CHECK_TOOL([OTOOL], [otool], [:])
  834. AC_CHECK_TOOL([OTOOL64], [otool64], [:])
  835. _LT_DECL([], [DSYMUTIL], [1],
  836. [Tool to manipulate archived DWARF debug symbol files on Mac OS X])
  837. _LT_DECL([], [NMEDIT], [1],
  838. [Tool to change global to local symbols on Mac OS X])
  839. _LT_DECL([], [LIPO], [1],
  840. [Tool to manipulate fat objects and archives on Mac OS X])
  841. _LT_DECL([], [OTOOL], [1],
  842. [ldd/readelf like tool for Mach-O binaries on Mac OS X])
  843. _LT_DECL([], [OTOOL64], [1],
  844. [ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4])
  845. AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod],
  846. [lt_cv_apple_cc_single_mod=no
  847. if test -z "${LT_MULTI_MODULE}"; then
  848. # By default we will add the -single_module flag. You can override
  849. # by either setting the environment variable LT_MULTI_MODULE
  850. # non-empty at configure time, or by adding -multi_module to the
  851. # link flags.
  852. rm -rf libconftest.dylib*
  853. echo "int foo(void){return 1;}" > conftest.c
  854. echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \
  855. -dynamiclib -Wl,-single_module conftest.c" >&AS_MESSAGE_LOG_FD
  856. $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \
  857. -dynamiclib -Wl,-single_module conftest.c 2>conftest.err
  858. _lt_result=$?
  859. # If there is a non-empty error log, and "single_module"
  860. # appears in it, assume the flag caused a linker warning
  861. if test -s conftest.err && $GREP single_module conftest.err; then
  862. cat conftest.err >&AS_MESSAGE_LOG_FD
  863. # Otherwise, if the output was created with a 0 exit code from
  864. # the compiler, it worked.
  865. elif test -f libconftest.dylib && test $_lt_result -eq 0; then
  866. lt_cv_apple_cc_single_mod=yes
  867. else
  868. cat conftest.err >&AS_MESSAGE_LOG_FD
  869. fi
  870. rm -rf libconftest.dylib*
  871. rm -f conftest.*
  872. fi])
  873. AC_CACHE_CHECK([for -exported_symbols_list linker flag],
  874. [lt_cv_ld_exported_symbols_list],
  875. [lt_cv_ld_exported_symbols_list=no
  876. save_LDFLAGS=$LDFLAGS
  877. echo "_main" > conftest.sym
  878. LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym"
  879. AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])],
  880. [lt_cv_ld_exported_symbols_list=yes],
  881. [lt_cv_ld_exported_symbols_list=no])
  882. LDFLAGS="$save_LDFLAGS"
  883. ])
  884. AC_CACHE_CHECK([for -force_load linker flag],[lt_cv_ld_force_load],
  885. [lt_cv_ld_force_load=no
  886. cat > conftest.c << _LT_EOF
  887. int forced_loaded() { return 2;}
  888. _LT_EOF
  889. echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&AS_MESSAGE_LOG_FD
  890. $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&AS_MESSAGE_LOG_FD
  891. echo "$AR cru libconftest.a conftest.o" >&AS_MESSAGE_LOG_FD
  892. $AR cru libconftest.a conftest.o 2>&AS_MESSAGE_LOG_FD
  893. echo "$RANLIB libconftest.a" >&AS_MESSAGE_LOG_FD
  894. $RANLIB libconftest.a 2>&AS_MESSAGE_LOG_FD
  895. cat > conftest.c << _LT_EOF
  896. int main() { return 0;}
  897. _LT_EOF
  898. echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&AS_MESSAGE_LOG_FD
  899. $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err
  900. _lt_result=$?
  901. if test -s conftest.err && $GREP force_load conftest.err; then
  902. cat conftest.err >&AS_MESSAGE_LOG_FD
  903. elif test -f conftest && test $_lt_result -eq 0 && $GREP forced_load conftest >/dev/null 2>&1 ; then
  904. lt_cv_ld_force_load=yes
  905. else
  906. cat conftest.err >&AS_MESSAGE_LOG_FD
  907. fi
  908. rm -f conftest.err libconftest.a conftest conftest.c
  909. rm -rf conftest.dSYM
  910. ])
  911. case $host_os in
  912. rhapsody* | darwin1.[[012]])
  913. _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;;
  914. darwin1.*)
  915. _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;;
  916. darwin*) # darwin 5.x on
  917. # if running on 10.5 or later, the deployment target defaults
  918. # to the OS version, if on x86, and 10.4, the deployment
  919. # target defaults to 10.4. Don't you love it?
  920. case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in
  921. 10.0,*86*-darwin8*|10.0,*-darwin[[91]]*)
  922. _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;;
  923. 10.[[012]]*)
  924. _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;;
  925. 10.*)
  926. _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;;
  927. esac
  928. ;;
  929. esac
  930. if test "$lt_cv_apple_cc_single_mod" = "yes"; then
  931. _lt_dar_single_mod='$single_module'
  932. fi
  933. if test "$lt_cv_ld_exported_symbols_list" = "yes"; then
  934. _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym'
  935. else
  936. _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}'
  937. fi
  938. if test "$DSYMUTIL" != ":" && test "$lt_cv_ld_force_load" = "no"; then
  939. _lt_dsymutil='~$DSYMUTIL $lib || :'
  940. else
  941. _lt_dsymutil=
  942. fi
  943. ;;
  944. esac
  945. ])
  946. # _LT_DARWIN_LINKER_FEATURES([TAG])
  947. # ---------------------------------
  948. # Checks for linker and compiler features on darwin
  949. m4_defun([_LT_DARWIN_LINKER_FEATURES],
  950. [
  951. m4_require([_LT_REQUIRED_DARWIN_CHECKS])
  952. _LT_TAGVAR(archive_cmds_need_lc, $1)=no
  953. _LT_TAGVAR(hardcode_direct, $1)=no
  954. _LT_TAGVAR(hardcode_automatic, $1)=yes
  955. _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
  956. if test "$lt_cv_ld_force_load" = "yes"; then
  957. _LT_TAGVAR(whole_archive_flag_spec, $1)='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`'
  958. m4_case([$1], [F77], [_LT_TAGVAR(compiler_needs_object, $1)=yes],
  959. [FC], [_LT_TAGVAR(compiler_needs_object, $1)=yes])
  960. else
  961. _LT_TAGVAR(whole_archive_flag_spec, $1)=''
  962. fi
  963. _LT_TAGVAR(link_all_deplibs, $1)=yes
  964. _LT_TAGVAR(allow_undefined_flag, $1)="$_lt_dar_allow_undefined"
  965. case $cc_basename in
  966. ifort*) _lt_dar_can_shared=yes ;;
  967. *) _lt_dar_can_shared=$GCC ;;
  968. esac
  969. if test "$_lt_dar_can_shared" = "yes"; then
  970. output_verbose_link_cmd=func_echo_all
  971. _LT_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}"
  972. _LT_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}"
  973. _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}"
  974. _LT_TAGVAR(module_expsym_cmds, $1)="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}"
  975. m4_if([$1], [CXX],
  976. [ if test "$lt_cv_apple_cc_single_mod" != "yes"; then
  977. _LT_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}"
  978. _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}"
  979. fi
  980. ],[])
  981. else
  982. _LT_TAGVAR(ld_shlibs, $1)=no
  983. fi
  984. ])
  985. # _LT_SYS_MODULE_PATH_AIX([TAGNAME])
  986. # ----------------------------------
  987. # Links a minimal program and checks the executable
  988. # for the system default hardcoded library path. In most cases,
  989. # this is /usr/lib:/lib, but when the MPI compilers are used
  990. # the location of the communication and MPI libs are included too.
  991. # If we don't find anything, use the default library path according
  992. # to the aix ld manual.
  993. # Store the results from the different compilers for each TAGNAME.
  994. # Allow to override them for all tags through lt_cv_aix_libpath.
  995. m4_defun([_LT_SYS_MODULE_PATH_AIX],
  996. [m4_require([_LT_DECL_SED])dnl
  997. if test "${lt_cv_aix_libpath+set}" = set; then
  998. aix_libpath=$lt_cv_aix_libpath
  999. else
  1000. AC_CACHE_VAL([_LT_TAGVAR([lt_cv_aix_libpath_], [$1])],
  1001. [AC_LINK_IFELSE([AC_LANG_PROGRAM],[
  1002. lt_aix_libpath_sed='[
  1003. /Import File Strings/,/^$/ {
  1004. /^0/ {
  1005. s/^0 *\([^ ]*\) *$/\1/
  1006. p
  1007. }
  1008. }]'
  1009. _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
  1010. # Check for a 64-bit object if we didn't find anything.
  1011. if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then
  1012. _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
  1013. fi],[])
  1014. if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then
  1015. _LT_TAGVAR([lt_cv_aix_libpath_], [$1])="/usr/lib:/lib"
  1016. fi
  1017. ])
  1018. aix_libpath=$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])
  1019. fi
  1020. ])# _LT_SYS_MODULE_PATH_AIX
  1021. # _LT_SHELL_INIT(ARG)
  1022. # -------------------
  1023. m4_define([_LT_SHELL_INIT],
  1024. [m4_divert_text([M4SH-INIT], [$1
  1025. ])])# _LT_SHELL_INIT
  1026. # _LT_PROG_ECHO_BACKSLASH
  1027. # -----------------------
  1028. # Find how we can fake an echo command that does not interpret backslash.
  1029. # In particular, with Autoconf 2.60 or later we add some code to the start
  1030. # of the generated configure script which will find a shell with a builtin
  1031. # printf (which we can use as an echo command).
  1032. m4_defun([_LT_PROG_ECHO_BACKSLASH],
  1033. [ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
  1034. ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO
  1035. ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO
  1036. AC_MSG_CHECKING([how to print strings])
  1037. # Test print first, because it will be a builtin if present.
  1038. if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \
  1039. test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then
  1040. ECHO='print -r --'
  1041. elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then
  1042. ECHO='printf %s\n'
  1043. else
  1044. # Use this function as a fallback that always works.
  1045. func_fallback_echo ()
  1046. {
  1047. eval 'cat <<_LTECHO_EOF
  1048. $[]1
  1049. _LTECHO_EOF'
  1050. }
  1051. ECHO='func_fallback_echo'
  1052. fi
  1053. # func_echo_all arg...
  1054. # Invoke $ECHO with all args, space-separated.
  1055. func_echo_all ()
  1056. {
  1057. $ECHO "$*"
  1058. }
  1059. case "$ECHO" in
  1060. printf*) AC_MSG_RESULT([printf]) ;;
  1061. print*) AC_MSG_RESULT([print -r]) ;;
  1062. *) AC_MSG_RESULT([cat]) ;;
  1063. esac
  1064. m4_ifdef([_AS_DETECT_SUGGESTED],
  1065. [_AS_DETECT_SUGGESTED([
  1066. test -n "${ZSH_VERSION+set}${BASH_VERSION+set}" || (
  1067. ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
  1068. ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO
  1069. ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO
  1070. PATH=/empty FPATH=/empty; export PATH FPATH
  1071. test "X`printf %s $ECHO`" = "X$ECHO" \
  1072. || test "X`print -r -- $ECHO`" = "X$ECHO" )])])
  1073. _LT_DECL([], [SHELL], [1], [Shell to use when invoking shell scripts])
  1074. _LT_DECL([], [ECHO], [1], [An echo program that protects backslashes])
  1075. ])# _LT_PROG_ECHO_BACKSLASH
  1076. # _LT_WITH_SYSROOT
  1077. # ----------------
  1078. AC_DEFUN([_LT_WITH_SYSROOT],
  1079. [AC_MSG_CHECKING([for sysroot])
  1080. AC_ARG_WITH([sysroot],
  1081. [ --with-sysroot[=DIR] Search for dependent libraries within DIR
  1082. (or the compiler's sysroot if not specified).],
  1083. [], [with_sysroot=no])
  1084. dnl lt_sysroot will always be passed unquoted. We quote it here
  1085. dnl in case the user passed a directory name.
  1086. lt_sysroot=
  1087. case ${with_sysroot} in #(
  1088. yes)
  1089. if test "$GCC" = yes; then
  1090. lt_sysroot=`$CC --print-sysroot 2>/dev/null`
  1091. fi
  1092. ;; #(
  1093. /*)
  1094. lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"`
  1095. ;; #(
  1096. no|'')
  1097. ;; #(
  1098. *)
  1099. AC_MSG_RESULT([${with_sysroot}])
  1100. AC_MSG_ERROR([The sysroot must be an absolute path.])
  1101. ;;
  1102. esac
  1103. AC_MSG_RESULT([${lt_sysroot:-no}])
  1104. _LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl
  1105. [dependent libraries, and in which our libraries should be installed.])])
  1106. # _LT_ENABLE_LOCK
  1107. # ---------------
  1108. m4_defun([_LT_ENABLE_LOCK],
  1109. [AC_ARG_ENABLE([libtool-lock],
  1110. [AS_HELP_STRING([--disable-libtool-lock],
  1111. [avoid locking (might break parallel builds)])])
  1112. test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes
  1113. # Some flags need to be propagated to the compiler or linker for good
  1114. # libtool support.
  1115. case $host in
  1116. ia64-*-hpux*)
  1117. # Find out which ABI we are using.
  1118. echo 'int i;' > conftest.$ac_ext
  1119. if AC_TRY_EVAL(ac_compile); then
  1120. case `/usr/bin/file conftest.$ac_objext` in
  1121. *ELF-32*)
  1122. HPUX_IA64_MODE="32"
  1123. ;;
  1124. *ELF-64*)
  1125. HPUX_IA64_MODE="64"
  1126. ;;
  1127. esac
  1128. fi
  1129. rm -rf conftest*
  1130. ;;
  1131. *-*-irix6*)
  1132. # Find out which ABI we are using.
  1133. echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext
  1134. if AC_TRY_EVAL(ac_compile); then
  1135. if test "$lt_cv_prog_gnu_ld" = yes; then
  1136. case `/usr/bin/file conftest.$ac_objext` in
  1137. *32-bit*)
  1138. LD="${LD-ld} -melf32bsmip"
  1139. ;;
  1140. *N32*)
  1141. LD="${LD-ld} -melf32bmipn32"
  1142. ;;
  1143. *64-bit*)
  1144. LD="${LD-ld} -melf64bmip"
  1145. ;;
  1146. esac
  1147. else
  1148. case `/usr/bin/file conftest.$ac_objext` in
  1149. *32-bit*)
  1150. LD="${LD-ld} -32"
  1151. ;;
  1152. *N32*)
  1153. LD="${LD-ld} -n32"
  1154. ;;
  1155. *64-bit*)
  1156. LD="${LD-ld} -64"
  1157. ;;
  1158. esac
  1159. fi
  1160. fi
  1161. rm -rf conftest*
  1162. ;;
  1163. x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \
  1164. s390*-*linux*|s390*-*tpf*|sparc*-*linux*)
  1165. # Find out which ABI we are using.
  1166. echo 'int i;' > conftest.$ac_ext
  1167. if AC_TRY_EVAL(ac_compile); then
  1168. case `/usr/bin/file conftest.o` in
  1169. *32-bit*)
  1170. case $host in
  1171. x86_64-*kfreebsd*-gnu)
  1172. LD="${LD-ld} -m elf_i386_fbsd"
  1173. ;;
  1174. x86_64-*linux*)
  1175. LD="${LD-ld} -m elf_i386"
  1176. ;;
  1177. ppc64-*linux*|powerpc64-*linux*)
  1178. LD="${LD-ld} -m elf32ppclinux"
  1179. ;;
  1180. s390x-*linux*)
  1181. LD="${LD-ld} -m elf_s390"
  1182. ;;
  1183. sparc64-*linux*)
  1184. LD="${LD-ld} -m elf32_sparc"
  1185. ;;
  1186. esac
  1187. ;;
  1188. *64-bit*)
  1189. case $host in
  1190. x86_64-*kfreebsd*-gnu)
  1191. LD="${LD-ld} -m elf_x86_64_fbsd"
  1192. ;;
  1193. x86_64-*linux*)
  1194. LD="${LD-ld} -m elf_x86_64"
  1195. ;;
  1196. ppc*-*linux*|powerpc*-*linux*)
  1197. LD="${LD-ld} -m elf64ppc"
  1198. ;;
  1199. s390*-*linux*|s390*-*tpf*)
  1200. LD="${LD-ld} -m elf64_s390"
  1201. ;;
  1202. sparc*-*linux*)
  1203. LD="${LD-ld} -m elf64_sparc"
  1204. ;;
  1205. esac
  1206. ;;
  1207. esac
  1208. fi
  1209. rm -rf conftest*
  1210. ;;
  1211. *-*-sco3.2v5*)
  1212. # On SCO OpenServer 5, we need -belf to get full-featured binaries.
  1213. SAVE_CFLAGS="$CFLAGS"
  1214. CFLAGS="$CFLAGS -belf"
  1215. AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf,
  1216. [AC_LANG_PUSH(C)
  1217. AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no])
  1218. AC_LANG_POP])
  1219. if test x"$lt_cv_cc_needs_belf" != x"yes"; then
  1220. # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf
  1221. CFLAGS="$SAVE_CFLAGS"
  1222. fi
  1223. ;;
  1224. *-*solaris*)
  1225. # Find out which ABI we are using.
  1226. echo 'int i;' > conftest.$ac_ext
  1227. if AC_TRY_EVAL(ac_compile); then
  1228. case `/usr/bin/file conftest.o` in
  1229. *64-bit*)
  1230. case $lt_cv_prog_gnu_ld in
  1231. yes*)
  1232. case $host in
  1233. i?86-*-solaris*)
  1234. LD="${LD-ld} -m elf_x86_64"
  1235. ;;
  1236. sparc*-*-solaris*)
  1237. LD="${LD-ld} -m elf64_sparc"
  1238. ;;
  1239. esac
  1240. # GNU ld 2.21 introduced _sol2 emulations. Use them if available.
  1241. if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then
  1242. LD="${LD-ld}_sol2"
  1243. fi
  1244. ;;
  1245. *)
  1246. if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then
  1247. LD="${LD-ld} -64"
  1248. fi
  1249. ;;
  1250. esac
  1251. ;;
  1252. esac
  1253. fi
  1254. rm -rf conftest*
  1255. ;;
  1256. esac
  1257. need_locks="$enable_libtool_lock"
  1258. ])# _LT_ENABLE_LOCK
  1259. # _LT_PROG_AR
  1260. # -----------
  1261. m4_defun([_LT_PROG_AR],
  1262. [AC_CHECK_TOOLS(AR, [ar], false)
  1263. : ${AR=ar}
  1264. : ${AR_FLAGS=cru}
  1265. _LT_DECL([], [AR], [1], [The archiver])
  1266. _LT_DECL([], [AR_FLAGS], [1], [Flags to create an archive])
  1267. AC_CACHE_CHECK([for archiver @FILE support], [lt_cv_ar_at_file],
  1268. [lt_cv_ar_at_file=no
  1269. AC_COMPILE_IFELSE([AC_LANG_PROGRAM],
  1270. [echo conftest.$ac_objext > conftest.lst
  1271. lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&AS_MESSAGE_LOG_FD'
  1272. AC_TRY_EVAL([lt_ar_try])
  1273. if test "$ac_status" -eq 0; then
  1274. # Ensure the archiver fails upon bogus file names.
  1275. rm -f conftest.$ac_objext libconftest.a
  1276. AC_TRY_EVAL([lt_ar_try])
  1277. if test "$ac_status" -ne 0; then
  1278. lt_cv_ar_at_file=@
  1279. fi
  1280. fi
  1281. rm -f conftest.* libconftest.a
  1282. ])
  1283. ])
  1284. if test "x$lt_cv_ar_at_file" = xno; then
  1285. archiver_list_spec=
  1286. else
  1287. archiver_list_spec=$lt_cv_ar_at_file
  1288. fi
  1289. _LT_DECL([], [archiver_list_spec], [1],
  1290. [How to feed a file listing to the archiver])
  1291. ])# _LT_PROG_AR
  1292. # _LT_CMD_OLD_ARCHIVE
  1293. # -------------------
  1294. m4_defun([_LT_CMD_OLD_ARCHIVE],
  1295. [_LT_PROG_AR
  1296. AC_CHECK_TOOL(STRIP, strip, :)
  1297. test -z "$STRIP" && STRIP=:
  1298. _LT_DECL([], [STRIP], [1], [A symbol stripping program])
  1299. AC_CHECK_TOOL(RANLIB, ranlib, :)
  1300. test -z "$RANLIB" && RANLIB=:
  1301. _LT_DECL([], [RANLIB], [1],
  1302. [Commands used to install an old-style archive])
  1303. # Determine commands to create old-style static archives.
  1304. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs'
  1305. old_postinstall_cmds='chmod 644 $oldlib'
  1306. old_postuninstall_cmds=
  1307. if test -n "$RANLIB"; then
  1308. case $host_os in
  1309. openbsd*)
  1310. old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib"
  1311. ;;
  1312. *)
  1313. old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib"
  1314. ;;
  1315. esac
  1316. old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib"
  1317. fi
  1318. case $host_os in
  1319. darwin*)
  1320. lock_old_archive_extraction=yes ;;
  1321. *)
  1322. lock_old_archive_extraction=no ;;
  1323. esac
  1324. _LT_DECL([], [old_postinstall_cmds], [2])
  1325. _LT_DECL([], [old_postuninstall_cmds], [2])
  1326. _LT_TAGDECL([], [old_archive_cmds], [2],
  1327. [Commands used to build an old-style archive])
  1328. _LT_DECL([], [lock_old_archive_extraction], [0],
  1329. [Whether to use a lock for old archive extraction])
  1330. ])# _LT_CMD_OLD_ARCHIVE
  1331. # _LT_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS,
  1332. # [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE])
  1333. # ----------------------------------------------------------------
  1334. # Check whether the given compiler option works
  1335. AC_DEFUN([_LT_COMPILER_OPTION],
  1336. [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
  1337. m4_require([_LT_DECL_SED])dnl
  1338. AC_CACHE_CHECK([$1], [$2],
  1339. [$2=no
  1340. m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4])
  1341. echo "$lt_simple_compile_test_code" > conftest.$ac_ext
  1342. lt_compiler_flag="$3"
  1343. # Insert the option either (1) after the last *FLAGS variable, or
  1344. # (2) before a word containing "conftest.", or (3) at the end.
  1345. # Note that $ac_compile itself does not contain backslashes and begins
  1346. # with a dollar sign (not a hyphen), so the echo should work correctly.
  1347. # The option is referenced via a variable to avoid confusing sed.
  1348. lt_compile=`echo "$ac_compile" | $SED \
  1349. -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
  1350. -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \
  1351. -e 's:$: $lt_compiler_flag:'`
  1352. (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD)
  1353. (eval "$lt_compile" 2>conftest.err)
  1354. ac_status=$?
  1355. cat conftest.err >&AS_MESSAGE_LOG_FD
  1356. echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
  1357. if (exit $ac_status) && test -s "$ac_outfile"; then
  1358. # The compiler can only warn and ignore the option if not recognized
  1359. # So say no if there are warnings other than the usual output.
  1360. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp
  1361. $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
  1362. if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then
  1363. $2=yes
  1364. fi
  1365. fi
  1366. $RM conftest*
  1367. ])
  1368. if test x"[$]$2" = xyes; then
  1369. m4_if([$5], , :, [$5])
  1370. else
  1371. m4_if([$6], , :, [$6])
  1372. fi
  1373. ])# _LT_COMPILER_OPTION
  1374. # Old name:
  1375. AU_ALIAS([AC_LIBTOOL_COMPILER_OPTION], [_LT_COMPILER_OPTION])
  1376. dnl aclocal-1.4 backwards compatibility:
  1377. dnl AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [])
  1378. # _LT_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS,
  1379. # [ACTION-SUCCESS], [ACTION-FAILURE])
  1380. # ----------------------------------------------------
  1381. # Check whether the given linker option works
  1382. AC_DEFUN([_LT_LINKER_OPTION],
  1383. [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
  1384. m4_require([_LT_DECL_SED])dnl
  1385. AC_CACHE_CHECK([$1], [$2],
  1386. [$2=no
  1387. save_LDFLAGS="$LDFLAGS"
  1388. LDFLAGS="$LDFLAGS $3"
  1389. echo "$lt_simple_link_test_code" > conftest.$ac_ext
  1390. if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then
  1391. # The linker can only warn and ignore the option if not recognized
  1392. # So say no if there are warnings
  1393. if test -s conftest.err; then
  1394. # Append any errors to the config.log.
  1395. cat conftest.err 1>&AS_MESSAGE_LOG_FD
  1396. $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp
  1397. $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
  1398. if diff conftest.exp conftest.er2 >/dev/null; then
  1399. $2=yes
  1400. fi
  1401. else
  1402. $2=yes
  1403. fi
  1404. fi
  1405. $RM -r conftest*
  1406. LDFLAGS="$save_LDFLAGS"
  1407. ])
  1408. if test x"[$]$2" = xyes; then
  1409. m4_if([$4], , :, [$4])
  1410. else
  1411. m4_if([$5], , :, [$5])
  1412. fi
  1413. ])# _LT_LINKER_OPTION
  1414. # Old name:
  1415. AU_ALIAS([AC_LIBTOOL_LINKER_OPTION], [_LT_LINKER_OPTION])
  1416. dnl aclocal-1.4 backwards compatibility:
  1417. dnl AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], [])
  1418. # LT_CMD_MAX_LEN
  1419. #---------------
  1420. AC_DEFUN([LT_CMD_MAX_LEN],
  1421. [AC_REQUIRE([AC_CANONICAL_HOST])dnl
  1422. # find the maximum length of command line arguments
  1423. AC_MSG_CHECKING([the maximum length of command line arguments])
  1424. AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl
  1425. i=0
  1426. teststring="ABCD"
  1427. case $build_os in
  1428. msdosdjgpp*)
  1429. # On DJGPP, this test can blow up pretty badly due to problems in libc
  1430. # (any single argument exceeding 2000 bytes causes a buffer overrun
  1431. # during glob expansion). Even if it were fixed, the result of this
  1432. # check would be larger than it should be.
  1433. lt_cv_sys_max_cmd_len=12288; # 12K is about right
  1434. ;;
  1435. gnu*)
  1436. # Under GNU Hurd, this test is not required because there is
  1437. # no limit to the length of command line arguments.
  1438. # Libtool will interpret -1 as no limit whatsoever
  1439. lt_cv_sys_max_cmd_len=-1;
  1440. ;;
  1441. cygwin* | mingw* | cegcc*)
  1442. # On Win9x/ME, this test blows up -- it succeeds, but takes
  1443. # about 5 minutes as the teststring grows exponentially.
  1444. # Worse, since 9x/ME are not pre-emptively multitasking,
  1445. # you end up with a "frozen" computer, even though with patience
  1446. # the test eventually succeeds (with a max line length of 256k).
  1447. # Instead, let's just punt: use the minimum linelength reported by
  1448. # all of the supported platforms: 8192 (on NT/2K/XP).
  1449. lt_cv_sys_max_cmd_len=8192;
  1450. ;;
  1451. mint*)
  1452. # On MiNT this can take a long time and run out of memory.
  1453. lt_cv_sys_max_cmd_len=8192;
  1454. ;;
  1455. amigaos*)
  1456. # On AmigaOS with pdksh, this test takes hours, literally.
  1457. # So we just punt and use a minimum line length of 8192.
  1458. lt_cv_sys_max_cmd_len=8192;
  1459. ;;
  1460. netbsd* | freebsd* | openbsd* | darwin* | dragonfly*)
  1461. # This has been around since 386BSD, at least. Likely further.
  1462. if test -x /sbin/sysctl; then
  1463. lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax`
  1464. elif test -x /usr/sbin/sysctl; then
  1465. lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax`
  1466. else
  1467. lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs
  1468. fi
  1469. # And add a safety zone
  1470. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
  1471. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
  1472. ;;
  1473. interix*)
  1474. # We know the value 262144 and hardcode it with a safety zone (like BSD)
  1475. lt_cv_sys_max_cmd_len=196608
  1476. ;;
  1477. os2*)
  1478. # The test takes a long time on OS/2.
  1479. lt_cv_sys_max_cmd_len=8192
  1480. ;;
  1481. osf*)
  1482. # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure
  1483. # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not
  1484. # nice to cause kernel panics so lets avoid the loop below.
  1485. # First set a reasonable default.
  1486. lt_cv_sys_max_cmd_len=16384
  1487. #
  1488. if test -x /sbin/sysconfig; then
  1489. case `/sbin/sysconfig -q proc exec_disable_arg_limit` in
  1490. *1*) lt_cv_sys_max_cmd_len=-1 ;;
  1491. esac
  1492. fi
  1493. ;;
  1494. sco3.2v5*)
  1495. lt_cv_sys_max_cmd_len=102400
  1496. ;;
  1497. sysv5* | sco5v6* | sysv4.2uw2*)
  1498. kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null`
  1499. if test -n "$kargmax"; then
  1500. lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'`
  1501. else
  1502. lt_cv_sys_max_cmd_len=32768
  1503. fi
  1504. ;;
  1505. *)
  1506. lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null`
  1507. if test -n "$lt_cv_sys_max_cmd_len"; then
  1508. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
  1509. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
  1510. else
  1511. # Make teststring a little bigger before we do anything with it.
  1512. # a 1K string should be a reasonable start.
  1513. for i in 1 2 3 4 5 6 7 8 ; do
  1514. teststring=$teststring$teststring
  1515. done
  1516. SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}}
  1517. # If test is not a shell built-in, we'll probably end up computing a
  1518. # maximum length that is only half of the actual maximum length, but
  1519. # we can't tell.
  1520. while { test "X"`env echo "$teststring$teststring" 2>/dev/null` \
  1521. = "X$teststring$teststring"; } >/dev/null 2>&1 &&
  1522. test $i != 17 # 1/2 MB should be enough
  1523. do
  1524. i=`expr $i + 1`
  1525. teststring=$teststring$teststring
  1526. done
  1527. # Only check the string length outside the loop.
  1528. lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1`
  1529. teststring=
  1530. # Add a significant safety factor because C++ compilers can tack on
  1531. # massive amounts of additional arguments before passing them to the
  1532. # linker. It appears as though 1/2 is a usable value.
  1533. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2`
  1534. fi
  1535. ;;
  1536. esac
  1537. ])
  1538. if test -n $lt_cv_sys_max_cmd_len ; then
  1539. AC_MSG_RESULT($lt_cv_sys_max_cmd_len)
  1540. else
  1541. AC_MSG_RESULT(none)
  1542. fi
  1543. max_cmd_len=$lt_cv_sys_max_cmd_len
  1544. _LT_DECL([], [max_cmd_len], [0],
  1545. [What is the maximum length of a command?])
  1546. ])# LT_CMD_MAX_LEN
  1547. # Old name:
  1548. AU_ALIAS([AC_LIBTOOL_SYS_MAX_CMD_LEN], [LT_CMD_MAX_LEN])
  1549. dnl aclocal-1.4 backwards compatibility:
  1550. dnl AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [])
  1551. # _LT_HEADER_DLFCN
  1552. # ----------------
  1553. m4_defun([_LT_HEADER_DLFCN],
  1554. [AC_CHECK_HEADERS([dlfcn.h], [], [], [AC_INCLUDES_DEFAULT])dnl
  1555. ])# _LT_HEADER_DLFCN
  1556. # _LT_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE,
  1557. # ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING)
  1558. # ----------------------------------------------------------------
  1559. m4_defun([_LT_TRY_DLOPEN_SELF],
  1560. [m4_require([_LT_HEADER_DLFCN])dnl
  1561. if test "$cross_compiling" = yes; then :
  1562. [$4]
  1563. else
  1564. lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
  1565. lt_status=$lt_dlunknown
  1566. cat > conftest.$ac_ext <<_LT_EOF
  1567. [#line $LINENO "configure"
  1568. #include "confdefs.h"
  1569. #if HAVE_DLFCN_H
  1570. #include <dlfcn.h>
  1571. #endif
  1572. #include <stdio.h>
  1573. #ifdef RTLD_GLOBAL
  1574. # define LT_DLGLOBAL RTLD_GLOBAL
  1575. #else
  1576. # ifdef DL_GLOBAL
  1577. # define LT_DLGLOBAL DL_GLOBAL
  1578. # else
  1579. # define LT_DLGLOBAL 0
  1580. # endif
  1581. #endif
  1582. /* We may have to define LT_DLLAZY_OR_NOW in the command line if we
  1583. find out it does not work in some platform. */
  1584. #ifndef LT_DLLAZY_OR_NOW
  1585. # ifdef RTLD_LAZY
  1586. # define LT_DLLAZY_OR_NOW RTLD_LAZY
  1587. # else
  1588. # ifdef DL_LAZY
  1589. # define LT_DLLAZY_OR_NOW DL_LAZY
  1590. # else
  1591. # ifdef RTLD_NOW
  1592. # define LT_DLLAZY_OR_NOW RTLD_NOW
  1593. # else
  1594. # ifdef DL_NOW
  1595. # define LT_DLLAZY_OR_NOW DL_NOW
  1596. # else
  1597. # define LT_DLLAZY_OR_NOW 0
  1598. # endif
  1599. # endif
  1600. # endif
  1601. # endif
  1602. #endif
  1603. /* When -fvisbility=hidden is used, assume the code has been annotated
  1604. correspondingly for the symbols needed. */
  1605. #if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3))
  1606. int fnord () __attribute__((visibility("default")));
  1607. #endif
  1608. int fnord () { return 42; }
  1609. int main ()
  1610. {
  1611. void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW);
  1612. int status = $lt_dlunknown;
  1613. if (self)
  1614. {
  1615. if (dlsym (self,"fnord")) status = $lt_dlno_uscore;
  1616. else
  1617. {
  1618. if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore;
  1619. else puts (dlerror ());
  1620. }
  1621. /* dlclose (self); */
  1622. }
  1623. else
  1624. puts (dlerror ());
  1625. return status;
  1626. }]
  1627. _LT_EOF
  1628. if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then
  1629. (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null
  1630. lt_status=$?
  1631. case x$lt_status in
  1632. x$lt_dlno_uscore) $1 ;;
  1633. x$lt_dlneed_uscore) $2 ;;
  1634. x$lt_dlunknown|x*) $3 ;;
  1635. esac
  1636. else :
  1637. # compilation failed
  1638. $3
  1639. fi
  1640. fi
  1641. rm -fr conftest*
  1642. ])# _LT_TRY_DLOPEN_SELF
  1643. # LT_SYS_DLOPEN_SELF
  1644. # ------------------
  1645. AC_DEFUN([LT_SYS_DLOPEN_SELF],
  1646. [m4_require([_LT_HEADER_DLFCN])dnl
  1647. if test "x$enable_dlopen" != xyes; then
  1648. enable_dlopen=unknown
  1649. enable_dlopen_self=unknown
  1650. enable_dlopen_self_static=unknown
  1651. else
  1652. lt_cv_dlopen=no
  1653. lt_cv_dlopen_libs=
  1654. case $host_os in
  1655. beos*)
  1656. lt_cv_dlopen="load_add_on"
  1657. lt_cv_dlopen_libs=
  1658. lt_cv_dlopen_self=yes
  1659. ;;
  1660. mingw* | pw32* | cegcc*)
  1661. lt_cv_dlopen="LoadLibrary"
  1662. lt_cv_dlopen_libs=
  1663. ;;
  1664. cygwin*)
  1665. lt_cv_dlopen="dlopen"
  1666. lt_cv_dlopen_libs=
  1667. ;;
  1668. darwin*)
  1669. # if libdl is installed we need to link against it
  1670. AC_CHECK_LIB([dl], [dlopen],
  1671. [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[
  1672. lt_cv_dlopen="dyld"
  1673. lt_cv_dlopen_libs=
  1674. lt_cv_dlopen_self=yes
  1675. ])
  1676. ;;
  1677. *)
  1678. AC_CHECK_FUNC([shl_load],
  1679. [lt_cv_dlopen="shl_load"],
  1680. [AC_CHECK_LIB([dld], [shl_load],
  1681. [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"],
  1682. [AC_CHECK_FUNC([dlopen],
  1683. [lt_cv_dlopen="dlopen"],
  1684. [AC_CHECK_LIB([dl], [dlopen],
  1685. [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],
  1686. [AC_CHECK_LIB([svld], [dlopen],
  1687. [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"],
  1688. [AC_CHECK_LIB([dld], [dld_link],
  1689. [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"])
  1690. ])
  1691. ])
  1692. ])
  1693. ])
  1694. ])
  1695. ;;
  1696. esac
  1697. if test "x$lt_cv_dlopen" != xno; then
  1698. enable_dlopen=yes
  1699. else
  1700. enable_dlopen=no
  1701. fi
  1702. case $lt_cv_dlopen in
  1703. dlopen)
  1704. save_CPPFLAGS="$CPPFLAGS"
  1705. test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H"
  1706. save_LDFLAGS="$LDFLAGS"
  1707. wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\"
  1708. save_LIBS="$LIBS"
  1709. LIBS="$lt_cv_dlopen_libs $LIBS"
  1710. AC_CACHE_CHECK([whether a program can dlopen itself],
  1711. lt_cv_dlopen_self, [dnl
  1712. _LT_TRY_DLOPEN_SELF(
  1713. lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes,
  1714. lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross)
  1715. ])
  1716. if test "x$lt_cv_dlopen_self" = xyes; then
  1717. wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\"
  1718. AC_CACHE_CHECK([whether a statically linked program can dlopen itself],
  1719. lt_cv_dlopen_self_static, [dnl
  1720. _LT_TRY_DLOPEN_SELF(
  1721. lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes,
  1722. lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross)
  1723. ])
  1724. fi
  1725. CPPFLAGS="$save_CPPFLAGS"
  1726. LDFLAGS="$save_LDFLAGS"
  1727. LIBS="$save_LIBS"
  1728. ;;
  1729. esac
  1730. case $lt_cv_dlopen_self in
  1731. yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;;
  1732. *) enable_dlopen_self=unknown ;;
  1733. esac
  1734. case $lt_cv_dlopen_self_static in
  1735. yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;;
  1736. *) enable_dlopen_self_static=unknown ;;
  1737. esac
  1738. fi
  1739. _LT_DECL([dlopen_support], [enable_dlopen], [0],
  1740. [Whether dlopen is supported])
  1741. _LT_DECL([dlopen_self], [enable_dlopen_self], [0],
  1742. [Whether dlopen of programs is supported])
  1743. _LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0],
  1744. [Whether dlopen of statically linked programs is supported])
  1745. ])# LT_SYS_DLOPEN_SELF
  1746. # Old name:
  1747. AU_ALIAS([AC_LIBTOOL_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF])
  1748. dnl aclocal-1.4 backwards compatibility:
  1749. dnl AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [])
  1750. # _LT_COMPILER_C_O([TAGNAME])
  1751. # ---------------------------
  1752. # Check to see if options -c and -o are simultaneously supported by compiler.
  1753. # This macro does not hard code the compiler like AC_PROG_CC_C_O.
  1754. m4_defun([_LT_COMPILER_C_O],
  1755. [m4_require([_LT_DECL_SED])dnl
  1756. m4_require([_LT_FILEUTILS_DEFAULTS])dnl
  1757. m4_require([_LT_TAG_COMPILER])dnl
  1758. AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext],
  1759. [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)],
  1760. [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no
  1761. $RM -r conftest 2>/dev/null
  1762. mkdir conftest
  1763. cd conftest
  1764. mkdir out
  1765. echo "$lt_simple_compile_test_code" > conftest.$ac_ext
  1766. lt_compiler_flag="-o out/conftest2.$ac_objext"
  1767. # Insert the option either (1) after the last *FLAGS variable, or
  1768. # (2) before a word containing "conftest.", or (3) at the end.
  1769. # Note that $ac_compile itself does not contain backslashes and begins
  1770. # with a dollar sign (not a hyphen), so the echo should work correctly.
  1771. lt_compile=`echo "$ac_compile" | $SED \
  1772. -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
  1773. -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \
  1774. -e 's:$: $lt_compiler_flag:'`
  1775. (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD)
  1776. (eval "$lt_compile" 2>out/conftest.err)
  1777. ac_status=$?
  1778. cat out/conftest.err >&AS_MESSAGE_LOG_FD
  1779. echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
  1780. if (exit $ac_status) && test -s out/conftest2.$ac_objext
  1781. then
  1782. # The compiler can only warn and ignore the option if not recognized
  1783. # So say no if there are warnings
  1784. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp
  1785. $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2
  1786. if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then
  1787. _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes
  1788. fi
  1789. fi
  1790. chmod u+w . 2>&AS_MESSAGE_LOG_FD
  1791. $RM conftest*
  1792. # SGI C++ compiler will create directory out/ii_files/ for
  1793. # template instantiation
  1794. test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files
  1795. $RM out/* && rmdir out
  1796. cd ..
  1797. $RM -r conftest
  1798. $RM conftest*
  1799. ])
  1800. _LT_TAGDECL([compiler_c_o], [lt_cv_prog_compiler_c_o], [1],
  1801. [Does compiler simultaneously support -c and -o options?])
  1802. ])# _LT_COMPILER_C_O
  1803. # _LT_COMPILER_FILE_LOCKS([TAGNAME])
  1804. # ----------------------------------
  1805. # Check to see if we can do hard links to lock some files if needed
  1806. m4_defun([_LT_COMPILER_FILE_LOCKS],
  1807. [m4_require([_LT_ENABLE_LOCK])dnl
  1808. m4_require([_LT_FILEUTILS_DEFAULTS])dnl
  1809. _LT_COMPILER_C_O([$1])
  1810. hard_links="nottested"
  1811. if test "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then
  1812. # do not overwrite the value of need_locks provided by the user
  1813. AC_MSG_CHECKING([if we can lock with hard links])
  1814. hard_links=yes
  1815. $RM conftest*
  1816. ln conftest.a conftest.b 2>/dev/null && hard_links=no
  1817. touch conftest.a
  1818. ln conftest.a conftest.b 2>&5 || hard_links=no
  1819. ln conftest.a conftest.b 2>/dev/null && hard_links=no
  1820. AC_MSG_RESULT([$hard_links])
  1821. if test "$hard_links" = no; then
  1822. AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe])
  1823. need_locks=warn
  1824. fi
  1825. else
  1826. need_locks=no
  1827. fi
  1828. _LT_DECL([], [need_locks], [1], [Must we lock files when doing compilation?])
  1829. ])# _LT_COMPILER_FILE_LOCKS
  1830. # _LT_CHECK_OBJDIR
  1831. # ----------------
  1832. m4_defun([_LT_CHECK_OBJDIR],
  1833. [AC_CACHE_CHECK([for objdir], [lt_cv_objdir],
  1834. [rm -f .libs 2>/dev/null
  1835. mkdir .libs 2>/dev/null
  1836. if test -d .libs; then
  1837. lt_cv_objdir=.libs
  1838. else
  1839. # MS-DOS does not allow filenames that begin with a dot.
  1840. lt_cv_objdir=_libs
  1841. fi
  1842. rmdir .libs 2>/dev/null])
  1843. objdir=$lt_cv_objdir
  1844. _LT_DECL([], [objdir], [0],
  1845. [The name of the directory that contains temporary libtool files])dnl
  1846. m4_pattern_allow([LT_OBJDIR])dnl
  1847. AC_DEFINE_UNQUOTED(LT_OBJDIR, "$lt_cv_objdir/",
  1848. [Define to the sub-directory in which libtool stores uninstalled libraries.])
  1849. ])# _LT_CHECK_OBJDIR
  1850. # _LT_LINKER_HARDCODE_LIBPATH([TAGNAME])
  1851. # --------------------------------------
  1852. # Check hardcoding attributes.
  1853. m4_defun([_LT_LINKER_HARDCODE_LIBPATH],
  1854. [AC_MSG_CHECKING([how to hardcode library paths into programs])
  1855. _LT_TAGVAR(hardcode_action, $1)=
  1856. if test -n "$_LT_TAGVAR(hardcode_libdir_flag_spec, $1)" ||
  1857. test -n "$_LT_TAGVAR(runpath_var, $1)" ||
  1858. test "X$_LT_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then
  1859. # We can hardcode non-existent directories.
  1860. if test "$_LT_TAGVAR(hardcode_direct, $1)" != no &&
  1861. # If the only mechanism to avoid hardcoding is shlibpath_var, we
  1862. # have to relink, otherwise we might link with an installed library
  1863. # when we should be linking with a yet-to-be-installed one
  1864. ## test "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" != no &&
  1865. test "$_LT_TAGVAR(hardcode_minus_L, $1)" != no; then
  1866. # Linking always hardcodes the temporary library directory.
  1867. _LT_TAGVAR(hardcode_action, $1)=relink
  1868. else
  1869. # We can link without hardcoding, and we can hardcode nonexisting dirs.
  1870. _LT_TAGVAR(hardcode_action, $1)=immediate
  1871. fi
  1872. else
  1873. # We cannot hardcode anything, or else we can only hardcode existing
  1874. # directories.
  1875. _LT_TAGVAR(hardcode_action, $1)=unsupported
  1876. fi
  1877. AC_MSG_RESULT([$_LT_TAGVAR(hardcode_action, $1)])
  1878. if test "$_LT_TAGVAR(hardcode_action, $1)" = relink ||
  1879. test "$_LT_TAGVAR(inherit_rpath, $1)" = yes; then
  1880. # Fast installation is not supported
  1881. enable_fast_install=no
  1882. elif test "$shlibpath_overrides_runpath" = yes ||
  1883. test "$enable_shared" = no; then
  1884. # Fast installation is not necessary
  1885. enable_fast_install=needless
  1886. fi
  1887. _LT_TAGDECL([], [hardcode_action], [0],
  1888. [How to hardcode a shared library path into an executable])
  1889. ])# _LT_LINKER_HARDCODE_LIBPATH
  1890. # _LT_CMD_STRIPLIB
  1891. # ----------------
  1892. m4_defun([_LT_CMD_STRIPLIB],
  1893. [m4_require([_LT_DECL_EGREP])
  1894. striplib=
  1895. old_striplib=
  1896. AC_MSG_CHECKING([whether stripping libraries is possible])
  1897. if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then
  1898. test -z "$old_striplib" && old_striplib="$STRIP --strip-debug"
  1899. test -z "$striplib" && striplib="$STRIP --strip-unneeded"
  1900. AC_MSG_RESULT([yes])
  1901. else
  1902. # FIXME - insert some real tests, host_os isn't really good enough
  1903. case $host_os in
  1904. darwin*)
  1905. if test -n "$STRIP" ; then
  1906. striplib="$STRIP -x"
  1907. old_striplib="$STRIP -S"
  1908. AC_MSG_RESULT([yes])
  1909. else
  1910. AC_MSG_RESULT([no])
  1911. fi
  1912. ;;
  1913. *)
  1914. AC_MSG_RESULT([no])
  1915. ;;
  1916. esac
  1917. fi
  1918. _LT_DECL([], [old_striplib], [1], [Commands to strip libraries])
  1919. _LT_DECL([], [striplib], [1])
  1920. ])# _LT_CMD_STRIPLIB
  1921. # _LT_SYS_DYNAMIC_LINKER([TAG])
  1922. # -----------------------------
  1923. # PORTME Fill in your ld.so characteristics
  1924. m4_defun([_LT_SYS_DYNAMIC_LINKER],
  1925. [AC_REQUIRE([AC_CANONICAL_HOST])dnl
  1926. m4_require([_LT_DECL_EGREP])dnl
  1927. m4_require([_LT_FILEUTILS_DEFAULTS])dnl
  1928. m4_require([_LT_DECL_OBJDUMP])dnl
  1929. m4_require([_LT_DECL_SED])dnl
  1930. m4_require([_LT_CHECK_SHELL_FEATURES])dnl
  1931. AC_MSG_CHECKING([dynamic linker characteristics])
  1932. m4_if([$1],
  1933. [], [
  1934. if test "$GCC" = yes; then
  1935. case $host_os in
  1936. darwin*) lt_awk_arg="/^libraries:/,/LR/" ;;
  1937. *) lt_awk_arg="/^libraries:/" ;;
  1938. esac
  1939. case $host_os in
  1940. mingw* | cegcc*) lt_sed_strip_eq="s,=\([[A-Za-z]]:\),\1,g" ;;
  1941. *) lt_sed_strip_eq="s,=/,/,g" ;;
  1942. esac
  1943. lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq`
  1944. case $lt_search_path_spec in
  1945. *\;*)
  1946. # if the path contains ";" then we assume it to be the separator
  1947. # otherwise default to the standard path separator (i.e. ":") - it is
  1948. # assumed that no part of a normal pathname contains ";" but that should
  1949. # okay in the real world where ";" in dirpaths is itself problematic.
  1950. lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'`
  1951. ;;
  1952. *)
  1953. lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"`
  1954. ;;
  1955. esac
  1956. # Ok, now we have the path, separated by spaces, we can step through it
  1957. # and add multilib dir if necessary.
  1958. lt_tmp_lt_search_path_spec=
  1959. lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null`
  1960. for lt_sys_path in $lt_search_path_spec; do
  1961. if test -d "$lt_sys_path/$lt_multi_os_dir"; then
  1962. lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir"
  1963. else
  1964. test -d "$lt_sys_path" && \
  1965. lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path"
  1966. fi
  1967. done
  1968. lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk '
  1969. BEGIN {RS=" "; FS="/|\n";} {
  1970. lt_foo="";
  1971. lt_count=0;
  1972. for (lt_i = NF; lt_i > 0; lt_i--) {
  1973. if ($lt_i != "" && $lt_i != ".") {
  1974. if ($lt_i == "..") {
  1975. lt_count++;
  1976. } else {
  1977. if (lt_count == 0) {
  1978. lt_foo="/" $lt_i lt_foo;
  1979. } else {
  1980. lt_count--;
  1981. }
  1982. }
  1983. }
  1984. }
  1985. if (lt_foo != "") { lt_freq[[lt_foo]]++; }
  1986. if (lt_freq[[lt_foo]] == 1) { print lt_foo; }
  1987. }'`
  1988. # AWK program above erroneously prepends '/' to C:/dos/paths
  1989. # for these hosts.
  1990. case $host_os in
  1991. mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\
  1992. $SED 's,/\([[A-Za-z]]:\),\1,g'` ;;
  1993. esac
  1994. sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP`
  1995. else
  1996. sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib"
  1997. fi])
  1998. library_names_spec=
  1999. libname_spec='lib$name'
  2000. soname_spec=
  2001. shrext_cmds=".so"
  2002. postinstall_cmds=
  2003. postuninstall_cmds=
  2004. finish_cmds=
  2005. finish_eval=
  2006. shlibpath_var=
  2007. shlibpath_overrides_runpath=unknown
  2008. version_type=none
  2009. dynamic_linker="$host_os ld.so"
  2010. sys_lib_dlsearch_path_spec="/lib /usr/lib"
  2011. need_lib_prefix=unknown
  2012. hardcode_into_libs=no
  2013. # when you set need_version to no, make sure it does not cause -set_version
  2014. # flags to be left without arguments
  2015. need_version=unknown
  2016. case $host_os in
  2017. aix3*)
  2018. version_type=linux # correct to gnu/linux during the next big refactor
  2019. library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a'
  2020. shlibpath_var=LIBPATH
  2021. # AIX 3 has no versioning support, so we append a major version to the name.
  2022. soname_spec='${libname}${release}${shared_ext}$major'
  2023. ;;
  2024. aix[[4-9]]*)
  2025. version_type=linux # correct to gnu/linux during the next big refactor
  2026. need_lib_prefix=no
  2027. need_version=no
  2028. hardcode_into_libs=yes
  2029. if test "$host_cpu" = ia64; then
  2030. # AIX 5 supports IA64
  2031. library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}'
  2032. shlibpath_var=LD_LIBRARY_PATH
  2033. else
  2034. # With GCC up to 2.95.x, collect2 would create an import file
  2035. # for dependence libraries. The import file would start with
  2036. # the line `#! .'. This would cause the generated library to
  2037. # depend on `.', always an invalid library. This was fixed in
  2038. # development snapshots of GCC prior to 3.0.
  2039. case $host_os in
  2040. aix4 | aix4.[[01]] | aix4.[[01]].*)
  2041. if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)'
  2042. echo ' yes '
  2043. echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then
  2044. :
  2045. else
  2046. can_build_shared=no
  2047. fi
  2048. ;;
  2049. esac
  2050. # AIX (on Power*) has no versioning support, so currently we can not hardcode correct
  2051. # soname into executable. Probably we can add versioning support to
  2052. # collect2, so additional links can be useful in future.
  2053. if test "$aix_use_runtimelinking" = yes; then
  2054. # If using run time linking (on AIX 4.2 or later) use lib<name>.so
  2055. # instead of lib<name>.a to let people know that these are not
  2056. # typical AIX shared libraries.
  2057. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2058. else
  2059. # We preserve .a as extension for shared libraries through AIX4.2
  2060. # and later when we are not doing run time linking.
  2061. library_names_spec='${libname}${release}.a $libname.a'
  2062. soname_spec='${libname}${release}${shared_ext}$major'
  2063. fi
  2064. shlibpath_var=LIBPATH
  2065. fi
  2066. ;;
  2067. amigaos*)
  2068. case $host_cpu in
  2069. powerpc)
  2070. # Since July 2007 AmigaOS4 officially supports .so libraries.
  2071. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline.
  2072. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2073. ;;
  2074. m68k)
  2075. library_names_spec='$libname.ixlibrary $libname.a'
  2076. # Create ${libname}_ixlibrary.a entries in /sys/libs.
  2077. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done'
  2078. ;;
  2079. esac
  2080. ;;
  2081. beos*)
  2082. library_names_spec='${libname}${shared_ext}'
  2083. dynamic_linker="$host_os ld.so"
  2084. shlibpath_var=LIBRARY_PATH
  2085. ;;
  2086. bsdi[[45]]*)
  2087. version_type=linux # correct to gnu/linux during the next big refactor
  2088. need_version=no
  2089. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2090. soname_spec='${libname}${release}${shared_ext}$major'
  2091. finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir'
  2092. shlibpath_var=LD_LIBRARY_PATH
  2093. sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib"
  2094. sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib"
  2095. # the default ld.so.conf also contains /usr/contrib/lib and
  2096. # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow
  2097. # libtool to hard-code these into programs
  2098. ;;
  2099. cygwin* | mingw* | pw32* | cegcc*)
  2100. version_type=windows
  2101. shrext_cmds=".dll"
  2102. need_version=no
  2103. need_lib_prefix=no
  2104. case $GCC,$cc_basename in
  2105. yes,*)
  2106. # gcc
  2107. library_names_spec='$libname.dll.a'
  2108. # DLL is installed to $(libdir)/../bin by postinstall_cmds
  2109. postinstall_cmds='base_file=`basename \${file}`~
  2110. dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~
  2111. dldir=$destdir/`dirname \$dlpath`~
  2112. test -d \$dldir || mkdir -p \$dldir~
  2113. $install_prog $dir/$dlname \$dldir/$dlname~
  2114. chmod a+x \$dldir/$dlname~
  2115. if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then
  2116. eval '\''$striplib \$dldir/$dlname'\'' || exit \$?;
  2117. fi'
  2118. postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~
  2119. dlpath=$dir/\$dldll~
  2120. $RM \$dlpath'
  2121. shlibpath_overrides_runpath=yes
  2122. case $host_os in
  2123. cygwin*)
  2124. # Cygwin DLLs use 'cyg' prefix rather than 'lib'
  2125. soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
  2126. m4_if([$1], [],[
  2127. sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api"])
  2128. ;;
  2129. mingw* | cegcc*)
  2130. # MinGW DLLs use traditional 'lib' prefix
  2131. soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
  2132. ;;
  2133. pw32*)
  2134. # pw32 DLLs use 'pw' prefix rather than 'lib'
  2135. library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
  2136. ;;
  2137. esac
  2138. dynamic_linker='Win32 ld.exe'
  2139. ;;
  2140. *,cl*)
  2141. # Native MSVC
  2142. libname_spec='$name'
  2143. soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
  2144. library_names_spec='${libname}.dll.lib'
  2145. case $build_os in
  2146. mingw*)
  2147. sys_lib_search_path_spec=
  2148. lt_save_ifs=$IFS
  2149. IFS=';'
  2150. for lt_path in $LIB
  2151. do
  2152. IFS=$lt_save_ifs
  2153. # Let DOS variable expansion print the short 8.3 style file name.
  2154. lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"`
  2155. sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path"
  2156. done
  2157. IFS=$lt_save_ifs
  2158. # Convert to MSYS style.
  2159. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([[a-zA-Z]]\\):| /\\1|g' -e 's|^ ||'`
  2160. ;;
  2161. cygwin*)
  2162. # Convert to unix form, then to dos form, then back to unix form
  2163. # but this time dos style (no spaces!) so that the unix form looks
  2164. # like /cygdrive/c/PROGRA~1:/cygdr...
  2165. sys_lib_search_path_spec=`cygpath --path --unix "$LIB"`
  2166. sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null`
  2167. sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"`
  2168. ;;
  2169. *)
  2170. sys_lib_search_path_spec="$LIB"
  2171. if $ECHO "$sys_lib_search_path_spec" | [$GREP ';[c-zC-Z]:/' >/dev/null]; then
  2172. # It is most probably a Windows format PATH.
  2173. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
  2174. else
  2175. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"`
  2176. fi
  2177. # FIXME: find the short name or the path components, as spaces are
  2178. # common. (e.g. "Program Files" -> "PROGRA~1")
  2179. ;;
  2180. esac
  2181. # DLL is installed to $(libdir)/../bin by postinstall_cmds
  2182. postinstall_cmds='base_file=`basename \${file}`~
  2183. dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~
  2184. dldir=$destdir/`dirname \$dlpath`~
  2185. test -d \$dldir || mkdir -p \$dldir~
  2186. $install_prog $dir/$dlname \$dldir/$dlname'
  2187. postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~
  2188. dlpath=$dir/\$dldll~
  2189. $RM \$dlpath'
  2190. shlibpath_overrides_runpath=yes
  2191. dynamic_linker='Win32 link.exe'
  2192. ;;
  2193. *)
  2194. # Assume MSVC wrapper
  2195. library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib'
  2196. dynamic_linker='Win32 ld.exe'
  2197. ;;
  2198. esac
  2199. # FIXME: first we should search . and the directory the executable is in
  2200. shlibpath_var=PATH
  2201. ;;
  2202. darwin* | rhapsody*)
  2203. dynamic_linker="$host_os dyld"
  2204. version_type=darwin
  2205. need_lib_prefix=no
  2206. need_version=no
  2207. library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext'
  2208. soname_spec='${libname}${release}${major}$shared_ext'
  2209. shlibpath_overrides_runpath=yes
  2210. shlibpath_var=DYLD_LIBRARY_PATH
  2211. shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`'
  2212. m4_if([$1], [],[
  2213. sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"])
  2214. sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib'
  2215. ;;
  2216. dgux*)
  2217. version_type=linux # correct to gnu/linux during the next big refactor
  2218. need_lib_prefix=no
  2219. need_version=no
  2220. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext'
  2221. soname_spec='${libname}${release}${shared_ext}$major'
  2222. shlibpath_var=LD_LIBRARY_PATH
  2223. ;;
  2224. freebsd* | dragonfly*)
  2225. # DragonFly does not have aout. When/if they implement a new
  2226. # versioning mechanism, adjust this.
  2227. if test -x /usr/bin/objformat; then
  2228. objformat=`/usr/bin/objformat`
  2229. else
  2230. case $host_os in
  2231. freebsd[[23]].*) objformat=aout ;;
  2232. *) objformat=elf ;;
  2233. esac
  2234. fi
  2235. version_type=freebsd-$objformat
  2236. case $version_type in
  2237. freebsd-elf*)
  2238. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
  2239. need_version=no
  2240. need_lib_prefix=no
  2241. ;;
  2242. freebsd-*)
  2243. library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix'
  2244. need_version=yes
  2245. ;;
  2246. esac
  2247. shlibpath_var=LD_LIBRARY_PATH
  2248. case $host_os in
  2249. freebsd2.*)
  2250. shlibpath_overrides_runpath=yes
  2251. ;;
  2252. freebsd3.[[01]]* | freebsdelf3.[[01]]*)
  2253. shlibpath_overrides_runpath=yes
  2254. hardcode_into_libs=yes
  2255. ;;
  2256. freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \
  2257. freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1)
  2258. shlibpath_overrides_runpath=no
  2259. hardcode_into_libs=yes
  2260. ;;
  2261. *) # from 4.6 on, and DragonFly
  2262. shlibpath_overrides_runpath=yes
  2263. hardcode_into_libs=yes
  2264. ;;
  2265. esac
  2266. ;;
  2267. gnu*)
  2268. version_type=linux # correct to gnu/linux during the next big refactor
  2269. need_lib_prefix=no
  2270. need_version=no
  2271. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
  2272. soname_spec='${libname}${release}${shared_ext}$major'
  2273. shlibpath_var=LD_LIBRARY_PATH
  2274. shlibpath_overrides_runpath=no
  2275. hardcode_into_libs=yes
  2276. ;;
  2277. haiku*)
  2278. version_type=linux # correct to gnu/linux during the next big refactor
  2279. need_lib_prefix=no
  2280. need_version=no
  2281. dynamic_linker="$host_os runtime_loader"
  2282. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
  2283. soname_spec='${libname}${release}${shared_ext}$major'
  2284. shlibpath_var=LIBRARY_PATH
  2285. shlibpath_overrides_runpath=yes
  2286. sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib'
  2287. hardcode_into_libs=yes
  2288. ;;
  2289. hpux9* | hpux10* | hpux11*)
  2290. # Give a soname corresponding to the major version so that dld.sl refuses to
  2291. # link against other versions.
  2292. version_type=sunos
  2293. need_lib_prefix=no
  2294. need_version=no
  2295. case $host_cpu in
  2296. ia64*)
  2297. shrext_cmds='.so'
  2298. hardcode_into_libs=yes
  2299. dynamic_linker="$host_os dld.so"
  2300. shlibpath_var=LD_LIBRARY_PATH
  2301. shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
  2302. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2303. soname_spec='${libname}${release}${shared_ext}$major'
  2304. if test "X$HPUX_IA64_MODE" = X32; then
  2305. sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib"
  2306. else
  2307. sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64"
  2308. fi
  2309. sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
  2310. ;;
  2311. hppa*64*)
  2312. shrext_cmds='.sl'
  2313. hardcode_into_libs=yes
  2314. dynamic_linker="$host_os dld.sl"
  2315. shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH
  2316. shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
  2317. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2318. soname_spec='${libname}${release}${shared_ext}$major'
  2319. sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64"
  2320. sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
  2321. ;;
  2322. *)
  2323. shrext_cmds='.sl'
  2324. dynamic_linker="$host_os dld.sl"
  2325. shlibpath_var=SHLIB_PATH
  2326. shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH
  2327. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2328. soname_spec='${libname}${release}${shared_ext}$major'
  2329. ;;
  2330. esac
  2331. # HP-UX runs *really* slowly unless shared libraries are mode 555, ...
  2332. postinstall_cmds='chmod 555 $lib'
  2333. # or fails outright, so override atomically:
  2334. install_override_mode=555
  2335. ;;
  2336. interix[[3-9]]*)
  2337. version_type=linux # correct to gnu/linux during the next big refactor
  2338. need_lib_prefix=no
  2339. need_version=no
  2340. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
  2341. soname_spec='${libname}${release}${shared_ext}$major'
  2342. dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)'
  2343. shlibpath_var=LD_LIBRARY_PATH
  2344. shlibpath_overrides_runpath=no
  2345. hardcode_into_libs=yes
  2346. ;;
  2347. irix5* | irix6* | nonstopux*)
  2348. case $host_os in
  2349. nonstopux*) version_type=nonstopux ;;
  2350. *)
  2351. if test "$lt_cv_prog_gnu_ld" = yes; then
  2352. version_type=linux # correct to gnu/linux during the next big refactor
  2353. else
  2354. version_type=irix
  2355. fi ;;
  2356. esac
  2357. need_lib_prefix=no
  2358. need_version=no
  2359. soname_spec='${libname}${release}${shared_ext}$major'
  2360. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}'
  2361. case $host_os in
  2362. irix5* | nonstopux*)
  2363. libsuff= shlibsuff=
  2364. ;;
  2365. *)
  2366. case $LD in # libtool.m4 will add one of these switches to LD
  2367. *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ")
  2368. libsuff= shlibsuff= libmagic=32-bit;;
  2369. *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ")
  2370. libsuff=32 shlibsuff=N32 libmagic=N32;;
  2371. *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ")
  2372. libsuff=64 shlibsuff=64 libmagic=64-bit;;
  2373. *) libsuff= shlibsuff= libmagic=never-match;;
  2374. esac
  2375. ;;
  2376. esac
  2377. shlibpath_var=LD_LIBRARY${shlibsuff}_PATH
  2378. shlibpath_overrides_runpath=no
  2379. sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}"
  2380. sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}"
  2381. hardcode_into_libs=yes
  2382. ;;
  2383. # No shared lib support for Linux oldld, aout, or coff.
  2384. linux*oldld* | linux*aout* | linux*coff*)
  2385. dynamic_linker=no
  2386. ;;
  2387. # This must be glibc/ELF.
  2388. linux* | k*bsd*-gnu | kopensolaris*-gnu)
  2389. version_type=linux # correct to gnu/linux during the next big refactor
  2390. need_lib_prefix=no
  2391. need_version=no
  2392. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2393. soname_spec='${libname}${release}${shared_ext}$major'
  2394. finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir'
  2395. shlibpath_var=LD_LIBRARY_PATH
  2396. shlibpath_overrides_runpath=no
  2397. # Some binutils ld are patched to set DT_RUNPATH
  2398. AC_CACHE_VAL([lt_cv_shlibpath_overrides_runpath],
  2399. [lt_cv_shlibpath_overrides_runpath=no
  2400. save_LDFLAGS=$LDFLAGS
  2401. save_libdir=$libdir
  2402. eval "libdir=/foo; wl=\"$_LT_TAGVAR(lt_prog_compiler_wl, $1)\"; \
  2403. LDFLAGS=\"\$LDFLAGS $_LT_TAGVAR(hardcode_libdir_flag_spec, $1)\""
  2404. AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])],
  2405. [AS_IF([ ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null],
  2406. [lt_cv_shlibpath_overrides_runpath=yes])])
  2407. LDFLAGS=$save_LDFLAGS
  2408. libdir=$save_libdir
  2409. ])
  2410. shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath
  2411. # This implies no fast_install, which is unacceptable.
  2412. # Some rework will be needed to allow for fast_install
  2413. # before this can be enabled.
  2414. hardcode_into_libs=yes
  2415. # Append ld.so.conf contents to the search path
  2416. if test -f /etc/ld.so.conf; then
  2417. lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '`
  2418. sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
  2419. fi
  2420. # We used to test for /lib/ld.so.1 and disable shared libraries on
  2421. # powerpc, because MkLinux only supported shared libraries with the
  2422. # GNU dynamic linker. Since this was broken with cross compilers,
  2423. # most powerpc-linux boxes support dynamic linking these days and
  2424. # people can always --disable-shared, the test was removed, and we
  2425. # assume the GNU/Linux dynamic linker is in use.
  2426. dynamic_linker='GNU/Linux ld.so'
  2427. ;;
  2428. netbsd*)
  2429. version_type=sunos
  2430. need_lib_prefix=no
  2431. need_version=no
  2432. if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
  2433. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
  2434. finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
  2435. dynamic_linker='NetBSD (a.out) ld.so'
  2436. else
  2437. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
  2438. soname_spec='${libname}${release}${shared_ext}$major'
  2439. dynamic_linker='NetBSD ld.elf_so'
  2440. fi
  2441. shlibpath_var=LD_LIBRARY_PATH
  2442. shlibpath_overrides_runpath=yes
  2443. hardcode_into_libs=yes
  2444. ;;
  2445. newsos6)
  2446. version_type=linux # correct to gnu/linux during the next big refactor
  2447. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2448. shlibpath_var=LD_LIBRARY_PATH
  2449. shlibpath_overrides_runpath=yes
  2450. ;;
  2451. *nto* | *qnx*)
  2452. version_type=qnx
  2453. need_lib_prefix=no
  2454. need_version=no
  2455. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2456. soname_spec='${libname}${release}${shared_ext}$major'
  2457. shlibpath_var=LD_LIBRARY_PATH
  2458. shlibpath_overrides_runpath=no
  2459. hardcode_into_libs=yes
  2460. dynamic_linker='ldqnx.so'
  2461. ;;
  2462. openbsd*)
  2463. version_type=sunos
  2464. sys_lib_dlsearch_path_spec="/usr/lib"
  2465. need_lib_prefix=no
  2466. # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs.
  2467. case $host_os in
  2468. openbsd3.3 | openbsd3.3.*) need_version=yes ;;
  2469. *) need_version=no ;;
  2470. esac
  2471. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
  2472. finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
  2473. shlibpath_var=LD_LIBRARY_PATH
  2474. if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
  2475. case $host_os in
  2476. openbsd2.[[89]] | openbsd2.[[89]].*)
  2477. shlibpath_overrides_runpath=no
  2478. ;;
  2479. *)
  2480. shlibpath_overrides_runpath=yes
  2481. ;;
  2482. esac
  2483. else
  2484. shlibpath_overrides_runpath=yes
  2485. fi
  2486. ;;
  2487. os2*)
  2488. libname_spec='$name'
  2489. shrext_cmds=".dll"
  2490. need_lib_prefix=no
  2491. library_names_spec='$libname${shared_ext} $libname.a'
  2492. dynamic_linker='OS/2 ld.exe'
  2493. shlibpath_var=LIBPATH
  2494. ;;
  2495. osf3* | osf4* | osf5*)
  2496. version_type=osf
  2497. need_lib_prefix=no
  2498. need_version=no
  2499. soname_spec='${libname}${release}${shared_ext}$major'
  2500. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2501. shlibpath_var=LD_LIBRARY_PATH
  2502. sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib"
  2503. sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec"
  2504. ;;
  2505. rdos*)
  2506. dynamic_linker=no
  2507. ;;
  2508. solaris*)
  2509. version_type=linux # correct to gnu/linux during the next big refactor
  2510. need_lib_prefix=no
  2511. need_version=no
  2512. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2513. soname_spec='${libname}${release}${shared_ext}$major'
  2514. shlibpath_var=LD_LIBRARY_PATH
  2515. shlibpath_overrides_runpath=yes
  2516. hardcode_into_libs=yes
  2517. # ldd complains unless libraries are executable
  2518. postinstall_cmds='chmod +x $lib'
  2519. ;;
  2520. sunos4*)
  2521. version_type=sunos
  2522. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
  2523. finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir'
  2524. shlibpath_var=LD_LIBRARY_PATH
  2525. shlibpath_overrides_runpath=yes
  2526. if test "$with_gnu_ld" = yes; then
  2527. need_lib_prefix=no
  2528. fi
  2529. need_version=yes
  2530. ;;
  2531. sysv4 | sysv4.3*)
  2532. version_type=linux # correct to gnu/linux during the next big refactor
  2533. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2534. soname_spec='${libname}${release}${shared_ext}$major'
  2535. shlibpath_var=LD_LIBRARY_PATH
  2536. case $host_vendor in
  2537. sni)
  2538. shlibpath_overrides_runpath=no
  2539. need_lib_prefix=no
  2540. runpath_var=LD_RUN_PATH
  2541. ;;
  2542. siemens)
  2543. need_lib_prefix=no
  2544. ;;
  2545. motorola)
  2546. need_lib_prefix=no
  2547. need_version=no
  2548. shlibpath_overrides_runpath=no
  2549. sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib'
  2550. ;;
  2551. esac
  2552. ;;
  2553. sysv4*MP*)
  2554. if test -d /usr/nec ;then
  2555. version_type=linux # correct to gnu/linux during the next big refactor
  2556. library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}'
  2557. soname_spec='$libname${shared_ext}.$major'
  2558. shlibpath_var=LD_LIBRARY_PATH
  2559. fi
  2560. ;;
  2561. sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
  2562. version_type=freebsd-elf
  2563. need_lib_prefix=no
  2564. need_version=no
  2565. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
  2566. soname_spec='${libname}${release}${shared_ext}$major'
  2567. shlibpath_var=LD_LIBRARY_PATH
  2568. shlibpath_overrides_runpath=yes
  2569. hardcode_into_libs=yes
  2570. if test "$with_gnu_ld" = yes; then
  2571. sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib'
  2572. else
  2573. sys_lib_search_path_spec='/usr/ccs/lib /usr/lib'
  2574. case $host_os in
  2575. sco3.2v5*)
  2576. sys_lib_search_path_spec="$sys_lib_search_path_spec /lib"
  2577. ;;
  2578. esac
  2579. fi
  2580. sys_lib_dlsearch_path_spec='/usr/lib'
  2581. ;;
  2582. tpf*)
  2583. # TPF is a cross-target only. Preferred cross-host = GNU/Linux.
  2584. version_type=linux # correct to gnu/linux during the next big refactor
  2585. need_lib_prefix=no
  2586. need_version=no
  2587. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2588. shlibpath_var=LD_LIBRARY_PATH
  2589. shlibpath_overrides_runpath=no
  2590. hardcode_into_libs=yes
  2591. ;;
  2592. uts4*)
  2593. version_type=linux # correct to gnu/linux during the next big refactor
  2594. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2595. soname_spec='${libname}${release}${shared_ext}$major'
  2596. shlibpath_var=LD_LIBRARY_PATH
  2597. ;;
  2598. *)
  2599. dynamic_linker=no
  2600. ;;
  2601. esac
  2602. AC_MSG_RESULT([$dynamic_linker])
  2603. test "$dynamic_linker" = no && can_build_shared=no
  2604. variables_saved_for_relink="PATH $shlibpath_var $runpath_var"
  2605. if test "$GCC" = yes; then
  2606. variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH"
  2607. fi
  2608. if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then
  2609. sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec"
  2610. fi
  2611. if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then
  2612. sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec"
  2613. fi
  2614. _LT_DECL([], [variables_saved_for_relink], [1],
  2615. [Variables whose values should be saved in libtool wrapper scripts and
  2616. restored at link time])
  2617. _LT_DECL([], [need_lib_prefix], [0],
  2618. [Do we need the "lib" prefix for modules?])
  2619. _LT_DECL([], [need_version], [0], [Do we need a version for libraries?])
  2620. _LT_DECL([], [version_type], [0], [Library versioning type])
  2621. _LT_DECL([], [runpath_var], [0], [Shared library runtime path variable])
  2622. _LT_DECL([], [shlibpath_var], [0],[Shared library path variable])
  2623. _LT_DECL([], [shlibpath_overrides_runpath], [0],
  2624. [Is shlibpath searched before the hard-coded library search path?])
  2625. _LT_DECL([], [libname_spec], [1], [Format of library name prefix])
  2626. _LT_DECL([], [library_names_spec], [1],
  2627. [[List of archive names. First name is the real one, the rest are links.
  2628. The last name is the one that the linker finds with -lNAME]])
  2629. _LT_DECL([], [soname_spec], [1],
  2630. [[The coded name of the library, if different from the real name]])
  2631. _LT_DECL([], [install_override_mode], [1],
  2632. [Permission mode override for installation of shared libraries])
  2633. _LT_DECL([], [postinstall_cmds], [2],
  2634. [Command to use after installation of a shared archive])
  2635. _LT_DECL([], [postuninstall_cmds], [2],
  2636. [Command to use after uninstallation of a shared archive])
  2637. _LT_DECL([], [finish_cmds], [2],
  2638. [Commands used to finish a libtool library installation in a directory])
  2639. _LT_DECL([], [finish_eval], [1],
  2640. [[As "finish_cmds", except a single script fragment to be evaled but
  2641. not shown]])
  2642. _LT_DECL([], [hardcode_into_libs], [0],
  2643. [Whether we should hardcode library paths into libraries])
  2644. _LT_DECL([], [sys_lib_search_path_spec], [2],
  2645. [Compile-time system search path for libraries])
  2646. _LT_DECL([], [sys_lib_dlsearch_path_spec], [2],
  2647. [Run-time system search path for libraries])
  2648. ])# _LT_SYS_DYNAMIC_LINKER
  2649. # _LT_PATH_TOOL_PREFIX(TOOL)
  2650. # --------------------------
  2651. # find a file program which can recognize shared library
  2652. AC_DEFUN([_LT_PATH_TOOL_PREFIX],
  2653. [m4_require([_LT_DECL_EGREP])dnl
  2654. AC_MSG_CHECKING([for $1])
  2655. AC_CACHE_VAL(lt_cv_path_MAGIC_CMD,
  2656. [case $MAGIC_CMD in
  2657. [[\\/*] | ?:[\\/]*])
  2658. lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path.
  2659. ;;
  2660. *)
  2661. lt_save_MAGIC_CMD="$MAGIC_CMD"
  2662. lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
  2663. dnl $ac_dummy forces splitting on constant user-supplied paths.
  2664. dnl POSIX.2 word splitting is done only on the output of word expansions,
  2665. dnl not every word. This closes a longstanding sh security hole.
  2666. ac_dummy="m4_if([$2], , $PATH, [$2])"
  2667. for ac_dir in $ac_dummy; do
  2668. IFS="$lt_save_ifs"
  2669. test -z "$ac_dir" && ac_dir=.
  2670. if test -f $ac_dir/$1; then
  2671. lt_cv_path_MAGIC_CMD="$ac_dir/$1"
  2672. if test -n "$file_magic_test_file"; then
  2673. case $deplibs_check_method in
  2674. "file_magic "*)
  2675. file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"`
  2676. MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
  2677. if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null |
  2678. $EGREP "$file_magic_regex" > /dev/null; then
  2679. :
  2680. else
  2681. cat <<_LT_EOF 1>&2
  2682. *** Warning: the command libtool uses to detect shared libraries,
  2683. *** $file_magic_cmd, produces output that libtool cannot recognize.
  2684. *** The result is that libtool may fail to recognize shared libraries
  2685. *** as such. This will affect the creation of libtool libraries that
  2686. *** depend on shared libraries, but programs linked with such libtool
  2687. *** libraries will work regardless of this problem. Nevertheless, you
  2688. *** may want to report the problem to your system manager and/or to
  2689. *** bug-libtool@gnu.org
  2690. _LT_EOF
  2691. fi ;;
  2692. esac
  2693. fi
  2694. break
  2695. fi
  2696. done
  2697. IFS="$lt_save_ifs"
  2698. MAGIC_CMD="$lt_save_MAGIC_CMD"
  2699. ;;
  2700. esac])
  2701. MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
  2702. if test -n "$MAGIC_CMD"; then
  2703. AC_MSG_RESULT($MAGIC_CMD)
  2704. else
  2705. AC_MSG_RESULT(no)
  2706. fi
  2707. _LT_DECL([], [MAGIC_CMD], [0],
  2708. [Used to examine libraries when file_magic_cmd begins with "file"])dnl
  2709. ])# _LT_PATH_TOOL_PREFIX
  2710. # Old name:
  2711. AU_ALIAS([AC_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX])
  2712. dnl aclocal-1.4 backwards compatibility:
  2713. dnl AC_DEFUN([AC_PATH_TOOL_PREFIX], [])
  2714. # _LT_PATH_MAGIC
  2715. # --------------
  2716. # find a file program which can recognize a shared library
  2717. m4_defun([_LT_PATH_MAGIC],
  2718. [_LT_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH)
  2719. if test -z "$lt_cv_path_MAGIC_CMD"; then
  2720. if test -n "$ac_tool_prefix"; then
  2721. _LT_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH)
  2722. else
  2723. MAGIC_CMD=:
  2724. fi
  2725. fi
  2726. ])# _LT_PATH_MAGIC
  2727. # LT_PATH_LD
  2728. # ----------
  2729. # find the pathname to the GNU or non-GNU linker
  2730. AC_DEFUN([LT_PATH_LD],
  2731. [AC_REQUIRE([AC_PROG_CC])dnl
  2732. AC_REQUIRE([AC_CANONICAL_HOST])dnl
  2733. AC_REQUIRE([AC_CANONICAL_BUILD])dnl
  2734. m4_require([_LT_DECL_SED])dnl
  2735. m4_require([_LT_DECL_EGREP])dnl
  2736. m4_require([_LT_PROG_ECHO_BACKSLASH])dnl
  2737. AC_ARG_WITH([gnu-ld],
  2738. [AS_HELP_STRING([--with-gnu-ld],
  2739. [assume the C compiler uses GNU ld @<:@default=no@:>@])],
  2740. [test "$withval" = no || with_gnu_ld=yes],
  2741. [with_gnu_ld=no])dnl
  2742. ac_prog=ld
  2743. if test "$GCC" = yes; then
  2744. # Check if gcc -print-prog-name=ld gives a path.
  2745. AC_MSG_CHECKING([for ld used by $CC])
  2746. case $host in
  2747. *-*-mingw*)
  2748. # gcc leaves a trailing carriage return which upsets mingw
  2749. ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
  2750. *)
  2751. ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
  2752. esac
  2753. case $ac_prog in
  2754. # Accept absolute paths.
  2755. [[\\/]]* | ?:[[\\/]]*)
  2756. re_direlt='/[[^/]][[^/]]*/\.\./'
  2757. # Canonicalize the pathname of ld
  2758. ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'`
  2759. while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do
  2760. ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"`
  2761. done
  2762. test -z "$LD" && LD="$ac_prog"
  2763. ;;
  2764. "")
  2765. # If it fails, then pretend we aren't using GCC.
  2766. ac_prog=ld
  2767. ;;
  2768. *)
  2769. # If it is relative, then search for the first ld in PATH.
  2770. with_gnu_ld=unknown
  2771. ;;
  2772. esac
  2773. elif test "$with_gnu_ld" = yes; then
  2774. AC_MSG_CHECKING([for GNU ld])
  2775. else
  2776. AC_MSG_CHECKING([for non-GNU ld])
  2777. fi
  2778. AC_CACHE_VAL(lt_cv_path_LD,
  2779. [if test -z "$LD"; then
  2780. lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
  2781. for ac_dir in $PATH; do
  2782. IFS="$lt_save_ifs"
  2783. test -z "$ac_dir" && ac_dir=.
  2784. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
  2785. lt_cv_path_LD="$ac_dir/$ac_prog"
  2786. # Check to see if the program is GNU ld. I'd rather use --version,
  2787. # but apparently some variants of GNU ld only accept -v.
  2788. # Break only if it was the GNU/non-GNU ld that we prefer.
  2789. case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in
  2790. *GNU* | *'with BFD'*)
  2791. test "$with_gnu_ld" != no && break
  2792. ;;
  2793. *)
  2794. test "$with_gnu_ld" != yes && break
  2795. ;;
  2796. esac
  2797. fi
  2798. done
  2799. IFS="$lt_save_ifs"
  2800. else
  2801. lt_cv_path_LD="$LD" # Let the user override the test with a path.
  2802. fi])
  2803. LD="$lt_cv_path_LD"
  2804. if test -n "$LD"; then
  2805. AC_MSG_RESULT($LD)
  2806. else
  2807. AC_MSG_RESULT(no)
  2808. fi
  2809. test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH])
  2810. _LT_PATH_LD_GNU
  2811. AC_SUBST([LD])
  2812. _LT_TAGDECL([], [LD], [1], [The linker used to build libraries])
  2813. ])# LT_PATH_LD
  2814. # Old names:
  2815. AU_ALIAS([AM_PROG_LD], [LT_PATH_LD])
  2816. AU_ALIAS([AC_PROG_LD], [LT_PATH_LD])
  2817. dnl aclocal-1.4 backwards compatibility:
  2818. dnl AC_DEFUN([AM_PROG_LD], [])
  2819. dnl AC_DEFUN([AC_PROG_LD], [])
  2820. # _LT_PATH_LD_GNU
  2821. #- --------------
  2822. m4_defun([_LT_PATH_LD_GNU],
  2823. [AC_CACHE_CHECK([if the linker ($LD) is GNU ld], lt_cv_prog_gnu_ld,
  2824. [# I'd rather use --version here, but apparently some GNU lds only accept -v.
  2825. case `$LD -v 2>&1 </dev/null` in
  2826. *GNU* | *'with BFD'*)
  2827. lt_cv_prog_gnu_ld=yes
  2828. ;;
  2829. *)
  2830. lt_cv_prog_gnu_ld=no
  2831. ;;
  2832. esac])
  2833. with_gnu_ld=$lt_cv_prog_gnu_ld
  2834. ])# _LT_PATH_LD_GNU
  2835. # _LT_CMD_RELOAD
  2836. # --------------
  2837. # find reload flag for linker
  2838. # -- PORTME Some linkers may need a different reload flag.
  2839. m4_defun([_LT_CMD_RELOAD],
  2840. [AC_CACHE_CHECK([for $LD option to reload object files],
  2841. lt_cv_ld_reload_flag,
  2842. [lt_cv_ld_reload_flag='-r'])
  2843. reload_flag=$lt_cv_ld_reload_flag
  2844. case $reload_flag in
  2845. "" | " "*) ;;
  2846. *) reload_flag=" $reload_flag" ;;
  2847. esac
  2848. reload_cmds='$LD$reload_flag -o $output$reload_objs'
  2849. case $host_os in
  2850. cygwin* | mingw* | pw32* | cegcc*)
  2851. if test "$GCC" != yes; then
  2852. reload_cmds=false
  2853. fi
  2854. ;;
  2855. darwin*)
  2856. if test "$GCC" = yes; then
  2857. reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs'
  2858. else
  2859. reload_cmds='$LD$reload_flag -o $output$reload_objs'
  2860. fi
  2861. ;;
  2862. esac
  2863. _LT_TAGDECL([], [reload_flag], [1], [How to create reloadable object files])dnl
  2864. _LT_TAGDECL([], [reload_cmds], [2])dnl
  2865. ])# _LT_CMD_RELOAD
  2866. # _LT_CHECK_MAGIC_METHOD
  2867. # ----------------------
  2868. # how to check for library dependencies
  2869. # -- PORTME fill in with the dynamic library characteristics
  2870. m4_defun([_LT_CHECK_MAGIC_METHOD],
  2871. [m4_require([_LT_DECL_EGREP])
  2872. m4_require([_LT_DECL_OBJDUMP])
  2873. AC_CACHE_CHECK([how to recognize dependent libraries],
  2874. lt_cv_deplibs_check_method,
  2875. [lt_cv_file_magic_cmd='$MAGIC_CMD'
  2876. lt_cv_file_magic_test_file=
  2877. lt_cv_deplibs_check_method='unknown'
  2878. # Need to set the preceding variable on all platforms that support
  2879. # interlibrary dependencies.
  2880. # 'none' -- dependencies not supported.
  2881. # `unknown' -- same as none, but documents that we really don't know.
  2882. # 'pass_all' -- all dependencies passed with no checks.
  2883. # 'test_compile' -- check by making test program.
  2884. # 'file_magic [[regex]]' -- check by looking for files in library path
  2885. # which responds to the $file_magic_cmd with a given extended regex.
  2886. # If you have `file' or equivalent on your system and you're not sure
  2887. # whether `pass_all' will *always* work, you probably want this one.
  2888. case $host_os in
  2889. aix[[4-9]]*)
  2890. lt_cv_deplibs_check_method=pass_all
  2891. ;;
  2892. beos*)
  2893. lt_cv_deplibs_check_method=pass_all
  2894. ;;
  2895. bsdi[[45]]*)
  2896. lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib)'
  2897. lt_cv_file_magic_cmd='/usr/bin/file -L'
  2898. lt_cv_file_magic_test_file=/shlib/libc.so
  2899. ;;
  2900. cygwin*)
  2901. # func_win32_libid is a shell function defined in ltmain.sh
  2902. lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'
  2903. lt_cv_file_magic_cmd='func_win32_libid'
  2904. ;;
  2905. mingw* | pw32*)
  2906. # Base MSYS/MinGW do not provide the 'file' command needed by
  2907. # func_win32_libid shell function, so use a weaker test based on 'objdump',
  2908. # unless we find 'file', for example because we are cross-compiling.
  2909. # func_win32_libid assumes BSD nm, so disallow it if using MS dumpbin.
  2910. if ( test "$lt_cv_nm_interface" = "BSD nm" && file / ) >/dev/null 2>&1; then
  2911. lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'
  2912. lt_cv_file_magic_cmd='func_win32_libid'
  2913. else
  2914. # Keep this pattern in sync with the one in func_win32_libid.
  2915. lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)'
  2916. lt_cv_file_magic_cmd='$OBJDUMP -f'
  2917. fi
  2918. ;;
  2919. cegcc*)
  2920. # use the weaker test based on 'objdump'. See mingw*.
  2921. lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?'
  2922. lt_cv_file_magic_cmd='$OBJDUMP -f'
  2923. ;;
  2924. darwin* | rhapsody*)
  2925. lt_cv_deplibs_check_method=pass_all
  2926. ;;
  2927. freebsd* | dragonfly*)
  2928. if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then
  2929. case $host_cpu in
  2930. i*86 )
  2931. # Not sure whether the presence of OpenBSD here was a mistake.
  2932. # Let's accept both of them until this is cleared up.
  2933. lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library'
  2934. lt_cv_file_magic_cmd=/usr/bin/file
  2935. lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*`
  2936. ;;
  2937. esac
  2938. else
  2939. lt_cv_deplibs_check_method=pass_all
  2940. fi
  2941. ;;
  2942. gnu*)
  2943. lt_cv_deplibs_check_method=pass_all
  2944. ;;
  2945. haiku*)
  2946. lt_cv_deplibs_check_method=pass_all
  2947. ;;
  2948. hpux10.20* | hpux11*)
  2949. lt_cv_file_magic_cmd=/usr/bin/file
  2950. case $host_cpu in
  2951. ia64*)
  2952. lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64'
  2953. lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so
  2954. ;;
  2955. hppa*64*)
  2956. [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]']
  2957. lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl
  2958. ;;
  2959. *)
  2960. lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]]\.[[0-9]]) shared library'
  2961. lt_cv_file_magic_test_file=/usr/lib/libc.sl
  2962. ;;
  2963. esac
  2964. ;;
  2965. interix[[3-9]]*)
  2966. # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here
  2967. lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$'
  2968. ;;
  2969. irix5* | irix6* | nonstopux*)
  2970. case $LD in
  2971. *-32|*"-32 ") libmagic=32-bit;;
  2972. *-n32|*"-n32 ") libmagic=N32;;
  2973. *-64|*"-64 ") libmagic=64-bit;;
  2974. *) libmagic=never-match;;
  2975. esac
  2976. lt_cv_deplibs_check_method=pass_all
  2977. ;;
  2978. # This must be glibc/ELF.
  2979. linux* | k*bsd*-gnu | kopensolaris*-gnu)
  2980. lt_cv_deplibs_check_method=pass_all
  2981. ;;
  2982. netbsd*)
  2983. if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then
  2984. lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$'
  2985. else
  2986. lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$'
  2987. fi
  2988. ;;
  2989. newos6*)
  2990. lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)'
  2991. lt_cv_file_magic_cmd=/usr/bin/file
  2992. lt_cv_file_magic_test_file=/usr/lib/libnls.so
  2993. ;;
  2994. *nto* | *qnx*)
  2995. lt_cv_deplibs_check_method=pass_all
  2996. ;;
  2997. openbsd*)
  2998. if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
  2999. lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$'
  3000. else
  3001. lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$'
  3002. fi
  3003. ;;
  3004. osf3* | osf4* | osf5*)
  3005. lt_cv_deplibs_check_method=pass_all
  3006. ;;
  3007. rdos*)
  3008. lt_cv_deplibs_check_method=pass_all
  3009. ;;
  3010. solaris*)
  3011. lt_cv_deplibs_check_method=pass_all
  3012. ;;
  3013. sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
  3014. lt_cv_deplibs_check_method=pass_all
  3015. ;;
  3016. sysv4 | sysv4.3*)
  3017. case $host_vendor in
  3018. motorola)
  3019. lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]'
  3020. lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*`
  3021. ;;
  3022. ncr)
  3023. lt_cv_deplibs_check_method=pass_all
  3024. ;;
  3025. sequent)
  3026. lt_cv_file_magic_cmd='/bin/file'
  3027. lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )'
  3028. ;;
  3029. sni)
  3030. lt_cv_file_magic_cmd='/bin/file'
  3031. lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib"
  3032. lt_cv_file_magic_test_file=/lib/libc.so
  3033. ;;
  3034. siemens)
  3035. lt_cv_deplibs_check_method=pass_all
  3036. ;;
  3037. pc)
  3038. lt_cv_deplibs_check_method=pass_all
  3039. ;;
  3040. esac
  3041. ;;
  3042. tpf*)
  3043. lt_cv_deplibs_check_method=pass_all
  3044. ;;
  3045. esac
  3046. ])
  3047. file_magic_glob=
  3048. want_nocaseglob=no
  3049. if test "$build" = "$host"; then
  3050. case $host_os in
  3051. mingw* | pw32*)
  3052. if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then
  3053. want_nocaseglob=yes
  3054. else
  3055. file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[[\1]]\/[[\1]]\/g;/g"`
  3056. fi
  3057. ;;
  3058. esac
  3059. fi
  3060. file_magic_cmd=$lt_cv_file_magic_cmd
  3061. deplibs_check_method=$lt_cv_deplibs_check_method
  3062. test -z "$deplibs_check_method" && deplibs_check_method=unknown
  3063. _LT_DECL([], [deplibs_check_method], [1],
  3064. [Method to check whether dependent libraries are shared objects])
  3065. _LT_DECL([], [file_magic_cmd], [1],
  3066. [Command to use when deplibs_check_method = "file_magic"])
  3067. _LT_DECL([], [file_magic_glob], [1],
  3068. [How to find potential files when deplibs_check_method = "file_magic"])
  3069. _LT_DECL([], [want_nocaseglob], [1],
  3070. [Find potential files using nocaseglob when deplibs_check_method = "file_magic"])
  3071. ])# _LT_CHECK_MAGIC_METHOD
  3072. # LT_PATH_NM
  3073. # ----------
  3074. # find the pathname to a BSD- or MS-compatible name lister
  3075. AC_DEFUN([LT_PATH_NM],
  3076. [AC_REQUIRE([AC_PROG_CC])dnl
  3077. AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM,
  3078. [if test -n "$NM"; then
  3079. # Let the user override the test.
  3080. lt_cv_path_NM="$NM"
  3081. else
  3082. lt_nm_to_check="${ac_tool_prefix}nm"
  3083. if test -n "$ac_tool_prefix" && test "$build" = "$host"; then
  3084. lt_nm_to_check="$lt_nm_to_check nm"
  3085. fi
  3086. for lt_tmp_nm in $lt_nm_to_check; do
  3087. lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
  3088. for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do
  3089. IFS="$lt_save_ifs"
  3090. test -z "$ac_dir" && ac_dir=.
  3091. tmp_nm="$ac_dir/$lt_tmp_nm"
  3092. if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then
  3093. # Check to see if the nm accepts a BSD-compat flag.
  3094. # Adding the `sed 1q' prevents false positives on HP-UX, which says:
  3095. # nm: unknown option "B" ignored
  3096. # Tru64's nm complains that /dev/null is an invalid object file
  3097. case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in
  3098. */dev/null* | *'Invalid file or object type'*)
  3099. lt_cv_path_NM="$tmp_nm -B"
  3100. break
  3101. ;;
  3102. *)
  3103. case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in
  3104. */dev/null*)
  3105. lt_cv_path_NM="$tmp_nm -p"
  3106. break
  3107. ;;
  3108. *)
  3109. lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but
  3110. continue # so that we can try to find one that supports BSD flags
  3111. ;;
  3112. esac
  3113. ;;
  3114. esac
  3115. fi
  3116. done
  3117. IFS="$lt_save_ifs"
  3118. done
  3119. : ${lt_cv_path_NM=no}
  3120. fi])
  3121. if test "$lt_cv_path_NM" != "no"; then
  3122. NM="$lt_cv_path_NM"
  3123. else
  3124. # Didn't find any BSD compatible name lister, look for dumpbin.
  3125. if test -n "$DUMPBIN"; then :
  3126. # Let the user override the test.
  3127. else
  3128. AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :)
  3129. case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in
  3130. *COFF*)
  3131. DUMPBIN="$DUMPBIN -symbols"
  3132. ;;
  3133. *)
  3134. DUMPBIN=:
  3135. ;;
  3136. esac
  3137. fi
  3138. AC_SUBST([DUMPBIN])
  3139. if test "$DUMPBIN" != ":"; then
  3140. NM="$DUMPBIN"
  3141. fi
  3142. fi
  3143. test -z "$NM" && NM=nm
  3144. AC_SUBST([NM])
  3145. _LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl
  3146. AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface],
  3147. [lt_cv_nm_interface="BSD nm"
  3148. echo "int some_variable = 0;" > conftest.$ac_ext
  3149. (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&AS_MESSAGE_LOG_FD)
  3150. (eval "$ac_compile" 2>conftest.err)
  3151. cat conftest.err >&AS_MESSAGE_LOG_FD
  3152. (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD)
  3153. (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out)
  3154. cat conftest.err >&AS_MESSAGE_LOG_FD
  3155. (eval echo "\"\$as_me:$LINENO: output\"" >&AS_MESSAGE_LOG_FD)
  3156. cat conftest.out >&AS_MESSAGE_LOG_FD
  3157. if $GREP 'External.*some_variable' conftest.out > /dev/null; then
  3158. lt_cv_nm_interface="MS dumpbin"
  3159. fi
  3160. rm -f conftest*])
  3161. ])# LT_PATH_NM
  3162. # Old names:
  3163. AU_ALIAS([AM_PROG_NM], [LT_PATH_NM])
  3164. AU_ALIAS([AC_PROG_NM], [LT_PATH_NM])
  3165. dnl aclocal-1.4 backwards compatibility:
  3166. dnl AC_DEFUN([AM_PROG_NM], [])
  3167. dnl AC_DEFUN([AC_PROG_NM], [])
  3168. # _LT_CHECK_SHAREDLIB_FROM_LINKLIB
  3169. # --------------------------------
  3170. # how to determine the name of the shared library
  3171. # associated with a specific link library.
  3172. # -- PORTME fill in with the dynamic library characteristics
  3173. m4_defun([_LT_CHECK_SHAREDLIB_FROM_LINKLIB],
  3174. [m4_require([_LT_DECL_EGREP])
  3175. m4_require([_LT_DECL_OBJDUMP])
  3176. m4_require([_LT_DECL_DLLTOOL])
  3177. AC_CACHE_CHECK([how to associate runtime and link libraries],
  3178. lt_cv_sharedlib_from_linklib_cmd,
  3179. [lt_cv_sharedlib_from_linklib_cmd='unknown'
  3180. case $host_os in
  3181. cygwin* | mingw* | pw32* | cegcc*)
  3182. # two different shell functions defined in ltmain.sh
  3183. # decide which to use based on capabilities of $DLLTOOL
  3184. case `$DLLTOOL --help 2>&1` in
  3185. *--identify-strict*)
  3186. lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib
  3187. ;;
  3188. *)
  3189. lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback
  3190. ;;
  3191. esac
  3192. ;;
  3193. *)
  3194. # fallback: assume linklib IS sharedlib
  3195. lt_cv_sharedlib_from_linklib_cmd="$ECHO"
  3196. ;;
  3197. esac
  3198. ])
  3199. sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd
  3200. test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO
  3201. _LT_DECL([], [sharedlib_from_linklib_cmd], [1],
  3202. [Command to associate shared and link libraries])
  3203. ])# _LT_CHECK_SHAREDLIB_FROM_LINKLIB
  3204. # _LT_PATH_MANIFEST_TOOL
  3205. # ----------------------
  3206. # locate the manifest tool
  3207. m4_defun([_LT_PATH_MANIFEST_TOOL],
  3208. [AC_CHECK_TOOL(MANIFEST_TOOL, mt, :)
  3209. test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt
  3210. AC_CACHE_CHECK([if $MANIFEST_TOOL is a manifest tool], [lt_cv_path_mainfest_tool],
  3211. [lt_cv_path_mainfest_tool=no
  3212. echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&AS_MESSAGE_LOG_FD
  3213. $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out
  3214. cat conftest.err >&AS_MESSAGE_LOG_FD
  3215. if $GREP 'Manifest Tool' conftest.out > /dev/null; then
  3216. lt_cv_path_mainfest_tool=yes
  3217. fi
  3218. rm -f conftest*])
  3219. if test "x$lt_cv_path_mainfest_tool" != xyes; then
  3220. MANIFEST_TOOL=:
  3221. fi
  3222. _LT_DECL([], [MANIFEST_TOOL], [1], [Manifest tool])dnl
  3223. ])# _LT_PATH_MANIFEST_TOOL
  3224. # LT_LIB_M
  3225. # --------
  3226. # check for math library
  3227. AC_DEFUN([LT_LIB_M],
  3228. [AC_REQUIRE([AC_CANONICAL_HOST])dnl
  3229. LIBM=
  3230. case $host in
  3231. *-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-pw32* | *-*-darwin*)
  3232. # These system don't have libm, or don't need it
  3233. ;;
  3234. *-ncr-sysv4.3*)
  3235. AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw")
  3236. AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm")
  3237. ;;
  3238. *)
  3239. AC_CHECK_LIB(m, cos, LIBM="-lm")
  3240. ;;
  3241. esac
  3242. AC_SUBST([LIBM])
  3243. ])# LT_LIB_M
  3244. # Old name:
  3245. AU_ALIAS([AC_CHECK_LIBM], [LT_LIB_M])
  3246. dnl aclocal-1.4 backwards compatibility:
  3247. dnl AC_DEFUN([AC_CHECK_LIBM], [])
  3248. # _LT_COMPILER_NO_RTTI([TAGNAME])
  3249. # -------------------------------
  3250. m4_defun([_LT_COMPILER_NO_RTTI],
  3251. [m4_require([_LT_TAG_COMPILER])dnl
  3252. _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=
  3253. if test "$GCC" = yes; then
  3254. case $cc_basename in
  3255. nvcc*)
  3256. _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -Xcompiler -fno-builtin' ;;
  3257. *)
  3258. _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' ;;
  3259. esac
  3260. _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions],
  3261. lt_cv_prog_compiler_rtti_exceptions,
  3262. [-fno-rtti -fno-exceptions], [],
  3263. [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"])
  3264. fi
  3265. _LT_TAGDECL([no_builtin_flag], [lt_prog_compiler_no_builtin_flag], [1],
  3266. [Compiler flag to turn off builtin functions])
  3267. ])# _LT_COMPILER_NO_RTTI
  3268. # _LT_CMD_GLOBAL_SYMBOLS
  3269. # ----------------------
  3270. m4_defun([_LT_CMD_GLOBAL_SYMBOLS],
  3271. [AC_REQUIRE([AC_CANONICAL_HOST])dnl
  3272. AC_REQUIRE([AC_PROG_CC])dnl
  3273. AC_REQUIRE([AC_PROG_AWK])dnl
  3274. AC_REQUIRE([LT_PATH_NM])dnl
  3275. AC_REQUIRE([LT_PATH_LD])dnl
  3276. m4_require([_LT_DECL_SED])dnl
  3277. m4_require([_LT_DECL_EGREP])dnl
  3278. m4_require([_LT_TAG_COMPILER])dnl
  3279. # Check for command to grab the raw symbol name followed by C symbol from nm.
  3280. AC_MSG_CHECKING([command to parse $NM output from $compiler object])
  3281. AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe],
  3282. [
  3283. # These are sane defaults that work on at least a few old systems.
  3284. # [They come from Ultrix. What could be older than Ultrix?!! ;)]
  3285. # Character class describing NM global symbol codes.
  3286. symcode='[[BCDEGRST]]'
  3287. # Regexp to match symbols that can be accessed directly from C.
  3288. sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)'
  3289. # Define system-specific variables.
  3290. case $host_os in
  3291. aix*)
  3292. symcode='[[BCDT]]'
  3293. ;;
  3294. cygwin* | mingw* | pw32* | cegcc*)
  3295. symcode='[[ABCDGISTW]]'
  3296. ;;
  3297. hpux*)
  3298. if test "$host_cpu" = ia64; then
  3299. symcode='[[ABCDEGRST]]'
  3300. fi
  3301. ;;
  3302. irix* | nonstopux*)
  3303. symcode='[[BCDEGRST]]'
  3304. ;;
  3305. osf*)
  3306. symcode='[[BCDEGQRST]]'
  3307. ;;
  3308. solaris*)
  3309. symcode='[[BDRT]]'
  3310. ;;
  3311. sco3.2v5*)
  3312. symcode='[[DT]]'
  3313. ;;
  3314. sysv4.2uw2*)
  3315. symcode='[[DT]]'
  3316. ;;
  3317. sysv5* | sco5v6* | unixware* | OpenUNIX*)
  3318. symcode='[[ABDT]]'
  3319. ;;
  3320. sysv4)
  3321. symcode='[[DFNSTU]]'
  3322. ;;
  3323. esac
  3324. # If we're using GNU nm, then use its standard symbol codes.
  3325. case `$NM -V 2>&1` in
  3326. *GNU* | *'with BFD'*)
  3327. symcode='[[ABCDGIRSTW]]' ;;
  3328. esac
  3329. # Transform an extracted symbol line into a proper C declaration.
  3330. # Some systems (esp. on ia64) link data and code symbols differently,
  3331. # so use this general approach.
  3332. lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'"
  3333. # Transform an extracted symbol line into symbol name and symbol address
  3334. lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p'"
  3335. lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \(lib[[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"lib\2\", (void *) \&\2},/p'"
  3336. # Handle CRLF in mingw tool chain
  3337. opt_cr=
  3338. case $build_os in
  3339. mingw*)
  3340. opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp
  3341. ;;
  3342. esac
  3343. # Try without a prefix underscore, then with it.
  3344. for ac_symprfx in "" "_"; do
  3345. # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol.
  3346. symxfrm="\\1 $ac_symprfx\\2 \\2"
  3347. # Write the raw and C identifiers.
  3348. if test "$lt_cv_nm_interface" = "MS dumpbin"; then
  3349. # Fake it for dumpbin and say T for any non-static function
  3350. # and D for any global variable.
  3351. # Also find C++ and __fastcall symbols from MSVC++,
  3352. # which start with @ or ?.
  3353. lt_cv_sys_global_symbol_pipe="$AWK ['"\
  3354. " {last_section=section; section=\$ 3};"\
  3355. " /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\
  3356. " /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\
  3357. " \$ 0!~/External *\|/{next};"\
  3358. " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\
  3359. " {if(hide[section]) next};"\
  3360. " {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\
  3361. " {split(\$ 0, a, /\||\r/); split(a[2], s)};"\
  3362. " s[1]~/^[@?]/{print s[1], s[1]; next};"\
  3363. " s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\
  3364. " ' prfx=^$ac_symprfx]"
  3365. else
  3366. lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'"
  3367. fi
  3368. lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'"
  3369. # Check to see that the pipe works correctly.
  3370. pipe_works=no
  3371. rm -f conftest*
  3372. cat > conftest.$ac_ext <<_LT_EOF
  3373. #ifdef __cplusplus
  3374. extern "C" {
  3375. #endif
  3376. char nm_test_var;
  3377. void nm_test_func(void);
  3378. void nm_test_func(void){}
  3379. #ifdef __cplusplus
  3380. }
  3381. #endif
  3382. int main(){nm_test_var='a';nm_test_func();return(0);}
  3383. _LT_EOF
  3384. if AC_TRY_EVAL(ac_compile); then
  3385. # Now try to grab the symbols.
  3386. nlist=conftest.nm
  3387. if AC_TRY_EVAL(NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) && test -s "$nlist"; then
  3388. # Try sorting and uniquifying the output.
  3389. if sort "$nlist" | uniq > "$nlist"T; then
  3390. mv -f "$nlist"T "$nlist"
  3391. else
  3392. rm -f "$nlist"T
  3393. fi
  3394. # Make sure that we snagged all the symbols we need.
  3395. if $GREP ' nm_test_var$' "$nlist" >/dev/null; then
  3396. if $GREP ' nm_test_func$' "$nlist" >/dev/null; then
  3397. cat <<_LT_EOF > conftest.$ac_ext
  3398. /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */
  3399. #if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE)
  3400. /* DATA imports from DLLs on WIN32 con't be const, because runtime
  3401. relocations are performed -- see ld's documentation on pseudo-relocs. */
  3402. # define LT@&t@_DLSYM_CONST
  3403. #elif defined(__osf__)
  3404. /* This system does not cope well with relocations in const data. */
  3405. # define LT@&t@_DLSYM_CONST
  3406. #else
  3407. # define LT@&t@_DLSYM_CONST const
  3408. #endif
  3409. #ifdef __cplusplus
  3410. extern "C" {
  3411. #endif
  3412. _LT_EOF
  3413. # Now generate the symbol file.
  3414. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext'
  3415. cat <<_LT_EOF >> conftest.$ac_ext
  3416. /* The mapping between symbol names and symbols. */
  3417. LT@&t@_DLSYM_CONST struct {
  3418. const char *name;
  3419. void *address;
  3420. }
  3421. lt__PROGRAM__LTX_preloaded_symbols[[]] =
  3422. {
  3423. { "@PROGRAM@", (void *) 0 },
  3424. _LT_EOF
  3425. $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext
  3426. cat <<\_LT_EOF >> conftest.$ac_ext
  3427. {0, (void *) 0}
  3428. };
  3429. /* This works around a problem in FreeBSD linker */
  3430. #ifdef FREEBSD_WORKAROUND
  3431. static const void *lt_preloaded_setup() {
  3432. return lt__PROGRAM__LTX_preloaded_symbols;
  3433. }
  3434. #endif
  3435. #ifdef __cplusplus
  3436. }
  3437. #endif
  3438. _LT_EOF
  3439. # Now try linking the two files.
  3440. mv conftest.$ac_objext conftstm.$ac_objext
  3441. lt_globsym_save_LIBS=$LIBS
  3442. lt_globsym_save_CFLAGS=$CFLAGS
  3443. LIBS="conftstm.$ac_objext"
  3444. CFLAGS="$CFLAGS$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)"
  3445. if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then
  3446. pipe_works=yes
  3447. fi
  3448. LIBS=$lt_globsym_save_LIBS
  3449. CFLAGS=$lt_globsym_save_CFLAGS
  3450. else
  3451. echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD
  3452. fi
  3453. else
  3454. echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD
  3455. fi
  3456. else
  3457. echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD
  3458. fi
  3459. else
  3460. echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD
  3461. cat conftest.$ac_ext >&5
  3462. fi
  3463. rm -rf conftest* conftst*
  3464. # Do not use the global_symbol_pipe unless it works.
  3465. if test "$pipe_works" = yes; then
  3466. break
  3467. else
  3468. lt_cv_sys_global_symbol_pipe=
  3469. fi
  3470. done
  3471. ])
  3472. if test -z "$lt_cv_sys_global_symbol_pipe"; then
  3473. lt_cv_sys_global_symbol_to_cdecl=
  3474. fi
  3475. if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then
  3476. AC_MSG_RESULT(failed)
  3477. else
  3478. AC_MSG_RESULT(ok)
  3479. fi
  3480. # Response file support.
  3481. if test "$lt_cv_nm_interface" = "MS dumpbin"; then
  3482. nm_file_list_spec='@'
  3483. elif $NM --help 2>/dev/null | grep '[[@]]FILE' >/dev/null; then
  3484. nm_file_list_spec='@'
  3485. fi
  3486. _LT_DECL([global_symbol_pipe], [lt_cv_sys_global_symbol_pipe], [1],
  3487. [Take the output of nm and produce a listing of raw symbols and C names])
  3488. _LT_DECL([global_symbol_to_cdecl], [lt_cv_sys_global_symbol_to_cdecl], [1],
  3489. [Transform the output of nm in a proper C declaration])
  3490. _LT_DECL([global_symbol_to_c_name_address],
  3491. [lt_cv_sys_global_symbol_to_c_name_address], [1],
  3492. [Transform the output of nm in a C name address pair])
  3493. _LT_DECL([global_symbol_to_c_name_address_lib_prefix],
  3494. [lt_cv_sys_global_symbol_to_c_name_address_lib_prefix], [1],
  3495. [Transform the output of nm in a C name address pair when lib prefix is needed])
  3496. _LT_DECL([], [nm_file_list_spec], [1],
  3497. [Specify filename containing input files for $NM])
  3498. ]) # _LT_CMD_GLOBAL_SYMBOLS
  3499. # _LT_COMPILER_PIC([TAGNAME])
  3500. # ---------------------------
  3501. m4_defun([_LT_COMPILER_PIC],
  3502. [m4_require([_LT_TAG_COMPILER])dnl
  3503. _LT_TAGVAR(lt_prog_compiler_wl, $1)=
  3504. _LT_TAGVAR(lt_prog_compiler_pic, $1)=
  3505. _LT_TAGVAR(lt_prog_compiler_static, $1)=
  3506. m4_if([$1], [CXX], [
  3507. # C++ specific cases for pic, static, wl, etc.
  3508. if test "$GXX" = yes; then
  3509. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3510. _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
  3511. case $host_os in
  3512. aix*)
  3513. # All AIX code is PIC.
  3514. if test "$host_cpu" = ia64; then
  3515. # AIX 5 now supports IA64 processor
  3516. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  3517. fi
  3518. ;;
  3519. amigaos*)
  3520. case $host_cpu in
  3521. powerpc)
  3522. # see comment about AmigaOS4 .so support
  3523. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
  3524. ;;
  3525. m68k)
  3526. # FIXME: we need at least 68020 code to build shared libraries, but
  3527. # adding the `-m68020' flag to GCC prevents building anything better,
  3528. # like `-m68040'.
  3529. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4'
  3530. ;;
  3531. esac
  3532. ;;
  3533. beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)
  3534. # PIC is the default for these OSes.
  3535. ;;
  3536. mingw* | cygwin* | os2* | pw32* | cegcc*)
  3537. # This hack is so that the source file can tell whether it is being
  3538. # built for inclusion in a dll (and should export symbols for example).
  3539. # Although the cygwin gcc ignores -fPIC, still need this for old-style
  3540. # (--disable-auto-import) libraries
  3541. m4_if([$1], [GCJ], [],
  3542. [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])
  3543. ;;
  3544. darwin* | rhapsody*)
  3545. # PIC is the default on this platform
  3546. # Common symbols not allowed in MH_DYLIB files
  3547. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common'
  3548. ;;
  3549. *djgpp*)
  3550. # DJGPP does not support shared libraries at all
  3551. _LT_TAGVAR(lt_prog_compiler_pic, $1)=
  3552. ;;
  3553. haiku*)
  3554. # PIC is the default for Haiku.
  3555. # The "-static" flag exists, but is broken.
  3556. _LT_TAGVAR(lt_prog_compiler_static, $1)=
  3557. ;;
  3558. interix[[3-9]]*)
  3559. # Interix 3.x gcc -fpic/-fPIC options generate broken code.
  3560. # Instead, we relocate shared libraries at runtime.
  3561. ;;
  3562. sysv4*MP*)
  3563. if test -d /usr/nec; then
  3564. _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic
  3565. fi
  3566. ;;
  3567. hpux*)
  3568. # PIC is the default for 64-bit PA HP-UX, but not for 32-bit
  3569. # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag
  3570. # sets the default TLS model and affects inlining.
  3571. case $host_cpu in
  3572. hppa*64*)
  3573. ;;
  3574. *)
  3575. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
  3576. ;;
  3577. esac
  3578. ;;
  3579. *qnx* | *nto*)
  3580. # QNX uses GNU C++, but need to define -shared option too, otherwise
  3581. # it will coredump.
  3582. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared'
  3583. ;;
  3584. *)
  3585. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
  3586. ;;
  3587. esac
  3588. else
  3589. case $host_os in
  3590. aix[[4-9]]*)
  3591. # All AIX code is PIC.
  3592. if test "$host_cpu" = ia64; then
  3593. # AIX 5 now supports IA64 processor
  3594. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  3595. else
  3596. _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp'
  3597. fi
  3598. ;;
  3599. chorus*)
  3600. case $cc_basename in
  3601. cxch68*)
  3602. # Green Hills C++ Compiler
  3603. # _LT_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a"
  3604. ;;
  3605. esac
  3606. ;;
  3607. mingw* | cygwin* | os2* | pw32* | cegcc*)
  3608. # This hack is so that the source file can tell whether it is being
  3609. # built for inclusion in a dll (and should export symbols for example).
  3610. m4_if([$1], [GCJ], [],
  3611. [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])
  3612. ;;
  3613. dgux*)
  3614. case $cc_basename in
  3615. ec++*)
  3616. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  3617. ;;
  3618. ghcx*)
  3619. # Green Hills C++ Compiler
  3620. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
  3621. ;;
  3622. *)
  3623. ;;
  3624. esac
  3625. ;;
  3626. freebsd* | dragonfly*)
  3627. # FreeBSD uses GNU C++
  3628. ;;
  3629. hpux9* | hpux10* | hpux11*)
  3630. case $cc_basename in
  3631. CC*)
  3632. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3633. _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive'
  3634. if test "$host_cpu" != ia64; then
  3635. _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
  3636. fi
  3637. ;;
  3638. aCC*)
  3639. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3640. _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive'
  3641. case $host_cpu in
  3642. hppa*64*|ia64*)
  3643. # +Z the default
  3644. ;;
  3645. *)
  3646. _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
  3647. ;;
  3648. esac
  3649. ;;
  3650. *)
  3651. ;;
  3652. esac
  3653. ;;
  3654. interix*)
  3655. # This is c89, which is MS Visual C++ (no shared libs)
  3656. # Anyone wants to do a port?
  3657. ;;
  3658. irix5* | irix6* | nonstopux*)
  3659. case $cc_basename in
  3660. CC*)
  3661. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3662. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
  3663. # CC pic flag -KPIC is the default.
  3664. ;;
  3665. *)
  3666. ;;
  3667. esac
  3668. ;;
  3669. linux* | k*bsd*-gnu | kopensolaris*-gnu)
  3670. case $cc_basename in
  3671. KCC*)
  3672. # KAI C++ Compiler
  3673. _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,'
  3674. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
  3675. ;;
  3676. ecpc* )
  3677. # old Intel C++ for x86_64 which still supported -KPIC.
  3678. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3679. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  3680. _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
  3681. ;;
  3682. icpc* )
  3683. # Intel C++, used to be incompatible with GCC.
  3684. # ICC 10 doesn't accept -KPIC any more.
  3685. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3686. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
  3687. _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
  3688. ;;
  3689. pgCC* | pgcpp*)
  3690. # Portland Group C++ compiler
  3691. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3692. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic'
  3693. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  3694. ;;
  3695. cxx*)
  3696. # Compaq C++
  3697. # Make sure the PIC flag is empty. It appears that all Alpha
  3698. # Linux and Compaq Tru64 Unix objects are PIC.
  3699. _LT_TAGVAR(lt_prog_compiler_pic, $1)=
  3700. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
  3701. ;;
  3702. xlc* | xlC* | bgxl[[cC]]* | mpixl[[cC]]*)
  3703. # IBM XL 8.0, 9.0 on PPC and BlueGene
  3704. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3705. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic'
  3706. _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink'
  3707. ;;
  3708. *)
  3709. case `$CC -V 2>&1 | sed 5q` in
  3710. *Sun\ C*)
  3711. # Sun C++ 5.9
  3712. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  3713. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  3714. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
  3715. ;;
  3716. esac
  3717. ;;
  3718. esac
  3719. ;;
  3720. lynxos*)
  3721. ;;
  3722. m88k*)
  3723. ;;
  3724. mvs*)
  3725. case $cc_basename in
  3726. cxx*)
  3727. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall'
  3728. ;;
  3729. *)
  3730. ;;
  3731. esac
  3732. ;;
  3733. netbsd*)
  3734. ;;
  3735. *qnx* | *nto*)
  3736. # QNX uses GNU C++, but need to define -shared option too, otherwise
  3737. # it will coredump.
  3738. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared'
  3739. ;;
  3740. osf3* | osf4* | osf5*)
  3741. case $cc_basename in
  3742. KCC*)
  3743. _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,'
  3744. ;;
  3745. RCC*)
  3746. # Rational C++ 2.4.1
  3747. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
  3748. ;;
  3749. cxx*)
  3750. # Digital/Compaq C++
  3751. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3752. # Make sure the PIC flag is empty. It appears that all Alpha
  3753. # Linux and Compaq Tru64 Unix objects are PIC.
  3754. _LT_TAGVAR(lt_prog_compiler_pic, $1)=
  3755. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
  3756. ;;
  3757. *)
  3758. ;;
  3759. esac
  3760. ;;
  3761. psos*)
  3762. ;;
  3763. solaris*)
  3764. case $cc_basename in
  3765. CC* | sunCC*)
  3766. # Sun C++ 4.2, 5.x and Centerline C++
  3767. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  3768. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  3769. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
  3770. ;;
  3771. gcx*)
  3772. # Green Hills C++ Compiler
  3773. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'
  3774. ;;
  3775. *)
  3776. ;;
  3777. esac
  3778. ;;
  3779. sunos4*)
  3780. case $cc_basename in
  3781. CC*)
  3782. # Sun C++ 4.x
  3783. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
  3784. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  3785. ;;
  3786. lcc*)
  3787. # Lucid
  3788. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
  3789. ;;
  3790. *)
  3791. ;;
  3792. esac
  3793. ;;
  3794. sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)
  3795. case $cc_basename in
  3796. CC*)
  3797. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3798. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  3799. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  3800. ;;
  3801. esac
  3802. ;;
  3803. tandem*)
  3804. case $cc_basename in
  3805. NCC*)
  3806. # NonStop-UX NCC 3.20
  3807. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  3808. ;;
  3809. *)
  3810. ;;
  3811. esac
  3812. ;;
  3813. vxworks*)
  3814. ;;
  3815. *)
  3816. _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
  3817. ;;
  3818. esac
  3819. fi
  3820. ],
  3821. [
  3822. if test "$GCC" = yes; then
  3823. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3824. _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
  3825. case $host_os in
  3826. aix*)
  3827. # All AIX code is PIC.
  3828. if test "$host_cpu" = ia64; then
  3829. # AIX 5 now supports IA64 processor
  3830. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  3831. fi
  3832. ;;
  3833. amigaos*)
  3834. case $host_cpu in
  3835. powerpc)
  3836. # see comment about AmigaOS4 .so support
  3837. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
  3838. ;;
  3839. m68k)
  3840. # FIXME: we need at least 68020 code to build shared libraries, but
  3841. # adding the `-m68020' flag to GCC prevents building anything better,
  3842. # like `-m68040'.
  3843. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4'
  3844. ;;
  3845. esac
  3846. ;;
  3847. beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)
  3848. # PIC is the default for these OSes.
  3849. ;;
  3850. mingw* | cygwin* | pw32* | os2* | cegcc*)
  3851. # This hack is so that the source file can tell whether it is being
  3852. # built for inclusion in a dll (and should export symbols for example).
  3853. # Although the cygwin gcc ignores -fPIC, still need this for old-style
  3854. # (--disable-auto-import) libraries
  3855. m4_if([$1], [GCJ], [],
  3856. [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])
  3857. ;;
  3858. darwin* | rhapsody*)
  3859. # PIC is the default on this platform
  3860. # Common symbols not allowed in MH_DYLIB files
  3861. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common'
  3862. ;;
  3863. haiku*)
  3864. # PIC is the default for Haiku.
  3865. # The "-static" flag exists, but is broken.
  3866. _LT_TAGVAR(lt_prog_compiler_static, $1)=
  3867. ;;
  3868. hpux*)
  3869. # PIC is the default for 64-bit PA HP-UX, but not for 32-bit
  3870. # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag
  3871. # sets the default TLS model and affects inlining.
  3872. case $host_cpu in
  3873. hppa*64*)
  3874. # +Z the default
  3875. ;;
  3876. *)
  3877. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
  3878. ;;
  3879. esac
  3880. ;;
  3881. interix[[3-9]]*)
  3882. # Interix 3.x gcc -fpic/-fPIC options generate broken code.
  3883. # Instead, we relocate shared libraries at runtime.
  3884. ;;
  3885. msdosdjgpp*)
  3886. # Just because we use GCC doesn't mean we suddenly get shared libraries
  3887. # on systems that don't support them.
  3888. _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
  3889. enable_shared=no
  3890. ;;
  3891. *nto* | *qnx*)
  3892. # QNX uses GNU C++, but need to define -shared option too, otherwise
  3893. # it will coredump.
  3894. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared'
  3895. ;;
  3896. sysv4*MP*)
  3897. if test -d /usr/nec; then
  3898. _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic
  3899. fi
  3900. ;;
  3901. *)
  3902. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
  3903. ;;
  3904. esac
  3905. case $cc_basename in
  3906. nvcc*) # Cuda Compiler Driver 2.2
  3907. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Xlinker '
  3908. if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then
  3909. _LT_TAGVAR(lt_prog_compiler_pic, $1)="-Xcompiler $_LT_TAGVAR(lt_prog_compiler_pic, $1)"
  3910. fi
  3911. ;;
  3912. esac
  3913. else
  3914. # PORTME Check for flag to pass linker flags through the system compiler.
  3915. case $host_os in
  3916. aix*)
  3917. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3918. if test "$host_cpu" = ia64; then
  3919. # AIX 5 now supports IA64 processor
  3920. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  3921. else
  3922. _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp'
  3923. fi
  3924. ;;
  3925. mingw* | cygwin* | pw32* | os2* | cegcc*)
  3926. # This hack is so that the source file can tell whether it is being
  3927. # built for inclusion in a dll (and should export symbols for example).
  3928. m4_if([$1], [GCJ], [],
  3929. [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])
  3930. ;;
  3931. hpux9* | hpux10* | hpux11*)
  3932. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3933. # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
  3934. # not for PA HP-UX.
  3935. case $host_cpu in
  3936. hppa*64*|ia64*)
  3937. # +Z the default
  3938. ;;
  3939. *)
  3940. _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
  3941. ;;
  3942. esac
  3943. # Is there a better lt_prog_compiler_static that works with the bundled CC?
  3944. _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive'
  3945. ;;
  3946. irix5* | irix6* | nonstopux*)
  3947. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3948. # PIC (with -KPIC) is the default.
  3949. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
  3950. ;;
  3951. linux* | k*bsd*-gnu | kopensolaris*-gnu)
  3952. case $cc_basename in
  3953. # old Intel for x86_64 which still supported -KPIC.
  3954. ecc*)
  3955. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3956. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  3957. _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
  3958. ;;
  3959. # icc used to be incompatible with GCC.
  3960. # ICC 10 doesn't accept -KPIC any more.
  3961. icc* | ifort*)
  3962. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3963. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
  3964. _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
  3965. ;;
  3966. # Lahey Fortran 8.1.
  3967. lf95*)
  3968. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3969. _LT_TAGVAR(lt_prog_compiler_pic, $1)='--shared'
  3970. _LT_TAGVAR(lt_prog_compiler_static, $1)='--static'
  3971. ;;
  3972. nagfor*)
  3973. # NAG Fortran compiler
  3974. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,'
  3975. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'
  3976. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  3977. ;;
  3978. pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*)
  3979. # Portland Group compilers (*not* the Pentium gcc compiler,
  3980. # which looks to be a dead project)
  3981. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3982. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic'
  3983. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  3984. ;;
  3985. ccc*)
  3986. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3987. # All Alpha code is PIC.
  3988. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
  3989. ;;
  3990. xl* | bgxl* | bgf* | mpixl*)
  3991. # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene
  3992. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3993. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic'
  3994. _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink'
  3995. ;;
  3996. *)
  3997. case `$CC -V 2>&1 | sed 5q` in
  3998. *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [[1-7]].* | *Sun*Fortran*\ 8.[[0-3]]*)
  3999. # Sun Fortran 8.3 passes all unrecognized flags to the linker
  4000. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  4001. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  4002. _LT_TAGVAR(lt_prog_compiler_wl, $1)=''
  4003. ;;
  4004. *Sun\ F* | *Sun*Fortran*)
  4005. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  4006. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  4007. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
  4008. ;;
  4009. *Sun\ C*)
  4010. # Sun C 5.9
  4011. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  4012. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  4013. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  4014. ;;
  4015. *Intel*\ [[CF]]*Compiler*)
  4016. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  4017. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
  4018. _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
  4019. ;;
  4020. *Portland\ Group*)
  4021. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  4022. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic'
  4023. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  4024. ;;
  4025. esac
  4026. ;;
  4027. esac
  4028. ;;
  4029. newsos6)
  4030. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  4031. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  4032. ;;
  4033. *nto* | *qnx*)
  4034. # QNX uses GNU C++, but need to define -shared option too, otherwise
  4035. # it will coredump.
  4036. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared'
  4037. ;;
  4038. osf3* | osf4* | osf5*)
  4039. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  4040. # All OSF/1 code is PIC.
  4041. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
  4042. ;;
  4043. rdos*)
  4044. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
  4045. ;;
  4046. solaris*)
  4047. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  4048. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  4049. case $cc_basename in
  4050. f77* | f90* | f95* | sunf77* | sunf90* | sunf95*)
  4051. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';;
  4052. *)
  4053. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';;
  4054. esac
  4055. ;;
  4056. sunos4*)
  4057. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
  4058. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'
  4059. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  4060. ;;
  4061. sysv4 | sysv4.2uw2* | sysv4.3*)
  4062. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  4063. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  4064. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  4065. ;;
  4066. sysv4*MP*)
  4067. if test -d /usr/nec ;then
  4068. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic'
  4069. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  4070. fi
  4071. ;;
  4072. sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)
  4073. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  4074. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  4075. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  4076. ;;
  4077. unicos*)
  4078. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  4079. _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
  4080. ;;
  4081. uts4*)
  4082. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
  4083. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  4084. ;;
  4085. *)
  4086. _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
  4087. ;;
  4088. esac
  4089. fi
  4090. ])
  4091. case $host_os in
  4092. # For platforms which do not support PIC, -DPIC is meaningless:
  4093. *djgpp*)
  4094. _LT_TAGVAR(lt_prog_compiler_pic, $1)=
  4095. ;;
  4096. *)
  4097. _LT_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])"
  4098. ;;
  4099. esac
  4100. AC_CACHE_CHECK([for $compiler option to produce PIC],
  4101. [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)],
  4102. [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_prog_compiler_pic, $1)])
  4103. _LT_TAGVAR(lt_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)
  4104. #
  4105. # Check to make sure the PIC flag actually works.
  4106. #
  4107. if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then
  4108. _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, $1) works],
  4109. [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, $1)],
  4110. [$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])], [],
  4111. [case $_LT_TAGVAR(lt_prog_compiler_pic, $1) in
  4112. "" | " "*) ;;
  4113. *) _LT_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_TAGVAR(lt_prog_compiler_pic, $1)" ;;
  4114. esac],
  4115. [_LT_TAGVAR(lt_prog_compiler_pic, $1)=
  4116. _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no])
  4117. fi
  4118. _LT_TAGDECL([pic_flag], [lt_prog_compiler_pic], [1],
  4119. [Additional compiler flags for building library objects])
  4120. _LT_TAGDECL([wl], [lt_prog_compiler_wl], [1],
  4121. [How to pass a linker flag through the compiler])
  4122. #
  4123. # Check to make sure the static flag actually works.
  4124. #
  4125. wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_TAGVAR(lt_prog_compiler_static, $1)\"
  4126. _LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works],
  4127. _LT_TAGVAR(lt_cv_prog_compiler_static_works, $1),
  4128. $lt_tmp_static_flag,
  4129. [],
  4130. [_LT_TAGVAR(lt_prog_compiler_static, $1)=])
  4131. _LT_TAGDECL([link_static_flag], [lt_prog_compiler_static], [1],
  4132. [Compiler flag to prevent dynamic linking])
  4133. ])# _LT_COMPILER_PIC
  4134. # _LT_LINKER_SHLIBS([TAGNAME])
  4135. # ----------------------------
  4136. # See if the linker supports building shared libraries.
  4137. m4_defun([_LT_LINKER_SHLIBS],
  4138. [AC_REQUIRE([LT_PATH_LD])dnl
  4139. AC_REQUIRE([LT_PATH_NM])dnl
  4140. m4_require([_LT_PATH_MANIFEST_TOOL])dnl
  4141. m4_require([_LT_FILEUTILS_DEFAULTS])dnl
  4142. m4_require([_LT_DECL_EGREP])dnl
  4143. m4_require([_LT_DECL_SED])dnl
  4144. m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl
  4145. m4_require([_LT_TAG_COMPILER])dnl
  4146. AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries])
  4147. m4_if([$1], [CXX], [
  4148. _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
  4149. _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*']
  4150. case $host_os in
  4151. aix[[4-9]]*)
  4152. # If we're using GNU nm, then we don't want the "-C" option.
  4153. # -C means demangle to AIX nm, but means don't demangle with GNU nm
  4154. # Also, AIX nm treats weak defined symbols like other global defined
  4155. # symbols, whereas GNU nm marks them as "W".
  4156. if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then
  4157. _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols'
  4158. else
  4159. _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols'
  4160. fi
  4161. ;;
  4162. pw32*)
  4163. _LT_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds"
  4164. ;;
  4165. cygwin* | mingw* | cegcc*)
  4166. case $cc_basename in
  4167. cl*)
  4168. _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*'
  4169. ;;
  4170. *)
  4171. _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols'
  4172. _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname']
  4173. ;;
  4174. esac
  4175. ;;
  4176. *)
  4177. _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
  4178. ;;
  4179. esac
  4180. ], [
  4181. runpath_var=
  4182. _LT_TAGVAR(allow_undefined_flag, $1)=
  4183. _LT_TAGVAR(always_export_symbols, $1)=no
  4184. _LT_TAGVAR(archive_cmds, $1)=
  4185. _LT_TAGVAR(archive_expsym_cmds, $1)=
  4186. _LT_TAGVAR(compiler_needs_object, $1)=no
  4187. _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no
  4188. _LT_TAGVAR(export_dynamic_flag_spec, $1)=
  4189. _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
  4190. _LT_TAGVAR(hardcode_automatic, $1)=no
  4191. _LT_TAGVAR(hardcode_direct, $1)=no
  4192. _LT_TAGVAR(hardcode_direct_absolute, $1)=no
  4193. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=
  4194. _LT_TAGVAR(hardcode_libdir_separator, $1)=
  4195. _LT_TAGVAR(hardcode_minus_L, $1)=no
  4196. _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
  4197. _LT_TAGVAR(inherit_rpath, $1)=no
  4198. _LT_TAGVAR(link_all_deplibs, $1)=unknown
  4199. _LT_TAGVAR(module_cmds, $1)=
  4200. _LT_TAGVAR(module_expsym_cmds, $1)=
  4201. _LT_TAGVAR(old_archive_from_new_cmds, $1)=
  4202. _LT_TAGVAR(old_archive_from_expsyms_cmds, $1)=
  4203. _LT_TAGVAR(thread_safe_flag_spec, $1)=
  4204. _LT_TAGVAR(whole_archive_flag_spec, $1)=
  4205. # include_expsyms should be a list of space-separated symbols to be *always*
  4206. # included in the symbol list
  4207. _LT_TAGVAR(include_expsyms, $1)=
  4208. # exclude_expsyms can be an extended regexp of symbols to exclude
  4209. # it will be wrapped by ` (' and `)$', so one must not match beginning or
  4210. # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc',
  4211. # as well as any symbol that contains `d'.
  4212. _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*']
  4213. # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out
  4214. # platforms (ab)use it in PIC code, but their linkers get confused if
  4215. # the symbol is explicitly referenced. Since portable code cannot
  4216. # rely on this symbol name, it's probably fine to never include it in
  4217. # preloaded symbol tables.
  4218. # Exclude shared library initialization/finalization symbols.
  4219. dnl Note also adjust exclude_expsyms for C++ above.
  4220. extract_expsyms_cmds=
  4221. case $host_os in
  4222. cygwin* | mingw* | pw32* | cegcc*)
  4223. # FIXME: the MSVC++ port hasn't been tested in a loooong time
  4224. # When not using gcc, we currently assume that we are using
  4225. # Microsoft Visual C++.
  4226. if test "$GCC" != yes; then
  4227. with_gnu_ld=no
  4228. fi
  4229. ;;
  4230. interix*)
  4231. # we just hope/assume this is gcc and not c89 (= MSVC++)
  4232. with_gnu_ld=yes
  4233. ;;
  4234. openbsd*)
  4235. with_gnu_ld=no
  4236. ;;
  4237. esac
  4238. _LT_TAGVAR(ld_shlibs, $1)=yes
  4239. # On some targets, GNU ld is compatible enough with the native linker
  4240. # that we're better off using the native interface for both.
  4241. lt_use_gnu_ld_interface=no
  4242. if test "$with_gnu_ld" = yes; then
  4243. case $host_os in
  4244. aix*)
  4245. # The AIX port of GNU ld has always aspired to compatibility
  4246. # with the native linker. However, as the warning in the GNU ld
  4247. # block says, versions before 2.19.5* couldn't really create working
  4248. # shared libraries, regardless of the interface used.
  4249. case `$LD -v 2>&1` in
  4250. *\ \(GNU\ Binutils\)\ 2.19.5*) ;;
  4251. *\ \(GNU\ Binutils\)\ 2.[[2-9]]*) ;;
  4252. *\ \(GNU\ Binutils\)\ [[3-9]]*) ;;
  4253. *)
  4254. lt_use_gnu_ld_interface=yes
  4255. ;;
  4256. esac
  4257. ;;
  4258. *)
  4259. lt_use_gnu_ld_interface=yes
  4260. ;;
  4261. esac
  4262. fi
  4263. if test "$lt_use_gnu_ld_interface" = yes; then
  4264. # If archive_cmds runs LD, not CC, wlarc should be empty
  4265. wlarc='${wl}'
  4266. # Set some defaults for GNU ld with shared library support. These
  4267. # are reset later if shared libraries are not supported. Putting them
  4268. # here allows them to be overridden if necessary.
  4269. runpath_var=LD_RUN_PATH
  4270. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
  4271. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
  4272. # ancient GNU ld didn't support --whole-archive et. al.
  4273. if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then
  4274. _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
  4275. else
  4276. _LT_TAGVAR(whole_archive_flag_spec, $1)=
  4277. fi
  4278. supports_anon_versioning=no
  4279. case `$LD -v 2>&1` in
  4280. *GNU\ gold*) supports_anon_versioning=yes ;;
  4281. *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11
  4282. *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ...
  4283. *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ...
  4284. *\ 2.11.*) ;; # other 2.11 versions
  4285. *) supports_anon_versioning=yes ;;
  4286. esac
  4287. # See if GNU ld supports shared libraries.
  4288. case $host_os in
  4289. aix[[3-9]]*)
  4290. # On AIX/PPC, the GNU linker is very broken
  4291. if test "$host_cpu" != ia64; then
  4292. _LT_TAGVAR(ld_shlibs, $1)=no
  4293. cat <<_LT_EOF 1>&2
  4294. *** Warning: the GNU linker, at least up to release 2.19, is reported
  4295. *** to be unable to reliably create shared libraries on AIX.
  4296. *** Therefore, libtool is disabling shared libraries support. If you
  4297. *** really care for shared libraries, you may want to install binutils
  4298. *** 2.20 or above, or modify your PATH so that a non-GNU linker is found.
  4299. *** You will then need to restart the configuration process.
  4300. _LT_EOF
  4301. fi
  4302. ;;
  4303. amigaos*)
  4304. case $host_cpu in
  4305. powerpc)
  4306. # see comment about AmigaOS4 .so support
  4307. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  4308. _LT_TAGVAR(archive_expsym_cmds, $1)=''
  4309. ;;
  4310. m68k)
  4311. _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)'
  4312. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
  4313. _LT_TAGVAR(hardcode_minus_L, $1)=yes
  4314. ;;
  4315. esac
  4316. ;;
  4317. beos*)
  4318. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
  4319. _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
  4320. # Joseph Beckenbach <jrb3@best.com> says some releases of gcc
  4321. # support --undefined. This deserves some investigation. FIXME
  4322. _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  4323. else
  4324. _LT_TAGVAR(ld_shlibs, $1)=no
  4325. fi
  4326. ;;
  4327. cygwin* | mingw* | pw32* | cegcc*)
  4328. # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless,
  4329. # as there is no search path for DLLs.
  4330. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
  4331. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols'
  4332. _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
  4333. _LT_TAGVAR(always_export_symbols, $1)=no
  4334. _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
  4335. _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols'
  4336. _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname']
  4337. if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then
  4338. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
  4339. # If the export-symbols file already is a .def file (1st line
  4340. # is EXPORTS), use it as is; otherwise, prepend...
  4341. _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
  4342. cp $export_symbols $output_objdir/$soname.def;
  4343. else
  4344. echo EXPORTS > $output_objdir/$soname.def;
  4345. cat $export_symbols >> $output_objdir/$soname.def;
  4346. fi~
  4347. $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
  4348. else
  4349. _LT_TAGVAR(ld_shlibs, $1)=no
  4350. fi
  4351. ;;
  4352. haiku*)
  4353. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  4354. _LT_TAGVAR(link_all_deplibs, $1)=yes
  4355. ;;
  4356. interix[[3-9]]*)
  4357. _LT_TAGVAR(hardcode_direct, $1)=no
  4358. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  4359. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
  4360. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
  4361. # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc.
  4362. # Instead, shared libraries are loaded at an image base (0x10000000 by
  4363. # default) and relocated if they conflict, which is a slow very memory
  4364. # consuming and fragmenting process. To avoid this, we pick a random,
  4365. # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link
  4366. # time. Moving up from 0x10000000 also allows more sbrk(2) space.
  4367. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
  4368. _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
  4369. ;;
  4370. gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu)
  4371. tmp_diet=no
  4372. if test "$host_os" = linux-dietlibc; then
  4373. case $cc_basename in
  4374. diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn)
  4375. esac
  4376. fi
  4377. if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \
  4378. && test "$tmp_diet" = no
  4379. then
  4380. tmp_addflag=' $pic_flag'
  4381. tmp_sharedflag='-shared'
  4382. case $cc_basename,$host_cpu in
  4383. pgcc*) # Portland Group C compiler
  4384. _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive'
  4385. tmp_addflag=' $pic_flag'
  4386. ;;
  4387. pgf77* | pgf90* | pgf95* | pgfortran*)
  4388. # Portland Group f77 and f90 compilers
  4389. _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive'
  4390. tmp_addflag=' $pic_flag -Mnomain' ;;
  4391. ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64
  4392. tmp_addflag=' -i_dynamic' ;;
  4393. efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64
  4394. tmp_addflag=' -i_dynamic -nofor_main' ;;
  4395. ifc* | ifort*) # Intel Fortran compiler
  4396. tmp_addflag=' -nofor_main' ;;
  4397. lf95*) # Lahey Fortran 8.1
  4398. _LT_TAGVAR(whole_archive_flag_spec, $1)=
  4399. tmp_sharedflag='--shared' ;;
  4400. xl[[cC]]* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL C 8.0 on PPC (deal with xlf below)
  4401. tmp_sharedflag='-qmkshrobj'
  4402. tmp_addflag= ;;
  4403. nvcc*) # Cuda Compiler Driver 2.2
  4404. _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive'
  4405. _LT_TAGVAR(compiler_needs_object, $1)=yes
  4406. ;;
  4407. esac
  4408. case `$CC -V 2>&1 | sed 5q` in
  4409. *Sun\ C*) # Sun C 5.9
  4410. _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive'
  4411. _LT_TAGVAR(compiler_needs_object, $1)=yes
  4412. tmp_sharedflag='-G' ;;
  4413. *Sun\ F*) # Sun Fortran 8.3
  4414. tmp_sharedflag='-G' ;;
  4415. esac
  4416. _LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  4417. if test "x$supports_anon_versioning" = xyes; then
  4418. _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~
  4419. cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
  4420. echo "local: *; };" >> $output_objdir/$libname.ver~
  4421. $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'
  4422. fi
  4423. case $cc_basename in
  4424. xlf* | bgf* | bgxlf* | mpixlf*)
  4425. # IBM XL Fortran 10.1 on PPC cannot create shared libs itself
  4426. _LT_TAGVAR(whole_archive_flag_spec, $1)='--whole-archive$convenience --no-whole-archive'
  4427. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
  4428. _LT_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib'
  4429. if test "x$supports_anon_versioning" = xyes; then
  4430. _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~
  4431. cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
  4432. echo "local: *; };" >> $output_objdir/$libname.ver~
  4433. $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib'
  4434. fi
  4435. ;;
  4436. esac
  4437. else
  4438. _LT_TAGVAR(ld_shlibs, $1)=no
  4439. fi
  4440. ;;
  4441. netbsd*)
  4442. if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
  4443. _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'
  4444. wlarc=
  4445. else
  4446. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  4447. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
  4448. fi
  4449. ;;
  4450. solaris*)
  4451. if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then
  4452. _LT_TAGVAR(ld_shlibs, $1)=no
  4453. cat <<_LT_EOF 1>&2
  4454. *** Warning: The releases 2.8.* of the GNU linker cannot reliably
  4455. *** create shared libraries on Solaris systems. Therefore, libtool
  4456. *** is disabling shared libraries support. We urge you to upgrade GNU
  4457. *** binutils to release 2.9.1 or newer. Another option is to modify
  4458. *** your PATH or compiler configuration so that the native linker is
  4459. *** used, and then restart.
  4460. _LT_EOF
  4461. elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
  4462. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  4463. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
  4464. else
  4465. _LT_TAGVAR(ld_shlibs, $1)=no
  4466. fi
  4467. ;;
  4468. sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*)
  4469. case `$LD -v 2>&1` in
  4470. *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*)
  4471. _LT_TAGVAR(ld_shlibs, $1)=no
  4472. cat <<_LT_EOF 1>&2
  4473. *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not
  4474. *** reliably create shared libraries on SCO systems. Therefore, libtool
  4475. *** is disabling shared libraries support. We urge you to upgrade GNU
  4476. *** binutils to release 2.16.91.0.3 or newer. Another option is to modify
  4477. *** your PATH or compiler configuration so that the native linker is
  4478. *** used, and then restart.
  4479. _LT_EOF
  4480. ;;
  4481. *)
  4482. # For security reasons, it is highly recommended that you always
  4483. # use absolute paths for naming shared libraries, and exclude the
  4484. # DT_RUNPATH tag from executables and libraries. But doing so
  4485. # requires that you compile everything twice, which is a pain.
  4486. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
  4487. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
  4488. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  4489. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
  4490. else
  4491. _LT_TAGVAR(ld_shlibs, $1)=no
  4492. fi
  4493. ;;
  4494. esac
  4495. ;;
  4496. sunos4*)
  4497. _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags'
  4498. wlarc=
  4499. _LT_TAGVAR(hardcode_direct, $1)=yes
  4500. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  4501. ;;
  4502. *)
  4503. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
  4504. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  4505. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
  4506. else
  4507. _LT_TAGVAR(ld_shlibs, $1)=no
  4508. fi
  4509. ;;
  4510. esac
  4511. if test "$_LT_TAGVAR(ld_shlibs, $1)" = no; then
  4512. runpath_var=
  4513. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=
  4514. _LT_TAGVAR(export_dynamic_flag_spec, $1)=
  4515. _LT_TAGVAR(whole_archive_flag_spec, $1)=
  4516. fi
  4517. else
  4518. # PORTME fill in a description of your system's linker (not GNU ld)
  4519. case $host_os in
  4520. aix3*)
  4521. _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
  4522. _LT_TAGVAR(always_export_symbols, $1)=yes
  4523. _LT_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname'
  4524. # Note: this linker hardcodes the directories in LIBPATH if there
  4525. # are no directories specified by -L.
  4526. _LT_TAGVAR(hardcode_minus_L, $1)=yes
  4527. if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then
  4528. # Neither direct hardcoding nor static linking is supported with a
  4529. # broken collect2.
  4530. _LT_TAGVAR(hardcode_direct, $1)=unsupported
  4531. fi
  4532. ;;
  4533. aix[[4-9]]*)
  4534. if test "$host_cpu" = ia64; then
  4535. # On IA64, the linker does run time linking by default, so we don't
  4536. # have to do anything special.
  4537. aix_use_runtimelinking=no
  4538. exp_sym_flag='-Bexport'
  4539. no_entry_flag=""
  4540. else
  4541. # If we're using GNU nm, then we don't want the "-C" option.
  4542. # -C means demangle to AIX nm, but means don't demangle with GNU nm
  4543. # Also, AIX nm treats weak defined symbols like other global
  4544. # defined symbols, whereas GNU nm marks them as "W".
  4545. if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then
  4546. _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols'
  4547. else
  4548. _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols'
  4549. fi
  4550. aix_use_runtimelinking=no
  4551. # Test if we are trying to use run time linking or normal
  4552. # AIX style linking. If -brtl is somewhere in LDFLAGS, we
  4553. # need to do runtime linking.
  4554. case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*)
  4555. for ld_flag in $LDFLAGS; do
  4556. if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then
  4557. aix_use_runtimelinking=yes
  4558. break
  4559. fi
  4560. done
  4561. ;;
  4562. esac
  4563. exp_sym_flag='-bexport'
  4564. no_entry_flag='-bnoentry'
  4565. fi
  4566. # When large executables or shared objects are built, AIX ld can
  4567. # have problems creating the table of contents. If linking a library
  4568. # or program results in "error TOC overflow" add -mminimal-toc to
  4569. # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not
  4570. # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.
  4571. _LT_TAGVAR(archive_cmds, $1)=''
  4572. _LT_TAGVAR(hardcode_direct, $1)=yes
  4573. _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
  4574. _LT_TAGVAR(hardcode_libdir_separator, $1)=':'
  4575. _LT_TAGVAR(link_all_deplibs, $1)=yes
  4576. _LT_TAGVAR(file_list_spec, $1)='${wl}-f,'
  4577. if test "$GCC" = yes; then
  4578. case $host_os in aix4.[[012]]|aix4.[[012]].*)
  4579. # We only want to do this on AIX 4.2 and lower, the check
  4580. # below for broken collect2 doesn't work under 4.3+
  4581. collect2name=`${CC} -print-prog-name=collect2`
  4582. if test -f "$collect2name" &&
  4583. strings "$collect2name" | $GREP resolve_lib_name >/dev/null
  4584. then
  4585. # We have reworked collect2
  4586. :
  4587. else
  4588. # We have old collect2
  4589. _LT_TAGVAR(hardcode_direct, $1)=unsupported
  4590. # It fails to find uninstalled libraries when the uninstalled
  4591. # path is not listed in the libpath. Setting hardcode_minus_L
  4592. # to unsupported forces relinking
  4593. _LT_TAGVAR(hardcode_minus_L, $1)=yes
  4594. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
  4595. _LT_TAGVAR(hardcode_libdir_separator, $1)=
  4596. fi
  4597. ;;
  4598. esac
  4599. shared_flag='-shared'
  4600. if test "$aix_use_runtimelinking" = yes; then
  4601. shared_flag="$shared_flag "'${wl}-G'
  4602. fi
  4603. else
  4604. # not using gcc
  4605. if test "$host_cpu" = ia64; then
  4606. # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release
  4607. # chokes on -Wl,-G. The following line is correct:
  4608. shared_flag='-G'
  4609. else
  4610. if test "$aix_use_runtimelinking" = yes; then
  4611. shared_flag='${wl}-G'
  4612. else
  4613. shared_flag='${wl}-bM:SRE'
  4614. fi
  4615. fi
  4616. fi
  4617. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall'
  4618. # It seems that -bexpall does not export symbols beginning with
  4619. # underscore (_), so it is better to generate a list of symbols to export.
  4620. _LT_TAGVAR(always_export_symbols, $1)=yes
  4621. if test "$aix_use_runtimelinking" = yes; then
  4622. # Warning - without using the other runtime loading flags (-brtl),
  4623. # -berok will link without error, but may produce a broken library.
  4624. _LT_TAGVAR(allow_undefined_flag, $1)='-berok'
  4625. # Determine the default libpath from the value encoded in an
  4626. # empty executable.
  4627. _LT_SYS_MODULE_PATH_AIX([$1])
  4628. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
  4629. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag"
  4630. else
  4631. if test "$host_cpu" = ia64; then
  4632. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib'
  4633. _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs"
  4634. _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols"
  4635. else
  4636. # Determine the default libpath from the value encoded in an
  4637. # empty executable.
  4638. _LT_SYS_MODULE_PATH_AIX([$1])
  4639. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
  4640. # Warning - without using the other run time loading flags,
  4641. # -berok will link without error, but may produce a broken library.
  4642. _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok'
  4643. _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok'
  4644. if test "$with_gnu_ld" = yes; then
  4645. # We only use this code for GNU lds that support --whole-archive.
  4646. _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive'
  4647. else
  4648. # Exported symbols can be pulled into shared objects from archives
  4649. _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience'
  4650. fi
  4651. _LT_TAGVAR(archive_cmds_need_lc, $1)=yes
  4652. # This is similar to how AIX traditionally builds its shared libraries.
  4653. _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname'
  4654. fi
  4655. fi
  4656. ;;
  4657. amigaos*)
  4658. case $host_cpu in
  4659. powerpc)
  4660. # see comment about AmigaOS4 .so support
  4661. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  4662. _LT_TAGVAR(archive_expsym_cmds, $1)=''
  4663. ;;
  4664. m68k)
  4665. _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)'
  4666. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
  4667. _LT_TAGVAR(hardcode_minus_L, $1)=yes
  4668. ;;
  4669. esac
  4670. ;;
  4671. bsdi[[45]]*)
  4672. _LT_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic
  4673. ;;
  4674. cygwin* | mingw* | pw32* | cegcc*)
  4675. # When not using gcc, we currently assume that we are using
  4676. # Microsoft Visual C++.
  4677. # hardcode_libdir_flag_spec is actually meaningless, as there is
  4678. # no search path for DLLs.
  4679. case $cc_basename in
  4680. cl*)
  4681. # Native MSVC
  4682. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' '
  4683. _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
  4684. _LT_TAGVAR(always_export_symbols, $1)=yes
  4685. _LT_TAGVAR(file_list_spec, $1)='@'
  4686. # Tell ltmain to make .lib files, not .a files.
  4687. libext=lib
  4688. # Tell ltmain to make .dll files, not .so files.
  4689. shrext_cmds=".dll"
  4690. # FIXME: Setting linknames here is a bad hack.
  4691. _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames='
  4692. _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
  4693. sed -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp;
  4694. else
  4695. sed -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp;
  4696. fi~
  4697. $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~
  4698. linknames='
  4699. # The linker will not automatically build a static lib if we build a DLL.
  4700. # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true'
  4701. _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
  4702. _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*'
  4703. _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1,DATA/'\'' | $SED -e '\''/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols'
  4704. # Don't use ranlib
  4705. _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib'
  4706. _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~
  4707. lt_tool_outputfile="@TOOL_OUTPUT@"~
  4708. case $lt_outputfile in
  4709. *.exe|*.EXE) ;;
  4710. *)
  4711. lt_outputfile="$lt_outputfile.exe"
  4712. lt_tool_outputfile="$lt_tool_outputfile.exe"
  4713. ;;
  4714. esac~
  4715. if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then
  4716. $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1;
  4717. $RM "$lt_outputfile.manifest";
  4718. fi'
  4719. ;;
  4720. *)
  4721. # Assume MSVC wrapper
  4722. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' '
  4723. _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
  4724. # Tell ltmain to make .lib files, not .a files.
  4725. libext=lib
  4726. # Tell ltmain to make .dll files, not .so files.
  4727. shrext_cmds=".dll"
  4728. # FIXME: Setting linknames here is a bad hack.
  4729. _LT_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames='
  4730. # The linker will automatically build a .lib file if we build a DLL.
  4731. _LT_TAGVAR(old_archive_from_new_cmds, $1)='true'
  4732. # FIXME: Should let the user specify the lib program.
  4733. _LT_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs'
  4734. _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
  4735. ;;
  4736. esac
  4737. ;;
  4738. darwin* | rhapsody*)
  4739. _LT_DARWIN_LINKER_FEATURES($1)
  4740. ;;
  4741. dgux*)
  4742. _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
  4743. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
  4744. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  4745. ;;
  4746. # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor
  4747. # support. Future versions do this automatically, but an explicit c++rt0.o
  4748. # does not break anything, and helps significantly (at the cost of a little
  4749. # extra space).
  4750. freebsd2.2*)
  4751. _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o'
  4752. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
  4753. _LT_TAGVAR(hardcode_direct, $1)=yes
  4754. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  4755. ;;
  4756. # Unfortunately, older versions of FreeBSD 2 do not have this feature.
  4757. freebsd2.*)
  4758. _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'
  4759. _LT_TAGVAR(hardcode_direct, $1)=yes
  4760. _LT_TAGVAR(hardcode_minus_L, $1)=yes
  4761. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  4762. ;;
  4763. # FreeBSD 3 and greater uses gcc -shared to do shared libraries.
  4764. freebsd* | dragonfly*)
  4765. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
  4766. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
  4767. _LT_TAGVAR(hardcode_direct, $1)=yes
  4768. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  4769. ;;
  4770. hpux9*)
  4771. if test "$GCC" = yes; then
  4772. _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
  4773. else
  4774. _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
  4775. fi
  4776. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
  4777. _LT_TAGVAR(hardcode_libdir_separator, $1)=:
  4778. _LT_TAGVAR(hardcode_direct, $1)=yes
  4779. # hardcode_minus_L: Not really in the search PATH,
  4780. # but as the default location of the library.
  4781. _LT_TAGVAR(hardcode_minus_L, $1)=yes
  4782. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
  4783. ;;
  4784. hpux10*)
  4785. if test "$GCC" = yes && test "$with_gnu_ld" = no; then
  4786. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
  4787. else
  4788. _LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'
  4789. fi
  4790. if test "$with_gnu_ld" = no; then
  4791. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
  4792. _LT_TAGVAR(hardcode_libdir_separator, $1)=:
  4793. _LT_TAGVAR(hardcode_direct, $1)=yes
  4794. _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
  4795. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
  4796. # hardcode_minus_L: Not really in the search PATH,
  4797. # but as the default location of the library.
  4798. _LT_TAGVAR(hardcode_minus_L, $1)=yes
  4799. fi
  4800. ;;
  4801. hpux11*)
  4802. if test "$GCC" = yes && test "$with_gnu_ld" = no; then
  4803. case $host_cpu in
  4804. hppa*64*)
  4805. _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
  4806. ;;
  4807. ia64*)
  4808. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'
  4809. ;;
  4810. *)
  4811. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
  4812. ;;
  4813. esac
  4814. else
  4815. case $host_cpu in
  4816. hppa*64*)
  4817. _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
  4818. ;;
  4819. ia64*)
  4820. _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'
  4821. ;;
  4822. *)
  4823. m4_if($1, [], [
  4824. # Older versions of the 11.00 compiler do not understand -b yet
  4825. # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does)
  4826. _LT_LINKER_OPTION([if $CC understands -b],
  4827. _LT_TAGVAR(lt_cv_prog_compiler__b, $1), [-b],
  4828. [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'],
  4829. [_LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'])],
  4830. [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'])
  4831. ;;
  4832. esac
  4833. fi
  4834. if test "$with_gnu_ld" = no; then
  4835. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
  4836. _LT_TAGVAR(hardcode_libdir_separator, $1)=:
  4837. case $host_cpu in
  4838. hppa*64*|ia64*)
  4839. _LT_TAGVAR(hardcode_direct, $1)=no
  4840. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  4841. ;;
  4842. *)
  4843. _LT_TAGVAR(hardcode_direct, $1)=yes
  4844. _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
  4845. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
  4846. # hardcode_minus_L: Not really in the search PATH,
  4847. # but as the default location of the library.
  4848. _LT_TAGVAR(hardcode_minus_L, $1)=yes
  4849. ;;
  4850. esac
  4851. fi
  4852. ;;
  4853. irix5* | irix6* | nonstopux*)
  4854. if test "$GCC" = yes; then
  4855. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
  4856. # Try to use the -exported_symbol ld option, if it does not
  4857. # work, assume that -exports_file does not work either and
  4858. # implicitly export all symbols.
  4859. # This should be the same for all languages, so no per-tag cache variable.
  4860. AC_CACHE_CHECK([whether the $host_os linker accepts -exported_symbol],
  4861. [lt_cv_irix_exported_symbol],
  4862. [save_LDFLAGS="$LDFLAGS"
  4863. LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null"
  4864. AC_LINK_IFELSE(
  4865. [AC_LANG_SOURCE(
  4866. [AC_LANG_CASE([C], [[int foo (void) { return 0; }]],
  4867. [C++], [[int foo (void) { return 0; }]],
  4868. [Fortran 77], [[
  4869. subroutine foo
  4870. end]],
  4871. [Fortran], [[
  4872. subroutine foo
  4873. end]])])],
  4874. [lt_cv_irix_exported_symbol=yes],
  4875. [lt_cv_irix_exported_symbol=no])
  4876. LDFLAGS="$save_LDFLAGS"])
  4877. if test "$lt_cv_irix_exported_symbol" = yes; then
  4878. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib'
  4879. fi
  4880. else
  4881. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib'
  4882. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib'
  4883. fi
  4884. _LT_TAGVAR(archive_cmds_need_lc, $1)='no'
  4885. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
  4886. _LT_TAGVAR(hardcode_libdir_separator, $1)=:
  4887. _LT_TAGVAR(inherit_rpath, $1)=yes
  4888. _LT_TAGVAR(link_all_deplibs, $1)=yes
  4889. ;;
  4890. netbsd*)
  4891. if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
  4892. _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out
  4893. else
  4894. _LT_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF
  4895. fi
  4896. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
  4897. _LT_TAGVAR(hardcode_direct, $1)=yes
  4898. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  4899. ;;
  4900. newsos6)
  4901. _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
  4902. _LT_TAGVAR(hardcode_direct, $1)=yes
  4903. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
  4904. _LT_TAGVAR(hardcode_libdir_separator, $1)=:
  4905. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  4906. ;;
  4907. *nto* | *qnx*)
  4908. ;;
  4909. openbsd*)
  4910. if test -f /usr/libexec/ld.so; then
  4911. _LT_TAGVAR(hardcode_direct, $1)=yes
  4912. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  4913. _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
  4914. if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
  4915. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
  4916. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols'
  4917. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
  4918. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
  4919. else
  4920. case $host_os in
  4921. openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*)
  4922. _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'
  4923. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
  4924. ;;
  4925. *)
  4926. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
  4927. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
  4928. ;;
  4929. esac
  4930. fi
  4931. else
  4932. _LT_TAGVAR(ld_shlibs, $1)=no
  4933. fi
  4934. ;;
  4935. os2*)
  4936. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
  4937. _LT_TAGVAR(hardcode_minus_L, $1)=yes
  4938. _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
  4939. _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def'
  4940. _LT_TAGVAR(old_archive_from_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def'
  4941. ;;
  4942. osf3*)
  4943. if test "$GCC" = yes; then
  4944. _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
  4945. _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
  4946. else
  4947. _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*'
  4948. _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib'
  4949. fi
  4950. _LT_TAGVAR(archive_cmds_need_lc, $1)='no'
  4951. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
  4952. _LT_TAGVAR(hardcode_libdir_separator, $1)=:
  4953. ;;
  4954. osf4* | osf5*) # as osf3* with the addition of -msym flag
  4955. if test "$GCC" = yes; then
  4956. _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
  4957. _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $pic_flag $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
  4958. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
  4959. else
  4960. _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*'
  4961. _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib'
  4962. _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~
  4963. $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp'
  4964. # Both c and cxx compiler support -rpath directly
  4965. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'
  4966. fi
  4967. _LT_TAGVAR(archive_cmds_need_lc, $1)='no'
  4968. _LT_TAGVAR(hardcode_libdir_separator, $1)=:
  4969. ;;
  4970. solaris*)
  4971. _LT_TAGVAR(no_undefined_flag, $1)=' -z defs'
  4972. if test "$GCC" = yes; then
  4973. wlarc='${wl}'
  4974. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
  4975. _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
  4976. $CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp'
  4977. else
  4978. case `$CC -V 2>&1` in
  4979. *"Compilers 5.0"*)
  4980. wlarc=''
  4981. _LT_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags'
  4982. _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
  4983. $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp'
  4984. ;;
  4985. *)
  4986. wlarc='${wl}'
  4987. _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags'
  4988. _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
  4989. $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp'
  4990. ;;
  4991. esac
  4992. fi
  4993. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
  4994. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  4995. case $host_os in
  4996. solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;
  4997. *)
  4998. # The compiler driver will combine and reorder linker options,
  4999. # but understands `-z linker_flag'. GCC discards it without `$wl',
  5000. # but is careful enough not to reorder.
  5001. # Supported since Solaris 2.6 (maybe 2.5.1?)
  5002. if test "$GCC" = yes; then
  5003. _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract'
  5004. else
  5005. _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract'
  5006. fi
  5007. ;;
  5008. esac
  5009. _LT_TAGVAR(link_all_deplibs, $1)=yes
  5010. ;;
  5011. sunos4*)
  5012. if test "x$host_vendor" = xsequent; then
  5013. # Use $CC to link under sequent, because it throws in some extra .o
  5014. # files that make .init and .fini sections work.
  5015. _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags'
  5016. else
  5017. _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags'
  5018. fi
  5019. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
  5020. _LT_TAGVAR(hardcode_direct, $1)=yes
  5021. _LT_TAGVAR(hardcode_minus_L, $1)=yes
  5022. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  5023. ;;
  5024. sysv4)
  5025. case $host_vendor in
  5026. sni)
  5027. _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
  5028. _LT_TAGVAR(hardcode_direct, $1)=yes # is this really true???
  5029. ;;
  5030. siemens)
  5031. ## LD is ld it makes a PLAMLIB
  5032. ## CC just makes a GrossModule.
  5033. _LT_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags'
  5034. _LT_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs'
  5035. _LT_TAGVAR(hardcode_direct, $1)=no
  5036. ;;
  5037. motorola)
  5038. _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
  5039. _LT_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie
  5040. ;;
  5041. esac
  5042. runpath_var='LD_RUN_PATH'
  5043. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  5044. ;;
  5045. sysv4.3*)
  5046. _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
  5047. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  5048. _LT_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport'
  5049. ;;
  5050. sysv4*MP*)
  5051. if test -d /usr/nec; then
  5052. _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
  5053. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  5054. runpath_var=LD_RUN_PATH
  5055. hardcode_runpath_var=yes
  5056. _LT_TAGVAR(ld_shlibs, $1)=yes
  5057. fi
  5058. ;;
  5059. sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*)
  5060. _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text'
  5061. _LT_TAGVAR(archive_cmds_need_lc, $1)=no
  5062. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  5063. runpath_var='LD_RUN_PATH'
  5064. if test "$GCC" = yes; then
  5065. _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
  5066. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
  5067. else
  5068. _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
  5069. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
  5070. fi
  5071. ;;
  5072. sysv5* | sco3.2v5* | sco5v6*)
  5073. # Note: We can NOT use -z defs as we might desire, because we do not
  5074. # link with -lc, and that would cause any symbols used from libc to
  5075. # always be unresolved, which means just about no library would
  5076. # ever link correctly. If we're not using GNU ld we use -z text
  5077. # though, which does catch some bad symbols but isn't as heavy-handed
  5078. # as -z defs.
  5079. _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text'
  5080. _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs'
  5081. _LT_TAGVAR(archive_cmds_need_lc, $1)=no
  5082. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  5083. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir'
  5084. _LT_TAGVAR(hardcode_libdir_separator, $1)=':'
  5085. _LT_TAGVAR(link_all_deplibs, $1)=yes
  5086. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport'
  5087. runpath_var='LD_RUN_PATH'
  5088. if test "$GCC" = yes; then
  5089. _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
  5090. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
  5091. else
  5092. _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
  5093. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
  5094. fi
  5095. ;;
  5096. uts4*)
  5097. _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
  5098. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
  5099. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  5100. ;;
  5101. *)
  5102. _LT_TAGVAR(ld_shlibs, $1)=no
  5103. ;;
  5104. esac
  5105. if test x$host_vendor = xsni; then
  5106. case $host in
  5107. sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
  5108. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Blargedynsym'
  5109. ;;
  5110. esac
  5111. fi
  5112. fi
  5113. ])
  5114. AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)])
  5115. test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no
  5116. _LT_TAGVAR(with_gnu_ld, $1)=$with_gnu_ld
  5117. _LT_DECL([], [libext], [0], [Old archive suffix (normally "a")])dnl
  5118. _LT_DECL([], [shrext_cmds], [1], [Shared library suffix (normally ".so")])dnl
  5119. _LT_DECL([], [extract_expsyms_cmds], [2],
  5120. [The commands to extract the exported symbol list from a shared archive])
  5121. #
  5122. # Do we need to explicitly link libc?
  5123. #
  5124. case "x$_LT_TAGVAR(archive_cmds_need_lc, $1)" in
  5125. x|xyes)
  5126. # Assume -lc should be added
  5127. _LT_TAGVAR(archive_cmds_need_lc, $1)=yes
  5128. if test "$enable_shared" = yes && test "$GCC" = yes; then
  5129. case $_LT_TAGVAR(archive_cmds, $1) in
  5130. *'~'*)
  5131. # FIXME: we may have to deal with multi-command sequences.
  5132. ;;
  5133. '$CC '*)
  5134. # Test whether the compiler implicitly links with -lc since on some
  5135. # systems, -lgcc has to come before -lc. If gcc already passes -lc
  5136. # to ld, don't add -lc before -lgcc.
  5137. AC_CACHE_CHECK([whether -lc should be explicitly linked in],
  5138. [lt_cv_]_LT_TAGVAR(archive_cmds_need_lc, $1),
  5139. [$RM conftest*
  5140. echo "$lt_simple_compile_test_code" > conftest.$ac_ext
  5141. if AC_TRY_EVAL(ac_compile) 2>conftest.err; then
  5142. soname=conftest
  5143. lib=conftest
  5144. libobjs=conftest.$ac_objext
  5145. deplibs=
  5146. wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1)
  5147. pic_flag=$_LT_TAGVAR(lt_prog_compiler_pic, $1)
  5148. compiler_flags=-v
  5149. linker_flags=-v
  5150. verstring=
  5151. output_objdir=.
  5152. libname=conftest
  5153. lt_save_allow_undefined_flag=$_LT_TAGVAR(allow_undefined_flag, $1)
  5154. _LT_TAGVAR(allow_undefined_flag, $1)=
  5155. if AC_TRY_EVAL(_LT_TAGVAR(archive_cmds, $1) 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1)
  5156. then
  5157. lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=no
  5158. else
  5159. lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=yes
  5160. fi
  5161. _LT_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag
  5162. else
  5163. cat conftest.err 1>&5
  5164. fi
  5165. $RM conftest*
  5166. ])
  5167. _LT_TAGVAR(archive_cmds_need_lc, $1)=$lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)
  5168. ;;
  5169. esac
  5170. fi
  5171. ;;
  5172. esac
  5173. _LT_TAGDECL([build_libtool_need_lc], [archive_cmds_need_lc], [0],
  5174. [Whether or not to add -lc for building shared libraries])
  5175. _LT_TAGDECL([allow_libtool_libs_with_static_runtimes],
  5176. [enable_shared_with_static_runtimes], [0],
  5177. [Whether or not to disallow shared libs when runtime libs are static])
  5178. _LT_TAGDECL([], [export_dynamic_flag_spec], [1],
  5179. [Compiler flag to allow reflexive dlopens])
  5180. _LT_TAGDECL([], [whole_archive_flag_spec], [1],
  5181. [Compiler flag to generate shared objects directly from archives])
  5182. _LT_TAGDECL([], [compiler_needs_object], [1],
  5183. [Whether the compiler copes with passing no objects directly])
  5184. _LT_TAGDECL([], [old_archive_from_new_cmds], [2],
  5185. [Create an old-style archive from a shared archive])
  5186. _LT_TAGDECL([], [old_archive_from_expsyms_cmds], [2],
  5187. [Create a temporary old-style archive to link instead of a shared archive])
  5188. _LT_TAGDECL([], [archive_cmds], [2], [Commands used to build a shared archive])
  5189. _LT_TAGDECL([], [archive_expsym_cmds], [2])
  5190. _LT_TAGDECL([], [module_cmds], [2],
  5191. [Commands used to build a loadable module if different from building
  5192. a shared archive.])
  5193. _LT_TAGDECL([], [module_expsym_cmds], [2])
  5194. _LT_TAGDECL([], [with_gnu_ld], [1],
  5195. [Whether we are building with GNU ld or not])
  5196. _LT_TAGDECL([], [allow_undefined_flag], [1],
  5197. [Flag that allows shared libraries with undefined symbols to be built])
  5198. _LT_TAGDECL([], [no_undefined_flag], [1],
  5199. [Flag that enforces no undefined symbols])
  5200. _LT_TAGDECL([], [hardcode_libdir_flag_spec], [1],
  5201. [Flag to hardcode $libdir into a binary during linking.
  5202. This must work even if $libdir does not exist])
  5203. _LT_TAGDECL([], [hardcode_libdir_separator], [1],
  5204. [Whether we need a single "-rpath" flag with a separated argument])
  5205. _LT_TAGDECL([], [hardcode_direct], [0],
  5206. [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes
  5207. DIR into the resulting binary])
  5208. _LT_TAGDECL([], [hardcode_direct_absolute], [0],
  5209. [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes
  5210. DIR into the resulting binary and the resulting library dependency is
  5211. "absolute", i.e impossible to change by setting ${shlibpath_var} if the
  5212. library is relocated])
  5213. _LT_TAGDECL([], [hardcode_minus_L], [0],
  5214. [Set to "yes" if using the -LDIR flag during linking hardcodes DIR
  5215. into the resulting binary])
  5216. _LT_TAGDECL([], [hardcode_shlibpath_var], [0],
  5217. [Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR
  5218. into the resulting binary])
  5219. _LT_TAGDECL([], [hardcode_automatic], [0],
  5220. [Set to "yes" if building a shared library automatically hardcodes DIR
  5221. into the library and all subsequent libraries and executables linked
  5222. against it])
  5223. _LT_TAGDECL([], [inherit_rpath], [0],
  5224. [Set to yes if linker adds runtime paths of dependent libraries
  5225. to runtime path list])
  5226. _LT_TAGDECL([], [link_all_deplibs], [0],
  5227. [Whether libtool must link a program against all its dependency libraries])
  5228. _LT_TAGDECL([], [always_export_symbols], [0],
  5229. [Set to "yes" if exported symbols are required])
  5230. _LT_TAGDECL([], [export_symbols_cmds], [2],
  5231. [The commands to list exported symbols])
  5232. _LT_TAGDECL([], [exclude_expsyms], [1],
  5233. [Symbols that should not be listed in the preloaded symbols])
  5234. _LT_TAGDECL([], [include_expsyms], [1],
  5235. [Symbols that must always be exported])
  5236. _LT_TAGDECL([], [prelink_cmds], [2],
  5237. [Commands necessary for linking programs (against libraries) with templates])
  5238. _LT_TAGDECL([], [postlink_cmds], [2],
  5239. [Commands necessary for finishing linking programs])
  5240. _LT_TAGDECL([], [file_list_spec], [1],
  5241. [Specify filename containing input files])
  5242. dnl FIXME: Not yet implemented
  5243. dnl _LT_TAGDECL([], [thread_safe_flag_spec], [1],
  5244. dnl [Compiler flag to generate thread safe objects])
  5245. ])# _LT_LINKER_SHLIBS
  5246. # _LT_LANG_C_CONFIG([TAG])
  5247. # ------------------------
  5248. # Ensure that the configuration variables for a C compiler are suitably
  5249. # defined. These variables are subsequently used by _LT_CONFIG to write
  5250. # the compiler configuration to `libtool'.
  5251. m4_defun([_LT_LANG_C_CONFIG],
  5252. [m4_require([_LT_DECL_EGREP])dnl
  5253. lt_save_CC="$CC"
  5254. AC_LANG_PUSH(C)
  5255. # Source file extension for C test sources.
  5256. ac_ext=c
  5257. # Object file extension for compiled C test sources.
  5258. objext=o
  5259. _LT_TAGVAR(objext, $1)=$objext
  5260. # Code to be used in simple compile tests
  5261. lt_simple_compile_test_code="int some_variable = 0;"
  5262. # Code to be used in simple link tests
  5263. lt_simple_link_test_code='int main(){return(0);}'
  5264. _LT_TAG_COMPILER
  5265. # Save the default compiler, since it gets overwritten when the other
  5266. # tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP.
  5267. compiler_DEFAULT=$CC
  5268. # save warnings/boilerplate of simple test code
  5269. _LT_COMPILER_BOILERPLATE
  5270. _LT_LINKER_BOILERPLATE
  5271. if test -n "$compiler"; then
  5272. _LT_COMPILER_NO_RTTI($1)
  5273. _LT_COMPILER_PIC($1)
  5274. _LT_COMPILER_C_O($1)
  5275. _LT_COMPILER_FILE_LOCKS($1)
  5276. _LT_LINKER_SHLIBS($1)
  5277. _LT_SYS_DYNAMIC_LINKER($1)
  5278. _LT_LINKER_HARDCODE_LIBPATH($1)
  5279. LT_SYS_DLOPEN_SELF
  5280. _LT_CMD_STRIPLIB
  5281. # Report which library types will actually be built
  5282. AC_MSG_CHECKING([if libtool supports shared libraries])
  5283. AC_MSG_RESULT([$can_build_shared])
  5284. AC_MSG_CHECKING([whether to build shared libraries])
  5285. test "$can_build_shared" = "no" && enable_shared=no
  5286. # On AIX, shared libraries and static libraries use the same namespace, and
  5287. # are all built from PIC.
  5288. case $host_os in
  5289. aix3*)
  5290. test "$enable_shared" = yes && enable_static=no
  5291. if test -n "$RANLIB"; then
  5292. archive_cmds="$archive_cmds~\$RANLIB \$lib"
  5293. postinstall_cmds='$RANLIB $lib'
  5294. fi
  5295. ;;
  5296. aix[[4-9]]*)
  5297. if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
  5298. test "$enable_shared" = yes && enable_static=no
  5299. fi
  5300. ;;
  5301. esac
  5302. AC_MSG_RESULT([$enable_shared])
  5303. AC_MSG_CHECKING([whether to build static libraries])
  5304. # Make sure either enable_shared or enable_static is yes.
  5305. test "$enable_shared" = yes || enable_static=yes
  5306. AC_MSG_RESULT([$enable_static])
  5307. _LT_CONFIG($1)
  5308. fi
  5309. AC_LANG_POP
  5310. CC="$lt_save_CC"
  5311. ])# _LT_LANG_C_CONFIG
  5312. # _LT_LANG_CXX_CONFIG([TAG])
  5313. # --------------------------
  5314. # Ensure that the configuration variables for a C++ compiler are suitably
  5315. # defined. These variables are subsequently used by _LT_CONFIG to write
  5316. # the compiler configuration to `libtool'.
  5317. m4_defun([_LT_LANG_CXX_CONFIG],
  5318. [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
  5319. m4_require([_LT_DECL_EGREP])dnl
  5320. m4_require([_LT_PATH_MANIFEST_TOOL])dnl
  5321. if test -n "$CXX" && ( test "X$CXX" != "Xno" &&
  5322. ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) ||
  5323. (test "X$CXX" != "Xg++"))) ; then
  5324. AC_PROG_CXXCPP
  5325. else
  5326. _lt_caught_CXX_error=yes
  5327. fi
  5328. AC_LANG_PUSH(C++)
  5329. _LT_TAGVAR(archive_cmds_need_lc, $1)=no
  5330. _LT_TAGVAR(allow_undefined_flag, $1)=
  5331. _LT_TAGVAR(always_export_symbols, $1)=no
  5332. _LT_TAGVAR(archive_expsym_cmds, $1)=
  5333. _LT_TAGVAR(compiler_needs_object, $1)=no
  5334. _LT_TAGVAR(export_dynamic_flag_spec, $1)=
  5335. _LT_TAGVAR(hardcode_direct, $1)=no
  5336. _LT_TAGVAR(hardcode_direct_absolute, $1)=no
  5337. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=
  5338. _LT_TAGVAR(hardcode_libdir_separator, $1)=
  5339. _LT_TAGVAR(hardcode_minus_L, $1)=no
  5340. _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
  5341. _LT_TAGVAR(hardcode_automatic, $1)=no
  5342. _LT_TAGVAR(inherit_rpath, $1)=no
  5343. _LT_TAGVAR(module_cmds, $1)=
  5344. _LT_TAGVAR(module_expsym_cmds, $1)=
  5345. _LT_TAGVAR(link_all_deplibs, $1)=unknown
  5346. _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
  5347. _LT_TAGVAR(reload_flag, $1)=$reload_flag
  5348. _LT_TAGVAR(reload_cmds, $1)=$reload_cmds
  5349. _LT_TAGVAR(no_undefined_flag, $1)=
  5350. _LT_TAGVAR(whole_archive_flag_spec, $1)=
  5351. _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no
  5352. # Source file extension for C++ test sources.
  5353. ac_ext=cpp
  5354. # Object file extension for compiled C++ test sources.
  5355. objext=o
  5356. _LT_TAGVAR(objext, $1)=$objext
  5357. # No sense in running all these tests if we already determined that
  5358. # the CXX compiler isn't working. Some variables (like enable_shared)
  5359. # are currently assumed to apply to all compilers on this platform,
  5360. # and will be corrupted by setting them based on a non-working compiler.
  5361. if test "$_lt_caught_CXX_error" != yes; then
  5362. # Code to be used in simple compile tests
  5363. lt_simple_compile_test_code="int some_variable = 0;"
  5364. # Code to be used in simple link tests
  5365. lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }'
  5366. # ltmain only uses $CC for tagged configurations so make sure $CC is set.
  5367. _LT_TAG_COMPILER
  5368. # save warnings/boilerplate of simple test code
  5369. _LT_COMPILER_BOILERPLATE
  5370. _LT_LINKER_BOILERPLATE
  5371. # Allow CC to be a program name with arguments.
  5372. lt_save_CC=$CC
  5373. lt_save_CFLAGS=$CFLAGS
  5374. lt_save_LD=$LD
  5375. lt_save_GCC=$GCC
  5376. GCC=$GXX
  5377. lt_save_with_gnu_ld=$with_gnu_ld
  5378. lt_save_path_LD=$lt_cv_path_LD
  5379. if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then
  5380. lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx
  5381. else
  5382. $as_unset lt_cv_prog_gnu_ld
  5383. fi
  5384. if test -n "${lt_cv_path_LDCXX+set}"; then
  5385. lt_cv_path_LD=$lt_cv_path_LDCXX
  5386. else
  5387. $as_unset lt_cv_path_LD
  5388. fi
  5389. test -z "${LDCXX+set}" || LD=$LDCXX
  5390. CC=${CXX-"c++"}
  5391. CFLAGS=$CXXFLAGS
  5392. compiler=$CC
  5393. _LT_TAGVAR(compiler, $1)=$CC
  5394. _LT_CC_BASENAME([$compiler])
  5395. if test -n "$compiler"; then
  5396. # We don't want -fno-exception when compiling C++ code, so set the
  5397. # no_builtin_flag separately
  5398. if test "$GXX" = yes; then
  5399. _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin'
  5400. else
  5401. _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=
  5402. fi
  5403. if test "$GXX" = yes; then
  5404. # Set up default GNU C++ configuration
  5405. LT_PATH_LD
  5406. # Check if GNU C++ uses GNU ld as the underlying linker, since the
  5407. # archiving commands below assume that GNU ld is being used.
  5408. if test "$with_gnu_ld" = yes; then
  5409. _LT_TAGVAR(archive_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
  5410. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
  5411. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
  5412. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
  5413. # If archive_cmds runs LD, not CC, wlarc should be empty
  5414. # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to
  5415. # investigate it a little bit more. (MM)
  5416. wlarc='${wl}'
  5417. # ancient GNU ld didn't support --whole-archive et. al.
  5418. if eval "`$CC -print-prog-name=ld` --help 2>&1" |
  5419. $GREP 'no-whole-archive' > /dev/null; then
  5420. _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
  5421. else
  5422. _LT_TAGVAR(whole_archive_flag_spec, $1)=
  5423. fi
  5424. else
  5425. with_gnu_ld=no
  5426. wlarc=
  5427. # A generic and very simple default shared library creation
  5428. # command for GNU C++ for the case where it uses the native
  5429. # linker, instead of GNU ld. If possible, this setting should
  5430. # overridden to take advantage of the native linker features on
  5431. # the platform it is being used on.
  5432. _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib'
  5433. fi
  5434. # Commands to make compiler produce verbose output that lists
  5435. # what "hidden" libraries, object files and flags are used when
  5436. # linking a shared library.
  5437. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"'
  5438. else
  5439. GXX=no
  5440. with_gnu_ld=no
  5441. wlarc=
  5442. fi
  5443. # PORTME: fill in a description of your system's C++ link characteristics
  5444. AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries])
  5445. _LT_TAGVAR(ld_shlibs, $1)=yes
  5446. case $host_os in
  5447. aix3*)
  5448. # FIXME: insert proper C++ library support
  5449. _LT_TAGVAR(ld_shlibs, $1)=no
  5450. ;;
  5451. aix[[4-9]]*)
  5452. if test "$host_cpu" = ia64; then
  5453. # On IA64, the linker does run time linking by default, so we don't
  5454. # have to do anything special.
  5455. aix_use_runtimelinking=no
  5456. exp_sym_flag='-Bexport'
  5457. no_entry_flag=""
  5458. else
  5459. aix_use_runtimelinking=no
  5460. # Test if we are trying to use run time linking or normal
  5461. # AIX style linking. If -brtl is somewhere in LDFLAGS, we
  5462. # need to do runtime linking.
  5463. case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*)
  5464. for ld_flag in $LDFLAGS; do
  5465. case $ld_flag in
  5466. *-brtl*)
  5467. aix_use_runtimelinking=yes
  5468. break
  5469. ;;
  5470. esac
  5471. done
  5472. ;;
  5473. esac
  5474. exp_sym_flag='-bexport'
  5475. no_entry_flag='-bnoentry'
  5476. fi
  5477. # When large executables or shared objects are built, AIX ld can
  5478. # have problems creating the table of contents. If linking a library
  5479. # or program results in "error TOC overflow" add -mminimal-toc to
  5480. # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not
  5481. # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.
  5482. _LT_TAGVAR(archive_cmds, $1)=''
  5483. _LT_TAGVAR(hardcode_direct, $1)=yes
  5484. _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
  5485. _LT_TAGVAR(hardcode_libdir_separator, $1)=':'
  5486. _LT_TAGVAR(link_all_deplibs, $1)=yes
  5487. _LT_TAGVAR(file_list_spec, $1)='${wl}-f,'
  5488. if test "$GXX" = yes; then
  5489. case $host_os in aix4.[[012]]|aix4.[[012]].*)
  5490. # We only want to do this on AIX 4.2 and lower, the check
  5491. # below for broken collect2 doesn't work under 4.3+
  5492. collect2name=`${CC} -print-prog-name=collect2`
  5493. if test -f "$collect2name" &&
  5494. strings "$collect2name" | $GREP resolve_lib_name >/dev/null
  5495. then
  5496. # We have reworked collect2
  5497. :
  5498. else
  5499. # We have old collect2
  5500. _LT_TAGVAR(hardcode_direct, $1)=unsupported
  5501. # It fails to find uninstalled libraries when the uninstalled
  5502. # path is not listed in the libpath. Setting hardcode_minus_L
  5503. # to unsupported forces relinking
  5504. _LT_TAGVAR(hardcode_minus_L, $1)=yes
  5505. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
  5506. _LT_TAGVAR(hardcode_libdir_separator, $1)=
  5507. fi
  5508. esac
  5509. shared_flag='-shared'
  5510. if test "$aix_use_runtimelinking" = yes; then
  5511. shared_flag="$shared_flag "'${wl}-G'
  5512. fi
  5513. else
  5514. # not using gcc
  5515. if test "$host_cpu" = ia64; then
  5516. # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release
  5517. # chokes on -Wl,-G. The following line is correct:
  5518. shared_flag='-G'
  5519. else
  5520. if test "$aix_use_runtimelinking" = yes; then
  5521. shared_flag='${wl}-G'
  5522. else
  5523. shared_flag='${wl}-bM:SRE'
  5524. fi
  5525. fi
  5526. fi
  5527. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall'
  5528. # It seems that -bexpall does not export symbols beginning with
  5529. # underscore (_), so it is better to generate a list of symbols to
  5530. # export.
  5531. _LT_TAGVAR(always_export_symbols, $1)=yes
  5532. if test "$aix_use_runtimelinking" = yes; then
  5533. # Warning - without using the other runtime loading flags (-brtl),
  5534. # -berok will link without error, but may produce a broken library.
  5535. _LT_TAGVAR(allow_undefined_flag, $1)='-berok'
  5536. # Determine the default libpath from the value encoded in an empty
  5537. # executable.
  5538. _LT_SYS_MODULE_PATH_AIX([$1])
  5539. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
  5540. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag"
  5541. else
  5542. if test "$host_cpu" = ia64; then
  5543. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib'
  5544. _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs"
  5545. _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols"
  5546. else
  5547. # Determine the default libpath from the value encoded in an
  5548. # empty executable.
  5549. _LT_SYS_MODULE_PATH_AIX([$1])
  5550. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
  5551. # Warning - without using the other run time loading flags,
  5552. # -berok will link without error, but may produce a broken library.
  5553. _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok'
  5554. _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok'
  5555. if test "$with_gnu_ld" = yes; then
  5556. # We only use this code for GNU lds that support --whole-archive.
  5557. _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive'
  5558. else
  5559. # Exported symbols can be pulled into shared objects from archives
  5560. _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience'
  5561. fi
  5562. _LT_TAGVAR(archive_cmds_need_lc, $1)=yes
  5563. # This is similar to how AIX traditionally builds its shared
  5564. # libraries.
  5565. _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname'
  5566. fi
  5567. fi
  5568. ;;
  5569. beos*)
  5570. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
  5571. _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
  5572. # Joseph Beckenbach <jrb3@best.com> says some releases of gcc
  5573. # support --undefined. This deserves some investigation. FIXME
  5574. _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  5575. else
  5576. _LT_TAGVAR(ld_shlibs, $1)=no
  5577. fi
  5578. ;;
  5579. chorus*)
  5580. case $cc_basename in
  5581. *)
  5582. # FIXME: insert proper C++ library support
  5583. _LT_TAGVAR(ld_shlibs, $1)=no
  5584. ;;
  5585. esac
  5586. ;;
  5587. cygwin* | mingw* | pw32* | cegcc*)
  5588. case $GXX,$cc_basename in
  5589. ,cl* | no,cl*)
  5590. # Native MSVC
  5591. # hardcode_libdir_flag_spec is actually meaningless, as there is
  5592. # no search path for DLLs.
  5593. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' '
  5594. _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
  5595. _LT_TAGVAR(always_export_symbols, $1)=yes
  5596. _LT_TAGVAR(file_list_spec, $1)='@'
  5597. # Tell ltmain to make .lib files, not .a files.
  5598. libext=lib
  5599. # Tell ltmain to make .dll files, not .so files.
  5600. shrext_cmds=".dll"
  5601. # FIXME: Setting linknames here is a bad hack.
  5602. _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames='
  5603. _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
  5604. $SED -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp;
  5605. else
  5606. $SED -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp;
  5607. fi~
  5608. $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~
  5609. linknames='
  5610. # The linker will not automatically build a static lib if we build a DLL.
  5611. # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true'
  5612. _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
  5613. # Don't use ranlib
  5614. _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib'
  5615. _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~
  5616. lt_tool_outputfile="@TOOL_OUTPUT@"~
  5617. case $lt_outputfile in
  5618. *.exe|*.EXE) ;;
  5619. *)
  5620. lt_outputfile="$lt_outputfile.exe"
  5621. lt_tool_outputfile="$lt_tool_outputfile.exe"
  5622. ;;
  5623. esac~
  5624. func_to_tool_file "$lt_outputfile"~
  5625. if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then
  5626. $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1;
  5627. $RM "$lt_outputfile.manifest";
  5628. fi'
  5629. ;;
  5630. *)
  5631. # g++
  5632. # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless,
  5633. # as there is no search path for DLLs.
  5634. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
  5635. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols'
  5636. _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
  5637. _LT_TAGVAR(always_export_symbols, $1)=no
  5638. _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
  5639. if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then
  5640. _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
  5641. # If the export-symbols file already is a .def file (1st line
  5642. # is EXPORTS), use it as is; otherwise, prepend...
  5643. _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
  5644. cp $export_symbols $output_objdir/$soname.def;
  5645. else
  5646. echo EXPORTS > $output_objdir/$soname.def;
  5647. cat $export_symbols >> $output_objdir/$soname.def;
  5648. fi~
  5649. $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
  5650. else
  5651. _LT_TAGVAR(ld_shlibs, $1)=no
  5652. fi
  5653. ;;
  5654. esac
  5655. ;;
  5656. darwin* | rhapsody*)
  5657. _LT_DARWIN_LINKER_FEATURES($1)
  5658. ;;
  5659. dgux*)
  5660. case $cc_basename in
  5661. ec++*)
  5662. # FIXME: insert proper C++ library support
  5663. _LT_TAGVAR(ld_shlibs, $1)=no
  5664. ;;
  5665. ghcx*)
  5666. # Green Hills C++ Compiler
  5667. # FIXME: insert proper C++ library support
  5668. _LT_TAGVAR(ld_shlibs, $1)=no
  5669. ;;
  5670. *)
  5671. # FIXME: insert proper C++ library support
  5672. _LT_TAGVAR(ld_shlibs, $1)=no
  5673. ;;
  5674. esac
  5675. ;;
  5676. freebsd2.*)
  5677. # C++ shared libraries reported to be fairly broken before
  5678. # switch to ELF
  5679. _LT_TAGVAR(ld_shlibs, $1)=no
  5680. ;;
  5681. freebsd-elf*)
  5682. _LT_TAGVAR(archive_cmds_need_lc, $1)=no
  5683. ;;
  5684. freebsd* | dragonfly*)
  5685. # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF
  5686. # conventions
  5687. _LT_TAGVAR(ld_shlibs, $1)=yes
  5688. ;;
  5689. gnu*)
  5690. ;;
  5691. haiku*)
  5692. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  5693. _LT_TAGVAR(link_all_deplibs, $1)=yes
  5694. ;;
  5695. hpux9*)
  5696. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
  5697. _LT_TAGVAR(hardcode_libdir_separator, $1)=:
  5698. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
  5699. _LT_TAGVAR(hardcode_direct, $1)=yes
  5700. _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH,
  5701. # but as the default
  5702. # location of the library.
  5703. case $cc_basename in
  5704. CC*)
  5705. # FIXME: insert proper C++ library support
  5706. _LT_TAGVAR(ld_shlibs, $1)=no
  5707. ;;
  5708. aCC*)
  5709. _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
  5710. # Commands to make compiler produce verbose output that lists
  5711. # what "hidden" libraries, object files and flags are used when
  5712. # linking a shared library.
  5713. #
  5714. # There doesn't appear to be a way to prevent this compiler from
  5715. # explicitly linking system object files so we need to strip them
  5716. # from the output so that they don't get included in the library
  5717. # dependencies.
  5718. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"'
  5719. ;;
  5720. *)
  5721. if test "$GXX" = yes; then
  5722. _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
  5723. else
  5724. # FIXME: insert proper C++ library support
  5725. _LT_TAGVAR(ld_shlibs, $1)=no
  5726. fi
  5727. ;;
  5728. esac
  5729. ;;
  5730. hpux10*|hpux11*)
  5731. if test $with_gnu_ld = no; then
  5732. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
  5733. _LT_TAGVAR(hardcode_libdir_separator, $1)=:
  5734. case $host_cpu in
  5735. hppa*64*|ia64*)
  5736. ;;
  5737. *)
  5738. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
  5739. ;;
  5740. esac
  5741. fi
  5742. case $host_cpu in
  5743. hppa*64*|ia64*)
  5744. _LT_TAGVAR(hardcode_direct, $1)=no
  5745. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  5746. ;;
  5747. *)
  5748. _LT_TAGVAR(hardcode_direct, $1)=yes
  5749. _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
  5750. _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH,
  5751. # but as the default
  5752. # location of the library.
  5753. ;;
  5754. esac
  5755. case $cc_basename in
  5756. CC*)
  5757. # FIXME: insert proper C++ library support
  5758. _LT_TAGVAR(ld_shlibs, $1)=no
  5759. ;;
  5760. aCC*)
  5761. case $host_cpu in
  5762. hppa*64*)
  5763. _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
  5764. ;;
  5765. ia64*)
  5766. _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
  5767. ;;
  5768. *)
  5769. _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
  5770. ;;
  5771. esac
  5772. # Commands to make compiler produce verbose output that lists
  5773. # what "hidden" libraries, object files and flags are used when
  5774. # linking a shared library.
  5775. #
  5776. # There doesn't appear to be a way to prevent this compiler from
  5777. # explicitly linking system object files so we need to strip them
  5778. # from the output so that they don't get included in the library
  5779. # dependencies.
  5780. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"'
  5781. ;;
  5782. *)
  5783. if test "$GXX" = yes; then
  5784. if test $with_gnu_ld = no; then
  5785. case $host_cpu in
  5786. hppa*64*)
  5787. _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
  5788. ;;
  5789. ia64*)
  5790. _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
  5791. ;;
  5792. *)
  5793. _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
  5794. ;;
  5795. esac
  5796. fi
  5797. else
  5798. # FIXME: insert proper C++ library support
  5799. _LT_TAGVAR(ld_shlibs, $1)=no
  5800. fi
  5801. ;;
  5802. esac
  5803. ;;
  5804. interix[[3-9]]*)
  5805. _LT_TAGVAR(hardcode_direct, $1)=no
  5806. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  5807. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
  5808. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
  5809. # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc.
  5810. # Instead, shared libraries are loaded at an image base (0x10000000 by
  5811. # default) and relocated if they conflict, which is a slow very memory
  5812. # consuming and fragmenting process. To avoid this, we pick a random,
  5813. # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link
  5814. # time. Moving up from 0x10000000 also allows more sbrk(2) space.
  5815. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
  5816. _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
  5817. ;;
  5818. irix5* | irix6*)
  5819. case $cc_basename in
  5820. CC*)
  5821. # SGI C++
  5822. _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib'
  5823. # Archives containing C++ object files must be created using
  5824. # "CC -ar", where "CC" is the IRIX C++ compiler. This is
  5825. # necessary to make sure instantiated templates are included
  5826. # in the archive.
  5827. _LT_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs'
  5828. ;;
  5829. *)
  5830. if test "$GXX" = yes; then
  5831. if test "$with_gnu_ld" = no; then
  5832. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
  5833. else
  5834. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` -o $lib'
  5835. fi
  5836. fi
  5837. _LT_TAGVAR(link_all_deplibs, $1)=yes
  5838. ;;
  5839. esac
  5840. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
  5841. _LT_TAGVAR(hardcode_libdir_separator, $1)=:
  5842. _LT_TAGVAR(inherit_rpath, $1)=yes
  5843. ;;
  5844. linux* | k*bsd*-gnu | kopensolaris*-gnu)
  5845. case $cc_basename in
  5846. KCC*)
  5847. # Kuck and Associates, Inc. (KAI) C++ Compiler
  5848. # KCC will only create a shared library if the output file
  5849. # ends with ".so" (or ".sl" for HP-UX), so rename the library
  5850. # to its proper name (with version) after linking.
  5851. _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib'
  5852. _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib'
  5853. # Commands to make compiler produce verbose output that lists
  5854. # what "hidden" libraries, object files and flags are used when
  5855. # linking a shared library.
  5856. #
  5857. # There doesn't appear to be a way to prevent this compiler from
  5858. # explicitly linking system object files so we need to strip them
  5859. # from the output so that they don't get included in the library
  5860. # dependencies.
  5861. output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"'
  5862. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
  5863. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
  5864. # Archives containing C++ object files must be created using
  5865. # "CC -Bstatic", where "CC" is the KAI C++ compiler.
  5866. _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs'
  5867. ;;
  5868. icpc* | ecpc* )
  5869. # Intel C++
  5870. with_gnu_ld=yes
  5871. # version 8.0 and above of icpc choke on multiply defined symbols
  5872. # if we add $predep_objects and $postdep_objects, however 7.1 and
  5873. # earlier do not add the objects themselves.
  5874. case `$CC -V 2>&1` in
  5875. *"Version 7."*)
  5876. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
  5877. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
  5878. ;;
  5879. *) # Version 8.0 or newer
  5880. tmp_idyn=
  5881. case $host_cpu in
  5882. ia64*) tmp_idyn=' -i_dynamic';;
  5883. esac
  5884. _LT_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  5885. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
  5886. ;;
  5887. esac
  5888. _LT_TAGVAR(archive_cmds_need_lc, $1)=no
  5889. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
  5890. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
  5891. _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive'
  5892. ;;
  5893. pgCC* | pgcpp*)
  5894. # Portland Group C++ compiler
  5895. case `$CC -V` in
  5896. *pgCC\ [[1-5]].* | *pgcpp\ [[1-5]].*)
  5897. _LT_TAGVAR(prelink_cmds, $1)='tpldir=Template.dir~
  5898. rm -rf $tpldir~
  5899. $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~
  5900. compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"'
  5901. _LT_TAGVAR(old_archive_cmds, $1)='tpldir=Template.dir~
  5902. rm -rf $tpldir~
  5903. $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~
  5904. $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~
  5905. $RANLIB $oldlib'
  5906. _LT_TAGVAR(archive_cmds, $1)='tpldir=Template.dir~
  5907. rm -rf $tpldir~
  5908. $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~
  5909. $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib'
  5910. _LT_TAGVAR(archive_expsym_cmds, $1)='tpldir=Template.dir~
  5911. rm -rf $tpldir~
  5912. $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~
  5913. $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib'
  5914. ;;
  5915. *) # Version 6 and above use weak symbols
  5916. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib'
  5917. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib'
  5918. ;;
  5919. esac
  5920. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir'
  5921. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
  5922. _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive'
  5923. ;;
  5924. cxx*)
  5925. # Compaq C++
  5926. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
  5927. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols'
  5928. runpath_var=LD_RUN_PATH
  5929. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'
  5930. _LT_TAGVAR(hardcode_libdir_separator, $1)=:
  5931. # Commands to make compiler produce verbose output that lists
  5932. # what "hidden" libraries, object files and flags are used when
  5933. # linking a shared library.
  5934. #
  5935. # There doesn't appear to be a way to prevent this compiler from
  5936. # explicitly linking system object files so we need to strip them
  5937. # from the output so that they don't get included in the library
  5938. # dependencies.
  5939. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed'
  5940. ;;
  5941. xl* | mpixl* | bgxl*)
  5942. # IBM XL 8.0 on PPC, with GNU ld
  5943. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
  5944. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
  5945. _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  5946. if test "x$supports_anon_versioning" = xyes; then
  5947. _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~
  5948. cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
  5949. echo "local: *; };" >> $output_objdir/$libname.ver~
  5950. $CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'
  5951. fi
  5952. ;;
  5953. *)
  5954. case `$CC -V 2>&1 | sed 5q` in
  5955. *Sun\ C*)
  5956. # Sun C++ 5.9
  5957. _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs'
  5958. _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
  5959. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols'
  5960. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
  5961. _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive'
  5962. _LT_TAGVAR(compiler_needs_object, $1)=yes
  5963. # Not sure whether something based on
  5964. # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1
  5965. # would be better.
  5966. output_verbose_link_cmd='func_echo_all'
  5967. # Archives containing C++ object files must be created using
  5968. # "CC -xar", where "CC" is the Sun C++ compiler. This is
  5969. # necessary to make sure instantiated templates are included
  5970. # in the archive.
  5971. _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs'
  5972. ;;
  5973. esac
  5974. ;;
  5975. esac
  5976. ;;
  5977. lynxos*)
  5978. # FIXME: insert proper C++ library support
  5979. _LT_TAGVAR(ld_shlibs, $1)=no
  5980. ;;
  5981. m88k*)
  5982. # FIXME: insert proper C++ library support
  5983. _LT_TAGVAR(ld_shlibs, $1)=no
  5984. ;;
  5985. mvs*)
  5986. case $cc_basename in
  5987. cxx*)
  5988. # FIXME: insert proper C++ library support
  5989. _LT_TAGVAR(ld_shlibs, $1)=no
  5990. ;;
  5991. *)
  5992. # FIXME: insert proper C++ library support
  5993. _LT_TAGVAR(ld_shlibs, $1)=no
  5994. ;;
  5995. esac
  5996. ;;
  5997. netbsd*)
  5998. if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
  5999. _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags'
  6000. wlarc=
  6001. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
  6002. _LT_TAGVAR(hardcode_direct, $1)=yes
  6003. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  6004. fi
  6005. # Workaround some broken pre-1.5 toolchains
  6006. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"'
  6007. ;;
  6008. *nto* | *qnx*)
  6009. _LT_TAGVAR(ld_shlibs, $1)=yes
  6010. ;;
  6011. openbsd2*)
  6012. # C++ shared libraries are fairly broken
  6013. _LT_TAGVAR(ld_shlibs, $1)=no
  6014. ;;
  6015. openbsd*)
  6016. if test -f /usr/libexec/ld.so; then
  6017. _LT_TAGVAR(hardcode_direct, $1)=yes
  6018. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  6019. _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
  6020. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib'
  6021. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
  6022. if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
  6023. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib'
  6024. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
  6025. _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
  6026. fi
  6027. output_verbose_link_cmd=func_echo_all
  6028. else
  6029. _LT_TAGVAR(ld_shlibs, $1)=no
  6030. fi
  6031. ;;
  6032. osf3* | osf4* | osf5*)
  6033. case $cc_basename in
  6034. KCC*)
  6035. # Kuck and Associates, Inc. (KAI) C++ Compiler
  6036. # KCC will only create a shared library if the output file
  6037. # ends with ".so" (or ".sl" for HP-UX), so rename the library
  6038. # to its proper name (with version) after linking.
  6039. _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib'
  6040. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
  6041. _LT_TAGVAR(hardcode_libdir_separator, $1)=:
  6042. # Archives containing C++ object files must be created using
  6043. # the KAI C++ compiler.
  6044. case $host in
  6045. osf3*) _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;;
  6046. *) _LT_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;;
  6047. esac
  6048. ;;
  6049. RCC*)
  6050. # Rational C++ 2.4.1
  6051. # FIXME: insert proper C++ library support
  6052. _LT_TAGVAR(ld_shlibs, $1)=no
  6053. ;;
  6054. cxx*)
  6055. case $host in
  6056. osf3*)
  6057. _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
  6058. _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && func_echo_all "${wl}-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib'
  6059. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
  6060. ;;
  6061. *)
  6062. _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*'
  6063. _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib'
  6064. _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~
  6065. echo "-hidden">> $lib.exp~
  6066. $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname ${wl}-input ${wl}$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~
  6067. $RM $lib.exp'
  6068. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'
  6069. ;;
  6070. esac
  6071. _LT_TAGVAR(hardcode_libdir_separator, $1)=:
  6072. # Commands to make compiler produce verbose output that lists
  6073. # what "hidden" libraries, object files and flags are used when
  6074. # linking a shared library.
  6075. #
  6076. # There doesn't appear to be a way to prevent this compiler from
  6077. # explicitly linking system object files so we need to strip them
  6078. # from the output so that they don't get included in the library
  6079. # dependencies.
  6080. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"'
  6081. ;;
  6082. *)
  6083. if test "$GXX" = yes && test "$with_gnu_ld" = no; then
  6084. _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
  6085. case $host in
  6086. osf3*)
  6087. _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
  6088. ;;
  6089. *)
  6090. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
  6091. ;;
  6092. esac
  6093. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
  6094. _LT_TAGVAR(hardcode_libdir_separator, $1)=:
  6095. # Commands to make compiler produce verbose output that lists
  6096. # what "hidden" libraries, object files and flags are used when
  6097. # linking a shared library.
  6098. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"'
  6099. else
  6100. # FIXME: insert proper C++ library support
  6101. _LT_TAGVAR(ld_shlibs, $1)=no
  6102. fi
  6103. ;;
  6104. esac
  6105. ;;
  6106. psos*)
  6107. # FIXME: insert proper C++ library support
  6108. _LT_TAGVAR(ld_shlibs, $1)=no
  6109. ;;
  6110. sunos4*)
  6111. case $cc_basename in
  6112. CC*)
  6113. # Sun C++ 4.x
  6114. # FIXME: insert proper C++ library support
  6115. _LT_TAGVAR(ld_shlibs, $1)=no
  6116. ;;
  6117. lcc*)
  6118. # Lucid
  6119. # FIXME: insert proper C++ library support
  6120. _LT_TAGVAR(ld_shlibs, $1)=no
  6121. ;;
  6122. *)
  6123. # FIXME: insert proper C++ library support
  6124. _LT_TAGVAR(ld_shlibs, $1)=no
  6125. ;;
  6126. esac
  6127. ;;
  6128. solaris*)
  6129. case $cc_basename in
  6130. CC* | sunCC*)
  6131. # Sun C++ 4.2, 5.x and Centerline C++
  6132. _LT_TAGVAR(archive_cmds_need_lc,$1)=yes
  6133. _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs'
  6134. _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
  6135. _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
  6136. $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp'
  6137. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
  6138. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  6139. case $host_os in
  6140. solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;
  6141. *)
  6142. # The compiler driver will combine and reorder linker options,
  6143. # but understands `-z linker_flag'.
  6144. # Supported since Solaris 2.6 (maybe 2.5.1?)
  6145. _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract'
  6146. ;;
  6147. esac
  6148. _LT_TAGVAR(link_all_deplibs, $1)=yes
  6149. output_verbose_link_cmd='func_echo_all'
  6150. # Archives containing C++ object files must be created using
  6151. # "CC -xar", where "CC" is the Sun C++ compiler. This is
  6152. # necessary to make sure instantiated templates are included
  6153. # in the archive.
  6154. _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs'
  6155. ;;
  6156. gcx*)
  6157. # Green Hills C++ Compiler
  6158. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'
  6159. # The C++ compiler must be used to create the archive.
  6160. _LT_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs'
  6161. ;;
  6162. *)
  6163. # GNU C++ compiler with Solaris linker
  6164. if test "$GXX" = yes && test "$with_gnu_ld" = no; then
  6165. _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs'
  6166. if $CC --version | $GREP -v '^2\.7' > /dev/null; then
  6167. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'
  6168. _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
  6169. $CC -shared $pic_flag -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp'
  6170. # Commands to make compiler produce verbose output that lists
  6171. # what "hidden" libraries, object files and flags are used when
  6172. # linking a shared library.
  6173. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"'
  6174. else
  6175. # g++ 2.7 appears to require `-G' NOT `-shared' on this
  6176. # platform.
  6177. _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'
  6178. _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
  6179. $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp'
  6180. # Commands to make compiler produce verbose output that lists
  6181. # what "hidden" libraries, object files and flags are used when
  6182. # linking a shared library.
  6183. output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"'
  6184. fi
  6185. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir'
  6186. case $host_os in
  6187. solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;
  6188. *)
  6189. _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract'
  6190. ;;
  6191. esac
  6192. fi
  6193. ;;
  6194. esac
  6195. ;;
  6196. sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*)
  6197. _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text'
  6198. _LT_TAGVAR(archive_cmds_need_lc, $1)=no
  6199. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  6200. runpath_var='LD_RUN_PATH'
  6201. case $cc_basename in
  6202. CC*)
  6203. _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
  6204. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
  6205. ;;
  6206. *)
  6207. _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
  6208. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
  6209. ;;
  6210. esac
  6211. ;;
  6212. sysv5* | sco3.2v5* | sco5v6*)
  6213. # Note: We can NOT use -z defs as we might desire, because we do not
  6214. # link with -lc, and that would cause any symbols used from libc to
  6215. # always be unresolved, which means just about no library would
  6216. # ever link correctly. If we're not using GNU ld we use -z text
  6217. # though, which does catch some bad symbols but isn't as heavy-handed
  6218. # as -z defs.
  6219. _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text'
  6220. _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs'
  6221. _LT_TAGVAR(archive_cmds_need_lc, $1)=no
  6222. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  6223. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir'
  6224. _LT_TAGVAR(hardcode_libdir_separator, $1)=':'
  6225. _LT_TAGVAR(link_all_deplibs, $1)=yes
  6226. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport'
  6227. runpath_var='LD_RUN_PATH'
  6228. case $cc_basename in
  6229. CC*)
  6230. _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
  6231. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
  6232. _LT_TAGVAR(old_archive_cmds, $1)='$CC -Tprelink_objects $oldobjs~
  6233. '"$_LT_TAGVAR(old_archive_cmds, $1)"
  6234. _LT_TAGVAR(reload_cmds, $1)='$CC -Tprelink_objects $reload_objs~
  6235. '"$_LT_TAGVAR(reload_cmds, $1)"
  6236. ;;
  6237. *)
  6238. _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
  6239. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
  6240. ;;
  6241. esac
  6242. ;;
  6243. tandem*)
  6244. case $cc_basename in
  6245. NCC*)
  6246. # NonStop-UX NCC 3.20
  6247. # FIXME: insert proper C++ library support
  6248. _LT_TAGVAR(ld_shlibs, $1)=no
  6249. ;;
  6250. *)
  6251. # FIXME: insert proper C++ library support
  6252. _LT_TAGVAR(ld_shlibs, $1)=no
  6253. ;;
  6254. esac
  6255. ;;
  6256. vxworks*)
  6257. # FIXME: insert proper C++ library support
  6258. _LT_TAGVAR(ld_shlibs, $1)=no
  6259. ;;
  6260. *)
  6261. # FIXME: insert proper C++ library support
  6262. _LT_TAGVAR(ld_shlibs, $1)=no
  6263. ;;
  6264. esac
  6265. AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)])
  6266. test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no
  6267. _LT_TAGVAR(GCC, $1)="$GXX"
  6268. _LT_TAGVAR(LD, $1)="$LD"
  6269. ## CAVEAT EMPTOR:
  6270. ## There is no encapsulation within the following macros, do not change
  6271. ## the running order or otherwise move them around unless you know exactly
  6272. ## what you are doing...
  6273. _LT_SYS_HIDDEN_LIBDEPS($1)
  6274. _LT_COMPILER_PIC($1)
  6275. _LT_COMPILER_C_O($1)
  6276. _LT_COMPILER_FILE_LOCKS($1)
  6277. _LT_LINKER_SHLIBS($1)
  6278. _LT_SYS_DYNAMIC_LINKER($1)
  6279. _LT_LINKER_HARDCODE_LIBPATH($1)
  6280. _LT_CONFIG($1)
  6281. fi # test -n "$compiler"
  6282. CC=$lt_save_CC
  6283. CFLAGS=$lt_save_CFLAGS
  6284. LDCXX=$LD
  6285. LD=$lt_save_LD
  6286. GCC=$lt_save_GCC
  6287. with_gnu_ld=$lt_save_with_gnu_ld
  6288. lt_cv_path_LDCXX=$lt_cv_path_LD
  6289. lt_cv_path_LD=$lt_save_path_LD
  6290. lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld
  6291. lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld
  6292. fi # test "$_lt_caught_CXX_error" != yes
  6293. AC_LANG_POP
  6294. ])# _LT_LANG_CXX_CONFIG
  6295. # _LT_FUNC_STRIPNAME_CNF
  6296. # ----------------------
  6297. # func_stripname_cnf prefix suffix name
  6298. # strip PREFIX and SUFFIX off of NAME.
  6299. # PREFIX and SUFFIX must not contain globbing or regex special
  6300. # characters, hashes, percent signs, but SUFFIX may contain a leading
  6301. # dot (in which case that matches only a dot).
  6302. #
  6303. # This function is identical to the (non-XSI) version of func_stripname,
  6304. # except this one can be used by m4 code that may be executed by configure,
  6305. # rather than the libtool script.
  6306. m4_defun([_LT_FUNC_STRIPNAME_CNF],[dnl
  6307. AC_REQUIRE([_LT_DECL_SED])
  6308. AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])
  6309. func_stripname_cnf ()
  6310. {
  6311. case ${2} in
  6312. .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;;
  6313. *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;;
  6314. esac
  6315. } # func_stripname_cnf
  6316. ])# _LT_FUNC_STRIPNAME_CNF
  6317. # _LT_SYS_HIDDEN_LIBDEPS([TAGNAME])
  6318. # ---------------------------------
  6319. # Figure out "hidden" library dependencies from verbose
  6320. # compiler output when linking a shared library.
  6321. # Parse the compiler output and extract the necessary
  6322. # objects, libraries and library flags.
  6323. m4_defun([_LT_SYS_HIDDEN_LIBDEPS],
  6324. [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
  6325. AC_REQUIRE([_LT_FUNC_STRIPNAME_CNF])dnl
  6326. # Dependencies to place before and after the object being linked:
  6327. _LT_TAGVAR(predep_objects, $1)=
  6328. _LT_TAGVAR(postdep_objects, $1)=
  6329. _LT_TAGVAR(predeps, $1)=
  6330. _LT_TAGVAR(postdeps, $1)=
  6331. _LT_TAGVAR(compiler_lib_search_path, $1)=
  6332. dnl we can't use the lt_simple_compile_test_code here,
  6333. dnl because it contains code intended for an executable,
  6334. dnl not a library. It's possible we should let each
  6335. dnl tag define a new lt_????_link_test_code variable,
  6336. dnl but it's only used here...
  6337. m4_if([$1], [], [cat > conftest.$ac_ext <<_LT_EOF
  6338. int a;
  6339. void foo (void) { a = 0; }
  6340. _LT_EOF
  6341. ], [$1], [CXX], [cat > conftest.$ac_ext <<_LT_EOF
  6342. class Foo
  6343. {
  6344. public:
  6345. Foo (void) { a = 0; }
  6346. private:
  6347. int a;
  6348. };
  6349. _LT_EOF
  6350. ], [$1], [F77], [cat > conftest.$ac_ext <<_LT_EOF
  6351. subroutine foo
  6352. implicit none
  6353. integer*4 a
  6354. a=0
  6355. return
  6356. end
  6357. _LT_EOF
  6358. ], [$1], [FC], [cat > conftest.$ac_ext <<_LT_EOF
  6359. subroutine foo
  6360. implicit none
  6361. integer a
  6362. a=0
  6363. return
  6364. end
  6365. _LT_EOF
  6366. ], [$1], [GCJ], [cat > conftest.$ac_ext <<_LT_EOF
  6367. public class foo {
  6368. private int a;
  6369. public void bar (void) {
  6370. a = 0;
  6371. }
  6372. };
  6373. _LT_EOF
  6374. ], [$1], [GO], [cat > conftest.$ac_ext <<_LT_EOF
  6375. package foo
  6376. func foo() {
  6377. }
  6378. _LT_EOF
  6379. ])
  6380. _lt_libdeps_save_CFLAGS=$CFLAGS
  6381. case "$CC $CFLAGS " in #(
  6382. *\ -flto*\ *) CFLAGS="$CFLAGS -fno-lto" ;;
  6383. *\ -fwhopr*\ *) CFLAGS="$CFLAGS -fno-whopr" ;;
  6384. *\ -fuse-linker-plugin*\ *) CFLAGS="$CFLAGS -fno-use-linker-plugin" ;;
  6385. esac
  6386. dnl Parse the compiler output and extract the necessary
  6387. dnl objects, libraries and library flags.
  6388. if AC_TRY_EVAL(ac_compile); then
  6389. # Parse the compiler output and extract the necessary
  6390. # objects, libraries and library flags.
  6391. # Sentinel used to keep track of whether or not we are before
  6392. # the conftest object file.
  6393. pre_test_object_deps_done=no
  6394. for p in `eval "$output_verbose_link_cmd"`; do
  6395. case ${prev}${p} in
  6396. -L* | -R* | -l*)
  6397. # Some compilers place space between "-{L,R}" and the path.
  6398. # Remove the space.
  6399. if test $p = "-L" ||
  6400. test $p = "-R"; then
  6401. prev=$p
  6402. continue
  6403. fi
  6404. # Expand the sysroot to ease extracting the directories later.
  6405. if test -z "$prev"; then
  6406. case $p in
  6407. -L*) func_stripname_cnf '-L' '' "$p"; prev=-L; p=$func_stripname_result ;;
  6408. -R*) func_stripname_cnf '-R' '' "$p"; prev=-R; p=$func_stripname_result ;;
  6409. -l*) func_stripname_cnf '-l' '' "$p"; prev=-l; p=$func_stripname_result ;;
  6410. esac
  6411. fi
  6412. case $p in
  6413. =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;;
  6414. esac
  6415. if test "$pre_test_object_deps_done" = no; then
  6416. case ${prev} in
  6417. -L | -R)
  6418. # Internal compiler library paths should come after those
  6419. # provided the user. The postdeps already come after the
  6420. # user supplied libs so there is no need to process them.
  6421. if test -z "$_LT_TAGVAR(compiler_lib_search_path, $1)"; then
  6422. _LT_TAGVAR(compiler_lib_search_path, $1)="${prev}${p}"
  6423. else
  6424. _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} ${prev}${p}"
  6425. fi
  6426. ;;
  6427. # The "-l" case would never come before the object being
  6428. # linked, so don't bother handling this case.
  6429. esac
  6430. else
  6431. if test -z "$_LT_TAGVAR(postdeps, $1)"; then
  6432. _LT_TAGVAR(postdeps, $1)="${prev}${p}"
  6433. else
  6434. _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} ${prev}${p}"
  6435. fi
  6436. fi
  6437. prev=
  6438. ;;
  6439. *.lto.$objext) ;; # Ignore GCC LTO objects
  6440. *.$objext)
  6441. # This assumes that the test object file only shows up
  6442. # once in the compiler output.
  6443. if test "$p" = "conftest.$objext"; then
  6444. pre_test_object_deps_done=yes
  6445. continue
  6446. fi
  6447. if test "$pre_test_object_deps_done" = no; then
  6448. if test -z "$_LT_TAGVAR(predep_objects, $1)"; then
  6449. _LT_TAGVAR(predep_objects, $1)="$p"
  6450. else
  6451. _LT_TAGVAR(predep_objects, $1)="$_LT_TAGVAR(predep_objects, $1) $p"
  6452. fi
  6453. else
  6454. if test -z "$_LT_TAGVAR(postdep_objects, $1)"; then
  6455. _LT_TAGVAR(postdep_objects, $1)="$p"
  6456. else
  6457. _LT_TAGVAR(postdep_objects, $1)="$_LT_TAGVAR(postdep_objects, $1) $p"
  6458. fi
  6459. fi
  6460. ;;
  6461. *) ;; # Ignore the rest.
  6462. esac
  6463. done
  6464. # Clean up.
  6465. rm -f a.out a.exe
  6466. else
  6467. echo "libtool.m4: error: problem compiling $1 test program"
  6468. fi
  6469. $RM -f confest.$objext
  6470. CFLAGS=$_lt_libdeps_save_CFLAGS
  6471. # PORTME: override above test on systems where it is broken
  6472. m4_if([$1], [CXX],
  6473. [case $host_os in
  6474. interix[[3-9]]*)
  6475. # Interix 3.5 installs completely hosed .la files for C++, so rather than
  6476. # hack all around it, let's just trust "g++" to DTRT.
  6477. _LT_TAGVAR(predep_objects,$1)=
  6478. _LT_TAGVAR(postdep_objects,$1)=
  6479. _LT_TAGVAR(postdeps,$1)=
  6480. ;;
  6481. linux*)
  6482. case `$CC -V 2>&1 | sed 5q` in
  6483. *Sun\ C*)
  6484. # Sun C++ 5.9
  6485. # The more standards-conforming stlport4 library is
  6486. # incompatible with the Cstd library. Avoid specifying
  6487. # it if it's in CXXFLAGS. Ignore libCrun as
  6488. # -library=stlport4 depends on it.
  6489. case " $CXX $CXXFLAGS " in
  6490. *" -library=stlport4 "*)
  6491. solaris_use_stlport4=yes
  6492. ;;
  6493. esac
  6494. if test "$solaris_use_stlport4" != yes; then
  6495. _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun'
  6496. fi
  6497. ;;
  6498. esac
  6499. ;;
  6500. solaris*)
  6501. case $cc_basename in
  6502. CC* | sunCC*)
  6503. # The more standards-conforming stlport4 library is
  6504. # incompatible with the Cstd library. Avoid specifying
  6505. # it if it's in CXXFLAGS. Ignore libCrun as
  6506. # -library=stlport4 depends on it.
  6507. case " $CXX $CXXFLAGS " in
  6508. *" -library=stlport4 "*)
  6509. solaris_use_stlport4=yes
  6510. ;;
  6511. esac
  6512. # Adding this requires a known-good setup of shared libraries for
  6513. # Sun compiler versions before 5.6, else PIC objects from an old
  6514. # archive will be linked into the output, leading to subtle bugs.
  6515. if test "$solaris_use_stlport4" != yes; then
  6516. _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun'
  6517. fi
  6518. ;;
  6519. esac
  6520. ;;
  6521. esac
  6522. ])
  6523. case " $_LT_TAGVAR(postdeps, $1) " in
  6524. *" -lc "*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;;
  6525. esac
  6526. _LT_TAGVAR(compiler_lib_search_dirs, $1)=
  6527. if test -n "${_LT_TAGVAR(compiler_lib_search_path, $1)}"; then
  6528. _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | ${SED} -e 's! -L! !g' -e 's!^ !!'`
  6529. fi
  6530. _LT_TAGDECL([], [compiler_lib_search_dirs], [1],
  6531. [The directories searched by this compiler when creating a shared library])
  6532. _LT_TAGDECL([], [predep_objects], [1],
  6533. [Dependencies to place before and after the objects being linked to
  6534. create a shared library])
  6535. _LT_TAGDECL([], [postdep_objects], [1])
  6536. _LT_TAGDECL([], [predeps], [1])
  6537. _LT_TAGDECL([], [postdeps], [1])
  6538. _LT_TAGDECL([], [compiler_lib_search_path], [1],
  6539. [The library search path used internally by the compiler when linking
  6540. a shared library])
  6541. ])# _LT_SYS_HIDDEN_LIBDEPS
  6542. # _LT_LANG_F77_CONFIG([TAG])
  6543. # --------------------------
  6544. # Ensure that the configuration variables for a Fortran 77 compiler are
  6545. # suitably defined. These variables are subsequently used by _LT_CONFIG
  6546. # to write the compiler configuration to `libtool'.
  6547. m4_defun([_LT_LANG_F77_CONFIG],
  6548. [AC_LANG_PUSH(Fortran 77)
  6549. if test -z "$F77" || test "X$F77" = "Xno"; then
  6550. _lt_disable_F77=yes
  6551. fi
  6552. _LT_TAGVAR(archive_cmds_need_lc, $1)=no
  6553. _LT_TAGVAR(allow_undefined_flag, $1)=
  6554. _LT_TAGVAR(always_export_symbols, $1)=no
  6555. _LT_TAGVAR(archive_expsym_cmds, $1)=
  6556. _LT_TAGVAR(export_dynamic_flag_spec, $1)=
  6557. _LT_TAGVAR(hardcode_direct, $1)=no
  6558. _LT_TAGVAR(hardcode_direct_absolute, $1)=no
  6559. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=
  6560. _LT_TAGVAR(hardcode_libdir_separator, $1)=
  6561. _LT_TAGVAR(hardcode_minus_L, $1)=no
  6562. _LT_TAGVAR(hardcode_automatic, $1)=no
  6563. _LT_TAGVAR(inherit_rpath, $1)=no
  6564. _LT_TAGVAR(module_cmds, $1)=
  6565. _LT_TAGVAR(module_expsym_cmds, $1)=
  6566. _LT_TAGVAR(link_all_deplibs, $1)=unknown
  6567. _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
  6568. _LT_TAGVAR(reload_flag, $1)=$reload_flag
  6569. _LT_TAGVAR(reload_cmds, $1)=$reload_cmds
  6570. _LT_TAGVAR(no_undefined_flag, $1)=
  6571. _LT_TAGVAR(whole_archive_flag_spec, $1)=
  6572. _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no
  6573. # Source file extension for f77 test sources.
  6574. ac_ext=f
  6575. # Object file extension for compiled f77 test sources.
  6576. objext=o
  6577. _LT_TAGVAR(objext, $1)=$objext
  6578. # No sense in running all these tests if we already determined that
  6579. # the F77 compiler isn't working. Some variables (like enable_shared)
  6580. # are currently assumed to apply to all compilers on this platform,
  6581. # and will be corrupted by setting them based on a non-working compiler.
  6582. if test "$_lt_disable_F77" != yes; then
  6583. # Code to be used in simple compile tests
  6584. lt_simple_compile_test_code="\
  6585. subroutine t
  6586. return
  6587. end
  6588. "
  6589. # Code to be used in simple link tests
  6590. lt_simple_link_test_code="\
  6591. program t
  6592. end
  6593. "
  6594. # ltmain only uses $CC for tagged configurations so make sure $CC is set.
  6595. _LT_TAG_COMPILER
  6596. # save warnings/boilerplate of simple test code
  6597. _LT_COMPILER_BOILERPLATE
  6598. _LT_LINKER_BOILERPLATE
  6599. # Allow CC to be a program name with arguments.
  6600. lt_save_CC="$CC"
  6601. lt_save_GCC=$GCC
  6602. lt_save_CFLAGS=$CFLAGS
  6603. CC=${F77-"f77"}
  6604. CFLAGS=$FFLAGS
  6605. compiler=$CC
  6606. _LT_TAGVAR(compiler, $1)=$CC
  6607. _LT_CC_BASENAME([$compiler])
  6608. GCC=$G77
  6609. if test -n "$compiler"; then
  6610. AC_MSG_CHECKING([if libtool supports shared libraries])
  6611. AC_MSG_RESULT([$can_build_shared])
  6612. AC_MSG_CHECKING([whether to build shared libraries])
  6613. test "$can_build_shared" = "no" && enable_shared=no
  6614. # On AIX, shared libraries and static libraries use the same namespace, and
  6615. # are all built from PIC.
  6616. case $host_os in
  6617. aix3*)
  6618. test "$enable_shared" = yes && enable_static=no
  6619. if test -n "$RANLIB"; then
  6620. archive_cmds="$archive_cmds~\$RANLIB \$lib"
  6621. postinstall_cmds='$RANLIB $lib'
  6622. fi
  6623. ;;
  6624. aix[[4-9]]*)
  6625. if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
  6626. test "$enable_shared" = yes && enable_static=no
  6627. fi
  6628. ;;
  6629. esac
  6630. AC_MSG_RESULT([$enable_shared])
  6631. AC_MSG_CHECKING([whether to build static libraries])
  6632. # Make sure either enable_shared or enable_static is yes.
  6633. test "$enable_shared" = yes || enable_static=yes
  6634. AC_MSG_RESULT([$enable_static])
  6635. _LT_TAGVAR(GCC, $1)="$G77"
  6636. _LT_TAGVAR(LD, $1)="$LD"
  6637. ## CAVEAT EMPTOR:
  6638. ## There is no encapsulation within the following macros, do not change
  6639. ## the running order or otherwise move them around unless you know exactly
  6640. ## what you are doing...
  6641. _LT_COMPILER_PIC($1)
  6642. _LT_COMPILER_C_O($1)
  6643. _LT_COMPILER_FILE_LOCKS($1)
  6644. _LT_LINKER_SHLIBS($1)
  6645. _LT_SYS_DYNAMIC_LINKER($1)
  6646. _LT_LINKER_HARDCODE_LIBPATH($1)
  6647. _LT_CONFIG($1)
  6648. fi # test -n "$compiler"
  6649. GCC=$lt_save_GCC
  6650. CC="$lt_save_CC"
  6651. CFLAGS="$lt_save_CFLAGS"
  6652. fi # test "$_lt_disable_F77" != yes
  6653. AC_LANG_POP
  6654. ])# _LT_LANG_F77_CONFIG
  6655. # _LT_LANG_FC_CONFIG([TAG])
  6656. # -------------------------
  6657. # Ensure that the configuration variables for a Fortran compiler are
  6658. # suitably defined. These variables are subsequently used by _LT_CONFIG
  6659. # to write the compiler configuration to `libtool'.
  6660. m4_defun([_LT_LANG_FC_CONFIG],
  6661. [AC_LANG_PUSH(Fortran)
  6662. if test -z "$FC" || test "X$FC" = "Xno"; then
  6663. _lt_disable_FC=yes
  6664. fi
  6665. _LT_TAGVAR(archive_cmds_need_lc, $1)=no
  6666. _LT_TAGVAR(allow_undefined_flag, $1)=
  6667. _LT_TAGVAR(always_export_symbols, $1)=no
  6668. _LT_TAGVAR(archive_expsym_cmds, $1)=
  6669. _LT_TAGVAR(export_dynamic_flag_spec, $1)=
  6670. _LT_TAGVAR(hardcode_direct, $1)=no
  6671. _LT_TAGVAR(hardcode_direct_absolute, $1)=no
  6672. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=
  6673. _LT_TAGVAR(hardcode_libdir_separator, $1)=
  6674. _LT_TAGVAR(hardcode_minus_L, $1)=no
  6675. _LT_TAGVAR(hardcode_automatic, $1)=no
  6676. _LT_TAGVAR(inherit_rpath, $1)=no
  6677. _LT_TAGVAR(module_cmds, $1)=
  6678. _LT_TAGVAR(module_expsym_cmds, $1)=
  6679. _LT_TAGVAR(link_all_deplibs, $1)=unknown
  6680. _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
  6681. _LT_TAGVAR(reload_flag, $1)=$reload_flag
  6682. _LT_TAGVAR(reload_cmds, $1)=$reload_cmds
  6683. _LT_TAGVAR(no_undefined_flag, $1)=
  6684. _LT_TAGVAR(whole_archive_flag_spec, $1)=
  6685. _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no
  6686. # Source file extension for fc test sources.
  6687. ac_ext=${ac_fc_srcext-f}
  6688. # Object file extension for compiled fc test sources.
  6689. objext=o
  6690. _LT_TAGVAR(objext, $1)=$objext
  6691. # No sense in running all these tests if we already determined that
  6692. # the FC compiler isn't working. Some variables (like enable_shared)
  6693. # are currently assumed to apply to all compilers on this platform,
  6694. # and will be corrupted by setting them based on a non-working compiler.
  6695. if test "$_lt_disable_FC" != yes; then
  6696. # Code to be used in simple compile tests
  6697. lt_simple_compile_test_code="\
  6698. subroutine t
  6699. return
  6700. end
  6701. "
  6702. # Code to be used in simple link tests
  6703. lt_simple_link_test_code="\
  6704. program t
  6705. end
  6706. "
  6707. # ltmain only uses $CC for tagged configurations so make sure $CC is set.
  6708. _LT_TAG_COMPILER
  6709. # save warnings/boilerplate of simple test code
  6710. _LT_COMPILER_BOILERPLATE
  6711. _LT_LINKER_BOILERPLATE
  6712. # Allow CC to be a program name with arguments.
  6713. lt_save_CC="$CC"
  6714. lt_save_GCC=$GCC
  6715. lt_save_CFLAGS=$CFLAGS
  6716. CC=${FC-"f95"}
  6717. CFLAGS=$FCFLAGS
  6718. compiler=$CC
  6719. GCC=$ac_cv_fc_compiler_gnu
  6720. _LT_TAGVAR(compiler, $1)=$CC
  6721. _LT_CC_BASENAME([$compiler])
  6722. if test -n "$compiler"; then
  6723. AC_MSG_CHECKING([if libtool supports shared libraries])
  6724. AC_MSG_RESULT([$can_build_shared])
  6725. AC_MSG_CHECKING([whether to build shared libraries])
  6726. test "$can_build_shared" = "no" && enable_shared=no
  6727. # On AIX, shared libraries and static libraries use the same namespace, and
  6728. # are all built from PIC.
  6729. case $host_os in
  6730. aix3*)
  6731. test "$enable_shared" = yes && enable_static=no
  6732. if test -n "$RANLIB"; then
  6733. archive_cmds="$archive_cmds~\$RANLIB \$lib"
  6734. postinstall_cmds='$RANLIB $lib'
  6735. fi
  6736. ;;
  6737. aix[[4-9]]*)
  6738. if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
  6739. test "$enable_shared" = yes && enable_static=no
  6740. fi
  6741. ;;
  6742. esac
  6743. AC_MSG_RESULT([$enable_shared])
  6744. AC_MSG_CHECKING([whether to build static libraries])
  6745. # Make sure either enable_shared or enable_static is yes.
  6746. test "$enable_shared" = yes || enable_static=yes
  6747. AC_MSG_RESULT([$enable_static])
  6748. _LT_TAGVAR(GCC, $1)="$ac_cv_fc_compiler_gnu"
  6749. _LT_TAGVAR(LD, $1)="$LD"
  6750. ## CAVEAT EMPTOR:
  6751. ## There is no encapsulation within the following macros, do not change
  6752. ## the running order or otherwise move them around unless you know exactly
  6753. ## what you are doing...
  6754. _LT_SYS_HIDDEN_LIBDEPS($1)
  6755. _LT_COMPILER_PIC($1)
  6756. _LT_COMPILER_C_O($1)
  6757. _LT_COMPILER_FILE_LOCKS($1)
  6758. _LT_LINKER_SHLIBS($1)
  6759. _LT_SYS_DYNAMIC_LINKER($1)
  6760. _LT_LINKER_HARDCODE_LIBPATH($1)
  6761. _LT_CONFIG($1)
  6762. fi # test -n "$compiler"
  6763. GCC=$lt_save_GCC
  6764. CC=$lt_save_CC
  6765. CFLAGS=$lt_save_CFLAGS
  6766. fi # test "$_lt_disable_FC" != yes
  6767. AC_LANG_POP
  6768. ])# _LT_LANG_FC_CONFIG
  6769. # _LT_LANG_GCJ_CONFIG([TAG])
  6770. # --------------------------
  6771. # Ensure that the configuration variables for the GNU Java Compiler compiler
  6772. # are suitably defined. These variables are subsequently used by _LT_CONFIG
  6773. # to write the compiler configuration to `libtool'.
  6774. m4_defun([_LT_LANG_GCJ_CONFIG],
  6775. [AC_REQUIRE([LT_PROG_GCJ])dnl
  6776. AC_LANG_SAVE
  6777. # Source file extension for Java test sources.
  6778. ac_ext=java
  6779. # Object file extension for compiled Java test sources.
  6780. objext=o
  6781. _LT_TAGVAR(objext, $1)=$objext
  6782. # Code to be used in simple compile tests
  6783. lt_simple_compile_test_code="class foo {}"
  6784. # Code to be used in simple link tests
  6785. lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }'
  6786. # ltmain only uses $CC for tagged configurations so make sure $CC is set.
  6787. _LT_TAG_COMPILER
  6788. # save warnings/boilerplate of simple test code
  6789. _LT_COMPILER_BOILERPLATE
  6790. _LT_LINKER_BOILERPLATE
  6791. # Allow CC to be a program name with arguments.
  6792. lt_save_CC=$CC
  6793. lt_save_CFLAGS=$CFLAGS
  6794. lt_save_GCC=$GCC
  6795. GCC=yes
  6796. CC=${GCJ-"gcj"}
  6797. CFLAGS=$GCJFLAGS
  6798. compiler=$CC
  6799. _LT_TAGVAR(compiler, $1)=$CC
  6800. _LT_TAGVAR(LD, $1)="$LD"
  6801. _LT_CC_BASENAME([$compiler])
  6802. # GCJ did not exist at the time GCC didn't implicitly link libc in.
  6803. _LT_TAGVAR(archive_cmds_need_lc, $1)=no
  6804. _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
  6805. _LT_TAGVAR(reload_flag, $1)=$reload_flag
  6806. _LT_TAGVAR(reload_cmds, $1)=$reload_cmds
  6807. if test -n "$compiler"; then
  6808. _LT_COMPILER_NO_RTTI($1)
  6809. _LT_COMPILER_PIC($1)
  6810. _LT_COMPILER_C_O($1)
  6811. _LT_COMPILER_FILE_LOCKS($1)
  6812. _LT_LINKER_SHLIBS($1)
  6813. _LT_LINKER_HARDCODE_LIBPATH($1)
  6814. _LT_CONFIG($1)
  6815. fi
  6816. AC_LANG_RESTORE
  6817. GCC=$lt_save_GCC
  6818. CC=$lt_save_CC
  6819. CFLAGS=$lt_save_CFLAGS
  6820. ])# _LT_LANG_GCJ_CONFIG
  6821. # _LT_LANG_GO_CONFIG([TAG])
  6822. # --------------------------
  6823. # Ensure that the configuration variables for the GNU Go compiler
  6824. # are suitably defined. These variables are subsequently used by _LT_CONFIG
  6825. # to write the compiler configuration to `libtool'.
  6826. m4_defun([_LT_LANG_GO_CONFIG],
  6827. [AC_REQUIRE([LT_PROG_GO])dnl
  6828. AC_LANG_SAVE
  6829. # Source file extension for Go test sources.
  6830. ac_ext=go
  6831. # Object file extension for compiled Go test sources.
  6832. objext=o
  6833. _LT_TAGVAR(objext, $1)=$objext
  6834. # Code to be used in simple compile tests
  6835. lt_simple_compile_test_code="package main; func main() { }"
  6836. # Code to be used in simple link tests
  6837. lt_simple_link_test_code='package main; func main() { }'
  6838. # ltmain only uses $CC for tagged configurations so make sure $CC is set.
  6839. _LT_TAG_COMPILER
  6840. # save warnings/boilerplate of simple test code
  6841. _LT_COMPILER_BOILERPLATE
  6842. _LT_LINKER_BOILERPLATE
  6843. # Allow CC to be a program name with arguments.
  6844. lt_save_CC=$CC
  6845. lt_save_CFLAGS=$CFLAGS
  6846. lt_save_GCC=$GCC
  6847. GCC=yes
  6848. CC=${GOC-"gccgo"}
  6849. CFLAGS=$GOFLAGS
  6850. compiler=$CC
  6851. _LT_TAGVAR(compiler, $1)=$CC
  6852. _LT_TAGVAR(LD, $1)="$LD"
  6853. _LT_CC_BASENAME([$compiler])
  6854. # Go did not exist at the time GCC didn't implicitly link libc in.
  6855. _LT_TAGVAR(archive_cmds_need_lc, $1)=no
  6856. _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
  6857. _LT_TAGVAR(reload_flag, $1)=$reload_flag
  6858. _LT_TAGVAR(reload_cmds, $1)=$reload_cmds
  6859. if test -n "$compiler"; then
  6860. _LT_COMPILER_NO_RTTI($1)
  6861. _LT_COMPILER_PIC($1)
  6862. _LT_COMPILER_C_O($1)
  6863. _LT_COMPILER_FILE_LOCKS($1)
  6864. _LT_LINKER_SHLIBS($1)
  6865. _LT_LINKER_HARDCODE_LIBPATH($1)
  6866. _LT_CONFIG($1)
  6867. fi
  6868. AC_LANG_RESTORE
  6869. GCC=$lt_save_GCC
  6870. CC=$lt_save_CC
  6871. CFLAGS=$lt_save_CFLAGS
  6872. ])# _LT_LANG_GO_CONFIG
  6873. # _LT_LANG_RC_CONFIG([TAG])
  6874. # -------------------------
  6875. # Ensure that the configuration variables for the Windows resource compiler
  6876. # are suitably defined. These variables are subsequently used by _LT_CONFIG
  6877. # to write the compiler configuration to `libtool'.
  6878. m4_defun([_LT_LANG_RC_CONFIG],
  6879. [AC_REQUIRE([LT_PROG_RC])dnl
  6880. AC_LANG_SAVE
  6881. # Source file extension for RC test sources.
  6882. ac_ext=rc
  6883. # Object file extension for compiled RC test sources.
  6884. objext=o
  6885. _LT_TAGVAR(objext, $1)=$objext
  6886. # Code to be used in simple compile tests
  6887. lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }'
  6888. # Code to be used in simple link tests
  6889. lt_simple_link_test_code="$lt_simple_compile_test_code"
  6890. # ltmain only uses $CC for tagged configurations so make sure $CC is set.
  6891. _LT_TAG_COMPILER
  6892. # save warnings/boilerplate of simple test code
  6893. _LT_COMPILER_BOILERPLATE
  6894. _LT_LINKER_BOILERPLATE
  6895. # Allow CC to be a program name with arguments.
  6896. lt_save_CC="$CC"
  6897. lt_save_CFLAGS=$CFLAGS
  6898. lt_save_GCC=$GCC
  6899. GCC=
  6900. CC=${RC-"windres"}
  6901. CFLAGS=
  6902. compiler=$CC
  6903. _LT_TAGVAR(compiler, $1)=$CC
  6904. _LT_CC_BASENAME([$compiler])
  6905. _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes
  6906. if test -n "$compiler"; then
  6907. :
  6908. _LT_CONFIG($1)
  6909. fi
  6910. GCC=$lt_save_GCC
  6911. AC_LANG_RESTORE
  6912. CC=$lt_save_CC
  6913. CFLAGS=$lt_save_CFLAGS
  6914. ])# _LT_LANG_RC_CONFIG
  6915. # LT_PROG_GCJ
  6916. # -----------
  6917. AC_DEFUN([LT_PROG_GCJ],
  6918. [m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ],
  6919. [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ],
  6920. [AC_CHECK_TOOL(GCJ, gcj,)
  6921. test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2"
  6922. AC_SUBST(GCJFLAGS)])])[]dnl
  6923. ])
  6924. # Old name:
  6925. AU_ALIAS([LT_AC_PROG_GCJ], [LT_PROG_GCJ])
  6926. dnl aclocal-1.4 backwards compatibility:
  6927. dnl AC_DEFUN([LT_AC_PROG_GCJ], [])
  6928. # LT_PROG_GO
  6929. # ----------
  6930. AC_DEFUN([LT_PROG_GO],
  6931. [AC_CHECK_TOOL(GOC, gccgo,)
  6932. ])
  6933. # LT_PROG_RC
  6934. # ----------
  6935. AC_DEFUN([LT_PROG_RC],
  6936. [AC_CHECK_TOOL(RC, windres,)
  6937. ])
  6938. # Old name:
  6939. AU_ALIAS([LT_AC_PROG_RC], [LT_PROG_RC])
  6940. dnl aclocal-1.4 backwards compatibility:
  6941. dnl AC_DEFUN([LT_AC_PROG_RC], [])
  6942. # _LT_DECL_EGREP
  6943. # --------------
  6944. # If we don't have a new enough Autoconf to choose the best grep
  6945. # available, choose the one first in the user's PATH.
  6946. m4_defun([_LT_DECL_EGREP],
  6947. [AC_REQUIRE([AC_PROG_EGREP])dnl
  6948. AC_REQUIRE([AC_PROG_FGREP])dnl
  6949. test -z "$GREP" && GREP=grep
  6950. _LT_DECL([], [GREP], [1], [A grep program that handles long lines])
  6951. _LT_DECL([], [EGREP], [1], [An ERE matcher])
  6952. _LT_DECL([], [FGREP], [1], [A literal string matcher])
  6953. dnl Non-bleeding-edge autoconf doesn't subst GREP, so do it here too
  6954. AC_SUBST([GREP])
  6955. ])
  6956. # _LT_DECL_OBJDUMP
  6957. # --------------
  6958. # If we don't have a new enough Autoconf to choose the best objdump
  6959. # available, choose the one first in the user's PATH.
  6960. m4_defun([_LT_DECL_OBJDUMP],
  6961. [AC_CHECK_TOOL(OBJDUMP, objdump, false)
  6962. test -z "$OBJDUMP" && OBJDUMP=objdump
  6963. _LT_DECL([], [OBJDUMP], [1], [An object symbol dumper])
  6964. AC_SUBST([OBJDUMP])
  6965. ])
  6966. # _LT_DECL_DLLTOOL
  6967. # ----------------
  6968. # Ensure DLLTOOL variable is set.
  6969. m4_defun([_LT_DECL_DLLTOOL],
  6970. [AC_CHECK_TOOL(DLLTOOL, dlltool, false)
  6971. test -z "$DLLTOOL" && DLLTOOL=dlltool
  6972. _LT_DECL([], [DLLTOOL], [1], [DLL creation program])
  6973. AC_SUBST([DLLTOOL])
  6974. ])
  6975. # _LT_DECL_SED
  6976. # ------------
  6977. # Check for a fully-functional sed program, that truncates
  6978. # as few characters as possible. Prefer GNU sed if found.
  6979. m4_defun([_LT_DECL_SED],
  6980. [AC_PROG_SED
  6981. test -z "$SED" && SED=sed
  6982. Xsed="$SED -e 1s/^X//"
  6983. _LT_DECL([], [SED], [1], [A sed program that does not truncate output])
  6984. _LT_DECL([], [Xsed], ["\$SED -e 1s/^X//"],
  6985. [Sed that helps us avoid accidentally triggering echo(1) options like -n])
  6986. ])# _LT_DECL_SED
  6987. m4_ifndef([AC_PROG_SED], [
  6988. # NOTE: This macro has been submitted for inclusion into #
  6989. # GNU Autoconf as AC_PROG_SED. When it is available in #
  6990. # a released version of Autoconf we should remove this #
  6991. # macro and use it instead. #
  6992. m4_defun([AC_PROG_SED],
  6993. [AC_MSG_CHECKING([for a sed that does not truncate output])
  6994. AC_CACHE_VAL(lt_cv_path_SED,
  6995. [# Loop through the user's path and test for sed and gsed.
  6996. # Then use that list of sed's as ones to test for truncation.
  6997. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  6998. for as_dir in $PATH
  6999. do
  7000. IFS=$as_save_IFS
  7001. test -z "$as_dir" && as_dir=.
  7002. for lt_ac_prog in sed gsed; do
  7003. for ac_exec_ext in '' $ac_executable_extensions; do
  7004. if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then
  7005. lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext"
  7006. fi
  7007. done
  7008. done
  7009. done
  7010. IFS=$as_save_IFS
  7011. lt_ac_max=0
  7012. lt_ac_count=0
  7013. # Add /usr/xpg4/bin/sed as it is typically found on Solaris
  7014. # along with /bin/sed that truncates output.
  7015. for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do
  7016. test ! -f $lt_ac_sed && continue
  7017. cat /dev/null > conftest.in
  7018. lt_ac_count=0
  7019. echo $ECHO_N "0123456789$ECHO_C" >conftest.in
  7020. # Check for GNU sed and select it if it is found.
  7021. if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then
  7022. lt_cv_path_SED=$lt_ac_sed
  7023. break
  7024. fi
  7025. while true; do
  7026. cat conftest.in conftest.in >conftest.tmp
  7027. mv conftest.tmp conftest.in
  7028. cp conftest.in conftest.nl
  7029. echo >>conftest.nl
  7030. $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break
  7031. cmp -s conftest.out conftest.nl || break
  7032. # 10000 chars as input seems more than enough
  7033. test $lt_ac_count -gt 10 && break
  7034. lt_ac_count=`expr $lt_ac_count + 1`
  7035. if test $lt_ac_count -gt $lt_ac_max; then
  7036. lt_ac_max=$lt_ac_count
  7037. lt_cv_path_SED=$lt_ac_sed
  7038. fi
  7039. done
  7040. done
  7041. ])
  7042. SED=$lt_cv_path_SED
  7043. AC_SUBST([SED])
  7044. AC_MSG_RESULT([$SED])
  7045. ])#AC_PROG_SED
  7046. ])#m4_ifndef
  7047. # Old name:
  7048. AU_ALIAS([LT_AC_PROG_SED], [AC_PROG_SED])
  7049. dnl aclocal-1.4 backwards compatibility:
  7050. dnl AC_DEFUN([LT_AC_PROG_SED], [])
  7051. # _LT_CHECK_SHELL_FEATURES
  7052. # ------------------------
  7053. # Find out whether the shell is Bourne or XSI compatible,
  7054. # or has some other useful features.
  7055. m4_defun([_LT_CHECK_SHELL_FEATURES],
  7056. [AC_MSG_CHECKING([whether the shell understands some XSI constructs])
  7057. # Try some XSI features
  7058. xsi_shell=no
  7059. ( _lt_dummy="a/b/c"
  7060. test "${_lt_dummy##*/},${_lt_dummy%/*},${_lt_dummy#??}"${_lt_dummy%"$_lt_dummy"}, \
  7061. = c,a/b,b/c, \
  7062. && eval 'test $(( 1 + 1 )) -eq 2 \
  7063. && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \
  7064. && xsi_shell=yes
  7065. AC_MSG_RESULT([$xsi_shell])
  7066. _LT_CONFIG_LIBTOOL_INIT([xsi_shell='$xsi_shell'])
  7067. AC_MSG_CHECKING([whether the shell understands "+="])
  7068. lt_shell_append=no
  7069. ( foo=bar; set foo baz; eval "$[1]+=\$[2]" && test "$foo" = barbaz ) \
  7070. >/dev/null 2>&1 \
  7071. && lt_shell_append=yes
  7072. AC_MSG_RESULT([$lt_shell_append])
  7073. _LT_CONFIG_LIBTOOL_INIT([lt_shell_append='$lt_shell_append'])
  7074. if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
  7075. lt_unset=unset
  7076. else
  7077. lt_unset=false
  7078. fi
  7079. _LT_DECL([], [lt_unset], [0], [whether the shell understands "unset"])dnl
  7080. # test EBCDIC or ASCII
  7081. case `echo X|tr X '\101'` in
  7082. A) # ASCII based system
  7083. # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr
  7084. lt_SP2NL='tr \040 \012'
  7085. lt_NL2SP='tr \015\012 \040\040'
  7086. ;;
  7087. *) # EBCDIC based system
  7088. lt_SP2NL='tr \100 \n'
  7089. lt_NL2SP='tr \r\n \100\100'
  7090. ;;
  7091. esac
  7092. _LT_DECL([SP2NL], [lt_SP2NL], [1], [turn spaces into newlines])dnl
  7093. _LT_DECL([NL2SP], [lt_NL2SP], [1], [turn newlines into spaces])dnl
  7094. ])# _LT_CHECK_SHELL_FEATURES
  7095. # _LT_PROG_FUNCTION_REPLACE (FUNCNAME, REPLACEMENT-BODY)
  7096. # ------------------------------------------------------
  7097. # In `$cfgfile', look for function FUNCNAME delimited by `^FUNCNAME ()$' and
  7098. # '^} FUNCNAME ', and replace its body with REPLACEMENT-BODY.
  7099. m4_defun([_LT_PROG_FUNCTION_REPLACE],
  7100. [dnl {
  7101. sed -e '/^$1 ()$/,/^} # $1 /c\
  7102. $1 ()\
  7103. {\
  7104. m4_bpatsubsts([$2], [$], [\\], [^\([ ]\)], [\\\1])
  7105. } # Extended-shell $1 implementation' "$cfgfile" > $cfgfile.tmp \
  7106. && mv -f "$cfgfile.tmp" "$cfgfile" \
  7107. || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
  7108. test 0 -eq $? || _lt_function_replace_fail=:
  7109. ])
  7110. # _LT_PROG_REPLACE_SHELLFNS
  7111. # -------------------------
  7112. # Replace existing portable implementations of several shell functions with
  7113. # equivalent extended shell implementations where those features are available..
  7114. m4_defun([_LT_PROG_REPLACE_SHELLFNS],
  7115. [if test x"$xsi_shell" = xyes; then
  7116. _LT_PROG_FUNCTION_REPLACE([func_dirname], [dnl
  7117. case ${1} in
  7118. */*) func_dirname_result="${1%/*}${2}" ;;
  7119. * ) func_dirname_result="${3}" ;;
  7120. esac])
  7121. _LT_PROG_FUNCTION_REPLACE([func_basename], [dnl
  7122. func_basename_result="${1##*/}"])
  7123. _LT_PROG_FUNCTION_REPLACE([func_dirname_and_basename], [dnl
  7124. case ${1} in
  7125. */*) func_dirname_result="${1%/*}${2}" ;;
  7126. * ) func_dirname_result="${3}" ;;
  7127. esac
  7128. func_basename_result="${1##*/}"])
  7129. _LT_PROG_FUNCTION_REPLACE([func_stripname], [dnl
  7130. # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are
  7131. # positional parameters, so assign one to ordinary parameter first.
  7132. func_stripname_result=${3}
  7133. func_stripname_result=${func_stripname_result#"${1}"}
  7134. func_stripname_result=${func_stripname_result%"${2}"}])
  7135. _LT_PROG_FUNCTION_REPLACE([func_split_long_opt], [dnl
  7136. func_split_long_opt_name=${1%%=*}
  7137. func_split_long_opt_arg=${1#*=}])
  7138. _LT_PROG_FUNCTION_REPLACE([func_split_short_opt], [dnl
  7139. func_split_short_opt_arg=${1#??}
  7140. func_split_short_opt_name=${1%"$func_split_short_opt_arg"}])
  7141. _LT_PROG_FUNCTION_REPLACE([func_lo2o], [dnl
  7142. case ${1} in
  7143. *.lo) func_lo2o_result=${1%.lo}.${objext} ;;
  7144. *) func_lo2o_result=${1} ;;
  7145. esac])
  7146. _LT_PROG_FUNCTION_REPLACE([func_xform], [ func_xform_result=${1%.*}.lo])
  7147. _LT_PROG_FUNCTION_REPLACE([func_arith], [ func_arith_result=$(( $[*] ))])
  7148. _LT_PROG_FUNCTION_REPLACE([func_len], [ func_len_result=${#1}])
  7149. fi
  7150. if test x"$lt_shell_append" = xyes; then
  7151. _LT_PROG_FUNCTION_REPLACE([func_append], [ eval "${1}+=\\${2}"])
  7152. _LT_PROG_FUNCTION_REPLACE([func_append_quoted], [dnl
  7153. func_quote_for_eval "${2}"
  7154. dnl m4 expansion turns \\\\ into \\, and then the shell eval turns that into \
  7155. eval "${1}+=\\\\ \\$func_quote_for_eval_result"])
  7156. # Save a `func_append' function call where possible by direct use of '+='
  7157. sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \
  7158. && mv -f "$cfgfile.tmp" "$cfgfile" \
  7159. || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
  7160. test 0 -eq $? || _lt_function_replace_fail=:
  7161. else
  7162. # Save a `func_append' function call even when '+=' is not available
  7163. sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \
  7164. && mv -f "$cfgfile.tmp" "$cfgfile" \
  7165. || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
  7166. test 0 -eq $? || _lt_function_replace_fail=:
  7167. fi
  7168. if test x"$_lt_function_replace_fail" = x":"; then
  7169. AC_MSG_WARN([Unable to substitute extended shell functions in $ofile])
  7170. fi
  7171. ])
  7172. # _LT_PATH_CONVERSION_FUNCTIONS
  7173. # -----------------------------
  7174. # Determine which file name conversion functions should be used by
  7175. # func_to_host_file (and, implicitly, by func_to_host_path). These are needed
  7176. # for certain cross-compile configurations and native mingw.
  7177. m4_defun([_LT_PATH_CONVERSION_FUNCTIONS],
  7178. [AC_REQUIRE([AC_CANONICAL_HOST])dnl
  7179. AC_REQUIRE([AC_CANONICAL_BUILD])dnl
  7180. AC_MSG_CHECKING([how to convert $build file names to $host format])
  7181. AC_CACHE_VAL(lt_cv_to_host_file_cmd,
  7182. [case $host in
  7183. *-*-mingw* )
  7184. case $build in
  7185. *-*-mingw* ) # actually msys
  7186. lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32
  7187. ;;
  7188. *-*-cygwin* )
  7189. lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32
  7190. ;;
  7191. * ) # otherwise, assume *nix
  7192. lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32
  7193. ;;
  7194. esac
  7195. ;;
  7196. *-*-cygwin* )
  7197. case $build in
  7198. *-*-mingw* ) # actually msys
  7199. lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin
  7200. ;;
  7201. *-*-cygwin* )
  7202. lt_cv_to_host_file_cmd=func_convert_file_noop
  7203. ;;
  7204. * ) # otherwise, assume *nix
  7205. lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin
  7206. ;;
  7207. esac
  7208. ;;
  7209. * ) # unhandled hosts (and "normal" native builds)
  7210. lt_cv_to_host_file_cmd=func_convert_file_noop
  7211. ;;
  7212. esac
  7213. ])
  7214. to_host_file_cmd=$lt_cv_to_host_file_cmd
  7215. AC_MSG_RESULT([$lt_cv_to_host_file_cmd])
  7216. _LT_DECL([to_host_file_cmd], [lt_cv_to_host_file_cmd],
  7217. [0], [convert $build file names to $host format])dnl
  7218. AC_MSG_CHECKING([how to convert $build file names to toolchain format])
  7219. AC_CACHE_VAL(lt_cv_to_tool_file_cmd,
  7220. [#assume ordinary cross tools, or native build.
  7221. lt_cv_to_tool_file_cmd=func_convert_file_noop
  7222. case $host in
  7223. *-*-mingw* )
  7224. case $build in
  7225. *-*-mingw* ) # actually msys
  7226. lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32
  7227. ;;
  7228. esac
  7229. ;;
  7230. esac
  7231. ])
  7232. to_tool_file_cmd=$lt_cv_to_tool_file_cmd
  7233. AC_MSG_RESULT([$lt_cv_to_tool_file_cmd])
  7234. _LT_DECL([to_tool_file_cmd], [lt_cv_to_tool_file_cmd],
  7235. [0], [convert $build files to toolchain format])dnl
  7236. ])# _LT_PATH_CONVERSION_FUNCTIONS
  7237. # Helper functions for option handling. -*- Autoconf -*-
  7238. #
  7239. # Copyright (C) 2004, 2005, 2007, 2008, 2009 Free Software Foundation,
  7240. # Inc.
  7241. # Written by Gary V. Vaughan, 2004
  7242. #
  7243. # This file is free software; the Free Software Foundation gives
  7244. # unlimited permission to copy and/or distribute it, with or without
  7245. # modifications, as long as this notice is preserved.
  7246. # serial 7 ltoptions.m4
  7247. # This is to help aclocal find these macros, as it can't see m4_define.
  7248. AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])])
  7249. # _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME)
  7250. # ------------------------------------------
  7251. m4_define([_LT_MANGLE_OPTION],
  7252. [[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])])
  7253. # _LT_SET_OPTION(MACRO-NAME, OPTION-NAME)
  7254. # ---------------------------------------
  7255. # Set option OPTION-NAME for macro MACRO-NAME, and if there is a
  7256. # matching handler defined, dispatch to it. Other OPTION-NAMEs are
  7257. # saved as a flag.
  7258. m4_define([_LT_SET_OPTION],
  7259. [m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl
  7260. m4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]),
  7261. _LT_MANGLE_DEFUN([$1], [$2]),
  7262. [m4_warning([Unknown $1 option `$2'])])[]dnl
  7263. ])
  7264. # _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET])
  7265. # ------------------------------------------------------------
  7266. # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
  7267. m4_define([_LT_IF_OPTION],
  7268. [m4_ifdef(_LT_MANGLE_OPTION([$1], [$2]), [$3], [$4])])
  7269. # _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET)
  7270. # -------------------------------------------------------
  7271. # Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME
  7272. # are set.
  7273. m4_define([_LT_UNLESS_OPTIONS],
  7274. [m4_foreach([_LT_Option], m4_split(m4_normalize([$2])),
  7275. [m4_ifdef(_LT_MANGLE_OPTION([$1], _LT_Option),
  7276. [m4_define([$0_found])])])[]dnl
  7277. m4_ifdef([$0_found], [m4_undefine([$0_found])], [$3
  7278. ])[]dnl
  7279. ])
  7280. # _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST)
  7281. # ----------------------------------------
  7282. # OPTION-LIST is a space-separated list of Libtool options associated
  7283. # with MACRO-NAME. If any OPTION has a matching handler declared with
  7284. # LT_OPTION_DEFINE, dispatch to that macro; otherwise complain about
  7285. # the unknown option and exit.
  7286. m4_defun([_LT_SET_OPTIONS],
  7287. [# Set options
  7288. m4_foreach([_LT_Option], m4_split(m4_normalize([$2])),
  7289. [_LT_SET_OPTION([$1], _LT_Option)])
  7290. m4_if([$1],[LT_INIT],[
  7291. dnl
  7292. dnl Simply set some default values (i.e off) if boolean options were not
  7293. dnl specified:
  7294. _LT_UNLESS_OPTIONS([LT_INIT], [dlopen], [enable_dlopen=no
  7295. ])
  7296. _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no
  7297. ])
  7298. dnl
  7299. dnl If no reference was made to various pairs of opposing options, then
  7300. dnl we run the default mode handler for the pair. For example, if neither
  7301. dnl `shared' nor `disable-shared' was passed, we enable building of shared
  7302. dnl archives by default:
  7303. _LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED])
  7304. _LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC])
  7305. _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC])
  7306. _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install],
  7307. [_LT_ENABLE_FAST_INSTALL])
  7308. ])
  7309. ])# _LT_SET_OPTIONS
  7310. # _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME)
  7311. # -----------------------------------------
  7312. m4_define([_LT_MANGLE_DEFUN],
  7313. [[_LT_OPTION_DEFUN_]m4_bpatsubst(m4_toupper([$1__$2]), [[^A-Z0-9_]], [_])])
  7314. # LT_OPTION_DEFINE(MACRO-NAME, OPTION-NAME, CODE)
  7315. # -----------------------------------------------
  7316. m4_define([LT_OPTION_DEFINE],
  7317. [m4_define(_LT_MANGLE_DEFUN([$1], [$2]), [$3])[]dnl
  7318. ])# LT_OPTION_DEFINE
  7319. # dlopen
  7320. # ------
  7321. LT_OPTION_DEFINE([LT_INIT], [dlopen], [enable_dlopen=yes
  7322. ])
  7323. AU_DEFUN([AC_LIBTOOL_DLOPEN],
  7324. [_LT_SET_OPTION([LT_INIT], [dlopen])
  7325. AC_DIAGNOSE([obsolete],
  7326. [$0: Remove this warning and the call to _LT_SET_OPTION when you
  7327. put the `dlopen' option into LT_INIT's first parameter.])
  7328. ])
  7329. dnl aclocal-1.4 backwards compatibility:
  7330. dnl AC_DEFUN([AC_LIBTOOL_DLOPEN], [])
  7331. # win32-dll
  7332. # ---------
  7333. # Declare package support for building win32 dll's.
  7334. LT_OPTION_DEFINE([LT_INIT], [win32-dll],
  7335. [enable_win32_dll=yes
  7336. case $host in
  7337. *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-cegcc*)
  7338. AC_CHECK_TOOL(AS, as, false)
  7339. AC_CHECK_TOOL(DLLTOOL, dlltool, false)
  7340. AC_CHECK_TOOL(OBJDUMP, objdump, false)
  7341. ;;
  7342. esac
  7343. test -z "$AS" && AS=as
  7344. _LT_DECL([], [AS], [1], [Assembler program])dnl
  7345. test -z "$DLLTOOL" && DLLTOOL=dlltool
  7346. _LT_DECL([], [DLLTOOL], [1], [DLL creation program])dnl
  7347. test -z "$OBJDUMP" && OBJDUMP=objdump
  7348. _LT_DECL([], [OBJDUMP], [1], [Object dumper program])dnl
  7349. ])# win32-dll
  7350. AU_DEFUN([AC_LIBTOOL_WIN32_DLL],
  7351. [AC_REQUIRE([AC_CANONICAL_HOST])dnl
  7352. _LT_SET_OPTION([LT_INIT], [win32-dll])
  7353. AC_DIAGNOSE([obsolete],
  7354. [$0: Remove this warning and the call to _LT_SET_OPTION when you
  7355. put the `win32-dll' option into LT_INIT's first parameter.])
  7356. ])
  7357. dnl aclocal-1.4 backwards compatibility:
  7358. dnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [])
  7359. # _LT_ENABLE_SHARED([DEFAULT])
  7360. # ----------------------------
  7361. # implement the --enable-shared flag, and supports the `shared' and
  7362. # `disable-shared' LT_INIT options.
  7363. # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'.
  7364. m4_define([_LT_ENABLE_SHARED],
  7365. [m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl
  7366. AC_ARG_ENABLE([shared],
  7367. [AS_HELP_STRING([--enable-shared@<:@=PKGS@:>@],
  7368. [build shared libraries @<:@default=]_LT_ENABLE_SHARED_DEFAULT[@:>@])],
  7369. [p=${PACKAGE-default}
  7370. case $enableval in
  7371. yes) enable_shared=yes ;;
  7372. no) enable_shared=no ;;
  7373. *)
  7374. enable_shared=no
  7375. # Look at the argument we got. We use all the common list separators.
  7376. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
  7377. for pkg in $enableval; do
  7378. IFS="$lt_save_ifs"
  7379. if test "X$pkg" = "X$p"; then
  7380. enable_shared=yes
  7381. fi
  7382. done
  7383. IFS="$lt_save_ifs"
  7384. ;;
  7385. esac],
  7386. [enable_shared=]_LT_ENABLE_SHARED_DEFAULT)
  7387. _LT_DECL([build_libtool_libs], [enable_shared], [0],
  7388. [Whether or not to build shared libraries])
  7389. ])# _LT_ENABLE_SHARED
  7390. LT_OPTION_DEFINE([LT_INIT], [shared], [_LT_ENABLE_SHARED([yes])])
  7391. LT_OPTION_DEFINE([LT_INIT], [disable-shared], [_LT_ENABLE_SHARED([no])])
  7392. # Old names:
  7393. AC_DEFUN([AC_ENABLE_SHARED],
  7394. [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared])
  7395. ])
  7396. AC_DEFUN([AC_DISABLE_SHARED],
  7397. [_LT_SET_OPTION([LT_INIT], [disable-shared])
  7398. ])
  7399. AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)])
  7400. AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)])
  7401. dnl aclocal-1.4 backwards compatibility:
  7402. dnl AC_DEFUN([AM_ENABLE_SHARED], [])
  7403. dnl AC_DEFUN([AM_DISABLE_SHARED], [])
  7404. # _LT_ENABLE_STATIC([DEFAULT])
  7405. # ----------------------------
  7406. # implement the --enable-static flag, and support the `static' and
  7407. # `disable-static' LT_INIT options.
  7408. # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'.
  7409. m4_define([_LT_ENABLE_STATIC],
  7410. [m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl
  7411. AC_ARG_ENABLE([static],
  7412. [AS_HELP_STRING([--enable-static@<:@=PKGS@:>@],
  7413. [build static libraries @<:@default=]_LT_ENABLE_STATIC_DEFAULT[@:>@])],
  7414. [p=${PACKAGE-default}
  7415. case $enableval in
  7416. yes) enable_static=yes ;;
  7417. no) enable_static=no ;;
  7418. *)
  7419. enable_static=no
  7420. # Look at the argument we got. We use all the common list separators.
  7421. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
  7422. for pkg in $enableval; do
  7423. IFS="$lt_save_ifs"
  7424. if test "X$pkg" = "X$p"; then
  7425. enable_static=yes
  7426. fi
  7427. done
  7428. IFS="$lt_save_ifs"
  7429. ;;
  7430. esac],
  7431. [enable_static=]_LT_ENABLE_STATIC_DEFAULT)
  7432. _LT_DECL([build_old_libs], [enable_static], [0],
  7433. [Whether or not to build static libraries])
  7434. ])# _LT_ENABLE_STATIC
  7435. LT_OPTION_DEFINE([LT_INIT], [static], [_LT_ENABLE_STATIC([yes])])
  7436. LT_OPTION_DEFINE([LT_INIT], [disable-static], [_LT_ENABLE_STATIC([no])])
  7437. # Old names:
  7438. AC_DEFUN([AC_ENABLE_STATIC],
  7439. [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static])
  7440. ])
  7441. AC_DEFUN([AC_DISABLE_STATIC],
  7442. [_LT_SET_OPTION([LT_INIT], [disable-static])
  7443. ])
  7444. AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)])
  7445. AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)])
  7446. dnl aclocal-1.4 backwards compatibility:
  7447. dnl AC_DEFUN([AM_ENABLE_STATIC], [])
  7448. dnl AC_DEFUN([AM_DISABLE_STATIC], [])
  7449. # _LT_ENABLE_FAST_INSTALL([DEFAULT])
  7450. # ----------------------------------
  7451. # implement the --enable-fast-install flag, and support the `fast-install'
  7452. # and `disable-fast-install' LT_INIT options.
  7453. # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'.
  7454. m4_define([_LT_ENABLE_FAST_INSTALL],
  7455. [m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl
  7456. AC_ARG_ENABLE([fast-install],
  7457. [AS_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@],
  7458. [optimize for fast installation @<:@default=]_LT_ENABLE_FAST_INSTALL_DEFAULT[@:>@])],
  7459. [p=${PACKAGE-default}
  7460. case $enableval in
  7461. yes) enable_fast_install=yes ;;
  7462. no) enable_fast_install=no ;;
  7463. *)
  7464. enable_fast_install=no
  7465. # Look at the argument we got. We use all the common list separators.
  7466. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
  7467. for pkg in $enableval; do
  7468. IFS="$lt_save_ifs"
  7469. if test "X$pkg" = "X$p"; then
  7470. enable_fast_install=yes
  7471. fi
  7472. done
  7473. IFS="$lt_save_ifs"
  7474. ;;
  7475. esac],
  7476. [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT)
  7477. _LT_DECL([fast_install], [enable_fast_install], [0],
  7478. [Whether or not to optimize for fast installation])dnl
  7479. ])# _LT_ENABLE_FAST_INSTALL
  7480. LT_OPTION_DEFINE([LT_INIT], [fast-install], [_LT_ENABLE_FAST_INSTALL([yes])])
  7481. LT_OPTION_DEFINE([LT_INIT], [disable-fast-install], [_LT_ENABLE_FAST_INSTALL([no])])
  7482. # Old names:
  7483. AU_DEFUN([AC_ENABLE_FAST_INSTALL],
  7484. [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install])
  7485. AC_DIAGNOSE([obsolete],
  7486. [$0: Remove this warning and the call to _LT_SET_OPTION when you put
  7487. the `fast-install' option into LT_INIT's first parameter.])
  7488. ])
  7489. AU_DEFUN([AC_DISABLE_FAST_INSTALL],
  7490. [_LT_SET_OPTION([LT_INIT], [disable-fast-install])
  7491. AC_DIAGNOSE([obsolete],
  7492. [$0: Remove this warning and the call to _LT_SET_OPTION when you put
  7493. the `disable-fast-install' option into LT_INIT's first parameter.])
  7494. ])
  7495. dnl aclocal-1.4 backwards compatibility:
  7496. dnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], [])
  7497. dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], [])
  7498. # _LT_WITH_PIC([MODE])
  7499. # --------------------
  7500. # implement the --with-pic flag, and support the `pic-only' and `no-pic'
  7501. # LT_INIT options.
  7502. # MODE is either `yes' or `no'. If omitted, it defaults to `both'.
  7503. m4_define([_LT_WITH_PIC],
  7504. [AC_ARG_WITH([pic],
  7505. [AS_HELP_STRING([--with-pic@<:@=PKGS@:>@],
  7506. [try to use only PIC/non-PIC objects @<:@default=use both@:>@])],
  7507. [lt_p=${PACKAGE-default}
  7508. case $withval in
  7509. yes|no) pic_mode=$withval ;;
  7510. *)
  7511. pic_mode=default
  7512. # Look at the argument we got. We use all the common list separators.
  7513. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
  7514. for lt_pkg in $withval; do
  7515. IFS="$lt_save_ifs"
  7516. if test "X$lt_pkg" = "X$lt_p"; then
  7517. pic_mode=yes
  7518. fi
  7519. done
  7520. IFS="$lt_save_ifs"
  7521. ;;
  7522. esac],
  7523. [pic_mode=default])
  7524. test -z "$pic_mode" && pic_mode=m4_default([$1], [default])
  7525. _LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl
  7526. ])# _LT_WITH_PIC
  7527. LT_OPTION_DEFINE([LT_INIT], [pic-only], [_LT_WITH_PIC([yes])])
  7528. LT_OPTION_DEFINE([LT_INIT], [no-pic], [_LT_WITH_PIC([no])])
  7529. # Old name:
  7530. AU_DEFUN([AC_LIBTOOL_PICMODE],
  7531. [_LT_SET_OPTION([LT_INIT], [pic-only])
  7532. AC_DIAGNOSE([obsolete],
  7533. [$0: Remove this warning and the call to _LT_SET_OPTION when you
  7534. put the `pic-only' option into LT_INIT's first parameter.])
  7535. ])
  7536. dnl aclocal-1.4 backwards compatibility:
  7537. dnl AC_DEFUN([AC_LIBTOOL_PICMODE], [])
  7538. m4_define([_LTDL_MODE], [])
  7539. LT_OPTION_DEFINE([LTDL_INIT], [nonrecursive],
  7540. [m4_define([_LTDL_MODE], [nonrecursive])])
  7541. LT_OPTION_DEFINE([LTDL_INIT], [recursive],
  7542. [m4_define([_LTDL_MODE], [recursive])])
  7543. LT_OPTION_DEFINE([LTDL_INIT], [subproject],
  7544. [m4_define([_LTDL_MODE], [subproject])])
  7545. m4_define([_LTDL_TYPE], [])
  7546. LT_OPTION_DEFINE([LTDL_INIT], [installable],
  7547. [m4_define([_LTDL_TYPE], [installable])])
  7548. LT_OPTION_DEFINE([LTDL_INIT], [convenience],
  7549. [m4_define([_LTDL_TYPE], [convenience])])
  7550. # ltsugar.m4 -- libtool m4 base layer. -*-Autoconf-*-
  7551. #
  7552. # Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation, Inc.
  7553. # Written by Gary V. Vaughan, 2004
  7554. #
  7555. # This file is free software; the Free Software Foundation gives
  7556. # unlimited permission to copy and/or distribute it, with or without
  7557. # modifications, as long as this notice is preserved.
  7558. # serial 6 ltsugar.m4
  7559. # This is to help aclocal find these macros, as it can't see m4_define.
  7560. AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])])
  7561. # lt_join(SEP, ARG1, [ARG2...])
  7562. # -----------------------------
  7563. # Produce ARG1SEPARG2...SEPARGn, omitting [] arguments and their
  7564. # associated separator.
  7565. # Needed until we can rely on m4_join from Autoconf 2.62, since all earlier
  7566. # versions in m4sugar had bugs.
  7567. m4_define([lt_join],
  7568. [m4_if([$#], [1], [],
  7569. [$#], [2], [[$2]],
  7570. [m4_if([$2], [], [], [[$2]_])$0([$1], m4_shift(m4_shift($@)))])])
  7571. m4_define([_lt_join],
  7572. [m4_if([$#$2], [2], [],
  7573. [m4_if([$2], [], [], [[$1$2]])$0([$1], m4_shift(m4_shift($@)))])])
  7574. # lt_car(LIST)
  7575. # lt_cdr(LIST)
  7576. # ------------
  7577. # Manipulate m4 lists.
  7578. # These macros are necessary as long as will still need to support
  7579. # Autoconf-2.59 which quotes differently.
  7580. m4_define([lt_car], [[$1]])
  7581. m4_define([lt_cdr],
  7582. [m4_if([$#], 0, [m4_fatal([$0: cannot be called without arguments])],
  7583. [$#], 1, [],
  7584. [m4_dquote(m4_shift($@))])])
  7585. m4_define([lt_unquote], $1)
  7586. # lt_append(MACRO-NAME, STRING, [SEPARATOR])
  7587. # ------------------------------------------
  7588. # Redefine MACRO-NAME to hold its former content plus `SEPARATOR'`STRING'.
  7589. # Note that neither SEPARATOR nor STRING are expanded; they are appended
  7590. # to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked).
  7591. # No SEPARATOR is output if MACRO-NAME was previously undefined (different
  7592. # than defined and empty).
  7593. #
  7594. # This macro is needed until we can rely on Autoconf 2.62, since earlier
  7595. # versions of m4sugar mistakenly expanded SEPARATOR but not STRING.
  7596. m4_define([lt_append],
  7597. [m4_define([$1],
  7598. m4_ifdef([$1], [m4_defn([$1])[$3]])[$2])])
  7599. # lt_combine(SEP, PREFIX-LIST, INFIX, SUFFIX1, [SUFFIX2...])
  7600. # ----------------------------------------------------------
  7601. # Produce a SEP delimited list of all paired combinations of elements of
  7602. # PREFIX-LIST with SUFFIX1 through SUFFIXn. Each element of the list
  7603. # has the form PREFIXmINFIXSUFFIXn.
  7604. # Needed until we can rely on m4_combine added in Autoconf 2.62.
  7605. m4_define([lt_combine],
  7606. [m4_if(m4_eval([$# > 3]), [1],
  7607. [m4_pushdef([_Lt_sep], [m4_define([_Lt_sep], m4_defn([lt_car]))])]]dnl
  7608. [[m4_foreach([_Lt_prefix], [$2],
  7609. [m4_foreach([_Lt_suffix],
  7610. ]m4_dquote(m4_dquote(m4_shift(m4_shift(m4_shift($@)))))[,
  7611. [_Lt_sep([$1])[]m4_defn([_Lt_prefix])[$3]m4_defn([_Lt_suffix])])])])])
  7612. # lt_if_append_uniq(MACRO-NAME, VARNAME, [SEPARATOR], [UNIQ], [NOT-UNIQ])
  7613. # -----------------------------------------------------------------------
  7614. # Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited
  7615. # by SEPARATOR if supplied) and expand UNIQ, else NOT-UNIQ.
  7616. m4_define([lt_if_append_uniq],
  7617. [m4_ifdef([$1],
  7618. [m4_if(m4_index([$3]m4_defn([$1])[$3], [$3$2$3]), [-1],
  7619. [lt_append([$1], [$2], [$3])$4],
  7620. [$5])],
  7621. [lt_append([$1], [$2], [$3])$4])])
  7622. # lt_dict_add(DICT, KEY, VALUE)
  7623. # -----------------------------
  7624. m4_define([lt_dict_add],
  7625. [m4_define([$1($2)], [$3])])
  7626. # lt_dict_add_subkey(DICT, KEY, SUBKEY, VALUE)
  7627. # --------------------------------------------
  7628. m4_define([lt_dict_add_subkey],
  7629. [m4_define([$1($2:$3)], [$4])])
  7630. # lt_dict_fetch(DICT, KEY, [SUBKEY])
  7631. # ----------------------------------
  7632. m4_define([lt_dict_fetch],
  7633. [m4_ifval([$3],
  7634. m4_ifdef([$1($2:$3)], [m4_defn([$1($2:$3)])]),
  7635. m4_ifdef([$1($2)], [m4_defn([$1($2)])]))])
  7636. # lt_if_dict_fetch(DICT, KEY, [SUBKEY], VALUE, IF-TRUE, [IF-FALSE])
  7637. # -----------------------------------------------------------------
  7638. m4_define([lt_if_dict_fetch],
  7639. [m4_if(lt_dict_fetch([$1], [$2], [$3]), [$4],
  7640. [$5],
  7641. [$6])])
  7642. # lt_dict_filter(DICT, [SUBKEY], VALUE, [SEPARATOR], KEY, [...])
  7643. # --------------------------------------------------------------
  7644. m4_define([lt_dict_filter],
  7645. [m4_if([$5], [], [],
  7646. [lt_join(m4_quote(m4_default([$4], [[, ]])),
  7647. lt_unquote(m4_split(m4_normalize(m4_foreach(_Lt_key, lt_car([m4_shiftn(4, $@)]),
  7648. [lt_if_dict_fetch([$1], _Lt_key, [$2], [$3], [_Lt_key ])])))))])[]dnl
  7649. ])
  7650. # ltversion.m4 -- version numbers -*- Autoconf -*-
  7651. #
  7652. # Copyright (C) 2004 Free Software Foundation, Inc.
  7653. # Written by Scott James Remnant, 2004
  7654. #
  7655. # This file is free software; the Free Software Foundation gives
  7656. # unlimited permission to copy and/or distribute it, with or without
  7657. # modifications, as long as this notice is preserved.
  7658. # @configure_input@
  7659. # serial 3337 ltversion.m4
  7660. # This file is part of GNU Libtool
  7661. m4_define([LT_PACKAGE_VERSION], [2.4.2])
  7662. m4_define([LT_PACKAGE_REVISION], [1.3337])
  7663. AC_DEFUN([LTVERSION_VERSION],
  7664. [macro_version='2.4.2'
  7665. macro_revision='1.3337'
  7666. _LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?])
  7667. _LT_DECL(, macro_revision, 0)
  7668. ])
  7669. # lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*-
  7670. #
  7671. # Copyright (C) 2004, 2005, 2007, 2009 Free Software Foundation, Inc.
  7672. # Written by Scott James Remnant, 2004.
  7673. #
  7674. # This file is free software; the Free Software Foundation gives
  7675. # unlimited permission to copy and/or distribute it, with or without
  7676. # modifications, as long as this notice is preserved.
  7677. # serial 5 lt~obsolete.m4
  7678. # These exist entirely to fool aclocal when bootstrapping libtool.
  7679. #
  7680. # In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN)
  7681. # which have later been changed to m4_define as they aren't part of the
  7682. # exported API, or moved to Autoconf or Automake where they belong.
  7683. #
  7684. # The trouble is, aclocal is a bit thick. It'll see the old AC_DEFUN
  7685. # in /usr/share/aclocal/libtool.m4 and remember it, then when it sees us
  7686. # using a macro with the same name in our local m4/libtool.m4 it'll
  7687. # pull the old libtool.m4 in (it doesn't see our shiny new m4_define
  7688. # and doesn't know about Autoconf macros at all.)
  7689. #
  7690. # So we provide this file, which has a silly filename so it's always
  7691. # included after everything else. This provides aclocal with the
  7692. # AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything
  7693. # because those macros already exist, or will be overwritten later.
  7694. # We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6.
  7695. #
  7696. # Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here.
  7697. # Yes, that means every name once taken will need to remain here until
  7698. # we give up compatibility with versions before 1.7, at which point
  7699. # we need to keep only those names which we still refer to.
  7700. # This is to help aclocal find these macros, as it can't see m4_define.
  7701. AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])])
  7702. m4_ifndef([AC_LIBTOOL_LINKER_OPTION], [AC_DEFUN([AC_LIBTOOL_LINKER_OPTION])])
  7703. m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP])])
  7704. m4_ifndef([_LT_AC_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])])
  7705. m4_ifndef([_LT_AC_SHELL_INIT], [AC_DEFUN([_LT_AC_SHELL_INIT])])
  7706. m4_ifndef([_LT_AC_SYS_LIBPATH_AIX], [AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])])
  7707. m4_ifndef([_LT_PROG_LTMAIN], [AC_DEFUN([_LT_PROG_LTMAIN])])
  7708. m4_ifndef([_LT_AC_TAGVAR], [AC_DEFUN([_LT_AC_TAGVAR])])
  7709. m4_ifndef([AC_LTDL_ENABLE_INSTALL], [AC_DEFUN([AC_LTDL_ENABLE_INSTALL])])
  7710. m4_ifndef([AC_LTDL_PREOPEN], [AC_DEFUN([AC_LTDL_PREOPEN])])
  7711. m4_ifndef([_LT_AC_SYS_COMPILER], [AC_DEFUN([_LT_AC_SYS_COMPILER])])
  7712. m4_ifndef([_LT_AC_LOCK], [AC_DEFUN([_LT_AC_LOCK])])
  7713. m4_ifndef([AC_LIBTOOL_SYS_OLD_ARCHIVE], [AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])])
  7714. m4_ifndef([_LT_AC_TRY_DLOPEN_SELF], [AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])])
  7715. m4_ifndef([AC_LIBTOOL_PROG_CC_C_O], [AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])])
  7716. m4_ifndef([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])])
  7717. m4_ifndef([AC_LIBTOOL_OBJDIR], [AC_DEFUN([AC_LIBTOOL_OBJDIR])])
  7718. m4_ifndef([AC_LTDL_OBJDIR], [AC_DEFUN([AC_LTDL_OBJDIR])])
  7719. m4_ifndef([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])])
  7720. m4_ifndef([AC_LIBTOOL_SYS_LIB_STRIP], [AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])])
  7721. m4_ifndef([AC_PATH_MAGIC], [AC_DEFUN([AC_PATH_MAGIC])])
  7722. m4_ifndef([AC_PROG_LD_GNU], [AC_DEFUN([AC_PROG_LD_GNU])])
  7723. m4_ifndef([AC_PROG_LD_RELOAD_FLAG], [AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])])
  7724. m4_ifndef([AC_DEPLIBS_CHECK_METHOD], [AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])])
  7725. m4_ifndef([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])])
  7726. m4_ifndef([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])])
  7727. m4_ifndef([AC_LIBTOOL_PROG_COMPILER_PIC], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])])
  7728. m4_ifndef([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])])
  7729. m4_ifndef([AC_LIBTOOL_POSTDEP_PREDEP], [AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])])
  7730. m4_ifndef([LT_AC_PROG_EGREP], [AC_DEFUN([LT_AC_PROG_EGREP])])
  7731. m4_ifndef([LT_AC_PROG_SED], [AC_DEFUN([LT_AC_PROG_SED])])
  7732. m4_ifndef([_LT_CC_BASENAME], [AC_DEFUN([_LT_CC_BASENAME])])
  7733. m4_ifndef([_LT_COMPILER_BOILERPLATE], [AC_DEFUN([_LT_COMPILER_BOILERPLATE])])
  7734. m4_ifndef([_LT_LINKER_BOILERPLATE], [AC_DEFUN([_LT_LINKER_BOILERPLATE])])
  7735. m4_ifndef([_AC_PROG_LIBTOOL], [AC_DEFUN([_AC_PROG_LIBTOOL])])
  7736. m4_ifndef([AC_LIBTOOL_SETUP], [AC_DEFUN([AC_LIBTOOL_SETUP])])
  7737. m4_ifndef([_LT_AC_CHECK_DLFCN], [AC_DEFUN([_LT_AC_CHECK_DLFCN])])
  7738. m4_ifndef([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])])
  7739. m4_ifndef([_LT_AC_TAGCONFIG], [AC_DEFUN([_LT_AC_TAGCONFIG])])
  7740. m4_ifndef([AC_DISABLE_FAST_INSTALL], [AC_DEFUN([AC_DISABLE_FAST_INSTALL])])
  7741. m4_ifndef([_LT_AC_LANG_CXX], [AC_DEFUN([_LT_AC_LANG_CXX])])
  7742. m4_ifndef([_LT_AC_LANG_F77], [AC_DEFUN([_LT_AC_LANG_F77])])
  7743. m4_ifndef([_LT_AC_LANG_GCJ], [AC_DEFUN([_LT_AC_LANG_GCJ])])
  7744. m4_ifndef([AC_LIBTOOL_LANG_C_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])])
  7745. m4_ifndef([_LT_AC_LANG_C_CONFIG], [AC_DEFUN([_LT_AC_LANG_C_CONFIG])])
  7746. m4_ifndef([AC_LIBTOOL_LANG_CXX_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])])
  7747. m4_ifndef([_LT_AC_LANG_CXX_CONFIG], [AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])])
  7748. m4_ifndef([AC_LIBTOOL_LANG_F77_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])])
  7749. m4_ifndef([_LT_AC_LANG_F77_CONFIG], [AC_DEFUN([_LT_AC_LANG_F77_CONFIG])])
  7750. m4_ifndef([AC_LIBTOOL_LANG_GCJ_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])])
  7751. m4_ifndef([_LT_AC_LANG_GCJ_CONFIG], [AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])])
  7752. m4_ifndef([AC_LIBTOOL_LANG_RC_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])])
  7753. m4_ifndef([_LT_AC_LANG_RC_CONFIG], [AC_DEFUN([_LT_AC_LANG_RC_CONFIG])])
  7754. m4_ifndef([AC_LIBTOOL_CONFIG], [AC_DEFUN([AC_LIBTOOL_CONFIG])])
  7755. m4_ifndef([_LT_AC_FILE_LTDLL_C], [AC_DEFUN([_LT_AC_FILE_LTDLL_C])])
  7756. m4_ifndef([_LT_REQUIRED_DARWIN_CHECKS], [AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS])])
  7757. m4_ifndef([_LT_AC_PROG_CXXCPP], [AC_DEFUN([_LT_AC_PROG_CXXCPP])])
  7758. m4_ifndef([_LT_PREPARE_SED_QUOTE_VARS], [AC_DEFUN([_LT_PREPARE_SED_QUOTE_VARS])])
  7759. m4_ifndef([_LT_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_PROG_ECHO_BACKSLASH])])
  7760. m4_ifndef([_LT_PROG_F77], [AC_DEFUN([_LT_PROG_F77])])
  7761. m4_ifndef([_LT_PROG_FC], [AC_DEFUN([_LT_PROG_FC])])
  7762. m4_ifndef([_LT_PROG_CXX], [AC_DEFUN([_LT_PROG_CXX])])
  7763. # Copyright (C) 2002-2012 Free Software Foundation, Inc.
  7764. #
  7765. # This file is free software; the Free Software Foundation
  7766. # gives unlimited permission to copy and/or distribute it,
  7767. # with or without modifications, as long as this notice is preserved.
  7768. # AM_AUTOMAKE_VERSION(VERSION)
  7769. # ----------------------------
  7770. # Automake X.Y traces this macro to ensure aclocal.m4 has been
  7771. # generated from the m4 files accompanying Automake X.Y.
  7772. # (This private macro should not be called outside this file.)
  7773. AC_DEFUN([AM_AUTOMAKE_VERSION],
  7774. [am__api_version='1.12'
  7775. dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
  7776. dnl require some minimum version. Point them to the right macro.
  7777. m4_if([$1], [1.12.3], [],
  7778. [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
  7779. ])
  7780. # _AM_AUTOCONF_VERSION(VERSION)
  7781. # -----------------------------
  7782. # aclocal traces this macro to find the Autoconf version.
  7783. # This is a private macro too. Using m4_define simplifies
  7784. # the logic in aclocal, which can simply ignore this definition.
  7785. m4_define([_AM_AUTOCONF_VERSION], [])
  7786. # AM_SET_CURRENT_AUTOMAKE_VERSION
  7787. # -------------------------------
  7788. # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
  7789. # This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
  7790. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
  7791. [AM_AUTOMAKE_VERSION([1.12.3])dnl
  7792. m4_ifndef([AC_AUTOCONF_VERSION],
  7793. [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
  7794. _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
  7795. # AM_AUX_DIR_EXPAND -*- Autoconf -*-
  7796. # Copyright (C) 2001-2012 Free Software Foundation, Inc.
  7797. #
  7798. # This file is free software; the Free Software Foundation
  7799. # gives unlimited permission to copy and/or distribute it,
  7800. # with or without modifications, as long as this notice is preserved.
  7801. # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
  7802. # $ac_aux_dir to '$srcdir/foo'. In other projects, it is set to
  7803. # '$srcdir', '$srcdir/..', or '$srcdir/../..'.
  7804. #
  7805. # Of course, Automake must honor this variable whenever it calls a
  7806. # tool from the auxiliary directory. The problem is that $srcdir (and
  7807. # therefore $ac_aux_dir as well) can be either absolute or relative,
  7808. # depending on how configure is run. This is pretty annoying, since
  7809. # it makes $ac_aux_dir quite unusable in subdirectories: in the top
  7810. # source directory, any form will work fine, but in subdirectories a
  7811. # relative path needs to be adjusted first.
  7812. #
  7813. # $ac_aux_dir/missing
  7814. # fails when called from a subdirectory if $ac_aux_dir is relative
  7815. # $top_srcdir/$ac_aux_dir/missing
  7816. # fails if $ac_aux_dir is absolute,
  7817. # fails when called from a subdirectory in a VPATH build with
  7818. # a relative $ac_aux_dir
  7819. #
  7820. # The reason of the latter failure is that $top_srcdir and $ac_aux_dir
  7821. # are both prefixed by $srcdir. In an in-source build this is usually
  7822. # harmless because $srcdir is '.', but things will broke when you
  7823. # start a VPATH build or use an absolute $srcdir.
  7824. #
  7825. # So we could use something similar to $top_srcdir/$ac_aux_dir/missing,
  7826. # iff we strip the leading $srcdir from $ac_aux_dir. That would be:
  7827. # am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"`
  7828. # and then we would define $MISSING as
  7829. # MISSING="\${SHELL} $am_aux_dir/missing"
  7830. # This will work as long as MISSING is not called from configure, because
  7831. # unfortunately $(top_srcdir) has no meaning in configure.
  7832. # However there are other variables, like CC, which are often used in
  7833. # configure, and could therefore not use this "fixed" $ac_aux_dir.
  7834. #
  7835. # Another solution, used here, is to always expand $ac_aux_dir to an
  7836. # absolute PATH. The drawback is that using absolute paths prevent a
  7837. # configured tree to be moved without reconfiguration.
  7838. AC_DEFUN([AM_AUX_DIR_EXPAND],
  7839. [dnl Rely on autoconf to set up CDPATH properly.
  7840. AC_PREREQ([2.50])dnl
  7841. # expand $ac_aux_dir to an absolute path
  7842. am_aux_dir=`cd $ac_aux_dir && pwd`
  7843. ])
  7844. # AM_CONDITIONAL -*- Autoconf -*-
  7845. # Copyright (C) 1997-2012 Free Software Foundation, Inc.
  7846. #
  7847. # This file is free software; the Free Software Foundation
  7848. # gives unlimited permission to copy and/or distribute it,
  7849. # with or without modifications, as long as this notice is preserved.
  7850. # AM_CONDITIONAL(NAME, SHELL-CONDITION)
  7851. # -------------------------------------
  7852. # Define a conditional.
  7853. AC_DEFUN([AM_CONDITIONAL],
  7854. [AC_PREREQ([2.52])dnl
  7855. m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])],
  7856. [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
  7857. AC_SUBST([$1_TRUE])dnl
  7858. AC_SUBST([$1_FALSE])dnl
  7859. _AM_SUBST_NOTMAKE([$1_TRUE])dnl
  7860. _AM_SUBST_NOTMAKE([$1_FALSE])dnl
  7861. m4_define([_AM_COND_VALUE_$1], [$2])dnl
  7862. if $2; then
  7863. $1_TRUE=
  7864. $1_FALSE='#'
  7865. else
  7866. $1_TRUE='#'
  7867. $1_FALSE=
  7868. fi
  7869. AC_CONFIG_COMMANDS_PRE(
  7870. [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
  7871. AC_MSG_ERROR([[conditional "$1" was never defined.
  7872. Usually this means the macro was only invoked conditionally.]])
  7873. fi])])
  7874. # Copyright (C) 1999-2012 Free Software Foundation, Inc.
  7875. #
  7876. # This file is free software; the Free Software Foundation
  7877. # gives unlimited permission to copy and/or distribute it,
  7878. # with or without modifications, as long as this notice is preserved.
  7879. # There are a few dirty hacks below to avoid letting 'AC_PROG_CC' be
  7880. # written in clear, in which case automake, when reading aclocal.m4,
  7881. # will think it sees a *use*, and therefore will trigger all it's
  7882. # C support machinery. Also note that it means that autoscan, seeing
  7883. # CC etc. in the Makefile, will ask for an AC_PROG_CC use...
  7884. # _AM_DEPENDENCIES(NAME)
  7885. # ----------------------
  7886. # See how the compiler implements dependency checking.
  7887. # NAME is "CC", "CXX", "OBJC", "OBJCXX", "UPC", or "GJC".
  7888. # We try a few techniques and use that to set a single cache variable.
  7889. #
  7890. # We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was
  7891. # modified to invoke _AM_DEPENDENCIES(CC); we would have a circular
  7892. # dependency, and given that the user is not expected to run this macro,
  7893. # just rely on AC_PROG_CC.
  7894. AC_DEFUN([_AM_DEPENDENCIES],
  7895. [AC_REQUIRE([AM_SET_DEPDIR])dnl
  7896. AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
  7897. AC_REQUIRE([AM_MAKE_INCLUDE])dnl
  7898. AC_REQUIRE([AM_DEP_TRACK])dnl
  7899. m4_if([$1], [CC], [depcc="$CC" am_compiler_list=],
  7900. [$1], [CXX], [depcc="$CXX" am_compiler_list=],
  7901. [$1], [OBJC], [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
  7902. [$1], [OBJCXX], [depcc="$OBJCXX" am_compiler_list='gcc3 gcc'],
  7903. [$1], [UPC], [depcc="$UPC" am_compiler_list=],
  7904. [$1], [GCJ], [depcc="$GCJ" am_compiler_list='gcc3 gcc'],
  7905. [depcc="$$1" am_compiler_list=])
  7906. AC_CACHE_CHECK([dependency style of $depcc],
  7907. [am_cv_$1_dependencies_compiler_type],
  7908. [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
  7909. # We make a subdir and do the tests there. Otherwise we can end up
  7910. # making bogus files that we don't know about and never remove. For
  7911. # instance it was reported that on HP-UX the gcc test will end up
  7912. # making a dummy file named 'D' -- because '-MD' means "put the output
  7913. # in D".
  7914. rm -rf conftest.dir
  7915. mkdir conftest.dir
  7916. # Copy depcomp to subdir because otherwise we won't find it if we're
  7917. # using a relative directory.
  7918. cp "$am_depcomp" conftest.dir
  7919. cd conftest.dir
  7920. # We will build objects and dependencies in a subdirectory because
  7921. # it helps to detect inapplicable dependency modes. For instance
  7922. # both Tru64's cc and ICC support -MD to output dependencies as a
  7923. # side effect of compilation, but ICC will put the dependencies in
  7924. # the current directory while Tru64 will put them in the object
  7925. # directory.
  7926. mkdir sub
  7927. am_cv_$1_dependencies_compiler_type=none
  7928. if test "$am_compiler_list" = ""; then
  7929. am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
  7930. fi
  7931. am__universal=false
  7932. m4_case([$1], [CC],
  7933. [case " $depcc " in #(
  7934. *\ -arch\ *\ -arch\ *) am__universal=true ;;
  7935. esac],
  7936. [CXX],
  7937. [case " $depcc " in #(
  7938. *\ -arch\ *\ -arch\ *) am__universal=true ;;
  7939. esac])
  7940. for depmode in $am_compiler_list; do
  7941. # Setup a source with many dependencies, because some compilers
  7942. # like to wrap large dependency lists on column 80 (with \), and
  7943. # we should not choose a depcomp mode which is confused by this.
  7944. #
  7945. # We need to recreate these files for each test, as the compiler may
  7946. # overwrite some of them when testing with obscure command lines.
  7947. # This happens at least with the AIX C compiler.
  7948. : > sub/conftest.c
  7949. for i in 1 2 3 4 5 6; do
  7950. echo '#include "conftst'$i'.h"' >> sub/conftest.c
  7951. # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with
  7952. # Solaris 10 /bin/sh.
  7953. echo '/* dummy */' > sub/conftst$i.h
  7954. done
  7955. echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
  7956. # We check with '-c' and '-o' for the sake of the "dashmstdout"
  7957. # mode. It turns out that the SunPro C++ compiler does not properly
  7958. # handle '-M -o', and we need to detect this. Also, some Intel
  7959. # versions had trouble with output in subdirs.
  7960. am__obj=sub/conftest.${OBJEXT-o}
  7961. am__minus_obj="-o $am__obj"
  7962. case $depmode in
  7963. gcc)
  7964. # This depmode causes a compiler race in universal mode.
  7965. test "$am__universal" = false || continue
  7966. ;;
  7967. nosideeffect)
  7968. # After this tag, mechanisms are not by side-effect, so they'll
  7969. # only be used when explicitly requested.
  7970. if test "x$enable_dependency_tracking" = xyes; then
  7971. continue
  7972. else
  7973. break
  7974. fi
  7975. ;;
  7976. msvc7 | msvc7msys | msvisualcpp | msvcmsys)
  7977. # This compiler won't grok '-c -o', but also, the minuso test has
  7978. # not run yet. These depmodes are late enough in the game, and
  7979. # so weak that their functioning should not be impacted.
  7980. am__obj=conftest.${OBJEXT-o}
  7981. am__minus_obj=
  7982. ;;
  7983. none) break ;;
  7984. esac
  7985. if depmode=$depmode \
  7986. source=sub/conftest.c object=$am__obj \
  7987. depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
  7988. $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
  7989. >/dev/null 2>conftest.err &&
  7990. grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
  7991. grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
  7992. grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
  7993. ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
  7994. # icc doesn't choke on unknown options, it will just issue warnings
  7995. # or remarks (even with -Werror). So we grep stderr for any message
  7996. # that says an option was ignored or not supported.
  7997. # When given -MP, icc 7.0 and 7.1 complain thusly:
  7998. # icc: Command line warning: ignoring option '-M'; no argument required
  7999. # The diagnosis changed in icc 8.0:
  8000. # icc: Command line remark: option '-MP' not supported
  8001. if (grep 'ignoring option' conftest.err ||
  8002. grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
  8003. am_cv_$1_dependencies_compiler_type=$depmode
  8004. break
  8005. fi
  8006. fi
  8007. done
  8008. cd ..
  8009. rm -rf conftest.dir
  8010. else
  8011. am_cv_$1_dependencies_compiler_type=none
  8012. fi
  8013. ])
  8014. AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])
  8015. AM_CONDITIONAL([am__fastdep$1], [
  8016. test "x$enable_dependency_tracking" != xno \
  8017. && test "$am_cv_$1_dependencies_compiler_type" = gcc3])
  8018. ])
  8019. # AM_SET_DEPDIR
  8020. # -------------
  8021. # Choose a directory name for dependency files.
  8022. # This macro is AC_REQUIREd in _AM_DEPENDENCIES.
  8023. AC_DEFUN([AM_SET_DEPDIR],
  8024. [AC_REQUIRE([AM_SET_LEADING_DOT])dnl
  8025. AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
  8026. ])
  8027. # AM_DEP_TRACK
  8028. # ------------
  8029. AC_DEFUN([AM_DEP_TRACK],
  8030. [AC_ARG_ENABLE([dependency-tracking], [dnl
  8031. AS_HELP_STRING(
  8032. [--enable-dependency-tracking],
  8033. [do not reject slow dependency extractors])
  8034. AS_HELP_STRING(
  8035. [--disable-dependency-tracking],
  8036. [speeds up one-time build])])
  8037. if test "x$enable_dependency_tracking" != xno; then
  8038. am_depcomp="$ac_aux_dir/depcomp"
  8039. AMDEPBACKSLASH='\'
  8040. am__nodep='_no'
  8041. fi
  8042. AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
  8043. AC_SUBST([AMDEPBACKSLASH])dnl
  8044. _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
  8045. AC_SUBST([am__nodep])dnl
  8046. _AM_SUBST_NOTMAKE([am__nodep])dnl
  8047. ])
  8048. # Generate code to set up dependency tracking. -*- Autoconf -*-
  8049. # Copyright (C) 1999-2012 Free Software Foundation, Inc.
  8050. #
  8051. # This file is free software; the Free Software Foundation
  8052. # gives unlimited permission to copy and/or distribute it,
  8053. # with or without modifications, as long as this notice is preserved.
  8054. # _AM_OUTPUT_DEPENDENCY_COMMANDS
  8055. # ------------------------------
  8056. AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
  8057. [{
  8058. # Autoconf 2.62 quotes --file arguments for eval, but not when files
  8059. # are listed without --file. Let's play safe and only enable the eval
  8060. # if we detect the quoting.
  8061. case $CONFIG_FILES in
  8062. *\'*) eval set x "$CONFIG_FILES" ;;
  8063. *) set x $CONFIG_FILES ;;
  8064. esac
  8065. shift
  8066. for mf
  8067. do
  8068. # Strip MF so we end up with the name of the file.
  8069. mf=`echo "$mf" | sed -e 's/:.*$//'`
  8070. # Check whether this is an Automake generated Makefile or not.
  8071. # We used to match only the files named 'Makefile.in', but
  8072. # some people rename them; so instead we look at the file content.
  8073. # Grep'ing the first line is not enough: some people post-process
  8074. # each Makefile.in and add a new line on top of each file to say so.
  8075. # Grep'ing the whole file is not good either: AIX grep has a line
  8076. # limit of 2048, but all sed's we know have understand at least 4000.
  8077. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
  8078. dirpart=`AS_DIRNAME("$mf")`
  8079. else
  8080. continue
  8081. fi
  8082. # Extract the definition of DEPDIR, am__include, and am__quote
  8083. # from the Makefile without running 'make'.
  8084. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
  8085. test -z "$DEPDIR" && continue
  8086. am__include=`sed -n 's/^am__include = //p' < "$mf"`
  8087. test -z "am__include" && continue
  8088. am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
  8089. # Find all dependency output files, they are included files with
  8090. # $(DEPDIR) in their names. We invoke sed twice because it is the
  8091. # simplest approach to changing $(DEPDIR) to its actual value in the
  8092. # expansion.
  8093. for file in `sed -n "
  8094. s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
  8095. sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do
  8096. # Make sure the directory exists.
  8097. test -f "$dirpart/$file" && continue
  8098. fdir=`AS_DIRNAME(["$file"])`
  8099. AS_MKDIR_P([$dirpart/$fdir])
  8100. # echo "creating $dirpart/$file"
  8101. echo '# dummy' > "$dirpart/$file"
  8102. done
  8103. done
  8104. }
  8105. ])# _AM_OUTPUT_DEPENDENCY_COMMANDS
  8106. # AM_OUTPUT_DEPENDENCY_COMMANDS
  8107. # -----------------------------
  8108. # This macro should only be invoked once -- use via AC_REQUIRE.
  8109. #
  8110. # This code is only required when automatic dependency tracking
  8111. # is enabled. FIXME. This creates each '.P' file that we will
  8112. # need in order to bootstrap the dependency handling code.
  8113. AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],
  8114. [AC_CONFIG_COMMANDS([depfiles],
  8115. [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
  8116. [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
  8117. ])
  8118. # Do all the work for Automake. -*- Autoconf -*-
  8119. # Copyright (C) 1996-2012 Free Software Foundation, Inc.
  8120. #
  8121. # This file is free software; the Free Software Foundation
  8122. # gives unlimited permission to copy and/or distribute it,
  8123. # with or without modifications, as long as this notice is preserved.
  8124. # This macro actually does too much. Some checks are only needed if
  8125. # your package does certain things. But this isn't really a big deal.
  8126. # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
  8127. # AM_INIT_AUTOMAKE([OPTIONS])
  8128. # -----------------------------------------------
  8129. # The call with PACKAGE and VERSION arguments is the old style
  8130. # call (pre autoconf-2.50), which is being phased out. PACKAGE
  8131. # and VERSION should now be passed to AC_INIT and removed from
  8132. # the call to AM_INIT_AUTOMAKE.
  8133. # We support both call styles for the transition. After
  8134. # the next Automake release, Autoconf can make the AC_INIT
  8135. # arguments mandatory, and then we can depend on a new Autoconf
  8136. # release and drop the old call support.
  8137. AC_DEFUN([AM_INIT_AUTOMAKE],
  8138. [AC_PREREQ([2.62])dnl
  8139. dnl Autoconf wants to disallow AM_ names. We explicitly allow
  8140. dnl the ones we care about.
  8141. m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
  8142. AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
  8143. AC_REQUIRE([AC_PROG_INSTALL])dnl
  8144. if test "`cd $srcdir && pwd`" != "`pwd`"; then
  8145. # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
  8146. # is not polluted with repeated "-I."
  8147. AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl
  8148. # test to see if srcdir already configured
  8149. if test -f $srcdir/config.status; then
  8150. AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
  8151. fi
  8152. fi
  8153. # test whether we have cygpath
  8154. if test -z "$CYGPATH_W"; then
  8155. if (cygpath --version) >/dev/null 2>/dev/null; then
  8156. CYGPATH_W='cygpath -w'
  8157. else
  8158. CYGPATH_W=echo
  8159. fi
  8160. fi
  8161. AC_SUBST([CYGPATH_W])
  8162. # Define the identity of the package.
  8163. dnl Distinguish between old-style and new-style calls.
  8164. m4_ifval([$2],
  8165. [AC_DIAGNOSE([obsolete],
  8166. [$0: two- and three-arguments forms are deprecated. For more info, see:
  8167. http://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_INIT_AUTOMAKE-invocation])
  8168. m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
  8169. AC_SUBST([PACKAGE], [$1])dnl
  8170. AC_SUBST([VERSION], [$2])],
  8171. [_AM_SET_OPTIONS([$1])dnl
  8172. dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
  8173. m4_if(
  8174. m4_ifdef([AC_PACKAGE_NAME], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]),
  8175. [ok:ok],,
  8176. [m4_fatal([AC_INIT should be called with package and version arguments])])dnl
  8177. AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
  8178. AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
  8179. _AM_IF_OPTION([no-define],,
  8180. [AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package])
  8181. AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl
  8182. # Some tools Automake needs.
  8183. AC_REQUIRE([AM_SANITY_CHECK])dnl
  8184. AC_REQUIRE([AC_ARG_PROGRAM])dnl
  8185. AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])
  8186. AM_MISSING_PROG([AUTOCONF], [autoconf])
  8187. AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])
  8188. AM_MISSING_PROG([AUTOHEADER], [autoheader])
  8189. AM_MISSING_PROG([MAKEINFO], [makeinfo])
  8190. AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
  8191. AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
  8192. AC_REQUIRE([AC_PROG_MKDIR_P])dnl
  8193. # For better backward compatibility. To be removed once Automake 1.9.x
  8194. # dies out for good. For more background, see:
  8195. # <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
  8196. # <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
  8197. AC_SUBST([mkdir_p], ['$(MKDIR_P)'])
  8198. # We need awk for the "check" target. The system "awk" is bad on
  8199. # some platforms.
  8200. AC_REQUIRE([AC_PROG_AWK])dnl
  8201. AC_REQUIRE([AC_PROG_MAKE_SET])dnl
  8202. AC_REQUIRE([AM_SET_LEADING_DOT])dnl
  8203. _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
  8204. [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
  8205. [_AM_PROG_TAR([v7])])])
  8206. _AM_IF_OPTION([no-dependencies],,
  8207. [AC_PROVIDE_IFELSE([AC_PROG_CC],
  8208. [_AM_DEPENDENCIES([CC])],
  8209. [m4_define([AC_PROG_CC],
  8210. m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl
  8211. AC_PROVIDE_IFELSE([AC_PROG_CXX],
  8212. [_AM_DEPENDENCIES([CXX])],
  8213. [m4_define([AC_PROG_CXX],
  8214. m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl
  8215. AC_PROVIDE_IFELSE([AC_PROG_OBJC],
  8216. [_AM_DEPENDENCIES([OBJC])],
  8217. [m4_define([AC_PROG_OBJC],
  8218. m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl
  8219. dnl Support for Objective C++ was only introduced in Autoconf 2.65,
  8220. dnl but we still cater to Autoconf 2.62.
  8221. m4_ifdef([AC_PROG_OBJCXX],
  8222. [AC_PROVIDE_IFELSE([AC_PROG_OBJCXX],
  8223. [_AM_DEPENDENCIES([OBJCXX])],
  8224. [m4_define([AC_PROG_OBJCXX],
  8225. m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])])dnl
  8226. ])
  8227. _AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl
  8228. dnl The 'parallel-tests' driver may need to know about EXEEXT, so add the
  8229. dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This macro
  8230. dnl is hooked onto _AC_COMPILER_EXEEXT early, see below.
  8231. AC_CONFIG_COMMANDS_PRE(dnl
  8232. [m4_provide_if([_AM_COMPILER_EXEEXT],
  8233. [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
  8234. ])
  8235. dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion. Do not
  8236. dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further
  8237. dnl mangled by Autoconf and run in a shell conditional statement.
  8238. m4_define([_AC_COMPILER_EXEEXT],
  8239. m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])])
  8240. # When config.status generates a header, we must update the stamp-h file.
  8241. # This file resides in the same directory as the config header
  8242. # that is generated. The stamp files are numbered to have different names.
  8243. # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the
  8244. # loop where config.status creates the headers, so we can generate
  8245. # our stamp files there.
  8246. AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],
  8247. [# Compute $1's index in $config_headers.
  8248. _am_arg=$1
  8249. _am_stamp_count=1
  8250. for _am_header in $config_headers :; do
  8251. case $_am_header in
  8252. $_am_arg | $_am_arg:* )
  8253. break ;;
  8254. * )
  8255. _am_stamp_count=`expr $_am_stamp_count + 1` ;;
  8256. esac
  8257. done
  8258. echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
  8259. # Copyright (C) 2001-2012 Free Software Foundation, Inc.
  8260. #
  8261. # This file is free software; the Free Software Foundation
  8262. # gives unlimited permission to copy and/or distribute it,
  8263. # with or without modifications, as long as this notice is preserved.
  8264. # AM_PROG_INSTALL_SH
  8265. # ------------------
  8266. # Define $install_sh.
  8267. AC_DEFUN([AM_PROG_INSTALL_SH],
  8268. [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
  8269. if test x"${install_sh}" != xset; then
  8270. case $am_aux_dir in
  8271. *\ * | *\ *)
  8272. install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
  8273. *)
  8274. install_sh="\${SHELL} $am_aux_dir/install-sh"
  8275. esac
  8276. fi
  8277. AC_SUBST([install_sh])])
  8278. # Copyright (C) 2003-2012 Free Software Foundation, Inc.
  8279. #
  8280. # This file is free software; the Free Software Foundation
  8281. # gives unlimited permission to copy and/or distribute it,
  8282. # with or without modifications, as long as this notice is preserved.
  8283. # Check whether the underlying file-system supports filenames
  8284. # with a leading dot. For instance MS-DOS doesn't.
  8285. AC_DEFUN([AM_SET_LEADING_DOT],
  8286. [rm -rf .tst 2>/dev/null
  8287. mkdir .tst 2>/dev/null
  8288. if test -d .tst; then
  8289. am__leading_dot=.
  8290. else
  8291. am__leading_dot=_
  8292. fi
  8293. rmdir .tst 2>/dev/null
  8294. AC_SUBST([am__leading_dot])])
  8295. # Check to see how 'make' treats includes. -*- Autoconf -*-
  8296. # Copyright (C) 2001-2012 Free Software Foundation, Inc.
  8297. #
  8298. # This file is free software; the Free Software Foundation
  8299. # gives unlimited permission to copy and/or distribute it,
  8300. # with or without modifications, as long as this notice is preserved.
  8301. # AM_MAKE_INCLUDE()
  8302. # -----------------
  8303. # Check to see how make treats includes.
  8304. AC_DEFUN([AM_MAKE_INCLUDE],
  8305. [am_make=${MAKE-make}
  8306. cat > confinc << 'END'
  8307. am__doit:
  8308. @echo this is the am__doit target
  8309. .PHONY: am__doit
  8310. END
  8311. # If we don't find an include directive, just comment out the code.
  8312. AC_MSG_CHECKING([for style of include used by $am_make])
  8313. am__include="#"
  8314. am__quote=
  8315. _am_result=none
  8316. # First try GNU make style include.
  8317. echo "include confinc" > confmf
  8318. # Ignore all kinds of additional output from 'make'.
  8319. case `$am_make -s -f confmf 2> /dev/null` in #(
  8320. *the\ am__doit\ target*)
  8321. am__include=include
  8322. am__quote=
  8323. _am_result=GNU
  8324. ;;
  8325. esac
  8326. # Now try BSD make style include.
  8327. if test "$am__include" = "#"; then
  8328. echo '.include "confinc"' > confmf
  8329. case `$am_make -s -f confmf 2> /dev/null` in #(
  8330. *the\ am__doit\ target*)
  8331. am__include=.include
  8332. am__quote="\""
  8333. _am_result=BSD
  8334. ;;
  8335. esac
  8336. fi
  8337. AC_SUBST([am__include])
  8338. AC_SUBST([am__quote])
  8339. AC_MSG_RESULT([$_am_result])
  8340. rm -f confinc confmf
  8341. ])
  8342. # Copyright (C) 1999-2012 Free Software Foundation, Inc.
  8343. #
  8344. # This file is free software; the Free Software Foundation
  8345. # gives unlimited permission to copy and/or distribute it,
  8346. # with or without modifications, as long as this notice is preserved.
  8347. # AM_PROG_CC_C_O
  8348. # --------------
  8349. # Like AC_PROG_CC_C_O, but changed for automake.
  8350. AC_DEFUN([AM_PROG_CC_C_O],
  8351. [AC_REQUIRE([AC_PROG_CC_C_O])dnl
  8352. AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
  8353. AC_REQUIRE_AUX_FILE([compile])dnl
  8354. # FIXME: we rely on the cache variable name because
  8355. # there is no other way.
  8356. set dummy $CC
  8357. am_cc=`echo $[2] | sed ['s/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/']`
  8358. eval am_t=\$ac_cv_prog_cc_${am_cc}_c_o
  8359. if test "$am_t" != yes; then
  8360. # Losing compiler, so override with the script.
  8361. # FIXME: It is wrong to rewrite CC.
  8362. # But if we don't then we get into trouble of one sort or another.
  8363. # A longer-term fix would be to have automake use am__CC in this case,
  8364. # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
  8365. CC="$am_aux_dir/compile $CC"
  8366. fi
  8367. dnl Make sure AC_PROG_CC is never called again, or it will override our
  8368. dnl setting of CC.
  8369. m4_define([AC_PROG_CC],
  8370. [m4_fatal([AC_PROG_CC cannot be called after AM_PROG_CC_C_O])])
  8371. ])
  8372. # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*-
  8373. # Copyright (C) 1997-2012 Free Software Foundation, Inc.
  8374. #
  8375. # This file is free software; the Free Software Foundation
  8376. # gives unlimited permission to copy and/or distribute it,
  8377. # with or without modifications, as long as this notice is preserved.
  8378. # AM_MISSING_PROG(NAME, PROGRAM)
  8379. # ------------------------------
  8380. AC_DEFUN([AM_MISSING_PROG],
  8381. [AC_REQUIRE([AM_MISSING_HAS_RUN])
  8382. $1=${$1-"${am_missing_run}$2"}
  8383. AC_SUBST($1)])
  8384. # AM_MISSING_HAS_RUN
  8385. # ------------------
  8386. # Define MISSING if not defined so far and test if it supports --run.
  8387. # If it does, set am_missing_run to use it, otherwise, to nothing.
  8388. AC_DEFUN([AM_MISSING_HAS_RUN],
  8389. [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
  8390. AC_REQUIRE_AUX_FILE([missing])dnl
  8391. if test x"${MISSING+set}" != xset; then
  8392. case $am_aux_dir in
  8393. *\ * | *\ *)
  8394. MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
  8395. *)
  8396. MISSING="\${SHELL} $am_aux_dir/missing" ;;
  8397. esac
  8398. fi
  8399. # Use eval to expand $SHELL
  8400. if eval "$MISSING --run true"; then
  8401. am_missing_run="$MISSING --run "
  8402. else
  8403. am_missing_run=
  8404. AC_MSG_WARN(['missing' script is too old or missing])
  8405. fi
  8406. ])
  8407. # Helper functions for option handling. -*- Autoconf -*-
  8408. # Copyright (C) 2001-2012 Free Software Foundation, Inc.
  8409. #
  8410. # This file is free software; the Free Software Foundation
  8411. # gives unlimited permission to copy and/or distribute it,
  8412. # with or without modifications, as long as this notice is preserved.
  8413. # _AM_MANGLE_OPTION(NAME)
  8414. # -----------------------
  8415. AC_DEFUN([_AM_MANGLE_OPTION],
  8416. [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
  8417. # _AM_SET_OPTION(NAME)
  8418. # --------------------
  8419. # Set option NAME. Presently that only means defining a flag for this option.
  8420. AC_DEFUN([_AM_SET_OPTION],
  8421. [m4_define(_AM_MANGLE_OPTION([$1]), [1])])
  8422. # _AM_SET_OPTIONS(OPTIONS)
  8423. # ------------------------
  8424. # OPTIONS is a space-separated list of Automake options.
  8425. AC_DEFUN([_AM_SET_OPTIONS],
  8426. [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
  8427. # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET])
  8428. # -------------------------------------------
  8429. # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
  8430. AC_DEFUN([_AM_IF_OPTION],
  8431. [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
  8432. # Check to make sure that the build environment is sane. -*- Autoconf -*-
  8433. # Copyright (C) 1996-2012 Free Software Foundation, Inc.
  8434. #
  8435. # This file is free software; the Free Software Foundation
  8436. # gives unlimited permission to copy and/or distribute it,
  8437. # with or without modifications, as long as this notice is preserved.
  8438. # AM_SANITY_CHECK
  8439. # ---------------
  8440. AC_DEFUN([AM_SANITY_CHECK],
  8441. [AC_MSG_CHECKING([whether build environment is sane])
  8442. # Reject unsafe characters in $srcdir or the absolute working directory
  8443. # name. Accept space and tab only in the latter.
  8444. am_lf='
  8445. '
  8446. case `pwd` in
  8447. *[[\\\"\#\$\&\'\`$am_lf]]*)
  8448. AC_MSG_ERROR([unsafe absolute working directory name]);;
  8449. esac
  8450. case $srcdir in
  8451. *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*)
  8452. AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);;
  8453. esac
  8454. # Do 'set' in a subshell so we don't clobber the current shell's
  8455. # arguments. Must try -L first in case configure is actually a
  8456. # symlink; some systems play weird games with the mod time of symlinks
  8457. # (eg FreeBSD returns the mod time of the symlink's containing
  8458. # directory).
  8459. if (
  8460. am_has_slept=no
  8461. for am_try in 1 2; do
  8462. echo "timestamp, slept: $am_has_slept" > conftest.file
  8463. set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
  8464. if test "$[*]" = "X"; then
  8465. # -L didn't work.
  8466. set X `ls -t "$srcdir/configure" conftest.file`
  8467. fi
  8468. if test "$[*]" != "X $srcdir/configure conftest.file" \
  8469. && test "$[*]" != "X conftest.file $srcdir/configure"; then
  8470. # If neither matched, then we have a broken ls. This can happen
  8471. # if, for instance, CONFIG_SHELL is bash and it inherits a
  8472. # broken ls alias from the environment. This has actually
  8473. # happened. Such a system could not be considered "sane".
  8474. AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken
  8475. alias in your environment])
  8476. fi
  8477. if test "$[2]" = conftest.file || test $am_try -eq 2; then
  8478. break
  8479. fi
  8480. # Just in case.
  8481. sleep 1
  8482. am_has_slept=yes
  8483. done
  8484. test "$[2]" = conftest.file
  8485. )
  8486. then
  8487. # Ok.
  8488. :
  8489. else
  8490. AC_MSG_ERROR([newly created file is older than distributed files!
  8491. Check your system clock])
  8492. fi
  8493. AC_MSG_RESULT([yes])
  8494. # If we didn't sleep, we still need to ensure time stamps of config.status and
  8495. # generated files are strictly newer.
  8496. am_sleep_pid=
  8497. if grep 'slept: no' conftest.file >/dev/null 2>&1; then
  8498. ( sleep 1 ) &
  8499. am_sleep_pid=$!
  8500. fi
  8501. AC_CONFIG_COMMANDS_PRE(
  8502. [AC_MSG_CHECKING([that generated files are newer than configure])
  8503. if test -n "$am_sleep_pid"; then
  8504. # Hide warnings about reused PIDs.
  8505. wait $am_sleep_pid 2>/dev/null
  8506. fi
  8507. AC_MSG_RESULT([done])])
  8508. rm -f conftest.file
  8509. ])
  8510. # Copyright (C) 2001-2012 Free Software Foundation, Inc.
  8511. #
  8512. # This file is free software; the Free Software Foundation
  8513. # gives unlimited permission to copy and/or distribute it,
  8514. # with or without modifications, as long as this notice is preserved.
  8515. # AM_PROG_INSTALL_STRIP
  8516. # ---------------------
  8517. # One issue with vendor 'install' (even GNU) is that you can't
  8518. # specify the program used to strip binaries. This is especially
  8519. # annoying in cross-compiling environments, where the build's strip
  8520. # is unlikely to handle the host's binaries.
  8521. # Fortunately install-sh will honor a STRIPPROG variable, so we
  8522. # always use install-sh in "make install-strip", and initialize
  8523. # STRIPPROG with the value of the STRIP variable (set by the user).
  8524. AC_DEFUN([AM_PROG_INSTALL_STRIP],
  8525. [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
  8526. # Installed binaries are usually stripped using 'strip' when the user
  8527. # run "make install-strip". However 'strip' might not be the right
  8528. # tool to use in cross-compilation environments, therefore Automake
  8529. # will honor the 'STRIP' environment variable to overrule this program.
  8530. dnl Don't test for $cross_compiling = yes, because it might be 'maybe'.
  8531. if test "$cross_compiling" != no; then
  8532. AC_CHECK_TOOL([STRIP], [strip], :)
  8533. fi
  8534. INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
  8535. AC_SUBST([INSTALL_STRIP_PROGRAM])])
  8536. # Copyright (C) 2006-2012 Free Software Foundation, Inc.
  8537. #
  8538. # This file is free software; the Free Software Foundation
  8539. # gives unlimited permission to copy and/or distribute it,
  8540. # with or without modifications, as long as this notice is preserved.
  8541. # _AM_SUBST_NOTMAKE(VARIABLE)
  8542. # ---------------------------
  8543. # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in.
  8544. # This macro is traced by Automake.
  8545. AC_DEFUN([_AM_SUBST_NOTMAKE])
  8546. # AM_SUBST_NOTMAKE(VARIABLE)
  8547. # --------------------------
  8548. # Public sister of _AM_SUBST_NOTMAKE.
  8549. AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
  8550. # Check how to create a tarball. -*- Autoconf -*-
  8551. # Copyright (C) 2004-2012 Free Software Foundation, Inc.
  8552. #
  8553. # This file is free software; the Free Software Foundation
  8554. # gives unlimited permission to copy and/or distribute it,
  8555. # with or without modifications, as long as this notice is preserved.
  8556. # _AM_PROG_TAR(FORMAT)
  8557. # --------------------
  8558. # Check how to create a tarball in format FORMAT.
  8559. # FORMAT should be one of 'v7', 'ustar', or 'pax'.
  8560. #
  8561. # Substitute a variable $(am__tar) that is a command
  8562. # writing to stdout a FORMAT-tarball containing the directory
  8563. # $tardir.
  8564. # tardir=directory && $(am__tar) > result.tar
  8565. #
  8566. # Substitute a variable $(am__untar) that extract such
  8567. # a tarball read from stdin.
  8568. # $(am__untar) < result.tar
  8569. AC_DEFUN([_AM_PROG_TAR],
  8570. [# Always define AMTAR for backward compatibility. Yes, it's still used
  8571. # in the wild :-( We should find a proper way to deprecate it ...
  8572. AC_SUBST([AMTAR], ['$${TAR-tar}'])
  8573. m4_if([$1], [v7],
  8574. [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'],
  8575. [m4_case([$1], [ustar],, [pax],,
  8576. [m4_fatal([Unknown tar format])])
  8577. AC_MSG_CHECKING([how to create a $1 tar archive])
  8578. # Loop over all known methods to create a tar archive until one works.
  8579. _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
  8580. _am_tools=${am_cv_prog_tar_$1-$_am_tools}
  8581. # Do not fold the above two line into one, because Tru64 sh and
  8582. # Solaris sh will not grok spaces in the rhs of '-'.
  8583. for _am_tool in $_am_tools
  8584. do
  8585. case $_am_tool in
  8586. gnutar)
  8587. for _am_tar in tar gnutar gtar;
  8588. do
  8589. AM_RUN_LOG([$_am_tar --version]) && break
  8590. done
  8591. am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
  8592. am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
  8593. am__untar="$_am_tar -xf -"
  8594. ;;
  8595. plaintar)
  8596. # Must skip GNU tar: if it does not support --format= it doesn't create
  8597. # ustar tarball either.
  8598. (tar --version) >/dev/null 2>&1 && continue
  8599. am__tar='tar chf - "$$tardir"'
  8600. am__tar_='tar chf - "$tardir"'
  8601. am__untar='tar xf -'
  8602. ;;
  8603. pax)
  8604. am__tar='pax -L -x $1 -w "$$tardir"'
  8605. am__tar_='pax -L -x $1 -w "$tardir"'
  8606. am__untar='pax -r'
  8607. ;;
  8608. cpio)
  8609. am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
  8610. am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
  8611. am__untar='cpio -i -H $1 -d'
  8612. ;;
  8613. none)
  8614. am__tar=false
  8615. am__tar_=false
  8616. am__untar=false
  8617. ;;
  8618. esac
  8619. # If the value was cached, stop now. We just wanted to have am__tar
  8620. # and am__untar set.
  8621. test -n "${am_cv_prog_tar_$1}" && break
  8622. # tar/untar a dummy directory, and stop if the command works
  8623. rm -rf conftest.dir
  8624. mkdir conftest.dir
  8625. echo GrepMe > conftest.dir/file
  8626. AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
  8627. rm -rf conftest.dir
  8628. if test -s conftest.tar; then
  8629. AM_RUN_LOG([$am__untar <conftest.tar])
  8630. grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
  8631. fi
  8632. done
  8633. rm -rf conftest.dir
  8634. AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
  8635. AC_MSG_RESULT([$am_cv_prog_tar_$1])])
  8636. AC_SUBST([am__tar])
  8637. AC_SUBST([am__untar])
  8638. ]) # _AM_PROG_TAR