aclocal.m4 311 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951
  1. # generated automatically by aclocal 1.11 -*- Autoconf -*-
  2. # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
  3. # 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
  4. # This file is free software; the Free Software Foundation
  5. # gives unlimited permission to copy and/or distribute it,
  6. # with or without modifications, as long as this notice is preserved.
  7. # This program is distributed in the hope that it will be useful,
  8. # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
  9. # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  10. # PARTICULAR PURPOSE.
  11. m4_ifndef([AC_AUTOCONF_VERSION],
  12. [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
  13. m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.64],,
  14. [m4_warning([this file was generated for autoconf 2.64.
  15. You have another version of autoconf. It may work, but is not guaranteed to.
  16. If you have problems, you may need to regenerate the build system entirely.
  17. To do so, use the procedure documented by the package, typically `autoreconf'.])])
  18. # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*-
  19. #
  20. # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
  21. # 2006, 2007, 2008 Free Software Foundation, Inc.
  22. # Written by Gordon Matzigkeit, 1996
  23. #
  24. # This file is free software; the Free Software Foundation gives
  25. # unlimited permission to copy and/or distribute it, with or without
  26. # modifications, as long as this notice is preserved.
  27. m4_define([_LT_COPYING], [dnl
  28. # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
  29. # 2006, 2007, 2008 Free Software Foundation, Inc.
  30. # Written by Gordon Matzigkeit, 1996
  31. #
  32. # This file is part of GNU Libtool.
  33. #
  34. # GNU Libtool is free software; you can redistribute it and/or
  35. # modify it under the terms of the GNU General Public License as
  36. # published by the Free Software Foundation; either version 2 of
  37. # the License, or (at your option) any later version.
  38. #
  39. # As a special exception to the GNU General Public License,
  40. # if you distribute this file as part of a program or library that
  41. # is built using GNU Libtool, you may include this file under the
  42. # same distribution terms that you use for the rest of that program.
  43. #
  44. # GNU Libtool is distributed in the hope that it will be useful,
  45. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  46. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  47. # GNU General Public License for more details.
  48. #
  49. # You should have received a copy of the GNU General Public License
  50. # along with GNU Libtool; see the file COPYING. If not, a copy
  51. # can be downloaded from http://www.gnu.org/licenses/gpl.html, or
  52. # obtained by writing to the Free Software Foundation, Inc.,
  53. # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  54. ])
  55. # serial 56 LT_INIT
  56. # LT_PREREQ(VERSION)
  57. # ------------------
  58. # Complain and exit if this libtool version is less that VERSION.
  59. m4_defun([LT_PREREQ],
  60. [m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1,
  61. [m4_default([$3],
  62. [m4_fatal([Libtool version $1 or higher is required],
  63. 63)])],
  64. [$2])])
  65. # _LT_CHECK_BUILDDIR
  66. # ------------------
  67. # Complain if the absolute build directory name contains unusual characters
  68. m4_defun([_LT_CHECK_BUILDDIR],
  69. [case `pwd` in
  70. *\ * | *\ *)
  71. AC_MSG_WARN([Libtool does not cope well with whitespace in `pwd`]) ;;
  72. esac
  73. ])
  74. # LT_INIT([OPTIONS])
  75. # ------------------
  76. AC_DEFUN([LT_INIT],
  77. [AC_PREREQ([2.58])dnl We use AC_INCLUDES_DEFAULT
  78. AC_BEFORE([$0], [LT_LANG])dnl
  79. AC_BEFORE([$0], [LT_OUTPUT])dnl
  80. AC_BEFORE([$0], [LTDL_INIT])dnl
  81. m4_require([_LT_CHECK_BUILDDIR])dnl
  82. dnl Autoconf doesn't catch unexpanded LT_ macros by default:
  83. m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl
  84. m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl
  85. dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4
  86. dnl unless we require an AC_DEFUNed macro:
  87. AC_REQUIRE([LTOPTIONS_VERSION])dnl
  88. AC_REQUIRE([LTSUGAR_VERSION])dnl
  89. AC_REQUIRE([LTVERSION_VERSION])dnl
  90. AC_REQUIRE([LTOBSOLETE_VERSION])dnl
  91. m4_require([_LT_PROG_LTMAIN])dnl
  92. dnl Parse OPTIONS
  93. _LT_SET_OPTIONS([$0], [$1])
  94. # This can be used to rebuild libtool when needed
  95. LIBTOOL_DEPS="$ltmain"
  96. # Always use our own libtool.
  97. LIBTOOL='$(SHELL) $(top_builddir)/libtool'
  98. AC_SUBST(LIBTOOL)dnl
  99. _LT_SETUP
  100. # Only expand once:
  101. m4_define([LT_INIT])
  102. ])# LT_INIT
  103. # Old names:
  104. AU_ALIAS([AC_PROG_LIBTOOL], [LT_INIT])
  105. AU_ALIAS([AM_PROG_LIBTOOL], [LT_INIT])
  106. dnl aclocal-1.4 backwards compatibility:
  107. dnl AC_DEFUN([AC_PROG_LIBTOOL], [])
  108. dnl AC_DEFUN([AM_PROG_LIBTOOL], [])
  109. # _LT_CC_BASENAME(CC)
  110. # -------------------
  111. # Calculate cc_basename. Skip known compiler wrappers and cross-prefix.
  112. m4_defun([_LT_CC_BASENAME],
  113. [for cc_temp in $1""; do
  114. case $cc_temp in
  115. compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;;
  116. distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;;
  117. \-*) ;;
  118. *) break;;
  119. esac
  120. done
  121. cc_basename=`$ECHO "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"`
  122. ])
  123. # _LT_FILEUTILS_DEFAULTS
  124. # ----------------------
  125. # It is okay to use these file commands and assume they have been set
  126. # sensibly after `m4_require([_LT_FILEUTILS_DEFAULTS])'.
  127. m4_defun([_LT_FILEUTILS_DEFAULTS],
  128. [: ${CP="cp -f"}
  129. : ${MV="mv -f"}
  130. : ${RM="rm -f"}
  131. ])# _LT_FILEUTILS_DEFAULTS
  132. # _LT_SETUP
  133. # ---------
  134. m4_defun([_LT_SETUP],
  135. [AC_REQUIRE([AC_CANONICAL_HOST])dnl
  136. AC_REQUIRE([AC_CANONICAL_BUILD])dnl
  137. _LT_DECL([], [host_alias], [0], [The host system])dnl
  138. _LT_DECL([], [host], [0])dnl
  139. _LT_DECL([], [host_os], [0])dnl
  140. dnl
  141. _LT_DECL([], [build_alias], [0], [The build system])dnl
  142. _LT_DECL([], [build], [0])dnl
  143. _LT_DECL([], [build_os], [0])dnl
  144. dnl
  145. AC_REQUIRE([AC_PROG_CC])dnl
  146. AC_REQUIRE([LT_PATH_LD])dnl
  147. AC_REQUIRE([LT_PATH_NM])dnl
  148. dnl
  149. AC_REQUIRE([AC_PROG_LN_S])dnl
  150. test -z "$LN_S" && LN_S="ln -s"
  151. _LT_DECL([], [LN_S], [1], [Whether we need soft or hard links])dnl
  152. dnl
  153. AC_REQUIRE([LT_CMD_MAX_LEN])dnl
  154. _LT_DECL([objext], [ac_objext], [0], [Object file suffix (normally "o")])dnl
  155. _LT_DECL([], [exeext], [0], [Executable file suffix (normally "")])dnl
  156. dnl
  157. m4_require([_LT_FILEUTILS_DEFAULTS])dnl
  158. m4_require([_LT_CHECK_SHELL_FEATURES])dnl
  159. m4_require([_LT_CMD_RELOAD])dnl
  160. m4_require([_LT_CHECK_MAGIC_METHOD])dnl
  161. m4_require([_LT_CMD_OLD_ARCHIVE])dnl
  162. m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl
  163. _LT_CONFIG_LIBTOOL_INIT([
  164. # See if we are running on zsh, and set the options which allow our
  165. # commands through without removal of \ escapes INIT.
  166. if test -n "\${ZSH_VERSION+set}" ; then
  167. setopt NO_GLOB_SUBST
  168. fi
  169. ])
  170. if test -n "${ZSH_VERSION+set}" ; then
  171. setopt NO_GLOB_SUBST
  172. fi
  173. _LT_CHECK_OBJDIR
  174. m4_require([_LT_TAG_COMPILER])dnl
  175. _LT_PROG_ECHO_BACKSLASH
  176. case $host_os in
  177. aix3*)
  178. # AIX sometimes has problems with the GCC collect2 program. For some
  179. # reason, if we set the COLLECT_NAMES environment variable, the problems
  180. # vanish in a puff of smoke.
  181. if test "X${COLLECT_NAMES+set}" != Xset; then
  182. COLLECT_NAMES=
  183. export COLLECT_NAMES
  184. fi
  185. ;;
  186. esac
  187. # Sed substitution that helps us do robust quoting. It backslashifies
  188. # metacharacters that are still active within double-quoted strings.
  189. sed_quote_subst='s/\([["`$\\]]\)/\\\1/g'
  190. # Same as above, but do not quote variable references.
  191. double_quote_subst='s/\([["`\\]]\)/\\\1/g'
  192. # Sed substitution to delay expansion of an escaped shell variable in a
  193. # double_quote_subst'ed string.
  194. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g'
  195. # Sed substitution to delay expansion of an escaped single quote.
  196. delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g'
  197. # Sed substitution to avoid accidental globbing in evaled expressions
  198. no_glob_subst='s/\*/\\\*/g'
  199. # Global variables:
  200. ofile=libtool
  201. can_build_shared=yes
  202. # All known linkers require a `.a' archive for static linking (except MSVC,
  203. # which needs '.lib').
  204. libext=a
  205. with_gnu_ld="$lt_cv_prog_gnu_ld"
  206. old_CC="$CC"
  207. old_CFLAGS="$CFLAGS"
  208. # Set sane defaults for various variables
  209. test -z "$CC" && CC=cc
  210. test -z "$LTCC" && LTCC=$CC
  211. test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS
  212. test -z "$LD" && LD=ld
  213. test -z "$ac_objext" && ac_objext=o
  214. _LT_CC_BASENAME([$compiler])
  215. # Only perform the check for file, if the check method requires it
  216. test -z "$MAGIC_CMD" && MAGIC_CMD=file
  217. case $deplibs_check_method in
  218. file_magic*)
  219. if test "$file_magic_cmd" = '$MAGIC_CMD'; then
  220. _LT_PATH_MAGIC
  221. fi
  222. ;;
  223. esac
  224. # Use C for the default configuration in the libtool script
  225. LT_SUPPORTED_TAG([CC])
  226. _LT_LANG_C_CONFIG
  227. _LT_LANG_DEFAULT_CONFIG
  228. _LT_CONFIG_COMMANDS
  229. ])# _LT_SETUP
  230. # _LT_PROG_LTMAIN
  231. # ---------------
  232. # Note that this code is called both from `configure', and `config.status'
  233. # now that we use AC_CONFIG_COMMANDS to generate libtool. Notably,
  234. # `config.status' has no value for ac_aux_dir unless we are using Automake,
  235. # so we pass a copy along to make sure it has a sensible value anyway.
  236. m4_defun([_LT_PROG_LTMAIN],
  237. [m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([ltmain.sh])])dnl
  238. _LT_CONFIG_LIBTOOL_INIT([ac_aux_dir='$ac_aux_dir'])
  239. ltmain="$ac_aux_dir/ltmain.sh"
  240. ])# _LT_PROG_LTMAIN
  241. # So that we can recreate a full libtool script including additional
  242. # tags, we accumulate the chunks of code to send to AC_CONFIG_COMMANDS
  243. # in macros and then make a single call at the end using the `libtool'
  244. # label.
  245. # _LT_CONFIG_LIBTOOL_INIT([INIT-COMMANDS])
  246. # ----------------------------------------
  247. # Register INIT-COMMANDS to be passed to AC_CONFIG_COMMANDS later.
  248. m4_define([_LT_CONFIG_LIBTOOL_INIT],
  249. [m4_ifval([$1],
  250. [m4_append([_LT_OUTPUT_LIBTOOL_INIT],
  251. [$1
  252. ])])])
  253. # Initialize.
  254. m4_define([_LT_OUTPUT_LIBTOOL_INIT])
  255. # _LT_CONFIG_LIBTOOL([COMMANDS])
  256. # ------------------------------
  257. # Register COMMANDS to be passed to AC_CONFIG_COMMANDS later.
  258. m4_define([_LT_CONFIG_LIBTOOL],
  259. [m4_ifval([$1],
  260. [m4_append([_LT_OUTPUT_LIBTOOL_COMMANDS],
  261. [$1
  262. ])])])
  263. # Initialize.
  264. m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS])
  265. # _LT_CONFIG_SAVE_COMMANDS([COMMANDS], [INIT_COMMANDS])
  266. # -----------------------------------------------------
  267. m4_defun([_LT_CONFIG_SAVE_COMMANDS],
  268. [_LT_CONFIG_LIBTOOL([$1])
  269. _LT_CONFIG_LIBTOOL_INIT([$2])
  270. ])
  271. # _LT_FORMAT_COMMENT([COMMENT])
  272. # -----------------------------
  273. # Add leading comment marks to the start of each line, and a trailing
  274. # full-stop to the whole comment if one is not present already.
  275. m4_define([_LT_FORMAT_COMMENT],
  276. [m4_ifval([$1], [
  277. m4_bpatsubst([m4_bpatsubst([$1], [^ *], [# ])],
  278. [['`$\]], [\\\&])]m4_bmatch([$1], [[!?.]$], [], [.])
  279. )])
  280. # _LT_DECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION], [IS-TAGGED?])
  281. # -------------------------------------------------------------------
  282. # CONFIGNAME is the name given to the value in the libtool script.
  283. # VARNAME is the (base) name used in the configure script.
  284. # VALUE may be 0, 1 or 2 for a computed quote escaped value based on
  285. # VARNAME. Any other value will be used directly.
  286. m4_define([_LT_DECL],
  287. [lt_if_append_uniq([lt_decl_varnames], [$2], [, ],
  288. [lt_dict_add_subkey([lt_decl_dict], [$2], [libtool_name],
  289. [m4_ifval([$1], [$1], [$2])])
  290. lt_dict_add_subkey([lt_decl_dict], [$2], [value], [$3])
  291. m4_ifval([$4],
  292. [lt_dict_add_subkey([lt_decl_dict], [$2], [description], [$4])])
  293. lt_dict_add_subkey([lt_decl_dict], [$2],
  294. [tagged?], [m4_ifval([$5], [yes], [no])])])
  295. ])
  296. # _LT_TAGDECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION])
  297. # --------------------------------------------------------
  298. m4_define([_LT_TAGDECL], [_LT_DECL([$1], [$2], [$3], [$4], [yes])])
  299. # lt_decl_tag_varnames([SEPARATOR], [VARNAME1...])
  300. # ------------------------------------------------
  301. m4_define([lt_decl_tag_varnames],
  302. [_lt_decl_filter([tagged?], [yes], $@)])
  303. # _lt_decl_filter(SUBKEY, VALUE, [SEPARATOR], [VARNAME1..])
  304. # ---------------------------------------------------------
  305. m4_define([_lt_decl_filter],
  306. [m4_case([$#],
  307. [0], [m4_fatal([$0: too few arguments: $#])],
  308. [1], [m4_fatal([$0: too few arguments: $#: $1])],
  309. [2], [lt_dict_filter([lt_decl_dict], [$1], [$2], [], lt_decl_varnames)],
  310. [3], [lt_dict_filter([lt_decl_dict], [$1], [$2], [$3], lt_decl_varnames)],
  311. [lt_dict_filter([lt_decl_dict], $@)])[]dnl
  312. ])
  313. # lt_decl_quote_varnames([SEPARATOR], [VARNAME1...])
  314. # --------------------------------------------------
  315. m4_define([lt_decl_quote_varnames],
  316. [_lt_decl_filter([value], [1], $@)])
  317. # lt_decl_dquote_varnames([SEPARATOR], [VARNAME1...])
  318. # ---------------------------------------------------
  319. m4_define([lt_decl_dquote_varnames],
  320. [_lt_decl_filter([value], [2], $@)])
  321. # lt_decl_varnames_tagged([SEPARATOR], [VARNAME1...])
  322. # ---------------------------------------------------
  323. m4_define([lt_decl_varnames_tagged],
  324. [m4_assert([$# <= 2])dnl
  325. _$0(m4_quote(m4_default([$1], [[, ]])),
  326. m4_ifval([$2], [[$2]], [m4_dquote(lt_decl_tag_varnames)]),
  327. m4_split(m4_normalize(m4_quote(_LT_TAGS)), [ ]))])
  328. m4_define([_lt_decl_varnames_tagged],
  329. [m4_ifval([$3], [lt_combine([$1], [$2], [_], $3)])])
  330. # lt_decl_all_varnames([SEPARATOR], [VARNAME1...])
  331. # ------------------------------------------------
  332. m4_define([lt_decl_all_varnames],
  333. [_$0(m4_quote(m4_default([$1], [[, ]])),
  334. m4_if([$2], [],
  335. m4_quote(lt_decl_varnames),
  336. m4_quote(m4_shift($@))))[]dnl
  337. ])
  338. m4_define([_lt_decl_all_varnames],
  339. [lt_join($@, lt_decl_varnames_tagged([$1],
  340. lt_decl_tag_varnames([[, ]], m4_shift($@))))dnl
  341. ])
  342. # _LT_CONFIG_STATUS_DECLARE([VARNAME])
  343. # ------------------------------------
  344. # Quote a variable value, and forward it to `config.status' so that its
  345. # declaration there will have the same value as in `configure'. VARNAME
  346. # must have a single quote delimited value for this to work.
  347. m4_define([_LT_CONFIG_STATUS_DECLARE],
  348. [$1='`$ECHO "X$][$1" | $Xsed -e "$delay_single_quote_subst"`'])
  349. # _LT_CONFIG_STATUS_DECLARATIONS
  350. # ------------------------------
  351. # We delimit libtool config variables with single quotes, so when
  352. # we write them to config.status, we have to be sure to quote all
  353. # embedded single quotes properly. In configure, this macro expands
  354. # each variable declared with _LT_DECL (and _LT_TAGDECL) into:
  355. #
  356. # <var>='`$ECHO "X$<var>" | $Xsed -e "$delay_single_quote_subst"`'
  357. m4_defun([_LT_CONFIG_STATUS_DECLARATIONS],
  358. [m4_foreach([_lt_var], m4_quote(lt_decl_all_varnames),
  359. [m4_n([_LT_CONFIG_STATUS_DECLARE(_lt_var)])])])
  360. # _LT_LIBTOOL_TAGS
  361. # ----------------
  362. # Output comment and list of tags supported by the script
  363. m4_defun([_LT_LIBTOOL_TAGS],
  364. [_LT_FORMAT_COMMENT([The names of the tagged configurations supported by this script])dnl
  365. available_tags="_LT_TAGS"dnl
  366. ])
  367. # _LT_LIBTOOL_DECLARE(VARNAME, [TAG])
  368. # -----------------------------------
  369. # Extract the dictionary values for VARNAME (optionally with TAG) and
  370. # expand to a commented shell variable setting:
  371. #
  372. # # Some comment about what VAR is for.
  373. # visible_name=$lt_internal_name
  374. m4_define([_LT_LIBTOOL_DECLARE],
  375. [_LT_FORMAT_COMMENT(m4_quote(lt_dict_fetch([lt_decl_dict], [$1],
  376. [description])))[]dnl
  377. m4_pushdef([_libtool_name],
  378. m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [libtool_name])))[]dnl
  379. m4_case(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [value])),
  380. [0], [_libtool_name=[$]$1],
  381. [1], [_libtool_name=$lt_[]$1],
  382. [2], [_libtool_name=$lt_[]$1],
  383. [_libtool_name=lt_dict_fetch([lt_decl_dict], [$1], [value])])[]dnl
  384. m4_ifval([$2], [_$2])[]m4_popdef([_libtool_name])[]dnl
  385. ])
  386. # _LT_LIBTOOL_CONFIG_VARS
  387. # -----------------------
  388. # Produce commented declarations of non-tagged libtool config variables
  389. # suitable for insertion in the LIBTOOL CONFIG section of the `libtool'
  390. # script. Tagged libtool config variables (even for the LIBTOOL CONFIG
  391. # section) are produced by _LT_LIBTOOL_TAG_VARS.
  392. m4_defun([_LT_LIBTOOL_CONFIG_VARS],
  393. [m4_foreach([_lt_var],
  394. m4_quote(_lt_decl_filter([tagged?], [no], [], lt_decl_varnames)),
  395. [m4_n([_LT_LIBTOOL_DECLARE(_lt_var)])])])
  396. # _LT_LIBTOOL_TAG_VARS(TAG)
  397. # -------------------------
  398. m4_define([_LT_LIBTOOL_TAG_VARS],
  399. [m4_foreach([_lt_var], m4_quote(lt_decl_tag_varnames),
  400. [m4_n([_LT_LIBTOOL_DECLARE(_lt_var, [$1])])])])
  401. # _LT_TAGVAR(VARNAME, [TAGNAME])
  402. # ------------------------------
  403. m4_define([_LT_TAGVAR], [m4_ifval([$2], [$1_$2], [$1])])
  404. # _LT_CONFIG_COMMANDS
  405. # -------------------
  406. # Send accumulated output to $CONFIG_STATUS. Thanks to the lists of
  407. # variables for single and double quote escaping we saved from calls
  408. # to _LT_DECL, we can put quote escaped variables declarations
  409. # into `config.status', and then the shell code to quote escape them in
  410. # for loops in `config.status'. Finally, any additional code accumulated
  411. # from calls to _LT_CONFIG_LIBTOOL_INIT is expanded.
  412. m4_defun([_LT_CONFIG_COMMANDS],
  413. [AC_PROVIDE_IFELSE([LT_OUTPUT],
  414. dnl If the libtool generation code has been placed in $CONFIG_LT,
  415. dnl instead of duplicating it all over again into config.status,
  416. dnl then we will have config.status run $CONFIG_LT later, so it
  417. dnl needs to know what name is stored there:
  418. [AC_CONFIG_COMMANDS([libtool],
  419. [$SHELL $CONFIG_LT || AS_EXIT(1)], [CONFIG_LT='$CONFIG_LT'])],
  420. dnl If the libtool generation code is destined for config.status,
  421. dnl expand the accumulated commands and init code now:
  422. [AC_CONFIG_COMMANDS([libtool],
  423. [_LT_OUTPUT_LIBTOOL_COMMANDS], [_LT_OUTPUT_LIBTOOL_COMMANDS_INIT])])
  424. ])#_LT_CONFIG_COMMANDS
  425. # Initialize.
  426. m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS_INIT],
  427. [
  428. # The HP-UX ksh and POSIX shell print the target directory to stdout
  429. # if CDPATH is set.
  430. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
  431. sed_quote_subst='$sed_quote_subst'
  432. double_quote_subst='$double_quote_subst'
  433. delay_variable_subst='$delay_variable_subst'
  434. _LT_CONFIG_STATUS_DECLARATIONS
  435. LTCC='$LTCC'
  436. LTCFLAGS='$LTCFLAGS'
  437. compiler='$compiler_DEFAULT'
  438. # Quote evaled strings.
  439. for var in lt_decl_all_varnames([[ \
  440. ]], lt_decl_quote_varnames); do
  441. case \`eval \\\\\$ECHO "X\\\\\$\$var"\` in
  442. *[[\\\\\\\`\\"\\\$]]*)
  443. eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"X\\\$\$var\\" | \\\$Xsed -e \\"\\\$sed_quote_subst\\"\\\`\\\\\\""
  444. ;;
  445. *)
  446. eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\""
  447. ;;
  448. esac
  449. done
  450. # Double-quote double-evaled strings.
  451. for var in lt_decl_all_varnames([[ \
  452. ]], lt_decl_dquote_varnames); do
  453. case \`eval \\\\\$ECHO "X\\\\\$\$var"\` in
  454. *[[\\\\\\\`\\"\\\$]]*)
  455. eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"X\\\$\$var\\" | \\\$Xsed -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\""
  456. ;;
  457. *)
  458. eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\""
  459. ;;
  460. esac
  461. done
  462. # Fix-up fallback echo if it was mangled by the above quoting rules.
  463. case \$lt_ECHO in
  464. *'\\\[$]0 --fallback-echo"')dnl "
  465. lt_ECHO=\`\$ECHO "X\$lt_ECHO" | \$Xsed -e 's/\\\\\\\\\\\\\\\[$]0 --fallback-echo"\[$]/\[$]0 --fallback-echo"/'\`
  466. ;;
  467. esac
  468. _LT_OUTPUT_LIBTOOL_INIT
  469. ])
  470. # LT_OUTPUT
  471. # ---------
  472. # This macro allows early generation of the libtool script (before
  473. # AC_OUTPUT is called), incase it is used in configure for compilation
  474. # tests.
  475. AC_DEFUN([LT_OUTPUT],
  476. [: ${CONFIG_LT=./config.lt}
  477. AC_MSG_NOTICE([creating $CONFIG_LT])
  478. cat >"$CONFIG_LT" <<_LTEOF
  479. #! $SHELL
  480. # Generated by $as_me.
  481. # Run this file to recreate a libtool stub with the current configuration.
  482. lt_cl_silent=false
  483. SHELL=\${CONFIG_SHELL-$SHELL}
  484. _LTEOF
  485. cat >>"$CONFIG_LT" <<\_LTEOF
  486. AS_SHELL_SANITIZE
  487. _AS_PREPARE
  488. exec AS_MESSAGE_FD>&1
  489. exec AS_MESSAGE_LOG_FD>>config.log
  490. {
  491. echo
  492. AS_BOX([Running $as_me.])
  493. } >&AS_MESSAGE_LOG_FD
  494. lt_cl_help="\
  495. \`$as_me' creates a local libtool stub from the current configuration,
  496. for use in further configure time tests before the real libtool is
  497. generated.
  498. Usage: $[0] [[OPTIONS]]
  499. -h, --help print this help, then exit
  500. -V, --version print version number, then exit
  501. -q, --quiet do not print progress messages
  502. -d, --debug don't remove temporary files
  503. Report bugs to <bug-libtool@gnu.org>."
  504. lt_cl_version="\
  505. m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl
  506. m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION])
  507. configured by $[0], generated by m4_PACKAGE_STRING.
  508. Copyright (C) 2008 Free Software Foundation, Inc.
  509. This config.lt script is free software; the Free Software Foundation
  510. gives unlimited permision to copy, distribute and modify it."
  511. while test $[#] != 0
  512. do
  513. case $[1] in
  514. --version | --v* | -V )
  515. echo "$lt_cl_version"; exit 0 ;;
  516. --help | --h* | -h )
  517. echo "$lt_cl_help"; exit 0 ;;
  518. --debug | --d* | -d )
  519. debug=: ;;
  520. --quiet | --q* | --silent | --s* | -q )
  521. lt_cl_silent=: ;;
  522. -*) AC_MSG_ERROR([unrecognized option: $[1]
  523. Try \`$[0] --help' for more information.]) ;;
  524. *) AC_MSG_ERROR([unrecognized argument: $[1]
  525. Try \`$[0] --help' for more information.]) ;;
  526. esac
  527. shift
  528. done
  529. if $lt_cl_silent; then
  530. exec AS_MESSAGE_FD>/dev/null
  531. fi
  532. _LTEOF
  533. cat >>"$CONFIG_LT" <<_LTEOF
  534. _LT_OUTPUT_LIBTOOL_COMMANDS_INIT
  535. _LTEOF
  536. cat >>"$CONFIG_LT" <<\_LTEOF
  537. AC_MSG_NOTICE([creating $ofile])
  538. _LT_OUTPUT_LIBTOOL_COMMANDS
  539. AS_EXIT(0)
  540. _LTEOF
  541. chmod +x "$CONFIG_LT"
  542. # configure is writing to config.log, but config.lt does its own redirection,
  543. # appending to config.log, which fails on DOS, as config.log is still kept
  544. # open by configure. Here we exec the FD to /dev/null, effectively closing
  545. # config.log, so it can be properly (re)opened and appended to by config.lt.
  546. if test "$no_create" != yes; then
  547. lt_cl_success=:
  548. test "$silent" = yes &&
  549. lt_config_lt_args="$lt_config_lt_args --quiet"
  550. exec AS_MESSAGE_LOG_FD>/dev/null
  551. $SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false
  552. exec AS_MESSAGE_LOG_FD>>config.log
  553. $lt_cl_success || AS_EXIT(1)
  554. fi
  555. ])# LT_OUTPUT
  556. # _LT_CONFIG(TAG)
  557. # ---------------
  558. # If TAG is the built-in tag, create an initial libtool script with a
  559. # default configuration from the untagged config vars. Otherwise add code
  560. # to config.status for appending the configuration named by TAG from the
  561. # matching tagged config vars.
  562. m4_defun([_LT_CONFIG],
  563. [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
  564. _LT_CONFIG_SAVE_COMMANDS([
  565. m4_define([_LT_TAG], m4_if([$1], [], [C], [$1]))dnl
  566. m4_if(_LT_TAG, [C], [
  567. # See if we are running on zsh, and set the options which allow our
  568. # commands through without removal of \ escapes.
  569. if test -n "${ZSH_VERSION+set}" ; then
  570. setopt NO_GLOB_SUBST
  571. fi
  572. cfgfile="${ofile}T"
  573. trap "$RM \"$cfgfile\"; exit 1" 1 2 15
  574. $RM "$cfgfile"
  575. cat <<_LT_EOF >> "$cfgfile"
  576. #! $SHELL
  577. # `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services.
  578. # Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION
  579. # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
  580. # NOTE: Changes made to this file will be lost: look at ltmain.sh.
  581. #
  582. _LT_COPYING
  583. _LT_LIBTOOL_TAGS
  584. # ### BEGIN LIBTOOL CONFIG
  585. _LT_LIBTOOL_CONFIG_VARS
  586. _LT_LIBTOOL_TAG_VARS
  587. # ### END LIBTOOL CONFIG
  588. _LT_EOF
  589. case $host_os in
  590. aix3*)
  591. cat <<\_LT_EOF >> "$cfgfile"
  592. # AIX sometimes has problems with the GCC collect2 program. For some
  593. # reason, if we set the COLLECT_NAMES environment variable, the problems
  594. # vanish in a puff of smoke.
  595. if test "X${COLLECT_NAMES+set}" != Xset; then
  596. COLLECT_NAMES=
  597. export COLLECT_NAMES
  598. fi
  599. _LT_EOF
  600. ;;
  601. esac
  602. _LT_PROG_LTMAIN
  603. # We use sed instead of cat because bash on DJGPP gets confused if
  604. # if finds mixed CR/LF and LF-only lines. Since sed operates in
  605. # text mode, it properly converts lines to CR/LF. This bash problem
  606. # is reportedly fixed, but why not run on old versions too?
  607. sed '/^# Generated shell functions inserted here/q' "$ltmain" >> "$cfgfile" \
  608. || (rm -f "$cfgfile"; exit 1)
  609. _LT_PROG_XSI_SHELLFNS
  610. sed -n '/^# Generated shell functions inserted here/,$p' "$ltmain" >> "$cfgfile" \
  611. || (rm -f "$cfgfile"; exit 1)
  612. mv -f "$cfgfile" "$ofile" ||
  613. (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile")
  614. chmod +x "$ofile"
  615. ],
  616. [cat <<_LT_EOF >> "$ofile"
  617. dnl Unfortunately we have to use $1 here, since _LT_TAG is not expanded
  618. dnl in a comment (ie after a #).
  619. # ### BEGIN LIBTOOL TAG CONFIG: $1
  620. _LT_LIBTOOL_TAG_VARS(_LT_TAG)
  621. # ### END LIBTOOL TAG CONFIG: $1
  622. _LT_EOF
  623. ])dnl /m4_if
  624. ],
  625. [m4_if([$1], [], [
  626. PACKAGE='$PACKAGE'
  627. VERSION='$VERSION'
  628. TIMESTAMP='$TIMESTAMP'
  629. RM='$RM'
  630. ofile='$ofile'], [])
  631. ])dnl /_LT_CONFIG_SAVE_COMMANDS
  632. ])# _LT_CONFIG
  633. # LT_SUPPORTED_TAG(TAG)
  634. # ---------------------
  635. # Trace this macro to discover what tags are supported by the libtool
  636. # --tag option, using:
  637. # autoconf --trace 'LT_SUPPORTED_TAG:$1'
  638. AC_DEFUN([LT_SUPPORTED_TAG], [])
  639. # C support is built-in for now
  640. m4_define([_LT_LANG_C_enabled], [])
  641. m4_define([_LT_TAGS], [])
  642. # LT_LANG(LANG)
  643. # -------------
  644. # Enable libtool support for the given language if not already enabled.
  645. AC_DEFUN([LT_LANG],
  646. [AC_BEFORE([$0], [LT_OUTPUT])dnl
  647. m4_case([$1],
  648. [C], [_LT_LANG(C)],
  649. [C++], [_LT_LANG(CXX)],
  650. [Java], [_LT_LANG(GCJ)],
  651. [Fortran 77], [_LT_LANG(F77)],
  652. [Fortran], [_LT_LANG(FC)],
  653. [Windows Resource], [_LT_LANG(RC)],
  654. [m4_ifdef([_LT_LANG_]$1[_CONFIG],
  655. [_LT_LANG($1)],
  656. [m4_fatal([$0: unsupported language: "$1"])])])dnl
  657. ])# LT_LANG
  658. # _LT_LANG(LANGNAME)
  659. # ------------------
  660. m4_defun([_LT_LANG],
  661. [m4_ifdef([_LT_LANG_]$1[_enabled], [],
  662. [LT_SUPPORTED_TAG([$1])dnl
  663. m4_append([_LT_TAGS], [$1 ])dnl
  664. m4_define([_LT_LANG_]$1[_enabled], [])dnl
  665. _LT_LANG_$1_CONFIG($1)])dnl
  666. ])# _LT_LANG
  667. # _LT_LANG_DEFAULT_CONFIG
  668. # -----------------------
  669. m4_defun([_LT_LANG_DEFAULT_CONFIG],
  670. [AC_PROVIDE_IFELSE([AC_PROG_CXX],
  671. [LT_LANG(CXX)],
  672. [m4_define([AC_PROG_CXX], defn([AC_PROG_CXX])[LT_LANG(CXX)])])
  673. AC_PROVIDE_IFELSE([AC_PROG_F77],
  674. [LT_LANG(F77)],
  675. [m4_define([AC_PROG_F77], defn([AC_PROG_F77])[LT_LANG(F77)])])
  676. AC_PROVIDE_IFELSE([AC_PROG_FC],
  677. [LT_LANG(FC)],
  678. [m4_define([AC_PROG_FC], defn([AC_PROG_FC])[LT_LANG(FC)])])
  679. dnl The call to [A][M_PROG_GCJ] is quoted like that to stop aclocal
  680. dnl pulling things in needlessly.
  681. AC_PROVIDE_IFELSE([AC_PROG_GCJ],
  682. [LT_LANG(GCJ)],
  683. [AC_PROVIDE_IFELSE([A][M_PROG_GCJ],
  684. [LT_LANG(GCJ)],
  685. [AC_PROVIDE_IFELSE([LT_PROG_GCJ],
  686. [LT_LANG(GCJ)],
  687. [m4_ifdef([AC_PROG_GCJ],
  688. [m4_define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[LT_LANG(GCJ)])])
  689. m4_ifdef([A][M_PROG_GCJ],
  690. [m4_define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[LT_LANG(GCJ)])])
  691. m4_ifdef([LT_PROG_GCJ],
  692. [m4_define([LT_PROG_GCJ], defn([LT_PROG_GCJ])[LT_LANG(GCJ)])])])])])
  693. AC_PROVIDE_IFELSE([LT_PROG_RC],
  694. [LT_LANG(RC)],
  695. [m4_define([LT_PROG_RC], defn([LT_PROG_RC])[LT_LANG(RC)])])
  696. ])# _LT_LANG_DEFAULT_CONFIG
  697. # Obsolete macros:
  698. AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)])
  699. AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)])
  700. AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)])
  701. AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)])
  702. dnl aclocal-1.4 backwards compatibility:
  703. dnl AC_DEFUN([AC_LIBTOOL_CXX], [])
  704. dnl AC_DEFUN([AC_LIBTOOL_F77], [])
  705. dnl AC_DEFUN([AC_LIBTOOL_FC], [])
  706. dnl AC_DEFUN([AC_LIBTOOL_GCJ], [])
  707. # _LT_TAG_COMPILER
  708. # ----------------
  709. m4_defun([_LT_TAG_COMPILER],
  710. [AC_REQUIRE([AC_PROG_CC])dnl
  711. _LT_DECL([LTCC], [CC], [1], [A C compiler])dnl
  712. _LT_DECL([LTCFLAGS], [CFLAGS], [1], [LTCC compiler flags])dnl
  713. _LT_TAGDECL([CC], [compiler], [1], [A language specific compiler])dnl
  714. _LT_TAGDECL([with_gcc], [GCC], [0], [Is the compiler the GNU compiler?])dnl
  715. # If no C compiler was specified, use CC.
  716. LTCC=${LTCC-"$CC"}
  717. # If no C compiler flags were specified, use CFLAGS.
  718. LTCFLAGS=${LTCFLAGS-"$CFLAGS"}
  719. # Allow CC to be a program name with arguments.
  720. compiler=$CC
  721. ])# _LT_TAG_COMPILER
  722. # _LT_COMPILER_BOILERPLATE
  723. # ------------------------
  724. # Check for compiler boilerplate output or warnings with
  725. # the simple compiler test code.
  726. m4_defun([_LT_COMPILER_BOILERPLATE],
  727. [m4_require([_LT_DECL_SED])dnl
  728. ac_outfile=conftest.$ac_objext
  729. echo "$lt_simple_compile_test_code" >conftest.$ac_ext
  730. eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err
  731. _lt_compiler_boilerplate=`cat conftest.err`
  732. $RM conftest*
  733. ])# _LT_COMPILER_BOILERPLATE
  734. # _LT_LINKER_BOILERPLATE
  735. # ----------------------
  736. # Check for linker boilerplate output or warnings with
  737. # the simple link test code.
  738. m4_defun([_LT_LINKER_BOILERPLATE],
  739. [m4_require([_LT_DECL_SED])dnl
  740. ac_outfile=conftest.$ac_objext
  741. echo "$lt_simple_link_test_code" >conftest.$ac_ext
  742. eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err
  743. _lt_linker_boilerplate=`cat conftest.err`
  744. $RM -r conftest*
  745. ])# _LT_LINKER_BOILERPLATE
  746. # _LT_REQUIRED_DARWIN_CHECKS
  747. # -------------------------
  748. m4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[
  749. case $host_os in
  750. rhapsody* | darwin*)
  751. AC_CHECK_TOOL([DSYMUTIL], [dsymutil], [:])
  752. AC_CHECK_TOOL([NMEDIT], [nmedit], [:])
  753. AC_CHECK_TOOL([LIPO], [lipo], [:])
  754. AC_CHECK_TOOL([OTOOL], [otool], [:])
  755. AC_CHECK_TOOL([OTOOL64], [otool64], [:])
  756. _LT_DECL([], [DSYMUTIL], [1],
  757. [Tool to manipulate archived DWARF debug symbol files on Mac OS X])
  758. _LT_DECL([], [NMEDIT], [1],
  759. [Tool to change global to local symbols on Mac OS X])
  760. _LT_DECL([], [LIPO], [1],
  761. [Tool to manipulate fat objects and archives on Mac OS X])
  762. _LT_DECL([], [OTOOL], [1],
  763. [ldd/readelf like tool for Mach-O binaries on Mac OS X])
  764. _LT_DECL([], [OTOOL64], [1],
  765. [ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4])
  766. AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod],
  767. [lt_cv_apple_cc_single_mod=no
  768. if test -z "${LT_MULTI_MODULE}"; then
  769. # By default we will add the -single_module flag. You can override
  770. # by either setting the environment variable LT_MULTI_MODULE
  771. # non-empty at configure time, or by adding -multi_module to the
  772. # link flags.
  773. rm -rf libconftest.dylib*
  774. echo "int foo(void){return 1;}" > conftest.c
  775. echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \
  776. -dynamiclib -Wl,-single_module conftest.c" >&AS_MESSAGE_LOG_FD
  777. $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \
  778. -dynamiclib -Wl,-single_module conftest.c 2>conftest.err
  779. _lt_result=$?
  780. if test -f libconftest.dylib && test ! -s conftest.err && test $_lt_result = 0; then
  781. lt_cv_apple_cc_single_mod=yes
  782. else
  783. cat conftest.err >&AS_MESSAGE_LOG_FD
  784. fi
  785. rm -rf libconftest.dylib*
  786. rm -f conftest.*
  787. fi])
  788. AC_CACHE_CHECK([for -exported_symbols_list linker flag],
  789. [lt_cv_ld_exported_symbols_list],
  790. [lt_cv_ld_exported_symbols_list=no
  791. save_LDFLAGS=$LDFLAGS
  792. echo "_main" > conftest.sym
  793. LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym"
  794. AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])],
  795. [lt_cv_ld_exported_symbols_list=yes],
  796. [lt_cv_ld_exported_symbols_list=no])
  797. LDFLAGS="$save_LDFLAGS"
  798. ])
  799. case $host_os in
  800. rhapsody* | darwin1.[[012]])
  801. _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;;
  802. darwin1.*)
  803. _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;;
  804. darwin*) # darwin 5.x on
  805. # if running on 10.5 or later, the deployment target defaults
  806. # to the OS version, if on x86, and 10.4, the deployment
  807. # target defaults to 10.4. Don't you love it?
  808. case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in
  809. 10.0,*86*-darwin8*|10.0,*-darwin[[91]]*)
  810. _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;;
  811. 10.[[012]]*)
  812. _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;;
  813. 10.*)
  814. _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;;
  815. esac
  816. ;;
  817. esac
  818. if test "$lt_cv_apple_cc_single_mod" = "yes"; then
  819. _lt_dar_single_mod='$single_module'
  820. fi
  821. if test "$lt_cv_ld_exported_symbols_list" = "yes"; then
  822. _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym'
  823. else
  824. _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}'
  825. fi
  826. if test "$DSYMUTIL" != ":"; then
  827. _lt_dsymutil='~$DSYMUTIL $lib || :'
  828. else
  829. _lt_dsymutil=
  830. fi
  831. ;;
  832. esac
  833. ])
  834. # _LT_DARWIN_LINKER_FEATURES
  835. # --------------------------
  836. # Checks for linker and compiler features on darwin
  837. m4_defun([_LT_DARWIN_LINKER_FEATURES],
  838. [
  839. m4_require([_LT_REQUIRED_DARWIN_CHECKS])
  840. _LT_TAGVAR(archive_cmds_need_lc, $1)=no
  841. _LT_TAGVAR(hardcode_direct, $1)=no
  842. _LT_TAGVAR(hardcode_automatic, $1)=yes
  843. _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
  844. _LT_TAGVAR(whole_archive_flag_spec, $1)=''
  845. _LT_TAGVAR(link_all_deplibs, $1)=yes
  846. _LT_TAGVAR(allow_undefined_flag, $1)="$_lt_dar_allow_undefined"
  847. case $cc_basename in
  848. ifort*) _lt_dar_can_shared=yes ;;
  849. *) _lt_dar_can_shared=$GCC ;;
  850. esac
  851. if test "$_lt_dar_can_shared" = "yes"; then
  852. output_verbose_link_cmd=echo
  853. _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}"
  854. _LT_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}"
  855. _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}"
  856. _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}"
  857. m4_if([$1], [CXX],
  858. [ if test "$lt_cv_apple_cc_single_mod" != "yes"; then
  859. _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}"
  860. _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}"
  861. fi
  862. ],[])
  863. else
  864. _LT_TAGVAR(ld_shlibs, $1)=no
  865. fi
  866. ])
  867. # _LT_SYS_MODULE_PATH_AIX
  868. # -----------------------
  869. # Links a minimal program and checks the executable
  870. # for the system default hardcoded library path. In most cases,
  871. # this is /usr/lib:/lib, but when the MPI compilers are used
  872. # the location of the communication and MPI libs are included too.
  873. # If we don't find anything, use the default library path according
  874. # to the aix ld manual.
  875. m4_defun([_LT_SYS_MODULE_PATH_AIX],
  876. [m4_require([_LT_DECL_SED])dnl
  877. AC_LINK_IFELSE(AC_LANG_PROGRAM,[
  878. lt_aix_libpath_sed='
  879. /Import File Strings/,/^$/ {
  880. /^0/ {
  881. s/^0 *\(.*\)$/\1/
  882. p
  883. }
  884. }'
  885. aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
  886. # Check for a 64-bit object if we didn't find anything.
  887. if test -z "$aix_libpath"; then
  888. aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
  889. fi],[])
  890. if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
  891. ])# _LT_SYS_MODULE_PATH_AIX
  892. # _LT_SHELL_INIT(ARG)
  893. # -------------------
  894. m4_define([_LT_SHELL_INIT],
  895. [ifdef([AC_DIVERSION_NOTICE],
  896. [AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)],
  897. [AC_DIVERT_PUSH(NOTICE)])
  898. $1
  899. AC_DIVERT_POP
  900. ])# _LT_SHELL_INIT
  901. # _LT_PROG_ECHO_BACKSLASH
  902. # -----------------------
  903. # Add some code to the start of the generated configure script which
  904. # will find an echo command which doesn't interpret backslashes.
  905. m4_defun([_LT_PROG_ECHO_BACKSLASH],
  906. [_LT_SHELL_INIT([
  907. # Check that we are running under the correct shell.
  908. SHELL=${CONFIG_SHELL-/bin/sh}
  909. case X$lt_ECHO in
  910. X*--fallback-echo)
  911. # Remove one level of quotation (which was required for Make).
  912. ECHO=`echo "$lt_ECHO" | sed 's,\\\\\[$]\\[$]0,'[$]0','`
  913. ;;
  914. esac
  915. ECHO=${lt_ECHO-echo}
  916. if test "X[$]1" = X--no-reexec; then
  917. # Discard the --no-reexec flag, and continue.
  918. shift
  919. elif test "X[$]1" = X--fallback-echo; then
  920. # Avoid inline document here, it may be left over
  921. :
  922. elif test "X`{ $ECHO '\t'; } 2>/dev/null`" = 'X\t' ; then
  923. # Yippee, $ECHO works!
  924. :
  925. else
  926. # Restart under the correct shell.
  927. exec $SHELL "[$]0" --no-reexec ${1+"[$]@"}
  928. fi
  929. if test "X[$]1" = X--fallback-echo; then
  930. # used as fallback echo
  931. shift
  932. cat <<_LT_EOF
  933. [$]*
  934. _LT_EOF
  935. exit 0
  936. fi
  937. # The HP-UX ksh and POSIX shell print the target directory to stdout
  938. # if CDPATH is set.
  939. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
  940. if test -z "$lt_ECHO"; then
  941. if test "X${echo_test_string+set}" != Xset; then
  942. # find a string as large as possible, as long as the shell can cope with it
  943. for cmd in 'sed 50q "[$]0"' 'sed 20q "[$]0"' 'sed 10q "[$]0"' 'sed 2q "[$]0"' 'echo test'; do
  944. # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ...
  945. if { echo_test_string=`eval $cmd`; } 2>/dev/null &&
  946. { test "X$echo_test_string" = "X$echo_test_string"; } 2>/dev/null
  947. then
  948. break
  949. fi
  950. done
  951. fi
  952. if test "X`{ $ECHO '\t'; } 2>/dev/null`" = 'X\t' &&
  953. echo_testing_string=`{ $ECHO "$echo_test_string"; } 2>/dev/null` &&
  954. test "X$echo_testing_string" = "X$echo_test_string"; then
  955. :
  956. else
  957. # The Solaris, AIX, and Digital Unix default echo programs unquote
  958. # backslashes. This makes it impossible to quote backslashes using
  959. # echo "$something" | sed 's/\\/\\\\/g'
  960. #
  961. # So, first we look for a working echo in the user's PATH.
  962. lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
  963. for dir in $PATH /usr/ucb; do
  964. IFS="$lt_save_ifs"
  965. if (test -f $dir/echo || test -f $dir/echo$ac_exeext) &&
  966. test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' &&
  967. echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` &&
  968. test "X$echo_testing_string" = "X$echo_test_string"; then
  969. ECHO="$dir/echo"
  970. break
  971. fi
  972. done
  973. IFS="$lt_save_ifs"
  974. if test "X$ECHO" = Xecho; then
  975. # We didn't find a better echo, so look for alternatives.
  976. if test "X`{ print -r '\t'; } 2>/dev/null`" = 'X\t' &&
  977. echo_testing_string=`{ print -r "$echo_test_string"; } 2>/dev/null` &&
  978. test "X$echo_testing_string" = "X$echo_test_string"; then
  979. # This shell has a builtin print -r that does the trick.
  980. ECHO='print -r'
  981. elif { test -f /bin/ksh || test -f /bin/ksh$ac_exeext; } &&
  982. test "X$CONFIG_SHELL" != X/bin/ksh; then
  983. # If we have ksh, try running configure again with it.
  984. ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
  985. export ORIGINAL_CONFIG_SHELL
  986. CONFIG_SHELL=/bin/ksh
  987. export CONFIG_SHELL
  988. exec $CONFIG_SHELL "[$]0" --no-reexec ${1+"[$]@"}
  989. else
  990. # Try using printf.
  991. ECHO='printf %s\n'
  992. if test "X`{ $ECHO '\t'; } 2>/dev/null`" = 'X\t' &&
  993. echo_testing_string=`{ $ECHO "$echo_test_string"; } 2>/dev/null` &&
  994. test "X$echo_testing_string" = "X$echo_test_string"; then
  995. # Cool, printf works
  996. :
  997. elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` &&
  998. test "X$echo_testing_string" = 'X\t' &&
  999. echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
  1000. test "X$echo_testing_string" = "X$echo_test_string"; then
  1001. CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL
  1002. export CONFIG_SHELL
  1003. SHELL="$CONFIG_SHELL"
  1004. export SHELL
  1005. ECHO="$CONFIG_SHELL [$]0 --fallback-echo"
  1006. elif echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` &&
  1007. test "X$echo_testing_string" = 'X\t' &&
  1008. echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
  1009. test "X$echo_testing_string" = "X$echo_test_string"; then
  1010. ECHO="$CONFIG_SHELL [$]0 --fallback-echo"
  1011. else
  1012. # maybe with a smaller string...
  1013. prev=:
  1014. for cmd in 'echo test' 'sed 2q "[$]0"' 'sed 10q "[$]0"' 'sed 20q "[$]0"' 'sed 50q "[$]0"'; do
  1015. if { test "X$echo_test_string" = "X`eval $cmd`"; } 2>/dev/null
  1016. then
  1017. break
  1018. fi
  1019. prev="$cmd"
  1020. done
  1021. if test "$prev" != 'sed 50q "[$]0"'; then
  1022. echo_test_string=`eval $prev`
  1023. export echo_test_string
  1024. exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "[$]0" ${1+"[$]@"}
  1025. else
  1026. # Oops. We lost completely, so just stick with echo.
  1027. ECHO=echo
  1028. fi
  1029. fi
  1030. fi
  1031. fi
  1032. fi
  1033. fi
  1034. # Copy echo and quote the copy suitably for passing to libtool from
  1035. # the Makefile, instead of quoting the original, which is used later.
  1036. lt_ECHO=$ECHO
  1037. if test "X$lt_ECHO" = "X$CONFIG_SHELL [$]0 --fallback-echo"; then
  1038. lt_ECHO="$CONFIG_SHELL \\\$\[$]0 --fallback-echo"
  1039. fi
  1040. AC_SUBST(lt_ECHO)
  1041. ])
  1042. _LT_DECL([], [SHELL], [1], [Shell to use when invoking shell scripts])
  1043. _LT_DECL([], [ECHO], [1],
  1044. [An echo program that does not interpret backslashes])
  1045. ])# _LT_PROG_ECHO_BACKSLASH
  1046. # _LT_ENABLE_LOCK
  1047. # ---------------
  1048. m4_defun([_LT_ENABLE_LOCK],
  1049. [AC_ARG_ENABLE([libtool-lock],
  1050. [AS_HELP_STRING([--disable-libtool-lock],
  1051. [avoid locking (might break parallel builds)])])
  1052. test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes
  1053. # Some flags need to be propagated to the compiler or linker for good
  1054. # libtool support.
  1055. case $host in
  1056. ia64-*-hpux*)
  1057. # Find out which ABI we are using.
  1058. echo 'int i;' > conftest.$ac_ext
  1059. if AC_TRY_EVAL(ac_compile); then
  1060. case `/usr/bin/file conftest.$ac_objext` in
  1061. *ELF-32*)
  1062. HPUX_IA64_MODE="32"
  1063. ;;
  1064. *ELF-64*)
  1065. HPUX_IA64_MODE="64"
  1066. ;;
  1067. esac
  1068. fi
  1069. rm -rf conftest*
  1070. ;;
  1071. *-*-irix6*)
  1072. # Find out which ABI we are using.
  1073. echo '[#]line __oline__ "configure"' > conftest.$ac_ext
  1074. if AC_TRY_EVAL(ac_compile); then
  1075. if test "$lt_cv_prog_gnu_ld" = yes; then
  1076. case `/usr/bin/file conftest.$ac_objext` in
  1077. *32-bit*)
  1078. LD="${LD-ld} -melf32bsmip"
  1079. ;;
  1080. *N32*)
  1081. LD="${LD-ld} -melf32bmipn32"
  1082. ;;
  1083. *64-bit*)
  1084. LD="${LD-ld} -melf64bmip"
  1085. ;;
  1086. esac
  1087. else
  1088. case `/usr/bin/file conftest.$ac_objext` in
  1089. *32-bit*)
  1090. LD="${LD-ld} -32"
  1091. ;;
  1092. *N32*)
  1093. LD="${LD-ld} -n32"
  1094. ;;
  1095. *64-bit*)
  1096. LD="${LD-ld} -64"
  1097. ;;
  1098. esac
  1099. fi
  1100. fi
  1101. rm -rf conftest*
  1102. ;;
  1103. x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \
  1104. s390*-*linux*|s390*-*tpf*|sparc*-*linux*)
  1105. # Find out which ABI we are using.
  1106. echo 'int i;' > conftest.$ac_ext
  1107. if AC_TRY_EVAL(ac_compile); then
  1108. case `/usr/bin/file conftest.o` in
  1109. *32-bit*)
  1110. case $host in
  1111. x86_64-*kfreebsd*-gnu)
  1112. LD="${LD-ld} -m elf_i386_fbsd"
  1113. ;;
  1114. x86_64-*linux*)
  1115. LD="${LD-ld} -m elf_i386"
  1116. ;;
  1117. ppc64-*linux*|powerpc64-*linux*)
  1118. LD="${LD-ld} -m elf32ppclinux"
  1119. ;;
  1120. s390x-*linux*)
  1121. LD="${LD-ld} -m elf_s390"
  1122. ;;
  1123. sparc64-*linux*)
  1124. LD="${LD-ld} -m elf32_sparc"
  1125. ;;
  1126. esac
  1127. ;;
  1128. *64-bit*)
  1129. case $host in
  1130. x86_64-*kfreebsd*-gnu)
  1131. LD="${LD-ld} -m elf_x86_64_fbsd"
  1132. ;;
  1133. x86_64-*linux*)
  1134. LD="${LD-ld} -m elf_x86_64"
  1135. ;;
  1136. ppc*-*linux*|powerpc*-*linux*)
  1137. LD="${LD-ld} -m elf64ppc"
  1138. ;;
  1139. s390*-*linux*|s390*-*tpf*)
  1140. LD="${LD-ld} -m elf64_s390"
  1141. ;;
  1142. sparc*-*linux*)
  1143. LD="${LD-ld} -m elf64_sparc"
  1144. ;;
  1145. esac
  1146. ;;
  1147. esac
  1148. fi
  1149. rm -rf conftest*
  1150. ;;
  1151. *-*-sco3.2v5*)
  1152. # On SCO OpenServer 5, we need -belf to get full-featured binaries.
  1153. SAVE_CFLAGS="$CFLAGS"
  1154. CFLAGS="$CFLAGS -belf"
  1155. AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf,
  1156. [AC_LANG_PUSH(C)
  1157. AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no])
  1158. AC_LANG_POP])
  1159. if test x"$lt_cv_cc_needs_belf" != x"yes"; then
  1160. # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf
  1161. CFLAGS="$SAVE_CFLAGS"
  1162. fi
  1163. ;;
  1164. sparc*-*solaris*)
  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. *64-bit*)
  1170. case $lt_cv_prog_gnu_ld in
  1171. yes*) LD="${LD-ld} -m elf64_sparc" ;;
  1172. *)
  1173. if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then
  1174. LD="${LD-ld} -64"
  1175. fi
  1176. ;;
  1177. esac
  1178. ;;
  1179. esac
  1180. fi
  1181. rm -rf conftest*
  1182. ;;
  1183. esac
  1184. need_locks="$enable_libtool_lock"
  1185. ])# _LT_ENABLE_LOCK
  1186. # _LT_CMD_OLD_ARCHIVE
  1187. # -------------------
  1188. m4_defun([_LT_CMD_OLD_ARCHIVE],
  1189. [AC_CHECK_TOOL(AR, ar, false)
  1190. test -z "$AR" && AR=ar
  1191. test -z "$AR_FLAGS" && AR_FLAGS=cru
  1192. _LT_DECL([], [AR], [1], [The archiver])
  1193. _LT_DECL([], [AR_FLAGS], [1])
  1194. AC_CHECK_TOOL(STRIP, strip, :)
  1195. test -z "$STRIP" && STRIP=:
  1196. _LT_DECL([], [STRIP], [1], [A symbol stripping program])
  1197. AC_CHECK_TOOL(RANLIB, ranlib, :)
  1198. test -z "$RANLIB" && RANLIB=:
  1199. _LT_DECL([], [RANLIB], [1],
  1200. [Commands used to install an old-style archive])
  1201. # Determine commands to create old-style static archives.
  1202. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs'
  1203. old_postinstall_cmds='chmod 644 $oldlib'
  1204. old_postuninstall_cmds=
  1205. if test -n "$RANLIB"; then
  1206. case $host_os in
  1207. openbsd*)
  1208. old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib"
  1209. ;;
  1210. *)
  1211. old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib"
  1212. ;;
  1213. esac
  1214. old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib"
  1215. fi
  1216. _LT_DECL([], [old_postinstall_cmds], [2])
  1217. _LT_DECL([], [old_postuninstall_cmds], [2])
  1218. _LT_TAGDECL([], [old_archive_cmds], [2],
  1219. [Commands used to build an old-style archive])
  1220. ])# _LT_CMD_OLD_ARCHIVE
  1221. # _LT_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS,
  1222. # [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE])
  1223. # ----------------------------------------------------------------
  1224. # Check whether the given compiler option works
  1225. AC_DEFUN([_LT_COMPILER_OPTION],
  1226. [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
  1227. m4_require([_LT_DECL_SED])dnl
  1228. AC_CACHE_CHECK([$1], [$2],
  1229. [$2=no
  1230. m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4])
  1231. echo "$lt_simple_compile_test_code" > conftest.$ac_ext
  1232. lt_compiler_flag="$3"
  1233. # Insert the option either (1) after the last *FLAGS variable, or
  1234. # (2) before a word containing "conftest.", or (3) at the end.
  1235. # Note that $ac_compile itself does not contain backslashes and begins
  1236. # with a dollar sign (not a hyphen), so the echo should work correctly.
  1237. # The option is referenced via a variable to avoid confusing sed.
  1238. lt_compile=`echo "$ac_compile" | $SED \
  1239. -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
  1240. -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \
  1241. -e 's:$: $lt_compiler_flag:'`
  1242. (eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD)
  1243. (eval "$lt_compile" 2>conftest.err)
  1244. ac_status=$?
  1245. cat conftest.err >&AS_MESSAGE_LOG_FD
  1246. echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
  1247. if (exit $ac_status) && test -s "$ac_outfile"; then
  1248. # The compiler can only warn and ignore the option if not recognized
  1249. # So say no if there are warnings other than the usual output.
  1250. $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp
  1251. $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
  1252. if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then
  1253. $2=yes
  1254. fi
  1255. fi
  1256. $RM conftest*
  1257. ])
  1258. if test x"[$]$2" = xyes; then
  1259. m4_if([$5], , :, [$5])
  1260. else
  1261. m4_if([$6], , :, [$6])
  1262. fi
  1263. ])# _LT_COMPILER_OPTION
  1264. # Old name:
  1265. AU_ALIAS([AC_LIBTOOL_COMPILER_OPTION], [_LT_COMPILER_OPTION])
  1266. dnl aclocal-1.4 backwards compatibility:
  1267. dnl AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [])
  1268. # _LT_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS,
  1269. # [ACTION-SUCCESS], [ACTION-FAILURE])
  1270. # ----------------------------------------------------
  1271. # Check whether the given linker option works
  1272. AC_DEFUN([_LT_LINKER_OPTION],
  1273. [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
  1274. m4_require([_LT_DECL_SED])dnl
  1275. AC_CACHE_CHECK([$1], [$2],
  1276. [$2=no
  1277. save_LDFLAGS="$LDFLAGS"
  1278. LDFLAGS="$LDFLAGS $3"
  1279. echo "$lt_simple_link_test_code" > conftest.$ac_ext
  1280. if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then
  1281. # The linker can only warn and ignore the option if not recognized
  1282. # So say no if there are warnings
  1283. if test -s conftest.err; then
  1284. # Append any errors to the config.log.
  1285. cat conftest.err 1>&AS_MESSAGE_LOG_FD
  1286. $ECHO "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp
  1287. $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
  1288. if diff conftest.exp conftest.er2 >/dev/null; then
  1289. $2=yes
  1290. fi
  1291. else
  1292. $2=yes
  1293. fi
  1294. fi
  1295. $RM -r conftest*
  1296. LDFLAGS="$save_LDFLAGS"
  1297. ])
  1298. if test x"[$]$2" = xyes; then
  1299. m4_if([$4], , :, [$4])
  1300. else
  1301. m4_if([$5], , :, [$5])
  1302. fi
  1303. ])# _LT_LINKER_OPTION
  1304. # Old name:
  1305. AU_ALIAS([AC_LIBTOOL_LINKER_OPTION], [_LT_LINKER_OPTION])
  1306. dnl aclocal-1.4 backwards compatibility:
  1307. dnl AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], [])
  1308. # LT_CMD_MAX_LEN
  1309. #---------------
  1310. AC_DEFUN([LT_CMD_MAX_LEN],
  1311. [AC_REQUIRE([AC_CANONICAL_HOST])dnl
  1312. # find the maximum length of command line arguments
  1313. AC_MSG_CHECKING([the maximum length of command line arguments])
  1314. AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl
  1315. i=0
  1316. teststring="ABCD"
  1317. case $build_os in
  1318. msdosdjgpp*)
  1319. # On DJGPP, this test can blow up pretty badly due to problems in libc
  1320. # (any single argument exceeding 2000 bytes causes a buffer overrun
  1321. # during glob expansion). Even if it were fixed, the result of this
  1322. # check would be larger than it should be.
  1323. lt_cv_sys_max_cmd_len=12288; # 12K is about right
  1324. ;;
  1325. gnu*)
  1326. # Under GNU Hurd, this test is not required because there is
  1327. # no limit to the length of command line arguments.
  1328. # Libtool will interpret -1 as no limit whatsoever
  1329. lt_cv_sys_max_cmd_len=-1;
  1330. ;;
  1331. cygwin* | mingw* | cegcc*)
  1332. # On Win9x/ME, this test blows up -- it succeeds, but takes
  1333. # about 5 minutes as the teststring grows exponentially.
  1334. # Worse, since 9x/ME are not pre-emptively multitasking,
  1335. # you end up with a "frozen" computer, even though with patience
  1336. # the test eventually succeeds (with a max line length of 256k).
  1337. # Instead, let's just punt: use the minimum linelength reported by
  1338. # all of the supported platforms: 8192 (on NT/2K/XP).
  1339. lt_cv_sys_max_cmd_len=8192;
  1340. ;;
  1341. amigaos*)
  1342. # On AmigaOS with pdksh, this test takes hours, literally.
  1343. # So we just punt and use a minimum line length of 8192.
  1344. lt_cv_sys_max_cmd_len=8192;
  1345. ;;
  1346. netbsd* | freebsd* | openbsd* | darwin* | dragonfly*)
  1347. # This has been around since 386BSD, at least. Likely further.
  1348. if test -x /sbin/sysctl; then
  1349. lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax`
  1350. elif test -x /usr/sbin/sysctl; then
  1351. lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax`
  1352. else
  1353. lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs
  1354. fi
  1355. # And add a safety zone
  1356. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
  1357. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
  1358. ;;
  1359. interix*)
  1360. # We know the value 262144 and hardcode it with a safety zone (like BSD)
  1361. lt_cv_sys_max_cmd_len=196608
  1362. ;;
  1363. osf*)
  1364. # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure
  1365. # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not
  1366. # nice to cause kernel panics so lets avoid the loop below.
  1367. # First set a reasonable default.
  1368. lt_cv_sys_max_cmd_len=16384
  1369. #
  1370. if test -x /sbin/sysconfig; then
  1371. case `/sbin/sysconfig -q proc exec_disable_arg_limit` in
  1372. *1*) lt_cv_sys_max_cmd_len=-1 ;;
  1373. esac
  1374. fi
  1375. ;;
  1376. sco3.2v5*)
  1377. lt_cv_sys_max_cmd_len=102400
  1378. ;;
  1379. sysv5* | sco5v6* | sysv4.2uw2*)
  1380. kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null`
  1381. if test -n "$kargmax"; then
  1382. lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'`
  1383. else
  1384. lt_cv_sys_max_cmd_len=32768
  1385. fi
  1386. ;;
  1387. *)
  1388. lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null`
  1389. if test -n "$lt_cv_sys_max_cmd_len"; then
  1390. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
  1391. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
  1392. else
  1393. # Make teststring a little bigger before we do anything with it.
  1394. # a 1K string should be a reasonable start.
  1395. for i in 1 2 3 4 5 6 7 8 ; do
  1396. teststring=$teststring$teststring
  1397. done
  1398. SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}}
  1399. # If test is not a shell built-in, we'll probably end up computing a
  1400. # maximum length that is only half of the actual maximum length, but
  1401. # we can't tell.
  1402. while { test "X"`$SHELL [$]0 --fallback-echo "X$teststring$teststring" 2>/dev/null` \
  1403. = "XX$teststring$teststring"; } >/dev/null 2>&1 &&
  1404. test $i != 17 # 1/2 MB should be enough
  1405. do
  1406. i=`expr $i + 1`
  1407. teststring=$teststring$teststring
  1408. done
  1409. # Only check the string length outside the loop.
  1410. lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1`
  1411. teststring=
  1412. # Add a significant safety factor because C++ compilers can tack on
  1413. # massive amounts of additional arguments before passing them to the
  1414. # linker. It appears as though 1/2 is a usable value.
  1415. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2`
  1416. fi
  1417. ;;
  1418. esac
  1419. ])
  1420. if test -n $lt_cv_sys_max_cmd_len ; then
  1421. AC_MSG_RESULT($lt_cv_sys_max_cmd_len)
  1422. else
  1423. AC_MSG_RESULT(none)
  1424. fi
  1425. max_cmd_len=$lt_cv_sys_max_cmd_len
  1426. _LT_DECL([], [max_cmd_len], [0],
  1427. [What is the maximum length of a command?])
  1428. ])# LT_CMD_MAX_LEN
  1429. # Old name:
  1430. AU_ALIAS([AC_LIBTOOL_SYS_MAX_CMD_LEN], [LT_CMD_MAX_LEN])
  1431. dnl aclocal-1.4 backwards compatibility:
  1432. dnl AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [])
  1433. # _LT_HEADER_DLFCN
  1434. # ----------------
  1435. m4_defun([_LT_HEADER_DLFCN],
  1436. [AC_CHECK_HEADERS([dlfcn.h], [], [], [AC_INCLUDES_DEFAULT])dnl
  1437. ])# _LT_HEADER_DLFCN
  1438. # _LT_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE,
  1439. # ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING)
  1440. # ----------------------------------------------------------------
  1441. m4_defun([_LT_TRY_DLOPEN_SELF],
  1442. [m4_require([_LT_HEADER_DLFCN])dnl
  1443. if test "$cross_compiling" = yes; then :
  1444. [$4]
  1445. else
  1446. lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
  1447. lt_status=$lt_dlunknown
  1448. cat > conftest.$ac_ext <<_LT_EOF
  1449. [#line __oline__ "configure"
  1450. #include "confdefs.h"
  1451. #if HAVE_DLFCN_H
  1452. #include <dlfcn.h>
  1453. #endif
  1454. #include <stdio.h>
  1455. #ifdef RTLD_GLOBAL
  1456. # define LT_DLGLOBAL RTLD_GLOBAL
  1457. #else
  1458. # ifdef DL_GLOBAL
  1459. # define LT_DLGLOBAL DL_GLOBAL
  1460. # else
  1461. # define LT_DLGLOBAL 0
  1462. # endif
  1463. #endif
  1464. /* We may have to define LT_DLLAZY_OR_NOW in the command line if we
  1465. find out it does not work in some platform. */
  1466. #ifndef LT_DLLAZY_OR_NOW
  1467. # ifdef RTLD_LAZY
  1468. # define LT_DLLAZY_OR_NOW RTLD_LAZY
  1469. # else
  1470. # ifdef DL_LAZY
  1471. # define LT_DLLAZY_OR_NOW DL_LAZY
  1472. # else
  1473. # ifdef RTLD_NOW
  1474. # define LT_DLLAZY_OR_NOW RTLD_NOW
  1475. # else
  1476. # ifdef DL_NOW
  1477. # define LT_DLLAZY_OR_NOW DL_NOW
  1478. # else
  1479. # define LT_DLLAZY_OR_NOW 0
  1480. # endif
  1481. # endif
  1482. # endif
  1483. # endif
  1484. #endif
  1485. void fnord() { int i=42;}
  1486. int main ()
  1487. {
  1488. void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW);
  1489. int status = $lt_dlunknown;
  1490. if (self)
  1491. {
  1492. if (dlsym (self,"fnord")) status = $lt_dlno_uscore;
  1493. else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore;
  1494. /* dlclose (self); */
  1495. }
  1496. else
  1497. puts (dlerror ());
  1498. return status;
  1499. }]
  1500. _LT_EOF
  1501. if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then
  1502. (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null
  1503. lt_status=$?
  1504. case x$lt_status in
  1505. x$lt_dlno_uscore) $1 ;;
  1506. x$lt_dlneed_uscore) $2 ;;
  1507. x$lt_dlunknown|x*) $3 ;;
  1508. esac
  1509. else :
  1510. # compilation failed
  1511. $3
  1512. fi
  1513. fi
  1514. rm -fr conftest*
  1515. ])# _LT_TRY_DLOPEN_SELF
  1516. # LT_SYS_DLOPEN_SELF
  1517. # ------------------
  1518. AC_DEFUN([LT_SYS_DLOPEN_SELF],
  1519. [m4_require([_LT_HEADER_DLFCN])dnl
  1520. if test "x$enable_dlopen" != xyes; then
  1521. enable_dlopen=unknown
  1522. enable_dlopen_self=unknown
  1523. enable_dlopen_self_static=unknown
  1524. else
  1525. lt_cv_dlopen=no
  1526. lt_cv_dlopen_libs=
  1527. case $host_os in
  1528. beos*)
  1529. lt_cv_dlopen="load_add_on"
  1530. lt_cv_dlopen_libs=
  1531. lt_cv_dlopen_self=yes
  1532. ;;
  1533. mingw* | pw32* | cegcc*)
  1534. lt_cv_dlopen="LoadLibrary"
  1535. lt_cv_dlopen_libs=
  1536. ;;
  1537. cygwin*)
  1538. lt_cv_dlopen="dlopen"
  1539. lt_cv_dlopen_libs=
  1540. ;;
  1541. darwin*)
  1542. # if libdl is installed we need to link against it
  1543. AC_CHECK_LIB([dl], [dlopen],
  1544. [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[
  1545. lt_cv_dlopen="dyld"
  1546. lt_cv_dlopen_libs=
  1547. lt_cv_dlopen_self=yes
  1548. ])
  1549. ;;
  1550. *)
  1551. AC_CHECK_FUNC([shl_load],
  1552. [lt_cv_dlopen="shl_load"],
  1553. [AC_CHECK_LIB([dld], [shl_load],
  1554. [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"],
  1555. [AC_CHECK_FUNC([dlopen],
  1556. [lt_cv_dlopen="dlopen"],
  1557. [AC_CHECK_LIB([dl], [dlopen],
  1558. [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],
  1559. [AC_CHECK_LIB([svld], [dlopen],
  1560. [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"],
  1561. [AC_CHECK_LIB([dld], [dld_link],
  1562. [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"])
  1563. ])
  1564. ])
  1565. ])
  1566. ])
  1567. ])
  1568. ;;
  1569. esac
  1570. if test "x$lt_cv_dlopen" != xno; then
  1571. enable_dlopen=yes
  1572. else
  1573. enable_dlopen=no
  1574. fi
  1575. case $lt_cv_dlopen in
  1576. dlopen)
  1577. save_CPPFLAGS="$CPPFLAGS"
  1578. test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H"
  1579. save_LDFLAGS="$LDFLAGS"
  1580. wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\"
  1581. save_LIBS="$LIBS"
  1582. LIBS="$lt_cv_dlopen_libs $LIBS"
  1583. AC_CACHE_CHECK([whether a program can dlopen itself],
  1584. lt_cv_dlopen_self, [dnl
  1585. _LT_TRY_DLOPEN_SELF(
  1586. lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes,
  1587. lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross)
  1588. ])
  1589. if test "x$lt_cv_dlopen_self" = xyes; then
  1590. wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\"
  1591. AC_CACHE_CHECK([whether a statically linked program can dlopen itself],
  1592. lt_cv_dlopen_self_static, [dnl
  1593. _LT_TRY_DLOPEN_SELF(
  1594. lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes,
  1595. lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross)
  1596. ])
  1597. fi
  1598. CPPFLAGS="$save_CPPFLAGS"
  1599. LDFLAGS="$save_LDFLAGS"
  1600. LIBS="$save_LIBS"
  1601. ;;
  1602. esac
  1603. case $lt_cv_dlopen_self in
  1604. yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;;
  1605. *) enable_dlopen_self=unknown ;;
  1606. esac
  1607. case $lt_cv_dlopen_self_static in
  1608. yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;;
  1609. *) enable_dlopen_self_static=unknown ;;
  1610. esac
  1611. fi
  1612. _LT_DECL([dlopen_support], [enable_dlopen], [0],
  1613. [Whether dlopen is supported])
  1614. _LT_DECL([dlopen_self], [enable_dlopen_self], [0],
  1615. [Whether dlopen of programs is supported])
  1616. _LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0],
  1617. [Whether dlopen of statically linked programs is supported])
  1618. ])# LT_SYS_DLOPEN_SELF
  1619. # Old name:
  1620. AU_ALIAS([AC_LIBTOOL_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF])
  1621. dnl aclocal-1.4 backwards compatibility:
  1622. dnl AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [])
  1623. # _LT_COMPILER_C_O([TAGNAME])
  1624. # ---------------------------
  1625. # Check to see if options -c and -o are simultaneously supported by compiler.
  1626. # This macro does not hard code the compiler like AC_PROG_CC_C_O.
  1627. m4_defun([_LT_COMPILER_C_O],
  1628. [m4_require([_LT_DECL_SED])dnl
  1629. m4_require([_LT_FILEUTILS_DEFAULTS])dnl
  1630. m4_require([_LT_TAG_COMPILER])dnl
  1631. AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext],
  1632. [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)],
  1633. [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no
  1634. $RM -r conftest 2>/dev/null
  1635. mkdir conftest
  1636. cd conftest
  1637. mkdir out
  1638. echo "$lt_simple_compile_test_code" > conftest.$ac_ext
  1639. lt_compiler_flag="-o out/conftest2.$ac_objext"
  1640. # Insert the option either (1) after the last *FLAGS variable, or
  1641. # (2) before a word containing "conftest.", or (3) at the end.
  1642. # Note that $ac_compile itself does not contain backslashes and begins
  1643. # with a dollar sign (not a hyphen), so the echo should work correctly.
  1644. lt_compile=`echo "$ac_compile" | $SED \
  1645. -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
  1646. -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \
  1647. -e 's:$: $lt_compiler_flag:'`
  1648. (eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD)
  1649. (eval "$lt_compile" 2>out/conftest.err)
  1650. ac_status=$?
  1651. cat out/conftest.err >&AS_MESSAGE_LOG_FD
  1652. echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
  1653. if (exit $ac_status) && test -s out/conftest2.$ac_objext
  1654. then
  1655. # The compiler can only warn and ignore the option if not recognized
  1656. # So say no if there are warnings
  1657. $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp
  1658. $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2
  1659. if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then
  1660. _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes
  1661. fi
  1662. fi
  1663. chmod u+w . 2>&AS_MESSAGE_LOG_FD
  1664. $RM conftest*
  1665. # SGI C++ compiler will create directory out/ii_files/ for
  1666. # template instantiation
  1667. test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files
  1668. $RM out/* && rmdir out
  1669. cd ..
  1670. $RM -r conftest
  1671. $RM conftest*
  1672. ])
  1673. _LT_TAGDECL([compiler_c_o], [lt_cv_prog_compiler_c_o], [1],
  1674. [Does compiler simultaneously support -c and -o options?])
  1675. ])# _LT_COMPILER_C_O
  1676. # _LT_COMPILER_FILE_LOCKS([TAGNAME])
  1677. # ----------------------------------
  1678. # Check to see if we can do hard links to lock some files if needed
  1679. m4_defun([_LT_COMPILER_FILE_LOCKS],
  1680. [m4_require([_LT_ENABLE_LOCK])dnl
  1681. m4_require([_LT_FILEUTILS_DEFAULTS])dnl
  1682. _LT_COMPILER_C_O([$1])
  1683. hard_links="nottested"
  1684. if test "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then
  1685. # do not overwrite the value of need_locks provided by the user
  1686. AC_MSG_CHECKING([if we can lock with hard links])
  1687. hard_links=yes
  1688. $RM conftest*
  1689. ln conftest.a conftest.b 2>/dev/null && hard_links=no
  1690. touch conftest.a
  1691. ln conftest.a conftest.b 2>&5 || hard_links=no
  1692. ln conftest.a conftest.b 2>/dev/null && hard_links=no
  1693. AC_MSG_RESULT([$hard_links])
  1694. if test "$hard_links" = no; then
  1695. AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe])
  1696. need_locks=warn
  1697. fi
  1698. else
  1699. need_locks=no
  1700. fi
  1701. _LT_DECL([], [need_locks], [1], [Must we lock files when doing compilation?])
  1702. ])# _LT_COMPILER_FILE_LOCKS
  1703. # _LT_CHECK_OBJDIR
  1704. # ----------------
  1705. m4_defun([_LT_CHECK_OBJDIR],
  1706. [AC_CACHE_CHECK([for objdir], [lt_cv_objdir],
  1707. [rm -f .libs 2>/dev/null
  1708. mkdir .libs 2>/dev/null
  1709. if test -d .libs; then
  1710. lt_cv_objdir=.libs
  1711. else
  1712. # MS-DOS does not allow filenames that begin with a dot.
  1713. lt_cv_objdir=_libs
  1714. fi
  1715. rmdir .libs 2>/dev/null])
  1716. objdir=$lt_cv_objdir
  1717. _LT_DECL([], [objdir], [0],
  1718. [The name of the directory that contains temporary libtool files])dnl
  1719. m4_pattern_allow([LT_OBJDIR])dnl
  1720. AC_DEFINE_UNQUOTED(LT_OBJDIR, "$lt_cv_objdir/",
  1721. [Define to the sub-directory in which libtool stores uninstalled libraries.])
  1722. ])# _LT_CHECK_OBJDIR
  1723. # _LT_LINKER_HARDCODE_LIBPATH([TAGNAME])
  1724. # --------------------------------------
  1725. # Check hardcoding attributes.
  1726. m4_defun([_LT_LINKER_HARDCODE_LIBPATH],
  1727. [AC_MSG_CHECKING([how to hardcode library paths into programs])
  1728. _LT_TAGVAR(hardcode_action, $1)=
  1729. if test -n "$_LT_TAGVAR(hardcode_libdir_flag_spec, $1)" ||
  1730. test -n "$_LT_TAGVAR(runpath_var, $1)" ||
  1731. test "X$_LT_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then
  1732. # We can hardcode non-existent directories.
  1733. if test "$_LT_TAGVAR(hardcode_direct, $1)" != no &&
  1734. # If the only mechanism to avoid hardcoding is shlibpath_var, we
  1735. # have to relink, otherwise we might link with an installed library
  1736. # when we should be linking with a yet-to-be-installed one
  1737. ## test "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" != no &&
  1738. test "$_LT_TAGVAR(hardcode_minus_L, $1)" != no; then
  1739. # Linking always hardcodes the temporary library directory.
  1740. _LT_TAGVAR(hardcode_action, $1)=relink
  1741. else
  1742. # We can link without hardcoding, and we can hardcode nonexisting dirs.
  1743. _LT_TAGVAR(hardcode_action, $1)=immediate
  1744. fi
  1745. else
  1746. # We cannot hardcode anything, or else we can only hardcode existing
  1747. # directories.
  1748. _LT_TAGVAR(hardcode_action, $1)=unsupported
  1749. fi
  1750. AC_MSG_RESULT([$_LT_TAGVAR(hardcode_action, $1)])
  1751. if test "$_LT_TAGVAR(hardcode_action, $1)" = relink ||
  1752. test "$_LT_TAGVAR(inherit_rpath, $1)" = yes; then
  1753. # Fast installation is not supported
  1754. enable_fast_install=no
  1755. elif test "$shlibpath_overrides_runpath" = yes ||
  1756. test "$enable_shared" = no; then
  1757. # Fast installation is not necessary
  1758. enable_fast_install=needless
  1759. fi
  1760. _LT_TAGDECL([], [hardcode_action], [0],
  1761. [How to hardcode a shared library path into an executable])
  1762. ])# _LT_LINKER_HARDCODE_LIBPATH
  1763. # _LT_CMD_STRIPLIB
  1764. # ----------------
  1765. m4_defun([_LT_CMD_STRIPLIB],
  1766. [m4_require([_LT_DECL_EGREP])
  1767. striplib=
  1768. old_striplib=
  1769. AC_MSG_CHECKING([whether stripping libraries is possible])
  1770. if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then
  1771. test -z "$old_striplib" && old_striplib="$STRIP --strip-debug"
  1772. test -z "$striplib" && striplib="$STRIP --strip-unneeded"
  1773. AC_MSG_RESULT([yes])
  1774. else
  1775. # FIXME - insert some real tests, host_os isn't really good enough
  1776. case $host_os in
  1777. darwin*)
  1778. if test -n "$STRIP" ; then
  1779. striplib="$STRIP -x"
  1780. old_striplib="$STRIP -S"
  1781. AC_MSG_RESULT([yes])
  1782. else
  1783. AC_MSG_RESULT([no])
  1784. fi
  1785. ;;
  1786. *)
  1787. AC_MSG_RESULT([no])
  1788. ;;
  1789. esac
  1790. fi
  1791. _LT_DECL([], [old_striplib], [1], [Commands to strip libraries])
  1792. _LT_DECL([], [striplib], [1])
  1793. ])# _LT_CMD_STRIPLIB
  1794. # _LT_SYS_DYNAMIC_LINKER([TAG])
  1795. # -----------------------------
  1796. # PORTME Fill in your ld.so characteristics
  1797. m4_defun([_LT_SYS_DYNAMIC_LINKER],
  1798. [AC_REQUIRE([AC_CANONICAL_HOST])dnl
  1799. m4_require([_LT_DECL_EGREP])dnl
  1800. m4_require([_LT_FILEUTILS_DEFAULTS])dnl
  1801. m4_require([_LT_DECL_OBJDUMP])dnl
  1802. m4_require([_LT_DECL_SED])dnl
  1803. AC_MSG_CHECKING([dynamic linker characteristics])
  1804. m4_if([$1],
  1805. [], [
  1806. if test "$GCC" = yes; then
  1807. case $host_os in
  1808. darwin*) lt_awk_arg="/^libraries:/,/LR/" ;;
  1809. *) lt_awk_arg="/^libraries:/" ;;
  1810. esac
  1811. lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e "s,=/,/,g"`
  1812. if $ECHO "$lt_search_path_spec" | $GREP ';' >/dev/null ; then
  1813. # if the path contains ";" then we assume it to be the separator
  1814. # otherwise default to the standard path separator (i.e. ":") - it is
  1815. # assumed that no part of a normal pathname contains ";" but that should
  1816. # okay in the real world where ";" in dirpaths is itself problematic.
  1817. lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED -e 's/;/ /g'`
  1818. else
  1819. lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"`
  1820. fi
  1821. # Ok, now we have the path, separated by spaces, we can step through it
  1822. # and add multilib dir if necessary.
  1823. lt_tmp_lt_search_path_spec=
  1824. lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null`
  1825. for lt_sys_path in $lt_search_path_spec; do
  1826. if test -d "$lt_sys_path/$lt_multi_os_dir"; then
  1827. lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir"
  1828. else
  1829. test -d "$lt_sys_path" && \
  1830. lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path"
  1831. fi
  1832. done
  1833. lt_search_path_spec=`$ECHO $lt_tmp_lt_search_path_spec | awk '
  1834. BEGIN {RS=" "; FS="/|\n";} {
  1835. lt_foo="";
  1836. lt_count=0;
  1837. for (lt_i = NF; lt_i > 0; lt_i--) {
  1838. if ($lt_i != "" && $lt_i != ".") {
  1839. if ($lt_i == "..") {
  1840. lt_count++;
  1841. } else {
  1842. if (lt_count == 0) {
  1843. lt_foo="/" $lt_i lt_foo;
  1844. } else {
  1845. lt_count--;
  1846. }
  1847. }
  1848. }
  1849. }
  1850. if (lt_foo != "") { lt_freq[[lt_foo]]++; }
  1851. if (lt_freq[[lt_foo]] == 1) { print lt_foo; }
  1852. }'`
  1853. sys_lib_search_path_spec=`$ECHO $lt_search_path_spec`
  1854. else
  1855. sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib"
  1856. fi])
  1857. library_names_spec=
  1858. libname_spec='lib$name'
  1859. soname_spec=
  1860. shrext_cmds=".so"
  1861. postinstall_cmds=
  1862. postuninstall_cmds=
  1863. finish_cmds=
  1864. finish_eval=
  1865. shlibpath_var=
  1866. shlibpath_overrides_runpath=unknown
  1867. version_type=none
  1868. dynamic_linker="$host_os ld.so"
  1869. sys_lib_dlsearch_path_spec="/lib /usr/lib"
  1870. need_lib_prefix=unknown
  1871. hardcode_into_libs=no
  1872. # when you set need_version to no, make sure it does not cause -set_version
  1873. # flags to be left without arguments
  1874. need_version=unknown
  1875. case $host_os in
  1876. aix3*)
  1877. version_type=linux
  1878. library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a'
  1879. shlibpath_var=LIBPATH
  1880. # AIX 3 has no versioning support, so we append a major version to the name.
  1881. soname_spec='${libname}${release}${shared_ext}$major'
  1882. ;;
  1883. aix[[4-9]]*)
  1884. version_type=linux
  1885. need_lib_prefix=no
  1886. need_version=no
  1887. hardcode_into_libs=yes
  1888. if test "$host_cpu" = ia64; then
  1889. # AIX 5 supports IA64
  1890. library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}'
  1891. shlibpath_var=LD_LIBRARY_PATH
  1892. else
  1893. # With GCC up to 2.95.x, collect2 would create an import file
  1894. # for dependence libraries. The import file would start with
  1895. # the line `#! .'. This would cause the generated library to
  1896. # depend on `.', always an invalid library. This was fixed in
  1897. # development snapshots of GCC prior to 3.0.
  1898. case $host_os in
  1899. aix4 | aix4.[[01]] | aix4.[[01]].*)
  1900. if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)'
  1901. echo ' yes '
  1902. echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then
  1903. :
  1904. else
  1905. can_build_shared=no
  1906. fi
  1907. ;;
  1908. esac
  1909. # AIX (on Power*) has no versioning support, so currently we can not hardcode correct
  1910. # soname into executable. Probably we can add versioning support to
  1911. # collect2, so additional links can be useful in future.
  1912. if test "$aix_use_runtimelinking" = yes; then
  1913. # If using run time linking (on AIX 4.2 or later) use lib<name>.so
  1914. # instead of lib<name>.a to let people know that these are not
  1915. # typical AIX shared libraries.
  1916. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  1917. else
  1918. # We preserve .a as extension for shared libraries through AIX4.2
  1919. # and later when we are not doing run time linking.
  1920. library_names_spec='${libname}${release}.a $libname.a'
  1921. soname_spec='${libname}${release}${shared_ext}$major'
  1922. fi
  1923. shlibpath_var=LIBPATH
  1924. fi
  1925. ;;
  1926. amigaos*)
  1927. case $host_cpu in
  1928. powerpc)
  1929. # Since July 2007 AmigaOS4 officially supports .so libraries.
  1930. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline.
  1931. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  1932. ;;
  1933. m68k)
  1934. library_names_spec='$libname.ixlibrary $libname.a'
  1935. # Create ${libname}_ixlibrary.a entries in /sys/libs.
  1936. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$ECHO "X$lib" | $Xsed -e '\''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'
  1937. ;;
  1938. esac
  1939. ;;
  1940. beos*)
  1941. library_names_spec='${libname}${shared_ext}'
  1942. dynamic_linker="$host_os ld.so"
  1943. shlibpath_var=LIBRARY_PATH
  1944. ;;
  1945. bsdi[[45]]*)
  1946. version_type=linux
  1947. need_version=no
  1948. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  1949. soname_spec='${libname}${release}${shared_ext}$major'
  1950. finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir'
  1951. shlibpath_var=LD_LIBRARY_PATH
  1952. sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib"
  1953. sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib"
  1954. # the default ld.so.conf also contains /usr/contrib/lib and
  1955. # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow
  1956. # libtool to hard-code these into programs
  1957. ;;
  1958. cygwin* | mingw* | pw32* | cegcc*)
  1959. version_type=windows
  1960. shrext_cmds=".dll"
  1961. need_version=no
  1962. need_lib_prefix=no
  1963. case $GCC,$host_os in
  1964. yes,cygwin* | yes,mingw* | yes,pw32* | yes,cegcc*)
  1965. library_names_spec='$libname.dll.a'
  1966. # DLL is installed to $(libdir)/../bin by postinstall_cmds
  1967. postinstall_cmds='base_file=`basename \${file}`~
  1968. dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~
  1969. dldir=$destdir/`dirname \$dlpath`~
  1970. test -d \$dldir || mkdir -p \$dldir~
  1971. $install_prog $dir/$dlname \$dldir/$dlname~
  1972. chmod a+x \$dldir/$dlname~
  1973. if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then
  1974. eval '\''$striplib \$dldir/$dlname'\'' || exit \$?;
  1975. fi'
  1976. postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~
  1977. dlpath=$dir/\$dldll~
  1978. $RM \$dlpath'
  1979. shlibpath_overrides_runpath=yes
  1980. case $host_os in
  1981. cygwin*)
  1982. # Cygwin DLLs use 'cyg' prefix rather than 'lib'
  1983. soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
  1984. sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib"
  1985. ;;
  1986. mingw* | cegcc*)
  1987. # MinGW DLLs use traditional 'lib' prefix
  1988. soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
  1989. sys_lib_search_path_spec=`$CC -print-search-dirs | $GREP "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"`
  1990. if $ECHO "$sys_lib_search_path_spec" | [$GREP ';[c-zC-Z]:/' >/dev/null]; then
  1991. # It is most probably a Windows format PATH printed by
  1992. # mingw gcc, but we are running on Cygwin. Gcc prints its search
  1993. # path with ; separators, and with drive letters. We can handle the
  1994. # drive letters (cygwin fileutils understands them), so leave them,
  1995. # especially as we might pass files found there to a mingw objdump,
  1996. # which wouldn't understand a cygwinified path. Ahh.
  1997. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
  1998. else
  1999. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"`
  2000. fi
  2001. ;;
  2002. pw32*)
  2003. # pw32 DLLs use 'pw' prefix rather than 'lib'
  2004. library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
  2005. ;;
  2006. esac
  2007. ;;
  2008. *)
  2009. library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib'
  2010. ;;
  2011. esac
  2012. dynamic_linker='Win32 ld.exe'
  2013. # FIXME: first we should search . and the directory the executable is in
  2014. shlibpath_var=PATH
  2015. ;;
  2016. darwin* | rhapsody*)
  2017. dynamic_linker="$host_os dyld"
  2018. version_type=darwin
  2019. need_lib_prefix=no
  2020. need_version=no
  2021. library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext'
  2022. soname_spec='${libname}${release}${major}$shared_ext'
  2023. shlibpath_overrides_runpath=yes
  2024. shlibpath_var=DYLD_LIBRARY_PATH
  2025. shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`'
  2026. m4_if([$1], [],[
  2027. sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"])
  2028. sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib'
  2029. ;;
  2030. dgux*)
  2031. version_type=linux
  2032. need_lib_prefix=no
  2033. need_version=no
  2034. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext'
  2035. soname_spec='${libname}${release}${shared_ext}$major'
  2036. shlibpath_var=LD_LIBRARY_PATH
  2037. ;;
  2038. freebsd1*)
  2039. dynamic_linker=no
  2040. ;;
  2041. freebsd* | dragonfly*)
  2042. # DragonFly does not have aout. When/if they implement a new
  2043. # versioning mechanism, adjust this.
  2044. if test -x /usr/bin/objformat; then
  2045. objformat=`/usr/bin/objformat`
  2046. else
  2047. case $host_os in
  2048. freebsd[[123]]*) objformat=aout ;;
  2049. *) objformat=elf ;;
  2050. esac
  2051. fi
  2052. version_type=freebsd-$objformat
  2053. case $version_type in
  2054. freebsd-elf*)
  2055. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
  2056. need_version=no
  2057. need_lib_prefix=no
  2058. ;;
  2059. freebsd-*)
  2060. library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix'
  2061. need_version=yes
  2062. ;;
  2063. esac
  2064. shlibpath_var=LD_LIBRARY_PATH
  2065. case $host_os in
  2066. freebsd2*)
  2067. shlibpath_overrides_runpath=yes
  2068. ;;
  2069. freebsd3.[[01]]* | freebsdelf3.[[01]]*)
  2070. shlibpath_overrides_runpath=yes
  2071. hardcode_into_libs=yes
  2072. ;;
  2073. freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \
  2074. freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1)
  2075. shlibpath_overrides_runpath=no
  2076. hardcode_into_libs=yes
  2077. ;;
  2078. *) # from 4.6 on, and DragonFly
  2079. shlibpath_overrides_runpath=yes
  2080. hardcode_into_libs=yes
  2081. ;;
  2082. esac
  2083. ;;
  2084. gnu*)
  2085. version_type=linux
  2086. need_lib_prefix=no
  2087. need_version=no
  2088. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
  2089. soname_spec='${libname}${release}${shared_ext}$major'
  2090. shlibpath_var=LD_LIBRARY_PATH
  2091. hardcode_into_libs=yes
  2092. ;;
  2093. hpux9* | hpux10* | hpux11*)
  2094. # Give a soname corresponding to the major version so that dld.sl refuses to
  2095. # link against other versions.
  2096. version_type=sunos
  2097. need_lib_prefix=no
  2098. need_version=no
  2099. case $host_cpu in
  2100. ia64*)
  2101. shrext_cmds='.so'
  2102. hardcode_into_libs=yes
  2103. dynamic_linker="$host_os dld.so"
  2104. shlibpath_var=LD_LIBRARY_PATH
  2105. shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
  2106. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2107. soname_spec='${libname}${release}${shared_ext}$major'
  2108. if test "X$HPUX_IA64_MODE" = X32; then
  2109. sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib"
  2110. else
  2111. sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64"
  2112. fi
  2113. sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
  2114. ;;
  2115. hppa*64*)
  2116. shrext_cmds='.sl'
  2117. hardcode_into_libs=yes
  2118. dynamic_linker="$host_os dld.sl"
  2119. shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH
  2120. shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
  2121. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2122. soname_spec='${libname}${release}${shared_ext}$major'
  2123. sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64"
  2124. sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
  2125. ;;
  2126. *)
  2127. shrext_cmds='.sl'
  2128. dynamic_linker="$host_os dld.sl"
  2129. shlibpath_var=SHLIB_PATH
  2130. shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH
  2131. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2132. soname_spec='${libname}${release}${shared_ext}$major'
  2133. ;;
  2134. esac
  2135. # HP-UX runs *really* slowly unless shared libraries are mode 555.
  2136. postinstall_cmds='chmod 555 $lib'
  2137. ;;
  2138. interix[[3-9]]*)
  2139. version_type=linux
  2140. need_lib_prefix=no
  2141. need_version=no
  2142. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
  2143. soname_spec='${libname}${release}${shared_ext}$major'
  2144. dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)'
  2145. shlibpath_var=LD_LIBRARY_PATH
  2146. shlibpath_overrides_runpath=no
  2147. hardcode_into_libs=yes
  2148. ;;
  2149. irix5* | irix6* | nonstopux*)
  2150. case $host_os in
  2151. nonstopux*) version_type=nonstopux ;;
  2152. *)
  2153. if test "$lt_cv_prog_gnu_ld" = yes; then
  2154. version_type=linux
  2155. else
  2156. version_type=irix
  2157. fi ;;
  2158. esac
  2159. need_lib_prefix=no
  2160. need_version=no
  2161. soname_spec='${libname}${release}${shared_ext}$major'
  2162. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}'
  2163. case $host_os in
  2164. irix5* | nonstopux*)
  2165. libsuff= shlibsuff=
  2166. ;;
  2167. *)
  2168. case $LD in # libtool.m4 will add one of these switches to LD
  2169. *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ")
  2170. libsuff= shlibsuff= libmagic=32-bit;;
  2171. *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ")
  2172. libsuff=32 shlibsuff=N32 libmagic=N32;;
  2173. *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ")
  2174. libsuff=64 shlibsuff=64 libmagic=64-bit;;
  2175. *) libsuff= shlibsuff= libmagic=never-match;;
  2176. esac
  2177. ;;
  2178. esac
  2179. shlibpath_var=LD_LIBRARY${shlibsuff}_PATH
  2180. shlibpath_overrides_runpath=no
  2181. sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}"
  2182. sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}"
  2183. hardcode_into_libs=yes
  2184. ;;
  2185. # No shared lib support for Linux oldld, aout, or coff.
  2186. linux*oldld* | linux*aout* | linux*coff*)
  2187. dynamic_linker=no
  2188. ;;
  2189. # This must be Linux ELF.
  2190. linux* | k*bsd*-gnu)
  2191. version_type=linux
  2192. need_lib_prefix=no
  2193. need_version=no
  2194. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2195. soname_spec='${libname}${release}${shared_ext}$major'
  2196. finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir'
  2197. shlibpath_var=LD_LIBRARY_PATH
  2198. shlibpath_overrides_runpath=no
  2199. # Some binutils ld are patched to set DT_RUNPATH
  2200. save_LDFLAGS=$LDFLAGS
  2201. save_libdir=$libdir
  2202. eval "libdir=/foo; wl=\"$_LT_TAGVAR(lt_prog_compiler_wl, $1)\"; \
  2203. LDFLAGS=\"\$LDFLAGS $_LT_TAGVAR(hardcode_libdir_flag_spec, $1)\""
  2204. AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])],
  2205. [AS_IF([ ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null],
  2206. [shlibpath_overrides_runpath=yes])])
  2207. LDFLAGS=$save_LDFLAGS
  2208. libdir=$save_libdir
  2209. # This implies no fast_install, which is unacceptable.
  2210. # Some rework will be needed to allow for fast_install
  2211. # before this can be enabled.
  2212. hardcode_into_libs=yes
  2213. # Append ld.so.conf contents to the search path
  2214. if test -f /etc/ld.so.conf; then
  2215. 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;/^$/d' | tr '\n' ' '`
  2216. sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
  2217. fi
  2218. # We used to test for /lib/ld.so.1 and disable shared libraries on
  2219. # powerpc, because MkLinux only supported shared libraries with the
  2220. # GNU dynamic linker. Since this was broken with cross compilers,
  2221. # most powerpc-linux boxes support dynamic linking these days and
  2222. # people can always --disable-shared, the test was removed, and we
  2223. # assume the GNU/Linux dynamic linker is in use.
  2224. dynamic_linker='GNU/Linux ld.so'
  2225. ;;
  2226. netbsdelf*-gnu)
  2227. version_type=linux
  2228. need_lib_prefix=no
  2229. need_version=no
  2230. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
  2231. soname_spec='${libname}${release}${shared_ext}$major'
  2232. shlibpath_var=LD_LIBRARY_PATH
  2233. shlibpath_overrides_runpath=no
  2234. hardcode_into_libs=yes
  2235. dynamic_linker='NetBSD ld.elf_so'
  2236. ;;
  2237. netbsd*)
  2238. version_type=sunos
  2239. need_lib_prefix=no
  2240. need_version=no
  2241. if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
  2242. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
  2243. finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
  2244. dynamic_linker='NetBSD (a.out) ld.so'
  2245. else
  2246. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
  2247. soname_spec='${libname}${release}${shared_ext}$major'
  2248. dynamic_linker='NetBSD ld.elf_so'
  2249. fi
  2250. shlibpath_var=LD_LIBRARY_PATH
  2251. shlibpath_overrides_runpath=yes
  2252. hardcode_into_libs=yes
  2253. ;;
  2254. newsos6)
  2255. version_type=linux
  2256. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2257. shlibpath_var=LD_LIBRARY_PATH
  2258. shlibpath_overrides_runpath=yes
  2259. ;;
  2260. *nto* | *qnx*)
  2261. version_type=qnx
  2262. need_lib_prefix=no
  2263. need_version=no
  2264. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2265. soname_spec='${libname}${release}${shared_ext}$major'
  2266. shlibpath_var=LD_LIBRARY_PATH
  2267. shlibpath_overrides_runpath=no
  2268. hardcode_into_libs=yes
  2269. dynamic_linker='ldqnx.so'
  2270. ;;
  2271. openbsd*)
  2272. version_type=sunos
  2273. sys_lib_dlsearch_path_spec="/usr/lib"
  2274. need_lib_prefix=no
  2275. # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs.
  2276. case $host_os in
  2277. openbsd3.3 | openbsd3.3.*) need_version=yes ;;
  2278. *) need_version=no ;;
  2279. esac
  2280. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
  2281. finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
  2282. shlibpath_var=LD_LIBRARY_PATH
  2283. if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
  2284. case $host_os in
  2285. openbsd2.[[89]] | openbsd2.[[89]].*)
  2286. shlibpath_overrides_runpath=no
  2287. ;;
  2288. *)
  2289. shlibpath_overrides_runpath=yes
  2290. ;;
  2291. esac
  2292. else
  2293. shlibpath_overrides_runpath=yes
  2294. fi
  2295. ;;
  2296. os2*)
  2297. libname_spec='$name'
  2298. shrext_cmds=".dll"
  2299. need_lib_prefix=no
  2300. library_names_spec='$libname${shared_ext} $libname.a'
  2301. dynamic_linker='OS/2 ld.exe'
  2302. shlibpath_var=LIBPATH
  2303. ;;
  2304. osf3* | osf4* | osf5*)
  2305. version_type=osf
  2306. need_lib_prefix=no
  2307. need_version=no
  2308. soname_spec='${libname}${release}${shared_ext}$major'
  2309. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2310. shlibpath_var=LD_LIBRARY_PATH
  2311. sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib"
  2312. sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec"
  2313. ;;
  2314. rdos*)
  2315. dynamic_linker=no
  2316. ;;
  2317. solaris*)
  2318. version_type=linux
  2319. need_lib_prefix=no
  2320. need_version=no
  2321. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2322. soname_spec='${libname}${release}${shared_ext}$major'
  2323. shlibpath_var=LD_LIBRARY_PATH
  2324. shlibpath_overrides_runpath=yes
  2325. hardcode_into_libs=yes
  2326. # ldd complains unless libraries are executable
  2327. postinstall_cmds='chmod +x $lib'
  2328. ;;
  2329. sunos4*)
  2330. version_type=sunos
  2331. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
  2332. finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir'
  2333. shlibpath_var=LD_LIBRARY_PATH
  2334. shlibpath_overrides_runpath=yes
  2335. if test "$with_gnu_ld" = yes; then
  2336. need_lib_prefix=no
  2337. fi
  2338. need_version=yes
  2339. ;;
  2340. sysv4 | sysv4.3*)
  2341. version_type=linux
  2342. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2343. soname_spec='${libname}${release}${shared_ext}$major'
  2344. shlibpath_var=LD_LIBRARY_PATH
  2345. case $host_vendor in
  2346. sni)
  2347. shlibpath_overrides_runpath=no
  2348. need_lib_prefix=no
  2349. runpath_var=LD_RUN_PATH
  2350. ;;
  2351. siemens)
  2352. need_lib_prefix=no
  2353. ;;
  2354. motorola)
  2355. need_lib_prefix=no
  2356. need_version=no
  2357. shlibpath_overrides_runpath=no
  2358. sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib'
  2359. ;;
  2360. esac
  2361. ;;
  2362. sysv4*MP*)
  2363. if test -d /usr/nec ;then
  2364. version_type=linux
  2365. library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}'
  2366. soname_spec='$libname${shared_ext}.$major'
  2367. shlibpath_var=LD_LIBRARY_PATH
  2368. fi
  2369. ;;
  2370. sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
  2371. version_type=freebsd-elf
  2372. need_lib_prefix=no
  2373. need_version=no
  2374. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
  2375. soname_spec='${libname}${release}${shared_ext}$major'
  2376. shlibpath_var=LD_LIBRARY_PATH
  2377. shlibpath_overrides_runpath=yes
  2378. hardcode_into_libs=yes
  2379. if test "$with_gnu_ld" = yes; then
  2380. sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib'
  2381. else
  2382. sys_lib_search_path_spec='/usr/ccs/lib /usr/lib'
  2383. case $host_os in
  2384. sco3.2v5*)
  2385. sys_lib_search_path_spec="$sys_lib_search_path_spec /lib"
  2386. ;;
  2387. esac
  2388. fi
  2389. sys_lib_dlsearch_path_spec='/usr/lib'
  2390. ;;
  2391. tpf*)
  2392. # TPF is a cross-target only. Preferred cross-host = GNU/Linux.
  2393. version_type=linux
  2394. need_lib_prefix=no
  2395. need_version=no
  2396. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2397. shlibpath_var=LD_LIBRARY_PATH
  2398. shlibpath_overrides_runpath=no
  2399. hardcode_into_libs=yes
  2400. ;;
  2401. uts4*)
  2402. version_type=linux
  2403. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2404. soname_spec='${libname}${release}${shared_ext}$major'
  2405. shlibpath_var=LD_LIBRARY_PATH
  2406. ;;
  2407. *)
  2408. dynamic_linker=no
  2409. ;;
  2410. esac
  2411. AC_MSG_RESULT([$dynamic_linker])
  2412. test "$dynamic_linker" = no && can_build_shared=no
  2413. variables_saved_for_relink="PATH $shlibpath_var $runpath_var"
  2414. if test "$GCC" = yes; then
  2415. variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH"
  2416. fi
  2417. if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then
  2418. sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec"
  2419. fi
  2420. if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then
  2421. sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec"
  2422. fi
  2423. _LT_DECL([], [variables_saved_for_relink], [1],
  2424. [Variables whose values should be saved in libtool wrapper scripts and
  2425. restored at link time])
  2426. _LT_DECL([], [need_lib_prefix], [0],
  2427. [Do we need the "lib" prefix for modules?])
  2428. _LT_DECL([], [need_version], [0], [Do we need a version for libraries?])
  2429. _LT_DECL([], [version_type], [0], [Library versioning type])
  2430. _LT_DECL([], [runpath_var], [0], [Shared library runtime path variable])
  2431. _LT_DECL([], [shlibpath_var], [0],[Shared library path variable])
  2432. _LT_DECL([], [shlibpath_overrides_runpath], [0],
  2433. [Is shlibpath searched before the hard-coded library search path?])
  2434. _LT_DECL([], [libname_spec], [1], [Format of library name prefix])
  2435. _LT_DECL([], [library_names_spec], [1],
  2436. [[List of archive names. First name is the real one, the rest are links.
  2437. The last name is the one that the linker finds with -lNAME]])
  2438. _LT_DECL([], [soname_spec], [1],
  2439. [[The coded name of the library, if different from the real name]])
  2440. _LT_DECL([], [postinstall_cmds], [2],
  2441. [Command to use after installation of a shared archive])
  2442. _LT_DECL([], [postuninstall_cmds], [2],
  2443. [Command to use after uninstallation of a shared archive])
  2444. _LT_DECL([], [finish_cmds], [2],
  2445. [Commands used to finish a libtool library installation in a directory])
  2446. _LT_DECL([], [finish_eval], [1],
  2447. [[As "finish_cmds", except a single script fragment to be evaled but
  2448. not shown]])
  2449. _LT_DECL([], [hardcode_into_libs], [0],
  2450. [Whether we should hardcode library paths into libraries])
  2451. _LT_DECL([], [sys_lib_search_path_spec], [2],
  2452. [Compile-time system search path for libraries])
  2453. _LT_DECL([], [sys_lib_dlsearch_path_spec], [2],
  2454. [Run-time system search path for libraries])
  2455. ])# _LT_SYS_DYNAMIC_LINKER
  2456. # _LT_PATH_TOOL_PREFIX(TOOL)
  2457. # --------------------------
  2458. # find a file program which can recognize shared library
  2459. AC_DEFUN([_LT_PATH_TOOL_PREFIX],
  2460. [m4_require([_LT_DECL_EGREP])dnl
  2461. AC_MSG_CHECKING([for $1])
  2462. AC_CACHE_VAL(lt_cv_path_MAGIC_CMD,
  2463. [case $MAGIC_CMD in
  2464. [[\\/*] | ?:[\\/]*])
  2465. lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path.
  2466. ;;
  2467. *)
  2468. lt_save_MAGIC_CMD="$MAGIC_CMD"
  2469. lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
  2470. dnl $ac_dummy forces splitting on constant user-supplied paths.
  2471. dnl POSIX.2 word splitting is done only on the output of word expansions,
  2472. dnl not every word. This closes a longstanding sh security hole.
  2473. ac_dummy="m4_if([$2], , $PATH, [$2])"
  2474. for ac_dir in $ac_dummy; do
  2475. IFS="$lt_save_ifs"
  2476. test -z "$ac_dir" && ac_dir=.
  2477. if test -f $ac_dir/$1; then
  2478. lt_cv_path_MAGIC_CMD="$ac_dir/$1"
  2479. if test -n "$file_magic_test_file"; then
  2480. case $deplibs_check_method in
  2481. "file_magic "*)
  2482. file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"`
  2483. MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
  2484. if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null |
  2485. $EGREP "$file_magic_regex" > /dev/null; then
  2486. :
  2487. else
  2488. cat <<_LT_EOF 1>&2
  2489. *** Warning: the command libtool uses to detect shared libraries,
  2490. *** $file_magic_cmd, produces output that libtool cannot recognize.
  2491. *** The result is that libtool may fail to recognize shared libraries
  2492. *** as such. This will affect the creation of libtool libraries that
  2493. *** depend on shared libraries, but programs linked with such libtool
  2494. *** libraries will work regardless of this problem. Nevertheless, you
  2495. *** may want to report the problem to your system manager and/or to
  2496. *** bug-libtool@gnu.org
  2497. _LT_EOF
  2498. fi ;;
  2499. esac
  2500. fi
  2501. break
  2502. fi
  2503. done
  2504. IFS="$lt_save_ifs"
  2505. MAGIC_CMD="$lt_save_MAGIC_CMD"
  2506. ;;
  2507. esac])
  2508. MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
  2509. if test -n "$MAGIC_CMD"; then
  2510. AC_MSG_RESULT($MAGIC_CMD)
  2511. else
  2512. AC_MSG_RESULT(no)
  2513. fi
  2514. _LT_DECL([], [MAGIC_CMD], [0],
  2515. [Used to examine libraries when file_magic_cmd begins with "file"])dnl
  2516. ])# _LT_PATH_TOOL_PREFIX
  2517. # Old name:
  2518. AU_ALIAS([AC_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX])
  2519. dnl aclocal-1.4 backwards compatibility:
  2520. dnl AC_DEFUN([AC_PATH_TOOL_PREFIX], [])
  2521. # _LT_PATH_MAGIC
  2522. # --------------
  2523. # find a file program which can recognize a shared library
  2524. m4_defun([_LT_PATH_MAGIC],
  2525. [_LT_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH)
  2526. if test -z "$lt_cv_path_MAGIC_CMD"; then
  2527. if test -n "$ac_tool_prefix"; then
  2528. _LT_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH)
  2529. else
  2530. MAGIC_CMD=:
  2531. fi
  2532. fi
  2533. ])# _LT_PATH_MAGIC
  2534. # LT_PATH_LD
  2535. # ----------
  2536. # find the pathname to the GNU or non-GNU linker
  2537. AC_DEFUN([LT_PATH_LD],
  2538. [AC_REQUIRE([AC_PROG_CC])dnl
  2539. AC_REQUIRE([AC_CANONICAL_HOST])dnl
  2540. AC_REQUIRE([AC_CANONICAL_BUILD])dnl
  2541. m4_require([_LT_DECL_SED])dnl
  2542. m4_require([_LT_DECL_EGREP])dnl
  2543. AC_ARG_WITH([gnu-ld],
  2544. [AS_HELP_STRING([--with-gnu-ld],
  2545. [assume the C compiler uses GNU ld @<:@default=no@:>@])],
  2546. [test "$withval" = no || with_gnu_ld=yes],
  2547. [with_gnu_ld=no])dnl
  2548. ac_prog=ld
  2549. if test "$GCC" = yes; then
  2550. # Check if gcc -print-prog-name=ld gives a path.
  2551. AC_MSG_CHECKING([for ld used by $CC])
  2552. case $host in
  2553. *-*-mingw*)
  2554. # gcc leaves a trailing carriage return which upsets mingw
  2555. ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
  2556. *)
  2557. ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
  2558. esac
  2559. case $ac_prog in
  2560. # Accept absolute paths.
  2561. [[\\/]]* | ?:[[\\/]]*)
  2562. re_direlt='/[[^/]][[^/]]*/\.\./'
  2563. # Canonicalize the pathname of ld
  2564. ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'`
  2565. while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do
  2566. ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"`
  2567. done
  2568. test -z "$LD" && LD="$ac_prog"
  2569. ;;
  2570. "")
  2571. # If it fails, then pretend we aren't using GCC.
  2572. ac_prog=ld
  2573. ;;
  2574. *)
  2575. # If it is relative, then search for the first ld in PATH.
  2576. with_gnu_ld=unknown
  2577. ;;
  2578. esac
  2579. elif test "$with_gnu_ld" = yes; then
  2580. AC_MSG_CHECKING([for GNU ld])
  2581. else
  2582. AC_MSG_CHECKING([for non-GNU ld])
  2583. fi
  2584. AC_CACHE_VAL(lt_cv_path_LD,
  2585. [if test -z "$LD"; then
  2586. lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
  2587. for ac_dir in $PATH; do
  2588. IFS="$lt_save_ifs"
  2589. test -z "$ac_dir" && ac_dir=.
  2590. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
  2591. lt_cv_path_LD="$ac_dir/$ac_prog"
  2592. # Check to see if the program is GNU ld. I'd rather use --version,
  2593. # but apparently some variants of GNU ld only accept -v.
  2594. # Break only if it was the GNU/non-GNU ld that we prefer.
  2595. case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in
  2596. *GNU* | *'with BFD'*)
  2597. test "$with_gnu_ld" != no && break
  2598. ;;
  2599. *)
  2600. test "$with_gnu_ld" != yes && break
  2601. ;;
  2602. esac
  2603. fi
  2604. done
  2605. IFS="$lt_save_ifs"
  2606. else
  2607. lt_cv_path_LD="$LD" # Let the user override the test with a path.
  2608. fi])
  2609. LD="$lt_cv_path_LD"
  2610. if test -n "$LD"; then
  2611. AC_MSG_RESULT($LD)
  2612. else
  2613. AC_MSG_RESULT(no)
  2614. fi
  2615. test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH])
  2616. _LT_PATH_LD_GNU
  2617. AC_SUBST([LD])
  2618. _LT_TAGDECL([], [LD], [1], [The linker used to build libraries])
  2619. ])# LT_PATH_LD
  2620. # Old names:
  2621. AU_ALIAS([AM_PROG_LD], [LT_PATH_LD])
  2622. AU_ALIAS([AC_PROG_LD], [LT_PATH_LD])
  2623. dnl aclocal-1.4 backwards compatibility:
  2624. dnl AC_DEFUN([AM_PROG_LD], [])
  2625. dnl AC_DEFUN([AC_PROG_LD], [])
  2626. # _LT_PATH_LD_GNU
  2627. #- --------------
  2628. m4_defun([_LT_PATH_LD_GNU],
  2629. [AC_CACHE_CHECK([if the linker ($LD) is GNU ld], lt_cv_prog_gnu_ld,
  2630. [# I'd rather use --version here, but apparently some GNU lds only accept -v.
  2631. case `$LD -v 2>&1 </dev/null` in
  2632. *GNU* | *'with BFD'*)
  2633. lt_cv_prog_gnu_ld=yes
  2634. ;;
  2635. *)
  2636. lt_cv_prog_gnu_ld=no
  2637. ;;
  2638. esac])
  2639. with_gnu_ld=$lt_cv_prog_gnu_ld
  2640. ])# _LT_PATH_LD_GNU
  2641. # _LT_CMD_RELOAD
  2642. # --------------
  2643. # find reload flag for linker
  2644. # -- PORTME Some linkers may need a different reload flag.
  2645. m4_defun([_LT_CMD_RELOAD],
  2646. [AC_CACHE_CHECK([for $LD option to reload object files],
  2647. lt_cv_ld_reload_flag,
  2648. [lt_cv_ld_reload_flag='-r'])
  2649. reload_flag=$lt_cv_ld_reload_flag
  2650. case $reload_flag in
  2651. "" | " "*) ;;
  2652. *) reload_flag=" $reload_flag" ;;
  2653. esac
  2654. reload_cmds='$LD$reload_flag -o $output$reload_objs'
  2655. case $host_os in
  2656. darwin*)
  2657. if test "$GCC" = yes; then
  2658. reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs'
  2659. else
  2660. reload_cmds='$LD$reload_flag -o $output$reload_objs'
  2661. fi
  2662. ;;
  2663. esac
  2664. _LT_DECL([], [reload_flag], [1], [How to create reloadable object files])dnl
  2665. _LT_DECL([], [reload_cmds], [2])dnl
  2666. ])# _LT_CMD_RELOAD
  2667. # _LT_CHECK_MAGIC_METHOD
  2668. # ----------------------
  2669. # how to check for library dependencies
  2670. # -- PORTME fill in with the dynamic library characteristics
  2671. m4_defun([_LT_CHECK_MAGIC_METHOD],
  2672. [m4_require([_LT_DECL_EGREP])
  2673. m4_require([_LT_DECL_OBJDUMP])
  2674. AC_CACHE_CHECK([how to recognize dependent libraries],
  2675. lt_cv_deplibs_check_method,
  2676. [lt_cv_file_magic_cmd='$MAGIC_CMD'
  2677. lt_cv_file_magic_test_file=
  2678. lt_cv_deplibs_check_method='unknown'
  2679. # Need to set the preceding variable on all platforms that support
  2680. # interlibrary dependencies.
  2681. # 'none' -- dependencies not supported.
  2682. # `unknown' -- same as none, but documents that we really don't know.
  2683. # 'pass_all' -- all dependencies passed with no checks.
  2684. # 'test_compile' -- check by making test program.
  2685. # 'file_magic [[regex]]' -- check by looking for files in library path
  2686. # which responds to the $file_magic_cmd with a given extended regex.
  2687. # If you have `file' or equivalent on your system and you're not sure
  2688. # whether `pass_all' will *always* work, you probably want this one.
  2689. case $host_os in
  2690. aix[[4-9]]*)
  2691. lt_cv_deplibs_check_method=pass_all
  2692. ;;
  2693. beos*)
  2694. lt_cv_deplibs_check_method=pass_all
  2695. ;;
  2696. bsdi[[45]]*)
  2697. lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib)'
  2698. lt_cv_file_magic_cmd='/usr/bin/file -L'
  2699. lt_cv_file_magic_test_file=/shlib/libc.so
  2700. ;;
  2701. cygwin*)
  2702. # func_win32_libid is a shell function defined in ltmain.sh
  2703. lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'
  2704. lt_cv_file_magic_cmd='func_win32_libid'
  2705. ;;
  2706. mingw* | pw32*)
  2707. # Base MSYS/MinGW do not provide the 'file' command needed by
  2708. # func_win32_libid shell function, so use a weaker test based on 'objdump',
  2709. # unless we find 'file', for example because we are cross-compiling.
  2710. if ( file / ) >/dev/null 2>&1; then
  2711. lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'
  2712. lt_cv_file_magic_cmd='func_win32_libid'
  2713. else
  2714. lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?'
  2715. lt_cv_file_magic_cmd='$OBJDUMP -f'
  2716. fi
  2717. ;;
  2718. cegcc)
  2719. # use the weaker test based on 'objdump'. See mingw*.
  2720. lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?'
  2721. lt_cv_file_magic_cmd='$OBJDUMP -f'
  2722. ;;
  2723. darwin* | rhapsody*)
  2724. lt_cv_deplibs_check_method=pass_all
  2725. ;;
  2726. freebsd* | dragonfly*)
  2727. if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then
  2728. case $host_cpu in
  2729. i*86 )
  2730. # Not sure whether the presence of OpenBSD here was a mistake.
  2731. # Let's accept both of them until this is cleared up.
  2732. lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library'
  2733. lt_cv_file_magic_cmd=/usr/bin/file
  2734. lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*`
  2735. ;;
  2736. esac
  2737. else
  2738. lt_cv_deplibs_check_method=pass_all
  2739. fi
  2740. ;;
  2741. gnu*)
  2742. lt_cv_deplibs_check_method=pass_all
  2743. ;;
  2744. hpux10.20* | hpux11*)
  2745. lt_cv_file_magic_cmd=/usr/bin/file
  2746. case $host_cpu in
  2747. ia64*)
  2748. lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64'
  2749. lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so
  2750. ;;
  2751. hppa*64*)
  2752. [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - PA-RISC [0-9].[0-9]']
  2753. lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl
  2754. ;;
  2755. *)
  2756. lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]].[[0-9]]) shared library'
  2757. lt_cv_file_magic_test_file=/usr/lib/libc.sl
  2758. ;;
  2759. esac
  2760. ;;
  2761. interix[[3-9]]*)
  2762. # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here
  2763. lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$'
  2764. ;;
  2765. irix5* | irix6* | nonstopux*)
  2766. case $LD in
  2767. *-32|*"-32 ") libmagic=32-bit;;
  2768. *-n32|*"-n32 ") libmagic=N32;;
  2769. *-64|*"-64 ") libmagic=64-bit;;
  2770. *) libmagic=never-match;;
  2771. esac
  2772. lt_cv_deplibs_check_method=pass_all
  2773. ;;
  2774. # This must be Linux ELF.
  2775. linux* | k*bsd*-gnu)
  2776. lt_cv_deplibs_check_method=pass_all
  2777. ;;
  2778. netbsd* | netbsdelf*-gnu)
  2779. if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then
  2780. lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$'
  2781. else
  2782. lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$'
  2783. fi
  2784. ;;
  2785. newos6*)
  2786. lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)'
  2787. lt_cv_file_magic_cmd=/usr/bin/file
  2788. lt_cv_file_magic_test_file=/usr/lib/libnls.so
  2789. ;;
  2790. *nto* | *qnx*)
  2791. lt_cv_deplibs_check_method=pass_all
  2792. ;;
  2793. openbsd*)
  2794. if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
  2795. lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$'
  2796. else
  2797. lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$'
  2798. fi
  2799. ;;
  2800. osf3* | osf4* | osf5*)
  2801. lt_cv_deplibs_check_method=pass_all
  2802. ;;
  2803. rdos*)
  2804. lt_cv_deplibs_check_method=pass_all
  2805. ;;
  2806. solaris*)
  2807. lt_cv_deplibs_check_method=pass_all
  2808. ;;
  2809. sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
  2810. lt_cv_deplibs_check_method=pass_all
  2811. ;;
  2812. sysv4 | sysv4.3*)
  2813. case $host_vendor in
  2814. motorola)
  2815. 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]]'
  2816. lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*`
  2817. ;;
  2818. ncr)
  2819. lt_cv_deplibs_check_method=pass_all
  2820. ;;
  2821. sequent)
  2822. lt_cv_file_magic_cmd='/bin/file'
  2823. lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )'
  2824. ;;
  2825. sni)
  2826. lt_cv_file_magic_cmd='/bin/file'
  2827. lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib"
  2828. lt_cv_file_magic_test_file=/lib/libc.so
  2829. ;;
  2830. siemens)
  2831. lt_cv_deplibs_check_method=pass_all
  2832. ;;
  2833. pc)
  2834. lt_cv_deplibs_check_method=pass_all
  2835. ;;
  2836. esac
  2837. ;;
  2838. tpf*)
  2839. lt_cv_deplibs_check_method=pass_all
  2840. ;;
  2841. esac
  2842. ])
  2843. file_magic_cmd=$lt_cv_file_magic_cmd
  2844. deplibs_check_method=$lt_cv_deplibs_check_method
  2845. test -z "$deplibs_check_method" && deplibs_check_method=unknown
  2846. _LT_DECL([], [deplibs_check_method], [1],
  2847. [Method to check whether dependent libraries are shared objects])
  2848. _LT_DECL([], [file_magic_cmd], [1],
  2849. [Command to use when deplibs_check_method == "file_magic"])
  2850. ])# _LT_CHECK_MAGIC_METHOD
  2851. # LT_PATH_NM
  2852. # ----------
  2853. # find the pathname to a BSD- or MS-compatible name lister
  2854. AC_DEFUN([LT_PATH_NM],
  2855. [AC_REQUIRE([AC_PROG_CC])dnl
  2856. AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM,
  2857. [if test -n "$NM"; then
  2858. # Let the user override the test.
  2859. lt_cv_path_NM="$NM"
  2860. else
  2861. lt_nm_to_check="${ac_tool_prefix}nm"
  2862. if test -n "$ac_tool_prefix" && test "$build" = "$host"; then
  2863. lt_nm_to_check="$lt_nm_to_check nm"
  2864. fi
  2865. for lt_tmp_nm in $lt_nm_to_check; do
  2866. lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
  2867. for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do
  2868. IFS="$lt_save_ifs"
  2869. test -z "$ac_dir" && ac_dir=.
  2870. tmp_nm="$ac_dir/$lt_tmp_nm"
  2871. if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then
  2872. # Check to see if the nm accepts a BSD-compat flag.
  2873. # Adding the `sed 1q' prevents false positives on HP-UX, which says:
  2874. # nm: unknown option "B" ignored
  2875. # Tru64's nm complains that /dev/null is an invalid object file
  2876. case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in
  2877. */dev/null* | *'Invalid file or object type'*)
  2878. lt_cv_path_NM="$tmp_nm -B"
  2879. break
  2880. ;;
  2881. *)
  2882. case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in
  2883. */dev/null*)
  2884. lt_cv_path_NM="$tmp_nm -p"
  2885. break
  2886. ;;
  2887. *)
  2888. lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but
  2889. continue # so that we can try to find one that supports BSD flags
  2890. ;;
  2891. esac
  2892. ;;
  2893. esac
  2894. fi
  2895. done
  2896. IFS="$lt_save_ifs"
  2897. done
  2898. : ${lt_cv_path_NM=no}
  2899. fi])
  2900. if test "$lt_cv_path_NM" != "no"; then
  2901. NM="$lt_cv_path_NM"
  2902. else
  2903. # Didn't find any BSD compatible name lister, look for dumpbin.
  2904. AC_CHECK_TOOLS(DUMPBIN, ["dumpbin -symbols" "link -dump -symbols"], :)
  2905. AC_SUBST([DUMPBIN])
  2906. if test "$DUMPBIN" != ":"; then
  2907. NM="$DUMPBIN"
  2908. fi
  2909. fi
  2910. test -z "$NM" && NM=nm
  2911. AC_SUBST([NM])
  2912. _LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl
  2913. AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface],
  2914. [lt_cv_nm_interface="BSD nm"
  2915. echo "int some_variable = 0;" > conftest.$ac_ext
  2916. (eval echo "\"\$as_me:__oline__: $ac_compile\"" >&AS_MESSAGE_LOG_FD)
  2917. (eval "$ac_compile" 2>conftest.err)
  2918. cat conftest.err >&AS_MESSAGE_LOG_FD
  2919. (eval echo "\"\$as_me:__oline__: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD)
  2920. (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out)
  2921. cat conftest.err >&AS_MESSAGE_LOG_FD
  2922. (eval echo "\"\$as_me:__oline__: output\"" >&AS_MESSAGE_LOG_FD)
  2923. cat conftest.out >&AS_MESSAGE_LOG_FD
  2924. if $GREP 'External.*some_variable' conftest.out > /dev/null; then
  2925. lt_cv_nm_interface="MS dumpbin"
  2926. fi
  2927. rm -f conftest*])
  2928. ])# LT_PATH_NM
  2929. # Old names:
  2930. AU_ALIAS([AM_PROG_NM], [LT_PATH_NM])
  2931. AU_ALIAS([AC_PROG_NM], [LT_PATH_NM])
  2932. dnl aclocal-1.4 backwards compatibility:
  2933. dnl AC_DEFUN([AM_PROG_NM], [])
  2934. dnl AC_DEFUN([AC_PROG_NM], [])
  2935. # LT_LIB_M
  2936. # --------
  2937. # check for math library
  2938. AC_DEFUN([LT_LIB_M],
  2939. [AC_REQUIRE([AC_CANONICAL_HOST])dnl
  2940. LIBM=
  2941. case $host in
  2942. *-*-beos* | *-*-cygwin* | *-*-pw32* | *-*-darwin*)
  2943. # These system don't have libm, or don't need it
  2944. ;;
  2945. *-ncr-sysv4.3*)
  2946. AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw")
  2947. AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm")
  2948. ;;
  2949. *)
  2950. AC_CHECK_LIB(m, cos, LIBM="-lm")
  2951. ;;
  2952. esac
  2953. AC_SUBST([LIBM])
  2954. ])# LT_LIB_M
  2955. # Old name:
  2956. AU_ALIAS([AC_CHECK_LIBM], [LT_LIB_M])
  2957. dnl aclocal-1.4 backwards compatibility:
  2958. dnl AC_DEFUN([AC_CHECK_LIBM], [])
  2959. # _LT_COMPILER_NO_RTTI([TAGNAME])
  2960. # -------------------------------
  2961. m4_defun([_LT_COMPILER_NO_RTTI],
  2962. [m4_require([_LT_TAG_COMPILER])dnl
  2963. _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=
  2964. if test "$GCC" = yes; then
  2965. _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin'
  2966. _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions],
  2967. lt_cv_prog_compiler_rtti_exceptions,
  2968. [-fno-rtti -fno-exceptions], [],
  2969. [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"])
  2970. fi
  2971. _LT_TAGDECL([no_builtin_flag], [lt_prog_compiler_no_builtin_flag], [1],
  2972. [Compiler flag to turn off builtin functions])
  2973. ])# _LT_COMPILER_NO_RTTI
  2974. # _LT_CMD_GLOBAL_SYMBOLS
  2975. # ----------------------
  2976. m4_defun([_LT_CMD_GLOBAL_SYMBOLS],
  2977. [AC_REQUIRE([AC_CANONICAL_HOST])dnl
  2978. AC_REQUIRE([AC_PROG_CC])dnl
  2979. AC_REQUIRE([LT_PATH_NM])dnl
  2980. AC_REQUIRE([LT_PATH_LD])dnl
  2981. m4_require([_LT_DECL_SED])dnl
  2982. m4_require([_LT_DECL_EGREP])dnl
  2983. m4_require([_LT_TAG_COMPILER])dnl
  2984. # Check for command to grab the raw symbol name followed by C symbol from nm.
  2985. AC_MSG_CHECKING([command to parse $NM output from $compiler object])
  2986. AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe],
  2987. [
  2988. # These are sane defaults that work on at least a few old systems.
  2989. # [They come from Ultrix. What could be older than Ultrix?!! ;)]
  2990. # Character class describing NM global symbol codes.
  2991. symcode='[[BCDEGRST]]'
  2992. # Regexp to match symbols that can be accessed directly from C.
  2993. sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)'
  2994. # Define system-specific variables.
  2995. case $host_os in
  2996. aix*)
  2997. symcode='[[BCDT]]'
  2998. ;;
  2999. cygwin* | mingw* | pw32* | cegcc*)
  3000. symcode='[[ABCDGISTW]]'
  3001. ;;
  3002. hpux*)
  3003. if test "$host_cpu" = ia64; then
  3004. symcode='[[ABCDEGRST]]'
  3005. fi
  3006. ;;
  3007. irix* | nonstopux*)
  3008. symcode='[[BCDEGRST]]'
  3009. ;;
  3010. osf*)
  3011. symcode='[[BCDEGQRST]]'
  3012. ;;
  3013. solaris*)
  3014. symcode='[[BDRT]]'
  3015. ;;
  3016. sco3.2v5*)
  3017. symcode='[[DT]]'
  3018. ;;
  3019. sysv4.2uw2*)
  3020. symcode='[[DT]]'
  3021. ;;
  3022. sysv5* | sco5v6* | unixware* | OpenUNIX*)
  3023. symcode='[[ABDT]]'
  3024. ;;
  3025. sysv4)
  3026. symcode='[[DFNSTU]]'
  3027. ;;
  3028. esac
  3029. # If we're using GNU nm, then use its standard symbol codes.
  3030. case `$NM -V 2>&1` in
  3031. *GNU* | *'with BFD'*)
  3032. symcode='[[ABCDGIRSTW]]' ;;
  3033. esac
  3034. # Transform an extracted symbol line into a proper C declaration.
  3035. # Some systems (esp. on ia64) link data and code symbols differently,
  3036. # so use this general approach.
  3037. lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'"
  3038. # Transform an extracted symbol line into symbol name and symbol address
  3039. lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p'"
  3040. 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'"
  3041. # Handle CRLF in mingw tool chain
  3042. opt_cr=
  3043. case $build_os in
  3044. mingw*)
  3045. opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp
  3046. ;;
  3047. esac
  3048. # Try without a prefix underscore, then with it.
  3049. for ac_symprfx in "" "_"; do
  3050. # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol.
  3051. symxfrm="\\1 $ac_symprfx\\2 \\2"
  3052. # Write the raw and C identifiers.
  3053. if test "$lt_cv_nm_interface" = "MS dumpbin"; then
  3054. # Fake it for dumpbin and say T for any non-static function
  3055. # and D for any global variable.
  3056. # Also find C++ and __fastcall symbols from MSVC++,
  3057. # which start with @ or ?.
  3058. lt_cv_sys_global_symbol_pipe="$AWK ['"\
  3059. " {last_section=section; section=\$ 3};"\
  3060. " /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\
  3061. " \$ 0!~/External *\|/{next};"\
  3062. " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\
  3063. " {if(hide[section]) next};"\
  3064. " {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\
  3065. " {split(\$ 0, a, /\||\r/); split(a[2], s)};"\
  3066. " s[1]~/^[@?]/{print s[1], s[1]; next};"\
  3067. " s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\
  3068. " ' prfx=^$ac_symprfx]"
  3069. else
  3070. lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'"
  3071. fi
  3072. # Check to see that the pipe works correctly.
  3073. pipe_works=no
  3074. rm -f conftest*
  3075. cat > conftest.$ac_ext <<_LT_EOF
  3076. #ifdef __cplusplus
  3077. extern "C" {
  3078. #endif
  3079. char nm_test_var;
  3080. void nm_test_func(void);
  3081. void nm_test_func(void){}
  3082. #ifdef __cplusplus
  3083. }
  3084. #endif
  3085. int main(){nm_test_var='a';nm_test_func();return(0);}
  3086. _LT_EOF
  3087. if AC_TRY_EVAL(ac_compile); then
  3088. # Now try to grab the symbols.
  3089. nlist=conftest.nm
  3090. if AC_TRY_EVAL(NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist) && test -s "$nlist"; then
  3091. # Try sorting and uniquifying the output.
  3092. if sort "$nlist" | uniq > "$nlist"T; then
  3093. mv -f "$nlist"T "$nlist"
  3094. else
  3095. rm -f "$nlist"T
  3096. fi
  3097. # Make sure that we snagged all the symbols we need.
  3098. if $GREP ' nm_test_var$' "$nlist" >/dev/null; then
  3099. if $GREP ' nm_test_func$' "$nlist" >/dev/null; then
  3100. cat <<_LT_EOF > conftest.$ac_ext
  3101. #ifdef __cplusplus
  3102. extern "C" {
  3103. #endif
  3104. _LT_EOF
  3105. # Now generate the symbol file.
  3106. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext'
  3107. cat <<_LT_EOF >> conftest.$ac_ext
  3108. /* The mapping between symbol names and symbols. */
  3109. const struct {
  3110. const char *name;
  3111. void *address;
  3112. }
  3113. lt__PROGRAM__LTX_preloaded_symbols[[]] =
  3114. {
  3115. { "@PROGRAM@", (void *) 0 },
  3116. _LT_EOF
  3117. $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext
  3118. cat <<\_LT_EOF >> conftest.$ac_ext
  3119. {0, (void *) 0}
  3120. };
  3121. /* This works around a problem in FreeBSD linker */
  3122. #ifdef FREEBSD_WORKAROUND
  3123. static const void *lt_preloaded_setup() {
  3124. return lt__PROGRAM__LTX_preloaded_symbols;
  3125. }
  3126. #endif
  3127. #ifdef __cplusplus
  3128. }
  3129. #endif
  3130. _LT_EOF
  3131. # Now try linking the two files.
  3132. mv conftest.$ac_objext conftstm.$ac_objext
  3133. lt_save_LIBS="$LIBS"
  3134. lt_save_CFLAGS="$CFLAGS"
  3135. LIBS="conftstm.$ac_objext"
  3136. CFLAGS="$CFLAGS$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)"
  3137. if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then
  3138. pipe_works=yes
  3139. fi
  3140. LIBS="$lt_save_LIBS"
  3141. CFLAGS="$lt_save_CFLAGS"
  3142. else
  3143. echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD
  3144. fi
  3145. else
  3146. echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD
  3147. fi
  3148. else
  3149. echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD
  3150. fi
  3151. else
  3152. echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD
  3153. cat conftest.$ac_ext >&5
  3154. fi
  3155. rm -rf conftest* conftst*
  3156. # Do not use the global_symbol_pipe unless it works.
  3157. if test "$pipe_works" = yes; then
  3158. break
  3159. else
  3160. lt_cv_sys_global_symbol_pipe=
  3161. fi
  3162. done
  3163. ])
  3164. if test -z "$lt_cv_sys_global_symbol_pipe"; then
  3165. lt_cv_sys_global_symbol_to_cdecl=
  3166. fi
  3167. if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then
  3168. AC_MSG_RESULT(failed)
  3169. else
  3170. AC_MSG_RESULT(ok)
  3171. fi
  3172. _LT_DECL([global_symbol_pipe], [lt_cv_sys_global_symbol_pipe], [1],
  3173. [Take the output of nm and produce a listing of raw symbols and C names])
  3174. _LT_DECL([global_symbol_to_cdecl], [lt_cv_sys_global_symbol_to_cdecl], [1],
  3175. [Transform the output of nm in a proper C declaration])
  3176. _LT_DECL([global_symbol_to_c_name_address],
  3177. [lt_cv_sys_global_symbol_to_c_name_address], [1],
  3178. [Transform the output of nm in a C name address pair])
  3179. _LT_DECL([global_symbol_to_c_name_address_lib_prefix],
  3180. [lt_cv_sys_global_symbol_to_c_name_address_lib_prefix], [1],
  3181. [Transform the output of nm in a C name address pair when lib prefix is needed])
  3182. ]) # _LT_CMD_GLOBAL_SYMBOLS
  3183. # _LT_COMPILER_PIC([TAGNAME])
  3184. # ---------------------------
  3185. m4_defun([_LT_COMPILER_PIC],
  3186. [m4_require([_LT_TAG_COMPILER])dnl
  3187. _LT_TAGVAR(lt_prog_compiler_wl, $1)=
  3188. _LT_TAGVAR(lt_prog_compiler_pic, $1)=
  3189. _LT_TAGVAR(lt_prog_compiler_static, $1)=
  3190. AC_MSG_CHECKING([for $compiler option to produce PIC])
  3191. m4_if([$1], [CXX], [
  3192. # C++ specific cases for pic, static, wl, etc.
  3193. if test "$GXX" = yes; then
  3194. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3195. _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
  3196. case $host_os in
  3197. aix*)
  3198. # All AIX code is PIC.
  3199. if test "$host_cpu" = ia64; then
  3200. # AIX 5 now supports IA64 processor
  3201. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  3202. fi
  3203. ;;
  3204. amigaos*)
  3205. case $host_cpu in
  3206. powerpc)
  3207. # see comment about AmigaOS4 .so support
  3208. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
  3209. ;;
  3210. m68k)
  3211. # FIXME: we need at least 68020 code to build shared libraries, but
  3212. # adding the `-m68020' flag to GCC prevents building anything better,
  3213. # like `-m68040'.
  3214. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4'
  3215. ;;
  3216. esac
  3217. ;;
  3218. beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)
  3219. # PIC is the default for these OSes.
  3220. ;;
  3221. mingw* | cygwin* | os2* | pw32* | cegcc*)
  3222. # This hack is so that the source file can tell whether it is being
  3223. # built for inclusion in a dll (and should export symbols for example).
  3224. # Although the cygwin gcc ignores -fPIC, still need this for old-style
  3225. # (--disable-auto-import) libraries
  3226. m4_if([$1], [GCJ], [],
  3227. [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])
  3228. ;;
  3229. darwin* | rhapsody*)
  3230. # PIC is the default on this platform
  3231. # Common symbols not allowed in MH_DYLIB files
  3232. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common'
  3233. ;;
  3234. *djgpp*)
  3235. # DJGPP does not support shared libraries at all
  3236. _LT_TAGVAR(lt_prog_compiler_pic, $1)=
  3237. ;;
  3238. interix[[3-9]]*)
  3239. # Interix 3.x gcc -fpic/-fPIC options generate broken code.
  3240. # Instead, we relocate shared libraries at runtime.
  3241. ;;
  3242. sysv4*MP*)
  3243. if test -d /usr/nec; then
  3244. _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic
  3245. fi
  3246. ;;
  3247. hpux*)
  3248. # PIC is the default for 64-bit PA HP-UX, but not for 32-bit
  3249. # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag
  3250. # sets the default TLS model and affects inlining.
  3251. case $host_cpu in
  3252. hppa*64*)
  3253. ;;
  3254. *)
  3255. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
  3256. ;;
  3257. esac
  3258. ;;
  3259. *qnx* | *nto*)
  3260. # QNX uses GNU C++, but need to define -shared option too, otherwise
  3261. # it will coredump.
  3262. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared'
  3263. ;;
  3264. *)
  3265. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
  3266. ;;
  3267. esac
  3268. else
  3269. case $host_os in
  3270. aix[[4-9]]*)
  3271. # All AIX code is PIC.
  3272. if test "$host_cpu" = ia64; then
  3273. # AIX 5 now supports IA64 processor
  3274. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  3275. else
  3276. _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp'
  3277. fi
  3278. ;;
  3279. chorus*)
  3280. case $cc_basename in
  3281. cxch68*)
  3282. # Green Hills C++ Compiler
  3283. # _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"
  3284. ;;
  3285. esac
  3286. ;;
  3287. dgux*)
  3288. case $cc_basename in
  3289. ec++*)
  3290. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  3291. ;;
  3292. ghcx*)
  3293. # Green Hills C++ Compiler
  3294. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
  3295. ;;
  3296. *)
  3297. ;;
  3298. esac
  3299. ;;
  3300. freebsd* | dragonfly*)
  3301. # FreeBSD uses GNU C++
  3302. ;;
  3303. hpux9* | hpux10* | hpux11*)
  3304. case $cc_basename in
  3305. CC*)
  3306. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3307. _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive'
  3308. if test "$host_cpu" != ia64; then
  3309. _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
  3310. fi
  3311. ;;
  3312. aCC*)
  3313. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3314. _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive'
  3315. case $host_cpu in
  3316. hppa*64*|ia64*)
  3317. # +Z the default
  3318. ;;
  3319. *)
  3320. _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
  3321. ;;
  3322. esac
  3323. ;;
  3324. *)
  3325. ;;
  3326. esac
  3327. ;;
  3328. interix*)
  3329. # This is c89, which is MS Visual C++ (no shared libs)
  3330. # Anyone wants to do a port?
  3331. ;;
  3332. irix5* | irix6* | nonstopux*)
  3333. case $cc_basename in
  3334. CC*)
  3335. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3336. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
  3337. # CC pic flag -KPIC is the default.
  3338. ;;
  3339. *)
  3340. ;;
  3341. esac
  3342. ;;
  3343. linux* | k*bsd*-gnu)
  3344. case $cc_basename in
  3345. KCC*)
  3346. # KAI C++ Compiler
  3347. _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,'
  3348. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
  3349. ;;
  3350. ecpc* )
  3351. # old Intel C++ for x86_64 which still supported -KPIC.
  3352. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3353. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  3354. _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
  3355. ;;
  3356. icpc* )
  3357. # Intel C++, used to be incompatible with GCC.
  3358. # ICC 10 doesn't accept -KPIC any more.
  3359. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3360. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
  3361. _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
  3362. ;;
  3363. pgCC* | pgcpp*)
  3364. # Portland Group C++ compiler
  3365. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3366. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic'
  3367. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  3368. ;;
  3369. cxx*)
  3370. # Compaq C++
  3371. # Make sure the PIC flag is empty. It appears that all Alpha
  3372. # Linux and Compaq Tru64 Unix objects are PIC.
  3373. _LT_TAGVAR(lt_prog_compiler_pic, $1)=
  3374. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
  3375. ;;
  3376. xlc* | xlC*)
  3377. # IBM XL 8.0 on PPC
  3378. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3379. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic'
  3380. _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink'
  3381. ;;
  3382. *)
  3383. case `$CC -V 2>&1 | sed 5q` in
  3384. *Sun\ C*)
  3385. # Sun C++ 5.9
  3386. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  3387. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  3388. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
  3389. ;;
  3390. esac
  3391. ;;
  3392. esac
  3393. ;;
  3394. lynxos*)
  3395. ;;
  3396. m88k*)
  3397. ;;
  3398. mvs*)
  3399. case $cc_basename in
  3400. cxx*)
  3401. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall'
  3402. ;;
  3403. *)
  3404. ;;
  3405. esac
  3406. ;;
  3407. netbsd* | netbsdelf*-gnu)
  3408. ;;
  3409. *qnx* | *nto*)
  3410. # QNX uses GNU C++, but need to define -shared option too, otherwise
  3411. # it will coredump.
  3412. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared'
  3413. ;;
  3414. osf3* | osf4* | osf5*)
  3415. case $cc_basename in
  3416. KCC*)
  3417. _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,'
  3418. ;;
  3419. RCC*)
  3420. # Rational C++ 2.4.1
  3421. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
  3422. ;;
  3423. cxx*)
  3424. # Digital/Compaq C++
  3425. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3426. # Make sure the PIC flag is empty. It appears that all Alpha
  3427. # Linux and Compaq Tru64 Unix objects are PIC.
  3428. _LT_TAGVAR(lt_prog_compiler_pic, $1)=
  3429. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
  3430. ;;
  3431. *)
  3432. ;;
  3433. esac
  3434. ;;
  3435. psos*)
  3436. ;;
  3437. solaris*)
  3438. case $cc_basename in
  3439. CC*)
  3440. # Sun C++ 4.2, 5.x and Centerline C++
  3441. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  3442. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  3443. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
  3444. ;;
  3445. gcx*)
  3446. # Green Hills C++ Compiler
  3447. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'
  3448. ;;
  3449. *)
  3450. ;;
  3451. esac
  3452. ;;
  3453. sunos4*)
  3454. case $cc_basename in
  3455. CC*)
  3456. # Sun C++ 4.x
  3457. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
  3458. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  3459. ;;
  3460. lcc*)
  3461. # Lucid
  3462. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
  3463. ;;
  3464. *)
  3465. ;;
  3466. esac
  3467. ;;
  3468. sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)
  3469. case $cc_basename in
  3470. CC*)
  3471. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3472. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  3473. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  3474. ;;
  3475. esac
  3476. ;;
  3477. tandem*)
  3478. case $cc_basename in
  3479. NCC*)
  3480. # NonStop-UX NCC 3.20
  3481. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  3482. ;;
  3483. *)
  3484. ;;
  3485. esac
  3486. ;;
  3487. vxworks*)
  3488. ;;
  3489. *)
  3490. _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
  3491. ;;
  3492. esac
  3493. fi
  3494. ],
  3495. [
  3496. if test "$GCC" = yes; then
  3497. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3498. _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
  3499. case $host_os in
  3500. aix*)
  3501. # All AIX code is PIC.
  3502. if test "$host_cpu" = ia64; then
  3503. # AIX 5 now supports IA64 processor
  3504. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  3505. fi
  3506. ;;
  3507. amigaos*)
  3508. case $host_cpu in
  3509. powerpc)
  3510. # see comment about AmigaOS4 .so support
  3511. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
  3512. ;;
  3513. m68k)
  3514. # FIXME: we need at least 68020 code to build shared libraries, but
  3515. # adding the `-m68020' flag to GCC prevents building anything better,
  3516. # like `-m68040'.
  3517. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4'
  3518. ;;
  3519. esac
  3520. ;;
  3521. beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)
  3522. # PIC is the default for these OSes.
  3523. ;;
  3524. mingw* | cygwin* | pw32* | os2* | cegcc*)
  3525. # This hack is so that the source file can tell whether it is being
  3526. # built for inclusion in a dll (and should export symbols for example).
  3527. # Although the cygwin gcc ignores -fPIC, still need this for old-style
  3528. # (--disable-auto-import) libraries
  3529. m4_if([$1], [GCJ], [],
  3530. [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])
  3531. ;;
  3532. darwin* | rhapsody*)
  3533. # PIC is the default on this platform
  3534. # Common symbols not allowed in MH_DYLIB files
  3535. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common'
  3536. ;;
  3537. hpux*)
  3538. # PIC is the default for 64-bit PA HP-UX, but not for 32-bit
  3539. # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag
  3540. # sets the default TLS model and affects inlining.
  3541. case $host_cpu in
  3542. hppa*64*)
  3543. # +Z the default
  3544. ;;
  3545. *)
  3546. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
  3547. ;;
  3548. esac
  3549. ;;
  3550. interix[[3-9]]*)
  3551. # Interix 3.x gcc -fpic/-fPIC options generate broken code.
  3552. # Instead, we relocate shared libraries at runtime.
  3553. ;;
  3554. msdosdjgpp*)
  3555. # Just because we use GCC doesn't mean we suddenly get shared libraries
  3556. # on systems that don't support them.
  3557. _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
  3558. enable_shared=no
  3559. ;;
  3560. *nto* | *qnx*)
  3561. # QNX uses GNU C++, but need to define -shared option too, otherwise
  3562. # it will coredump.
  3563. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared'
  3564. ;;
  3565. sysv4*MP*)
  3566. if test -d /usr/nec; then
  3567. _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic
  3568. fi
  3569. ;;
  3570. *)
  3571. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
  3572. ;;
  3573. esac
  3574. else
  3575. # PORTME Check for flag to pass linker flags through the system compiler.
  3576. case $host_os in
  3577. aix*)
  3578. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3579. if test "$host_cpu" = ia64; then
  3580. # AIX 5 now supports IA64 processor
  3581. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  3582. else
  3583. _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp'
  3584. fi
  3585. ;;
  3586. mingw* | cygwin* | pw32* | os2* | cegcc*)
  3587. # This hack is so that the source file can tell whether it is being
  3588. # built for inclusion in a dll (and should export symbols for example).
  3589. m4_if([$1], [GCJ], [],
  3590. [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])
  3591. ;;
  3592. hpux9* | hpux10* | hpux11*)
  3593. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3594. # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
  3595. # not for PA HP-UX.
  3596. case $host_cpu in
  3597. hppa*64*|ia64*)
  3598. # +Z the default
  3599. ;;
  3600. *)
  3601. _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
  3602. ;;
  3603. esac
  3604. # Is there a better lt_prog_compiler_static that works with the bundled CC?
  3605. _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive'
  3606. ;;
  3607. irix5* | irix6* | nonstopux*)
  3608. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3609. # PIC (with -KPIC) is the default.
  3610. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
  3611. ;;
  3612. linux* | k*bsd*-gnu)
  3613. case $cc_basename in
  3614. # old Intel for x86_64 which still supported -KPIC.
  3615. ecc*)
  3616. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3617. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  3618. _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
  3619. ;;
  3620. # icc used to be incompatible with GCC.
  3621. # ICC 10 doesn't accept -KPIC any more.
  3622. icc* | ifort*)
  3623. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3624. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
  3625. _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
  3626. ;;
  3627. # Lahey Fortran 8.1.
  3628. lf95*)
  3629. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3630. _LT_TAGVAR(lt_prog_compiler_pic, $1)='--shared'
  3631. _LT_TAGVAR(lt_prog_compiler_static, $1)='--static'
  3632. ;;
  3633. pgcc* | pgf77* | pgf90* | pgf95*)
  3634. # Portland Group compilers (*not* the Pentium gcc compiler,
  3635. # which looks to be a dead project)
  3636. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3637. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic'
  3638. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  3639. ;;
  3640. ccc*)
  3641. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3642. # All Alpha code is PIC.
  3643. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
  3644. ;;
  3645. xl*)
  3646. # IBM XL C 8.0/Fortran 10.1 on PPC
  3647. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3648. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic'
  3649. _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink'
  3650. ;;
  3651. *)
  3652. case `$CC -V 2>&1 | sed 5q` in
  3653. *Sun\ C*)
  3654. # Sun C 5.9
  3655. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  3656. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  3657. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3658. ;;
  3659. *Sun\ F*)
  3660. # Sun Fortran 8.3 passes all unrecognized flags to the linker
  3661. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  3662. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  3663. _LT_TAGVAR(lt_prog_compiler_wl, $1)=''
  3664. ;;
  3665. esac
  3666. ;;
  3667. esac
  3668. ;;
  3669. newsos6)
  3670. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  3671. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  3672. ;;
  3673. *nto* | *qnx*)
  3674. # QNX uses GNU C++, but need to define -shared option too, otherwise
  3675. # it will coredump.
  3676. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared'
  3677. ;;
  3678. osf3* | osf4* | osf5*)
  3679. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3680. # All OSF/1 code is PIC.
  3681. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
  3682. ;;
  3683. rdos*)
  3684. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
  3685. ;;
  3686. solaris*)
  3687. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  3688. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  3689. case $cc_basename in
  3690. f77* | f90* | f95*)
  3691. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';;
  3692. *)
  3693. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';;
  3694. esac
  3695. ;;
  3696. sunos4*)
  3697. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
  3698. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'
  3699. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  3700. ;;
  3701. sysv4 | sysv4.2uw2* | sysv4.3*)
  3702. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3703. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  3704. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  3705. ;;
  3706. sysv4*MP*)
  3707. if test -d /usr/nec ;then
  3708. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic'
  3709. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  3710. fi
  3711. ;;
  3712. sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)
  3713. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3714. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  3715. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  3716. ;;
  3717. unicos*)
  3718. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3719. _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
  3720. ;;
  3721. uts4*)
  3722. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
  3723. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  3724. ;;
  3725. *)
  3726. _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
  3727. ;;
  3728. esac
  3729. fi
  3730. ])
  3731. case $host_os in
  3732. # For platforms which do not support PIC, -DPIC is meaningless:
  3733. *djgpp*)
  3734. _LT_TAGVAR(lt_prog_compiler_pic, $1)=
  3735. ;;
  3736. *)
  3737. _LT_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])"
  3738. ;;
  3739. esac
  3740. AC_MSG_RESULT([$_LT_TAGVAR(lt_prog_compiler_pic, $1)])
  3741. _LT_TAGDECL([wl], [lt_prog_compiler_wl], [1],
  3742. [How to pass a linker flag through the compiler])
  3743. #
  3744. # Check to make sure the PIC flag actually works.
  3745. #
  3746. if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then
  3747. _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, $1) works],
  3748. [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, $1)],
  3749. [$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])], [],
  3750. [case $_LT_TAGVAR(lt_prog_compiler_pic, $1) in
  3751. "" | " "*) ;;
  3752. *) _LT_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_TAGVAR(lt_prog_compiler_pic, $1)" ;;
  3753. esac],
  3754. [_LT_TAGVAR(lt_prog_compiler_pic, $1)=
  3755. _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no])
  3756. fi
  3757. _LT_TAGDECL([pic_flag], [lt_prog_compiler_pic], [1],
  3758. [Additional compiler flags for building library objects])
  3759. #
  3760. # Check to make sure the static flag actually works.
  3761. #
  3762. wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_TAGVAR(lt_prog_compiler_static, $1)\"
  3763. _LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works],
  3764. _LT_TAGVAR(lt_cv_prog_compiler_static_works, $1),
  3765. $lt_tmp_static_flag,
  3766. [],
  3767. [_LT_TAGVAR(lt_prog_compiler_static, $1)=])
  3768. _LT_TAGDECL([link_static_flag], [lt_prog_compiler_static], [1],
  3769. [Compiler flag to prevent dynamic linking])
  3770. ])# _LT_COMPILER_PIC
  3771. # _LT_LINKER_SHLIBS([TAGNAME])
  3772. # ----------------------------
  3773. # See if the linker supports building shared libraries.
  3774. m4_defun([_LT_LINKER_SHLIBS],
  3775. [AC_REQUIRE([LT_PATH_LD])dnl
  3776. AC_REQUIRE([LT_PATH_NM])dnl
  3777. m4_require([_LT_FILEUTILS_DEFAULTS])dnl
  3778. m4_require([_LT_DECL_EGREP])dnl
  3779. m4_require([_LT_DECL_SED])dnl
  3780. m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl
  3781. m4_require([_LT_TAG_COMPILER])dnl
  3782. AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries])
  3783. m4_if([$1], [CXX], [
  3784. _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
  3785. case $host_os in
  3786. aix[[4-9]]*)
  3787. # If we're using GNU nm, then we don't want the "-C" option.
  3788. # -C means demangle to AIX nm, but means don't demangle with GNU nm
  3789. if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then
  3790. _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols'
  3791. else
  3792. _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'
  3793. fi
  3794. ;;
  3795. pw32*)
  3796. _LT_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds"
  3797. ;;
  3798. cygwin* | mingw* | cegcc*)
  3799. _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;/^.*[[ ]]__nm__/s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols'
  3800. ;;
  3801. linux* | k*bsd*-gnu)
  3802. _LT_TAGVAR(link_all_deplibs, $1)=no
  3803. ;;
  3804. *)
  3805. _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
  3806. ;;
  3807. esac
  3808. _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*']
  3809. ], [
  3810. runpath_var=
  3811. _LT_TAGVAR(allow_undefined_flag, $1)=
  3812. _LT_TAGVAR(always_export_symbols, $1)=no
  3813. _LT_TAGVAR(archive_cmds, $1)=
  3814. _LT_TAGVAR(archive_expsym_cmds, $1)=
  3815. _LT_TAGVAR(compiler_needs_object, $1)=no
  3816. _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no
  3817. _LT_TAGVAR(export_dynamic_flag_spec, $1)=
  3818. _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
  3819. _LT_TAGVAR(hardcode_automatic, $1)=no
  3820. _LT_TAGVAR(hardcode_direct, $1)=no
  3821. _LT_TAGVAR(hardcode_direct_absolute, $1)=no
  3822. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=
  3823. _LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)=
  3824. _LT_TAGVAR(hardcode_libdir_separator, $1)=
  3825. _LT_TAGVAR(hardcode_minus_L, $1)=no
  3826. _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
  3827. _LT_TAGVAR(inherit_rpath, $1)=no
  3828. _LT_TAGVAR(link_all_deplibs, $1)=unknown
  3829. _LT_TAGVAR(module_cmds, $1)=
  3830. _LT_TAGVAR(module_expsym_cmds, $1)=
  3831. _LT_TAGVAR(old_archive_from_new_cmds, $1)=
  3832. _LT_TAGVAR(old_archive_from_expsyms_cmds, $1)=
  3833. _LT_TAGVAR(thread_safe_flag_spec, $1)=
  3834. _LT_TAGVAR(whole_archive_flag_spec, $1)=
  3835. # include_expsyms should be a list of space-separated symbols to be *always*
  3836. # included in the symbol list
  3837. _LT_TAGVAR(include_expsyms, $1)=
  3838. # exclude_expsyms can be an extended regexp of symbols to exclude
  3839. # it will be wrapped by ` (' and `)$', so one must not match beginning or
  3840. # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc',
  3841. # as well as any symbol that contains `d'.
  3842. _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*']
  3843. # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out
  3844. # platforms (ab)use it in PIC code, but their linkers get confused if
  3845. # the symbol is explicitly referenced. Since portable code cannot
  3846. # rely on this symbol name, it's probably fine to never include it in
  3847. # preloaded symbol tables.
  3848. # Exclude shared library initialization/finalization symbols.
  3849. dnl Note also adjust exclude_expsyms for C++ above.
  3850. extract_expsyms_cmds=
  3851. case $host_os in
  3852. cygwin* | mingw* | pw32* | cegcc*)
  3853. # FIXME: the MSVC++ port hasn't been tested in a loooong time
  3854. # When not using gcc, we currently assume that we are using
  3855. # Microsoft Visual C++.
  3856. if test "$GCC" != yes; then
  3857. with_gnu_ld=no
  3858. fi
  3859. ;;
  3860. interix*)
  3861. # we just hope/assume this is gcc and not c89 (= MSVC++)
  3862. with_gnu_ld=yes
  3863. ;;
  3864. openbsd*)
  3865. with_gnu_ld=no
  3866. ;;
  3867. linux* | k*bsd*-gnu)
  3868. _LT_TAGVAR(link_all_deplibs, $1)=no
  3869. ;;
  3870. esac
  3871. _LT_TAGVAR(ld_shlibs, $1)=yes
  3872. if test "$with_gnu_ld" = yes; then
  3873. # If archive_cmds runs LD, not CC, wlarc should be empty
  3874. wlarc='${wl}'
  3875. # Set some defaults for GNU ld with shared library support. These
  3876. # are reset later if shared libraries are not supported. Putting them
  3877. # here allows them to be overridden if necessary.
  3878. runpath_var=LD_RUN_PATH
  3879. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
  3880. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
  3881. # ancient GNU ld didn't support --whole-archive et. al.
  3882. if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then
  3883. _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
  3884. else
  3885. _LT_TAGVAR(whole_archive_flag_spec, $1)=
  3886. fi
  3887. supports_anon_versioning=no
  3888. case `$LD -v 2>&1` in
  3889. *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11
  3890. *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ...
  3891. *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ...
  3892. *\ 2.11.*) ;; # other 2.11 versions
  3893. *) supports_anon_versioning=yes ;;
  3894. esac
  3895. # See if GNU ld supports shared libraries.
  3896. case $host_os in
  3897. aix[[3-9]]*)
  3898. # On AIX/PPC, the GNU linker is very broken
  3899. if test "$host_cpu" != ia64; then
  3900. _LT_TAGVAR(ld_shlibs, $1)=no
  3901. cat <<_LT_EOF 1>&2
  3902. *** Warning: the GNU linker, at least up to release 2.9.1, is reported
  3903. *** to be unable to reliably create shared libraries on AIX.
  3904. *** Therefore, libtool is disabling shared libraries support. If you
  3905. *** really care for shared libraries, you may want to modify your PATH
  3906. *** so that a non-GNU linker is found, and then restart.
  3907. _LT_EOF
  3908. fi
  3909. ;;
  3910. amigaos*)
  3911. case $host_cpu in
  3912. powerpc)
  3913. # see comment about AmigaOS4 .so support
  3914. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  3915. _LT_TAGVAR(archive_expsym_cmds, $1)=''
  3916. ;;
  3917. m68k)
  3918. _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)'
  3919. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
  3920. _LT_TAGVAR(hardcode_minus_L, $1)=yes
  3921. ;;
  3922. esac
  3923. ;;
  3924. beos*)
  3925. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
  3926. _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
  3927. # Joseph Beckenbach <jrb3@best.com> says some releases of gcc
  3928. # support --undefined. This deserves some investigation. FIXME
  3929. _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  3930. else
  3931. _LT_TAGVAR(ld_shlibs, $1)=no
  3932. fi
  3933. ;;
  3934. cygwin* | mingw* | pw32* | cegcc*)
  3935. # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless,
  3936. # as there is no search path for DLLs.
  3937. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
  3938. _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
  3939. _LT_TAGVAR(always_export_symbols, $1)=no
  3940. _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
  3941. _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'
  3942. if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then
  3943. _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'
  3944. # If the export-symbols file already is a .def file (1st line
  3945. # is EXPORTS), use it as is; otherwise, prepend...
  3946. _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
  3947. cp $export_symbols $output_objdir/$soname.def;
  3948. else
  3949. echo EXPORTS > $output_objdir/$soname.def;
  3950. cat $export_symbols >> $output_objdir/$soname.def;
  3951. fi~
  3952. $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
  3953. else
  3954. _LT_TAGVAR(ld_shlibs, $1)=no
  3955. fi
  3956. ;;
  3957. interix[[3-9]]*)
  3958. _LT_TAGVAR(hardcode_direct, $1)=no
  3959. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  3960. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
  3961. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
  3962. # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc.
  3963. # Instead, shared libraries are loaded at an image base (0x10000000 by
  3964. # default) and relocated if they conflict, which is a slow very memory
  3965. # consuming and fragmenting process. To avoid this, we pick a random,
  3966. # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link
  3967. # time. Moving up from 0x10000000 also allows more sbrk(2) space.
  3968. _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'
  3969. _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'
  3970. ;;
  3971. gnu* | linux* | tpf* | k*bsd*-gnu)
  3972. tmp_diet=no
  3973. if test "$host_os" = linux-dietlibc; then
  3974. case $cc_basename in
  3975. diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn)
  3976. esac
  3977. fi
  3978. if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \
  3979. && test "$tmp_diet" = no
  3980. then
  3981. tmp_addflag=
  3982. tmp_sharedflag='-shared'
  3983. case $cc_basename,$host_cpu in
  3984. pgcc*) # Portland Group C compiler
  3985. _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive'
  3986. tmp_addflag=' $pic_flag'
  3987. ;;
  3988. pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers
  3989. _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive'
  3990. tmp_addflag=' $pic_flag -Mnomain' ;;
  3991. ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64
  3992. tmp_addflag=' -i_dynamic' ;;
  3993. efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64
  3994. tmp_addflag=' -i_dynamic -nofor_main' ;;
  3995. ifc* | ifort*) # Intel Fortran compiler
  3996. tmp_addflag=' -nofor_main' ;;
  3997. lf95*) # Lahey Fortran 8.1
  3998. _LT_TAGVAR(whole_archive_flag_spec, $1)=
  3999. tmp_sharedflag='--shared' ;;
  4000. xl[[cC]]*) # IBM XL C 8.0 on PPC (deal with xlf below)
  4001. tmp_sharedflag='-qmkshrobj'
  4002. tmp_addflag= ;;
  4003. esac
  4004. case `$CC -V 2>&1 | sed 5q` in
  4005. *Sun\ C*) # Sun C 5.9
  4006. _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; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive'
  4007. _LT_TAGVAR(compiler_needs_object, $1)=yes
  4008. tmp_sharedflag='-G' ;;
  4009. *Sun\ F*) # Sun Fortran 8.3
  4010. tmp_sharedflag='-G' ;;
  4011. esac
  4012. _LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  4013. if test "x$supports_anon_versioning" = xyes; then
  4014. _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~
  4015. cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
  4016. echo "local: *; };" >> $output_objdir/$libname.ver~
  4017. $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'
  4018. fi
  4019. case $cc_basename in
  4020. xlf*)
  4021. # IBM XL Fortran 10.1 on PPC cannot create shared libs itself
  4022. _LT_TAGVAR(whole_archive_flag_spec, $1)='--whole-archive$convenience --no-whole-archive'
  4023. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=
  4024. _LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='-rpath $libdir'
  4025. _LT_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $compiler_flags -soname $soname -o $lib'
  4026. if test "x$supports_anon_versioning" = xyes; then
  4027. _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~
  4028. cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
  4029. echo "local: *; };" >> $output_objdir/$libname.ver~
  4030. $LD -shared $libobjs $deplibs $compiler_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib'
  4031. fi
  4032. ;;
  4033. esac
  4034. else
  4035. _LT_TAGVAR(ld_shlibs, $1)=no
  4036. fi
  4037. ;;
  4038. netbsd* | netbsdelf*-gnu)
  4039. if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
  4040. _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'
  4041. wlarc=
  4042. else
  4043. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  4044. _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'
  4045. fi
  4046. ;;
  4047. solaris*)
  4048. if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then
  4049. _LT_TAGVAR(ld_shlibs, $1)=no
  4050. cat <<_LT_EOF 1>&2
  4051. *** Warning: The releases 2.8.* of the GNU linker cannot reliably
  4052. *** create shared libraries on Solaris systems. Therefore, libtool
  4053. *** is disabling shared libraries support. We urge you to upgrade GNU
  4054. *** binutils to release 2.9.1 or newer. Another option is to modify
  4055. *** your PATH or compiler configuration so that the native linker is
  4056. *** used, and then restart.
  4057. _LT_EOF
  4058. elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
  4059. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  4060. _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'
  4061. else
  4062. _LT_TAGVAR(ld_shlibs, $1)=no
  4063. fi
  4064. ;;
  4065. sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*)
  4066. case `$LD -v 2>&1` in
  4067. *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*)
  4068. _LT_TAGVAR(ld_shlibs, $1)=no
  4069. cat <<_LT_EOF 1>&2
  4070. *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not
  4071. *** reliably create shared libraries on SCO systems. Therefore, libtool
  4072. *** is disabling shared libraries support. We urge you to upgrade GNU
  4073. *** binutils to release 2.16.91.0.3 or newer. Another option is to modify
  4074. *** your PATH or compiler configuration so that the native linker is
  4075. *** used, and then restart.
  4076. _LT_EOF
  4077. ;;
  4078. *)
  4079. # For security reasons, it is highly recommended that you always
  4080. # use absolute paths for naming shared libraries, and exclude the
  4081. # DT_RUNPATH tag from executables and libraries. But doing so
  4082. # requires that you compile everything twice, which is a pain.
  4083. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
  4084. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
  4085. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  4086. _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'
  4087. else
  4088. _LT_TAGVAR(ld_shlibs, $1)=no
  4089. fi
  4090. ;;
  4091. esac
  4092. ;;
  4093. sunos4*)
  4094. _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags'
  4095. wlarc=
  4096. _LT_TAGVAR(hardcode_direct, $1)=yes
  4097. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  4098. ;;
  4099. *)
  4100. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
  4101. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  4102. _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'
  4103. else
  4104. _LT_TAGVAR(ld_shlibs, $1)=no
  4105. fi
  4106. ;;
  4107. esac
  4108. if test "$_LT_TAGVAR(ld_shlibs, $1)" = no; then
  4109. runpath_var=
  4110. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=
  4111. _LT_TAGVAR(export_dynamic_flag_spec, $1)=
  4112. _LT_TAGVAR(whole_archive_flag_spec, $1)=
  4113. fi
  4114. else
  4115. # PORTME fill in a description of your system's linker (not GNU ld)
  4116. case $host_os in
  4117. aix3*)
  4118. _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
  4119. _LT_TAGVAR(always_export_symbols, $1)=yes
  4120. _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'
  4121. # Note: this linker hardcodes the directories in LIBPATH if there
  4122. # are no directories specified by -L.
  4123. _LT_TAGVAR(hardcode_minus_L, $1)=yes
  4124. if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then
  4125. # Neither direct hardcoding nor static linking is supported with a
  4126. # broken collect2.
  4127. _LT_TAGVAR(hardcode_direct, $1)=unsupported
  4128. fi
  4129. ;;
  4130. aix[[4-9]]*)
  4131. if test "$host_cpu" = ia64; then
  4132. # On IA64, the linker does run time linking by default, so we don't
  4133. # have to do anything special.
  4134. aix_use_runtimelinking=no
  4135. exp_sym_flag='-Bexport'
  4136. no_entry_flag=""
  4137. else
  4138. # If we're using GNU nm, then we don't want the "-C" option.
  4139. # -C means demangle to AIX nm, but means don't demangle with GNU nm
  4140. if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then
  4141. _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols'
  4142. else
  4143. _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'
  4144. fi
  4145. aix_use_runtimelinking=no
  4146. # Test if we are trying to use run time linking or normal
  4147. # AIX style linking. If -brtl is somewhere in LDFLAGS, we
  4148. # need to do runtime linking.
  4149. case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*)
  4150. for ld_flag in $LDFLAGS; do
  4151. if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then
  4152. aix_use_runtimelinking=yes
  4153. break
  4154. fi
  4155. done
  4156. ;;
  4157. esac
  4158. exp_sym_flag='-bexport'
  4159. no_entry_flag='-bnoentry'
  4160. fi
  4161. # When large executables or shared objects are built, AIX ld can
  4162. # have problems creating the table of contents. If linking a library
  4163. # or program results in "error TOC overflow" add -mminimal-toc to
  4164. # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not
  4165. # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.
  4166. _LT_TAGVAR(archive_cmds, $1)=''
  4167. _LT_TAGVAR(hardcode_direct, $1)=yes
  4168. _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
  4169. _LT_TAGVAR(hardcode_libdir_separator, $1)=':'
  4170. _LT_TAGVAR(link_all_deplibs, $1)=yes
  4171. _LT_TAGVAR(file_list_spec, $1)='${wl}-f,'
  4172. if test "$GCC" = yes; then
  4173. case $host_os in aix4.[[012]]|aix4.[[012]].*)
  4174. # We only want to do this on AIX 4.2 and lower, the check
  4175. # below for broken collect2 doesn't work under 4.3+
  4176. collect2name=`${CC} -print-prog-name=collect2`
  4177. if test -f "$collect2name" &&
  4178. strings "$collect2name" | $GREP resolve_lib_name >/dev/null
  4179. then
  4180. # We have reworked collect2
  4181. :
  4182. else
  4183. # We have old collect2
  4184. _LT_TAGVAR(hardcode_direct, $1)=unsupported
  4185. # It fails to find uninstalled libraries when the uninstalled
  4186. # path is not listed in the libpath. Setting hardcode_minus_L
  4187. # to unsupported forces relinking
  4188. _LT_TAGVAR(hardcode_minus_L, $1)=yes
  4189. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
  4190. _LT_TAGVAR(hardcode_libdir_separator, $1)=
  4191. fi
  4192. ;;
  4193. esac
  4194. shared_flag='-shared'
  4195. if test "$aix_use_runtimelinking" = yes; then
  4196. shared_flag="$shared_flag "'${wl}-G'
  4197. fi
  4198. _LT_TAGVAR(link_all_deplibs, $1)=no
  4199. else
  4200. # not using gcc
  4201. if test "$host_cpu" = ia64; then
  4202. # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release
  4203. # chokes on -Wl,-G. The following line is correct:
  4204. shared_flag='-G'
  4205. else
  4206. if test "$aix_use_runtimelinking" = yes; then
  4207. shared_flag='${wl}-G'
  4208. else
  4209. shared_flag='${wl}-bM:SRE'
  4210. fi
  4211. fi
  4212. fi
  4213. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall'
  4214. # It seems that -bexpall does not export symbols beginning with
  4215. # underscore (_), so it is better to generate a list of symbols to export.
  4216. _LT_TAGVAR(always_export_symbols, $1)=yes
  4217. if test "$aix_use_runtimelinking" = yes; then
  4218. # Warning - without using the other runtime loading flags (-brtl),
  4219. # -berok will link without error, but may produce a broken library.
  4220. _LT_TAGVAR(allow_undefined_flag, $1)='-berok'
  4221. # Determine the default libpath from the value encoded in an
  4222. # empty executable.
  4223. _LT_SYS_MODULE_PATH_AIX
  4224. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
  4225. _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 $ECHO "X${wl}${allow_undefined_flag}" | $Xsed; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag"
  4226. else
  4227. if test "$host_cpu" = ia64; then
  4228. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib'
  4229. _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs"
  4230. _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"
  4231. else
  4232. # Determine the default libpath from the value encoded in an
  4233. # empty executable.
  4234. _LT_SYS_MODULE_PATH_AIX
  4235. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
  4236. # Warning - without using the other run time loading flags,
  4237. # -berok will link without error, but may produce a broken library.
  4238. _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok'
  4239. _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok'
  4240. # Exported symbols can be pulled into shared objects from archives
  4241. _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience'
  4242. _LT_TAGVAR(archive_cmds_need_lc, $1)=yes
  4243. # This is similar to how AIX traditionally builds its shared libraries.
  4244. _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'
  4245. fi
  4246. fi
  4247. ;;
  4248. amigaos*)
  4249. case $host_cpu in
  4250. powerpc)
  4251. # see comment about AmigaOS4 .so support
  4252. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  4253. _LT_TAGVAR(archive_expsym_cmds, $1)=''
  4254. ;;
  4255. m68k)
  4256. _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)'
  4257. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
  4258. _LT_TAGVAR(hardcode_minus_L, $1)=yes
  4259. ;;
  4260. esac
  4261. ;;
  4262. bsdi[[45]]*)
  4263. _LT_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic
  4264. ;;
  4265. cygwin* | mingw* | pw32* | cegcc*)
  4266. # When not using gcc, we currently assume that we are using
  4267. # Microsoft Visual C++.
  4268. # hardcode_libdir_flag_spec is actually meaningless, as there is
  4269. # no search path for DLLs.
  4270. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' '
  4271. _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
  4272. # Tell ltmain to make .lib files, not .a files.
  4273. libext=lib
  4274. # Tell ltmain to make .dll files, not .so files.
  4275. shrext_cmds=".dll"
  4276. # FIXME: Setting linknames here is a bad hack.
  4277. _LT_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `$ECHO "X$deplibs" | $Xsed -e '\''s/ -lc$//'\''` -link -dll~linknames='
  4278. # The linker will automatically build a .lib file if we build a DLL.
  4279. _LT_TAGVAR(old_archive_from_new_cmds, $1)='true'
  4280. # FIXME: Should let the user specify the lib program.
  4281. _LT_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs'
  4282. _LT_TAGVAR(fix_srcfile_path, $1)='`cygpath -w "$srcfile"`'
  4283. _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
  4284. ;;
  4285. darwin* | rhapsody*)
  4286. _LT_DARWIN_LINKER_FEATURES($1)
  4287. ;;
  4288. dgux*)
  4289. _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
  4290. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
  4291. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  4292. ;;
  4293. freebsd1*)
  4294. _LT_TAGVAR(ld_shlibs, $1)=no
  4295. ;;
  4296. # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor
  4297. # support. Future versions do this automatically, but an explicit c++rt0.o
  4298. # does not break anything, and helps significantly (at the cost of a little
  4299. # extra space).
  4300. freebsd2.2*)
  4301. _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o'
  4302. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
  4303. _LT_TAGVAR(hardcode_direct, $1)=yes
  4304. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  4305. ;;
  4306. # Unfortunately, older versions of FreeBSD 2 do not have this feature.
  4307. freebsd2*)
  4308. _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'
  4309. _LT_TAGVAR(hardcode_direct, $1)=yes
  4310. _LT_TAGVAR(hardcode_minus_L, $1)=yes
  4311. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  4312. ;;
  4313. # FreeBSD 3 and greater uses gcc -shared to do shared libraries.
  4314. freebsd* | dragonfly*)
  4315. _LT_TAGVAR(archive_cmds, $1)='$CC -shared -o $lib $libobjs $deplibs $compiler_flags'
  4316. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
  4317. _LT_TAGVAR(hardcode_direct, $1)=yes
  4318. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  4319. ;;
  4320. hpux9*)
  4321. if test "$GCC" = yes; then
  4322. _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
  4323. else
  4324. _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'
  4325. fi
  4326. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
  4327. _LT_TAGVAR(hardcode_libdir_separator, $1)=:
  4328. _LT_TAGVAR(hardcode_direct, $1)=yes
  4329. # hardcode_minus_L: Not really in the search PATH,
  4330. # but as the default location of the library.
  4331. _LT_TAGVAR(hardcode_minus_L, $1)=yes
  4332. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
  4333. ;;
  4334. hpux10*)
  4335. if test "$GCC" = yes -a "$with_gnu_ld" = no; then
  4336. _LT_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
  4337. else
  4338. _LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'
  4339. fi
  4340. if test "$with_gnu_ld" = no; then
  4341. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
  4342. _LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir'
  4343. _LT_TAGVAR(hardcode_libdir_separator, $1)=:
  4344. _LT_TAGVAR(hardcode_direct, $1)=yes
  4345. _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
  4346. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
  4347. # hardcode_minus_L: Not really in the search PATH,
  4348. # but as the default location of the library.
  4349. _LT_TAGVAR(hardcode_minus_L, $1)=yes
  4350. fi
  4351. ;;
  4352. hpux11*)
  4353. if test "$GCC" = yes -a "$with_gnu_ld" = no; then
  4354. case $host_cpu in
  4355. hppa*64*)
  4356. _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
  4357. ;;
  4358. ia64*)
  4359. _LT_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'
  4360. ;;
  4361. *)
  4362. _LT_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
  4363. ;;
  4364. esac
  4365. else
  4366. case $host_cpu in
  4367. hppa*64*)
  4368. _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
  4369. ;;
  4370. ia64*)
  4371. _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'
  4372. ;;
  4373. *)
  4374. _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
  4375. ;;
  4376. esac
  4377. fi
  4378. if test "$with_gnu_ld" = no; then
  4379. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
  4380. _LT_TAGVAR(hardcode_libdir_separator, $1)=:
  4381. case $host_cpu in
  4382. hppa*64*|ia64*)
  4383. _LT_TAGVAR(hardcode_direct, $1)=no
  4384. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  4385. ;;
  4386. *)
  4387. _LT_TAGVAR(hardcode_direct, $1)=yes
  4388. _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
  4389. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
  4390. # hardcode_minus_L: Not really in the search PATH,
  4391. # but as the default location of the library.
  4392. _LT_TAGVAR(hardcode_minus_L, $1)=yes
  4393. ;;
  4394. esac
  4395. fi
  4396. ;;
  4397. irix5* | irix6* | nonstopux*)
  4398. if test "$GCC" = yes; then
  4399. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
  4400. # Try to use the -exported_symbol ld option, if it does not
  4401. # work, assume that -exports_file does not work either and
  4402. # implicitly export all symbols.
  4403. save_LDFLAGS="$LDFLAGS"
  4404. LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null"
  4405. AC_LINK_IFELSE(int foo(void) {},
  4406. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib'
  4407. )
  4408. LDFLAGS="$save_LDFLAGS"
  4409. else
  4410. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib'
  4411. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib'
  4412. fi
  4413. _LT_TAGVAR(archive_cmds_need_lc, $1)='no'
  4414. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
  4415. _LT_TAGVAR(hardcode_libdir_separator, $1)=:
  4416. _LT_TAGVAR(inherit_rpath, $1)=yes
  4417. _LT_TAGVAR(link_all_deplibs, $1)=yes
  4418. ;;
  4419. netbsd* | netbsdelf*-gnu)
  4420. if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
  4421. _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out
  4422. else
  4423. _LT_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF
  4424. fi
  4425. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
  4426. _LT_TAGVAR(hardcode_direct, $1)=yes
  4427. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  4428. ;;
  4429. newsos6)
  4430. _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
  4431. _LT_TAGVAR(hardcode_direct, $1)=yes
  4432. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
  4433. _LT_TAGVAR(hardcode_libdir_separator, $1)=:
  4434. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  4435. ;;
  4436. *nto* | *qnx*)
  4437. ;;
  4438. openbsd*)
  4439. if test -f /usr/libexec/ld.so; then
  4440. _LT_TAGVAR(hardcode_direct, $1)=yes
  4441. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  4442. _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
  4443. if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
  4444. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
  4445. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols'
  4446. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
  4447. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
  4448. else
  4449. case $host_os in
  4450. openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*)
  4451. _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'
  4452. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
  4453. ;;
  4454. *)
  4455. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
  4456. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
  4457. ;;
  4458. esac
  4459. fi
  4460. else
  4461. _LT_TAGVAR(ld_shlibs, $1)=no
  4462. fi
  4463. ;;
  4464. os2*)
  4465. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
  4466. _LT_TAGVAR(hardcode_minus_L, $1)=yes
  4467. _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
  4468. _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'
  4469. _LT_TAGVAR(old_archive_from_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def'
  4470. ;;
  4471. osf3*)
  4472. if test "$GCC" = yes; then
  4473. _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
  4474. _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
  4475. else
  4476. _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*'
  4477. _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib'
  4478. fi
  4479. _LT_TAGVAR(archive_cmds_need_lc, $1)='no'
  4480. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
  4481. _LT_TAGVAR(hardcode_libdir_separator, $1)=:
  4482. ;;
  4483. osf4* | osf5*) # as osf3* with the addition of -msym flag
  4484. if test "$GCC" = yes; then
  4485. _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
  4486. _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
  4487. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
  4488. else
  4489. _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*'
  4490. _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib'
  4491. _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~
  4492. $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp'
  4493. # Both c and cxx compiler support -rpath directly
  4494. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'
  4495. fi
  4496. _LT_TAGVAR(archive_cmds_need_lc, $1)='no'
  4497. _LT_TAGVAR(hardcode_libdir_separator, $1)=:
  4498. ;;
  4499. solaris*)
  4500. _LT_TAGVAR(no_undefined_flag, $1)=' -z defs'
  4501. if test "$GCC" = yes; then
  4502. wlarc='${wl}'
  4503. _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
  4504. _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
  4505. $CC -shared ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp'
  4506. else
  4507. case `$CC -V 2>&1` in
  4508. *"Compilers 5.0"*)
  4509. wlarc=''
  4510. _LT_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags'
  4511. _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
  4512. $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp'
  4513. ;;
  4514. *)
  4515. wlarc='${wl}'
  4516. _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags'
  4517. _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
  4518. $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp'
  4519. ;;
  4520. esac
  4521. fi
  4522. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
  4523. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  4524. case $host_os in
  4525. solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;
  4526. *)
  4527. # The compiler driver will combine and reorder linker options,
  4528. # but understands `-z linker_flag'. GCC discards it without `$wl',
  4529. # but is careful enough not to reorder.
  4530. # Supported since Solaris 2.6 (maybe 2.5.1?)
  4531. if test "$GCC" = yes; then
  4532. _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract'
  4533. else
  4534. _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract'
  4535. fi
  4536. ;;
  4537. esac
  4538. _LT_TAGVAR(link_all_deplibs, $1)=yes
  4539. ;;
  4540. sunos4*)
  4541. if test "x$host_vendor" = xsequent; then
  4542. # Use $CC to link under sequent, because it throws in some extra .o
  4543. # files that make .init and .fini sections work.
  4544. _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags'
  4545. else
  4546. _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags'
  4547. fi
  4548. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
  4549. _LT_TAGVAR(hardcode_direct, $1)=yes
  4550. _LT_TAGVAR(hardcode_minus_L, $1)=yes
  4551. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  4552. ;;
  4553. sysv4)
  4554. case $host_vendor in
  4555. sni)
  4556. _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
  4557. _LT_TAGVAR(hardcode_direct, $1)=yes # is this really true???
  4558. ;;
  4559. siemens)
  4560. ## LD is ld it makes a PLAMLIB
  4561. ## CC just makes a GrossModule.
  4562. _LT_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags'
  4563. _LT_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs'
  4564. _LT_TAGVAR(hardcode_direct, $1)=no
  4565. ;;
  4566. motorola)
  4567. _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
  4568. _LT_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie
  4569. ;;
  4570. esac
  4571. runpath_var='LD_RUN_PATH'
  4572. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  4573. ;;
  4574. sysv4.3*)
  4575. _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
  4576. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  4577. _LT_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport'
  4578. ;;
  4579. sysv4*MP*)
  4580. if test -d /usr/nec; then
  4581. _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
  4582. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  4583. runpath_var=LD_RUN_PATH
  4584. hardcode_runpath_var=yes
  4585. _LT_TAGVAR(ld_shlibs, $1)=yes
  4586. fi
  4587. ;;
  4588. sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*)
  4589. _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text'
  4590. _LT_TAGVAR(archive_cmds_need_lc, $1)=no
  4591. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  4592. runpath_var='LD_RUN_PATH'
  4593. if test "$GCC" = yes; then
  4594. _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
  4595. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
  4596. else
  4597. _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
  4598. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
  4599. fi
  4600. ;;
  4601. sysv5* | sco3.2v5* | sco5v6*)
  4602. # Note: We can NOT use -z defs as we might desire, because we do not
  4603. # link with -lc, and that would cause any symbols used from libc to
  4604. # always be unresolved, which means just about no library would
  4605. # ever link correctly. If we're not using GNU ld we use -z text
  4606. # though, which does catch some bad symbols but isn't as heavy-handed
  4607. # as -z defs.
  4608. _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text'
  4609. _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs'
  4610. _LT_TAGVAR(archive_cmds_need_lc, $1)=no
  4611. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  4612. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir'
  4613. _LT_TAGVAR(hardcode_libdir_separator, $1)=':'
  4614. _LT_TAGVAR(link_all_deplibs, $1)=yes
  4615. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport'
  4616. runpath_var='LD_RUN_PATH'
  4617. if test "$GCC" = yes; then
  4618. _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
  4619. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
  4620. else
  4621. _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
  4622. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
  4623. fi
  4624. ;;
  4625. uts4*)
  4626. _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
  4627. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
  4628. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  4629. ;;
  4630. *)
  4631. _LT_TAGVAR(ld_shlibs, $1)=no
  4632. ;;
  4633. esac
  4634. if test x$host_vendor = xsni; then
  4635. case $host in
  4636. sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
  4637. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Blargedynsym'
  4638. ;;
  4639. esac
  4640. fi
  4641. fi
  4642. ])
  4643. AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)])
  4644. test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no
  4645. _LT_TAGVAR(with_gnu_ld, $1)=$with_gnu_ld
  4646. _LT_DECL([], [libext], [0], [Old archive suffix (normally "a")])dnl
  4647. _LT_DECL([], [shrext_cmds], [1], [Shared library suffix (normally ".so")])dnl
  4648. _LT_DECL([], [extract_expsyms_cmds], [2],
  4649. [The commands to extract the exported symbol list from a shared archive])
  4650. #
  4651. # Do we need to explicitly link libc?
  4652. #
  4653. case "x$_LT_TAGVAR(archive_cmds_need_lc, $1)" in
  4654. x|xyes)
  4655. # Assume -lc should be added
  4656. _LT_TAGVAR(archive_cmds_need_lc, $1)=yes
  4657. if test "$enable_shared" = yes && test "$GCC" = yes; then
  4658. case $_LT_TAGVAR(archive_cmds, $1) in
  4659. *'~'*)
  4660. # FIXME: we may have to deal with multi-command sequences.
  4661. ;;
  4662. '$CC '*)
  4663. # Test whether the compiler implicitly links with -lc since on some
  4664. # systems, -lgcc has to come before -lc. If gcc already passes -lc
  4665. # to ld, don't add -lc before -lgcc.
  4666. AC_MSG_CHECKING([whether -lc should be explicitly linked in])
  4667. $RM conftest*
  4668. echo "$lt_simple_compile_test_code" > conftest.$ac_ext
  4669. if AC_TRY_EVAL(ac_compile) 2>conftest.err; then
  4670. soname=conftest
  4671. lib=conftest
  4672. libobjs=conftest.$ac_objext
  4673. deplibs=
  4674. wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1)
  4675. pic_flag=$_LT_TAGVAR(lt_prog_compiler_pic, $1)
  4676. compiler_flags=-v
  4677. linker_flags=-v
  4678. verstring=
  4679. output_objdir=.
  4680. libname=conftest
  4681. lt_save_allow_undefined_flag=$_LT_TAGVAR(allow_undefined_flag, $1)
  4682. _LT_TAGVAR(allow_undefined_flag, $1)=
  4683. if AC_TRY_EVAL(_LT_TAGVAR(archive_cmds, $1) 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1)
  4684. then
  4685. _LT_TAGVAR(archive_cmds_need_lc, $1)=no
  4686. else
  4687. _LT_TAGVAR(archive_cmds_need_lc, $1)=yes
  4688. fi
  4689. _LT_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag
  4690. else
  4691. cat conftest.err 1>&5
  4692. fi
  4693. $RM conftest*
  4694. AC_MSG_RESULT([$_LT_TAGVAR(archive_cmds_need_lc, $1)])
  4695. ;;
  4696. esac
  4697. fi
  4698. ;;
  4699. esac
  4700. _LT_TAGDECL([build_libtool_need_lc], [archive_cmds_need_lc], [0],
  4701. [Whether or not to add -lc for building shared libraries])
  4702. _LT_TAGDECL([allow_libtool_libs_with_static_runtimes],
  4703. [enable_shared_with_static_runtimes], [0],
  4704. [Whether or not to disallow shared libs when runtime libs are static])
  4705. _LT_TAGDECL([], [export_dynamic_flag_spec], [1],
  4706. [Compiler flag to allow reflexive dlopens])
  4707. _LT_TAGDECL([], [whole_archive_flag_spec], [1],
  4708. [Compiler flag to generate shared objects directly from archives])
  4709. _LT_TAGDECL([], [compiler_needs_object], [1],
  4710. [Whether the compiler copes with passing no objects directly])
  4711. _LT_TAGDECL([], [old_archive_from_new_cmds], [2],
  4712. [Create an old-style archive from a shared archive])
  4713. _LT_TAGDECL([], [old_archive_from_expsyms_cmds], [2],
  4714. [Create a temporary old-style archive to link instead of a shared archive])
  4715. _LT_TAGDECL([], [archive_cmds], [2], [Commands used to build a shared archive])
  4716. _LT_TAGDECL([], [archive_expsym_cmds], [2])
  4717. _LT_TAGDECL([], [module_cmds], [2],
  4718. [Commands used to build a loadable module if different from building
  4719. a shared archive.])
  4720. _LT_TAGDECL([], [module_expsym_cmds], [2])
  4721. _LT_TAGDECL([], [with_gnu_ld], [1],
  4722. [Whether we are building with GNU ld or not])
  4723. _LT_TAGDECL([], [allow_undefined_flag], [1],
  4724. [Flag that allows shared libraries with undefined symbols to be built])
  4725. _LT_TAGDECL([], [no_undefined_flag], [1],
  4726. [Flag that enforces no undefined symbols])
  4727. _LT_TAGDECL([], [hardcode_libdir_flag_spec], [1],
  4728. [Flag to hardcode $libdir into a binary during linking.
  4729. This must work even if $libdir does not exist])
  4730. _LT_TAGDECL([], [hardcode_libdir_flag_spec_ld], [1],
  4731. [[If ld is used when linking, flag to hardcode $libdir into a binary
  4732. during linking. This must work even if $libdir does not exist]])
  4733. _LT_TAGDECL([], [hardcode_libdir_separator], [1],
  4734. [Whether we need a single "-rpath" flag with a separated argument])
  4735. _LT_TAGDECL([], [hardcode_direct], [0],
  4736. [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes
  4737. DIR into the resulting binary])
  4738. _LT_TAGDECL([], [hardcode_direct_absolute], [0],
  4739. [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes
  4740. DIR into the resulting binary and the resulting library dependency is
  4741. "absolute", i.e impossible to change by setting ${shlibpath_var} if the
  4742. library is relocated])
  4743. _LT_TAGDECL([], [hardcode_minus_L], [0],
  4744. [Set to "yes" if using the -LDIR flag during linking hardcodes DIR
  4745. into the resulting binary])
  4746. _LT_TAGDECL([], [hardcode_shlibpath_var], [0],
  4747. [Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR
  4748. into the resulting binary])
  4749. _LT_TAGDECL([], [hardcode_automatic], [0],
  4750. [Set to "yes" if building a shared library automatically hardcodes DIR
  4751. into the library and all subsequent libraries and executables linked
  4752. against it])
  4753. _LT_TAGDECL([], [inherit_rpath], [0],
  4754. [Set to yes if linker adds runtime paths of dependent libraries
  4755. to runtime path list])
  4756. _LT_TAGDECL([], [link_all_deplibs], [0],
  4757. [Whether libtool must link a program against all its dependency libraries])
  4758. _LT_TAGDECL([], [fix_srcfile_path], [1],
  4759. [Fix the shell variable $srcfile for the compiler])
  4760. _LT_TAGDECL([], [always_export_symbols], [0],
  4761. [Set to "yes" if exported symbols are required])
  4762. _LT_TAGDECL([], [export_symbols_cmds], [2],
  4763. [The commands to list exported symbols])
  4764. _LT_TAGDECL([], [exclude_expsyms], [1],
  4765. [Symbols that should not be listed in the preloaded symbols])
  4766. _LT_TAGDECL([], [include_expsyms], [1],
  4767. [Symbols that must always be exported])
  4768. _LT_TAGDECL([], [prelink_cmds], [2],
  4769. [Commands necessary for linking programs (against libraries) with templates])
  4770. _LT_TAGDECL([], [file_list_spec], [1],
  4771. [Specify filename containing input files])
  4772. dnl FIXME: Not yet implemented
  4773. dnl _LT_TAGDECL([], [thread_safe_flag_spec], [1],
  4774. dnl [Compiler flag to generate thread safe objects])
  4775. ])# _LT_LINKER_SHLIBS
  4776. # _LT_LANG_C_CONFIG([TAG])
  4777. # ------------------------
  4778. # Ensure that the configuration variables for a C compiler are suitably
  4779. # defined. These variables are subsequently used by _LT_CONFIG to write
  4780. # the compiler configuration to `libtool'.
  4781. m4_defun([_LT_LANG_C_CONFIG],
  4782. [m4_require([_LT_DECL_EGREP])dnl
  4783. lt_save_CC="$CC"
  4784. AC_LANG_PUSH(C)
  4785. # Source file extension for C test sources.
  4786. ac_ext=c
  4787. # Object file extension for compiled C test sources.
  4788. objext=o
  4789. _LT_TAGVAR(objext, $1)=$objext
  4790. # Code to be used in simple compile tests
  4791. lt_simple_compile_test_code="int some_variable = 0;"
  4792. # Code to be used in simple link tests
  4793. lt_simple_link_test_code='int main(){return(0);}'
  4794. _LT_TAG_COMPILER
  4795. # Save the default compiler, since it gets overwritten when the other
  4796. # tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP.
  4797. compiler_DEFAULT=$CC
  4798. # save warnings/boilerplate of simple test code
  4799. _LT_COMPILER_BOILERPLATE
  4800. _LT_LINKER_BOILERPLATE
  4801. if test -n "$compiler"; then
  4802. _LT_COMPILER_NO_RTTI($1)
  4803. _LT_COMPILER_PIC($1)
  4804. _LT_COMPILER_C_O($1)
  4805. _LT_COMPILER_FILE_LOCKS($1)
  4806. _LT_LINKER_SHLIBS($1)
  4807. _LT_SYS_DYNAMIC_LINKER($1)
  4808. _LT_LINKER_HARDCODE_LIBPATH($1)
  4809. LT_SYS_DLOPEN_SELF
  4810. _LT_CMD_STRIPLIB
  4811. # Report which library types will actually be built
  4812. AC_MSG_CHECKING([if libtool supports shared libraries])
  4813. AC_MSG_RESULT([$can_build_shared])
  4814. AC_MSG_CHECKING([whether to build shared libraries])
  4815. test "$can_build_shared" = "no" && enable_shared=no
  4816. # On AIX, shared libraries and static libraries use the same namespace, and
  4817. # are all built from PIC.
  4818. case $host_os in
  4819. aix3*)
  4820. test "$enable_shared" = yes && enable_static=no
  4821. if test -n "$RANLIB"; then
  4822. archive_cmds="$archive_cmds~\$RANLIB \$lib"
  4823. postinstall_cmds='$RANLIB $lib'
  4824. fi
  4825. ;;
  4826. aix[[4-9]]*)
  4827. if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
  4828. test "$enable_shared" = yes && enable_static=no
  4829. fi
  4830. ;;
  4831. esac
  4832. AC_MSG_RESULT([$enable_shared])
  4833. AC_MSG_CHECKING([whether to build static libraries])
  4834. # Make sure either enable_shared or enable_static is yes.
  4835. test "$enable_shared" = yes || enable_static=yes
  4836. AC_MSG_RESULT([$enable_static])
  4837. _LT_CONFIG($1)
  4838. fi
  4839. AC_LANG_POP
  4840. CC="$lt_save_CC"
  4841. ])# _LT_LANG_C_CONFIG
  4842. # _LT_PROG_CXX
  4843. # ------------
  4844. # Since AC_PROG_CXX is broken, in that it returns g++ if there is no c++
  4845. # compiler, we have our own version here.
  4846. m4_defun([_LT_PROG_CXX],
  4847. [
  4848. pushdef([AC_MSG_ERROR], [_lt_caught_CXX_error=yes])
  4849. AC_PROG_CXX
  4850. if test -n "$CXX" && ( test "X$CXX" != "Xno" &&
  4851. ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) ||
  4852. (test "X$CXX" != "Xg++"))) ; then
  4853. AC_PROG_CXXCPP
  4854. else
  4855. _lt_caught_CXX_error=yes
  4856. fi
  4857. popdef([AC_MSG_ERROR])
  4858. ])# _LT_PROG_CXX
  4859. dnl aclocal-1.4 backwards compatibility:
  4860. dnl AC_DEFUN([_LT_PROG_CXX], [])
  4861. # _LT_LANG_CXX_CONFIG([TAG])
  4862. # --------------------------
  4863. # Ensure that the configuration variables for a C++ compiler are suitably
  4864. # defined. These variables are subsequently used by _LT_CONFIG to write
  4865. # the compiler configuration to `libtool'.
  4866. m4_defun([_LT_LANG_CXX_CONFIG],
  4867. [AC_REQUIRE([_LT_PROG_CXX])dnl
  4868. m4_require([_LT_FILEUTILS_DEFAULTS])dnl
  4869. m4_require([_LT_DECL_EGREP])dnl
  4870. AC_LANG_PUSH(C++)
  4871. _LT_TAGVAR(archive_cmds_need_lc, $1)=no
  4872. _LT_TAGVAR(allow_undefined_flag, $1)=
  4873. _LT_TAGVAR(always_export_symbols, $1)=no
  4874. _LT_TAGVAR(archive_expsym_cmds, $1)=
  4875. _LT_TAGVAR(compiler_needs_object, $1)=no
  4876. _LT_TAGVAR(export_dynamic_flag_spec, $1)=
  4877. _LT_TAGVAR(hardcode_direct, $1)=no
  4878. _LT_TAGVAR(hardcode_direct_absolute, $1)=no
  4879. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=
  4880. _LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)=
  4881. _LT_TAGVAR(hardcode_libdir_separator, $1)=
  4882. _LT_TAGVAR(hardcode_minus_L, $1)=no
  4883. _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
  4884. _LT_TAGVAR(hardcode_automatic, $1)=no
  4885. _LT_TAGVAR(inherit_rpath, $1)=no
  4886. _LT_TAGVAR(module_cmds, $1)=
  4887. _LT_TAGVAR(module_expsym_cmds, $1)=
  4888. _LT_TAGVAR(link_all_deplibs, $1)=unknown
  4889. _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
  4890. _LT_TAGVAR(no_undefined_flag, $1)=
  4891. _LT_TAGVAR(whole_archive_flag_spec, $1)=
  4892. _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no
  4893. # Source file extension for C++ test sources.
  4894. ac_ext=cpp
  4895. # Object file extension for compiled C++ test sources.
  4896. objext=o
  4897. _LT_TAGVAR(objext, $1)=$objext
  4898. # No sense in running all these tests if we already determined that
  4899. # the CXX compiler isn't working. Some variables (like enable_shared)
  4900. # are currently assumed to apply to all compilers on this platform,
  4901. # and will be corrupted by setting them based on a non-working compiler.
  4902. if test "$_lt_caught_CXX_error" != yes; then
  4903. # Code to be used in simple compile tests
  4904. lt_simple_compile_test_code="int some_variable = 0;"
  4905. # Code to be used in simple link tests
  4906. lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }'
  4907. # ltmain only uses $CC for tagged configurations so make sure $CC is set.
  4908. _LT_TAG_COMPILER
  4909. # save warnings/boilerplate of simple test code
  4910. _LT_COMPILER_BOILERPLATE
  4911. _LT_LINKER_BOILERPLATE
  4912. # Allow CC to be a program name with arguments.
  4913. lt_save_CC=$CC
  4914. lt_save_LD=$LD
  4915. lt_save_GCC=$GCC
  4916. GCC=$GXX
  4917. lt_save_with_gnu_ld=$with_gnu_ld
  4918. lt_save_path_LD=$lt_cv_path_LD
  4919. if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then
  4920. lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx
  4921. else
  4922. $as_unset lt_cv_prog_gnu_ld
  4923. fi
  4924. if test -n "${lt_cv_path_LDCXX+set}"; then
  4925. lt_cv_path_LD=$lt_cv_path_LDCXX
  4926. else
  4927. $as_unset lt_cv_path_LD
  4928. fi
  4929. test -z "${LDCXX+set}" || LD=$LDCXX
  4930. CC=${CXX-"c++"}
  4931. compiler=$CC
  4932. _LT_TAGVAR(compiler, $1)=$CC
  4933. _LT_CC_BASENAME([$compiler])
  4934. if test -n "$compiler"; then
  4935. # We don't want -fno-exception when compiling C++ code, so set the
  4936. # no_builtin_flag separately
  4937. if test "$GXX" = yes; then
  4938. _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin'
  4939. else
  4940. _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=
  4941. fi
  4942. if test "$GXX" = yes; then
  4943. # Set up default GNU C++ configuration
  4944. LT_PATH_LD
  4945. # Check if GNU C++ uses GNU ld as the underlying linker, since the
  4946. # archiving commands below assume that GNU ld is being used.
  4947. if test "$with_gnu_ld" = yes; then
  4948. _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
  4949. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
  4950. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
  4951. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
  4952. # If archive_cmds runs LD, not CC, wlarc should be empty
  4953. # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to
  4954. # investigate it a little bit more. (MM)
  4955. wlarc='${wl}'
  4956. # ancient GNU ld didn't support --whole-archive et. al.
  4957. if eval "`$CC -print-prog-name=ld` --help 2>&1" |
  4958. $GREP 'no-whole-archive' > /dev/null; then
  4959. _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
  4960. else
  4961. _LT_TAGVAR(whole_archive_flag_spec, $1)=
  4962. fi
  4963. else
  4964. with_gnu_ld=no
  4965. wlarc=
  4966. # A generic and very simple default shared library creation
  4967. # command for GNU C++ for the case where it uses the native
  4968. # linker, instead of GNU ld. If possible, this setting should
  4969. # overridden to take advantage of the native linker features on
  4970. # the platform it is being used on.
  4971. _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib'
  4972. fi
  4973. # Commands to make compiler produce verbose output that lists
  4974. # what "hidden" libraries, object files and flags are used when
  4975. # linking a shared library.
  4976. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "\-L"'
  4977. else
  4978. GXX=no
  4979. with_gnu_ld=no
  4980. wlarc=
  4981. fi
  4982. # PORTME: fill in a description of your system's C++ link characteristics
  4983. AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries])
  4984. _LT_TAGVAR(ld_shlibs, $1)=yes
  4985. case $host_os in
  4986. aix3*)
  4987. # FIXME: insert proper C++ library support
  4988. _LT_TAGVAR(ld_shlibs, $1)=no
  4989. ;;
  4990. aix[[4-9]]*)
  4991. if test "$host_cpu" = ia64; then
  4992. # On IA64, the linker does run time linking by default, so we don't
  4993. # have to do anything special.
  4994. aix_use_runtimelinking=no
  4995. exp_sym_flag='-Bexport'
  4996. no_entry_flag=""
  4997. else
  4998. aix_use_runtimelinking=no
  4999. # Test if we are trying to use run time linking or normal
  5000. # AIX style linking. If -brtl is somewhere in LDFLAGS, we
  5001. # need to do runtime linking.
  5002. case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*)
  5003. for ld_flag in $LDFLAGS; do
  5004. case $ld_flag in
  5005. *-brtl*)
  5006. aix_use_runtimelinking=yes
  5007. break
  5008. ;;
  5009. esac
  5010. done
  5011. ;;
  5012. esac
  5013. exp_sym_flag='-bexport'
  5014. no_entry_flag='-bnoentry'
  5015. fi
  5016. # When large executables or shared objects are built, AIX ld can
  5017. # have problems creating the table of contents. If linking a library
  5018. # or program results in "error TOC overflow" add -mminimal-toc to
  5019. # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not
  5020. # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.
  5021. _LT_TAGVAR(archive_cmds, $1)=''
  5022. _LT_TAGVAR(hardcode_direct, $1)=yes
  5023. _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
  5024. _LT_TAGVAR(hardcode_libdir_separator, $1)=':'
  5025. _LT_TAGVAR(link_all_deplibs, $1)=yes
  5026. _LT_TAGVAR(file_list_spec, $1)='${wl}-f,'
  5027. if test "$GXX" = yes; then
  5028. case $host_os in aix4.[[012]]|aix4.[[012]].*)
  5029. # We only want to do this on AIX 4.2 and lower, the check
  5030. # below for broken collect2 doesn't work under 4.3+
  5031. collect2name=`${CC} -print-prog-name=collect2`
  5032. if test -f "$collect2name" &&
  5033. strings "$collect2name" | $GREP resolve_lib_name >/dev/null
  5034. then
  5035. # We have reworked collect2
  5036. :
  5037. else
  5038. # We have old collect2
  5039. _LT_TAGVAR(hardcode_direct, $1)=unsupported
  5040. # It fails to find uninstalled libraries when the uninstalled
  5041. # path is not listed in the libpath. Setting hardcode_minus_L
  5042. # to unsupported forces relinking
  5043. _LT_TAGVAR(hardcode_minus_L, $1)=yes
  5044. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
  5045. _LT_TAGVAR(hardcode_libdir_separator, $1)=
  5046. fi
  5047. esac
  5048. shared_flag='-shared'
  5049. if test "$aix_use_runtimelinking" = yes; then
  5050. shared_flag="$shared_flag "'${wl}-G'
  5051. fi
  5052. else
  5053. # not using gcc
  5054. if test "$host_cpu" = ia64; then
  5055. # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release
  5056. # chokes on -Wl,-G. The following line is correct:
  5057. shared_flag='-G'
  5058. else
  5059. if test "$aix_use_runtimelinking" = yes; then
  5060. shared_flag='${wl}-G'
  5061. else
  5062. shared_flag='${wl}-bM:SRE'
  5063. fi
  5064. fi
  5065. fi
  5066. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall'
  5067. # It seems that -bexpall does not export symbols beginning with
  5068. # underscore (_), so it is better to generate a list of symbols to
  5069. # export.
  5070. _LT_TAGVAR(always_export_symbols, $1)=yes
  5071. if test "$aix_use_runtimelinking" = yes; then
  5072. # Warning - without using the other runtime loading flags (-brtl),
  5073. # -berok will link without error, but may produce a broken library.
  5074. _LT_TAGVAR(allow_undefined_flag, $1)='-berok'
  5075. # Determine the default libpath from the value encoded in an empty
  5076. # executable.
  5077. _LT_SYS_MODULE_PATH_AIX
  5078. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
  5079. _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 $ECHO "X${wl}${allow_undefined_flag}" | $Xsed; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag"
  5080. else
  5081. if test "$host_cpu" = ia64; then
  5082. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib'
  5083. _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs"
  5084. _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"
  5085. else
  5086. # Determine the default libpath from the value encoded in an
  5087. # empty executable.
  5088. _LT_SYS_MODULE_PATH_AIX
  5089. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
  5090. # Warning - without using the other run time loading flags,
  5091. # -berok will link without error, but may produce a broken library.
  5092. _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok'
  5093. _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok'
  5094. # Exported symbols can be pulled into shared objects from archives
  5095. _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience'
  5096. _LT_TAGVAR(archive_cmds_need_lc, $1)=yes
  5097. # This is similar to how AIX traditionally builds its shared
  5098. # libraries.
  5099. _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'
  5100. fi
  5101. fi
  5102. ;;
  5103. beos*)
  5104. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
  5105. _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
  5106. # Joseph Beckenbach <jrb3@best.com> says some releases of gcc
  5107. # support --undefined. This deserves some investigation. FIXME
  5108. _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  5109. else
  5110. _LT_TAGVAR(ld_shlibs, $1)=no
  5111. fi
  5112. ;;
  5113. chorus*)
  5114. case $cc_basename in
  5115. *)
  5116. # FIXME: insert proper C++ library support
  5117. _LT_TAGVAR(ld_shlibs, $1)=no
  5118. ;;
  5119. esac
  5120. ;;
  5121. cygwin* | mingw* | pw32* | cegcc*)
  5122. # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless,
  5123. # as there is no search path for DLLs.
  5124. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
  5125. _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
  5126. _LT_TAGVAR(always_export_symbols, $1)=no
  5127. _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
  5128. if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then
  5129. _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'
  5130. # If the export-symbols file already is a .def file (1st line
  5131. # is EXPORTS), use it as is; otherwise, prepend...
  5132. _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
  5133. cp $export_symbols $output_objdir/$soname.def;
  5134. else
  5135. echo EXPORTS > $output_objdir/$soname.def;
  5136. cat $export_symbols >> $output_objdir/$soname.def;
  5137. fi~
  5138. $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'
  5139. else
  5140. _LT_TAGVAR(ld_shlibs, $1)=no
  5141. fi
  5142. ;;
  5143. darwin* | rhapsody*)
  5144. _LT_DARWIN_LINKER_FEATURES($1)
  5145. ;;
  5146. dgux*)
  5147. case $cc_basename in
  5148. ec++*)
  5149. # FIXME: insert proper C++ library support
  5150. _LT_TAGVAR(ld_shlibs, $1)=no
  5151. ;;
  5152. ghcx*)
  5153. # Green Hills C++ Compiler
  5154. # FIXME: insert proper C++ library support
  5155. _LT_TAGVAR(ld_shlibs, $1)=no
  5156. ;;
  5157. *)
  5158. # FIXME: insert proper C++ library support
  5159. _LT_TAGVAR(ld_shlibs, $1)=no
  5160. ;;
  5161. esac
  5162. ;;
  5163. freebsd[[12]]*)
  5164. # C++ shared libraries reported to be fairly broken before
  5165. # switch to ELF
  5166. _LT_TAGVAR(ld_shlibs, $1)=no
  5167. ;;
  5168. freebsd-elf*)
  5169. _LT_TAGVAR(archive_cmds_need_lc, $1)=no
  5170. ;;
  5171. freebsd* | dragonfly*)
  5172. # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF
  5173. # conventions
  5174. _LT_TAGVAR(ld_shlibs, $1)=yes
  5175. ;;
  5176. gnu*)
  5177. ;;
  5178. hpux9*)
  5179. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
  5180. _LT_TAGVAR(hardcode_libdir_separator, $1)=:
  5181. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
  5182. _LT_TAGVAR(hardcode_direct, $1)=yes
  5183. _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH,
  5184. # but as the default
  5185. # location of the library.
  5186. case $cc_basename in
  5187. CC*)
  5188. # FIXME: insert proper C++ library support
  5189. _LT_TAGVAR(ld_shlibs, $1)=no
  5190. ;;
  5191. aCC*)
  5192. _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'
  5193. # Commands to make compiler produce verbose output that lists
  5194. # what "hidden" libraries, object files and flags are used when
  5195. # linking a shared library.
  5196. #
  5197. # There doesn't appear to be a way to prevent this compiler from
  5198. # explicitly linking system object files so we need to strip them
  5199. # from the output so that they don't get included in the library
  5200. # dependencies.
  5201. 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; $ECHO "X$list" | $Xsed'
  5202. ;;
  5203. *)
  5204. if test "$GXX" = yes; then
  5205. _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib -fPIC ${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'
  5206. else
  5207. # FIXME: insert proper C++ library support
  5208. _LT_TAGVAR(ld_shlibs, $1)=no
  5209. fi
  5210. ;;
  5211. esac
  5212. ;;
  5213. hpux10*|hpux11*)
  5214. if test $with_gnu_ld = no; then
  5215. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
  5216. _LT_TAGVAR(hardcode_libdir_separator, $1)=:
  5217. case $host_cpu in
  5218. hppa*64*|ia64*)
  5219. ;;
  5220. *)
  5221. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
  5222. ;;
  5223. esac
  5224. fi
  5225. case $host_cpu in
  5226. hppa*64*|ia64*)
  5227. _LT_TAGVAR(hardcode_direct, $1)=no
  5228. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  5229. ;;
  5230. *)
  5231. _LT_TAGVAR(hardcode_direct, $1)=yes
  5232. _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
  5233. _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH,
  5234. # but as the default
  5235. # location of the library.
  5236. ;;
  5237. esac
  5238. case $cc_basename in
  5239. CC*)
  5240. # FIXME: insert proper C++ library support
  5241. _LT_TAGVAR(ld_shlibs, $1)=no
  5242. ;;
  5243. aCC*)
  5244. case $host_cpu in
  5245. hppa*64*)
  5246. _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
  5247. ;;
  5248. ia64*)
  5249. _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
  5250. ;;
  5251. *)
  5252. _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'
  5253. ;;
  5254. esac
  5255. # Commands to make compiler produce verbose output that lists
  5256. # what "hidden" libraries, object files and flags are used when
  5257. # linking a shared library.
  5258. #
  5259. # There doesn't appear to be a way to prevent this compiler from
  5260. # explicitly linking system object files so we need to strip them
  5261. # from the output so that they don't get included in the library
  5262. # dependencies.
  5263. 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; $ECHO "X$list" | $Xsed'
  5264. ;;
  5265. *)
  5266. if test "$GXX" = yes; then
  5267. if test $with_gnu_ld = no; then
  5268. case $host_cpu in
  5269. hppa*64*)
  5270. _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
  5271. ;;
  5272. ia64*)
  5273. _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
  5274. ;;
  5275. *)
  5276. _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
  5277. ;;
  5278. esac
  5279. fi
  5280. else
  5281. # FIXME: insert proper C++ library support
  5282. _LT_TAGVAR(ld_shlibs, $1)=no
  5283. fi
  5284. ;;
  5285. esac
  5286. ;;
  5287. interix[[3-9]]*)
  5288. _LT_TAGVAR(hardcode_direct, $1)=no
  5289. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  5290. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
  5291. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
  5292. # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc.
  5293. # Instead, shared libraries are loaded at an image base (0x10000000 by
  5294. # default) and relocated if they conflict, which is a slow very memory
  5295. # consuming and fragmenting process. To avoid this, we pick a random,
  5296. # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link
  5297. # time. Moving up from 0x10000000 also allows more sbrk(2) space.
  5298. _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'
  5299. _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'
  5300. ;;
  5301. irix5* | irix6*)
  5302. case $cc_basename in
  5303. CC*)
  5304. # SGI C++
  5305. _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib'
  5306. # Archives containing C++ object files must be created using
  5307. # "CC -ar", where "CC" is the IRIX C++ compiler. This is
  5308. # necessary to make sure instantiated templates are included
  5309. # in the archive.
  5310. _LT_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs'
  5311. ;;
  5312. *)
  5313. if test "$GXX" = yes; then
  5314. if test "$with_gnu_ld" = no; then
  5315. _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
  5316. else
  5317. _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` -o $lib'
  5318. fi
  5319. fi
  5320. _LT_TAGVAR(link_all_deplibs, $1)=yes
  5321. ;;
  5322. esac
  5323. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
  5324. _LT_TAGVAR(hardcode_libdir_separator, $1)=:
  5325. _LT_TAGVAR(inherit_rpath, $1)=yes
  5326. ;;
  5327. linux* | k*bsd*-gnu)
  5328. case $cc_basename in
  5329. KCC*)
  5330. # Kuck and Associates, Inc. (KAI) C++ Compiler
  5331. # KCC will only create a shared library if the output file
  5332. # ends with ".so" (or ".sl" for HP-UX), so rename the library
  5333. # to its proper name (with version) after linking.
  5334. _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'
  5335. _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'
  5336. # Commands to make compiler produce verbose output that lists
  5337. # what "hidden" libraries, object files and flags are used when
  5338. # linking a shared library.
  5339. #
  5340. # There doesn't appear to be a way to prevent this compiler from
  5341. # explicitly linking system object files so we need to strip them
  5342. # from the output so that they don't get included in the library
  5343. # dependencies.
  5344. 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; $ECHO "X$list" | $Xsed'
  5345. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
  5346. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
  5347. # Archives containing C++ object files must be created using
  5348. # "CC -Bstatic", where "CC" is the KAI C++ compiler.
  5349. _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs'
  5350. ;;
  5351. icpc* | ecpc* )
  5352. # Intel C++
  5353. with_gnu_ld=yes
  5354. # version 8.0 and above of icpc choke on multiply defined symbols
  5355. # if we add $predep_objects and $postdep_objects, however 7.1 and
  5356. # earlier do not add the objects themselves.
  5357. case `$CC -V 2>&1` in
  5358. *"Version 7."*)
  5359. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
  5360. _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'
  5361. ;;
  5362. *) # Version 8.0 or newer
  5363. tmp_idyn=
  5364. case $host_cpu in
  5365. ia64*) tmp_idyn=' -i_dynamic';;
  5366. esac
  5367. _LT_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  5368. _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'
  5369. ;;
  5370. esac
  5371. _LT_TAGVAR(archive_cmds_need_lc, $1)=no
  5372. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
  5373. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
  5374. _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive'
  5375. ;;
  5376. pgCC* | pgcpp*)
  5377. # Portland Group C++ compiler
  5378. case `$CC -V` in
  5379. *pgCC\ [[1-5]]* | *pgcpp\ [[1-5]]*)
  5380. _LT_TAGVAR(prelink_cmds, $1)='tpldir=Template.dir~
  5381. rm -rf $tpldir~
  5382. $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~
  5383. compile_command="$compile_command `find $tpldir -name \*.o | $NL2SP`"'
  5384. _LT_TAGVAR(old_archive_cmds, $1)='tpldir=Template.dir~
  5385. rm -rf $tpldir~
  5386. $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~
  5387. $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | $NL2SP`~
  5388. $RANLIB $oldlib'
  5389. _LT_TAGVAR(archive_cmds, $1)='tpldir=Template.dir~
  5390. rm -rf $tpldir~
  5391. $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~
  5392. $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib'
  5393. _LT_TAGVAR(archive_expsym_cmds, $1)='tpldir=Template.dir~
  5394. rm -rf $tpldir~
  5395. $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~
  5396. $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib'
  5397. ;;
  5398. *) # Version 6 will use weak symbols
  5399. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib'
  5400. _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'
  5401. ;;
  5402. esac
  5403. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir'
  5404. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
  5405. _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive'
  5406. ;;
  5407. cxx*)
  5408. # Compaq C++
  5409. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
  5410. _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'
  5411. runpath_var=LD_RUN_PATH
  5412. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'
  5413. _LT_TAGVAR(hardcode_libdir_separator, $1)=:
  5414. # Commands to make compiler produce verbose output that lists
  5415. # what "hidden" libraries, object files and flags are used when
  5416. # linking a shared library.
  5417. #
  5418. # There doesn't appear to be a way to prevent this compiler from
  5419. # explicitly linking system object files so we need to strip them
  5420. # from the output so that they don't get included in the library
  5421. # dependencies.
  5422. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`$ECHO "X$templist" | $Xsed -e "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed'
  5423. ;;
  5424. xl*)
  5425. # IBM XL 8.0 on PPC, with GNU ld
  5426. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
  5427. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
  5428. _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  5429. if test "x$supports_anon_versioning" = xyes; then
  5430. _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~
  5431. cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
  5432. echo "local: *; };" >> $output_objdir/$libname.ver~
  5433. $CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'
  5434. fi
  5435. ;;
  5436. *)
  5437. case `$CC -V 2>&1 | sed 5q` in
  5438. *Sun\ C*)
  5439. # Sun C++ 5.9
  5440. _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs'
  5441. _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
  5442. _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'
  5443. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
  5444. _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; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive'
  5445. _LT_TAGVAR(compiler_needs_object, $1)=yes
  5446. # Not sure whether something based on
  5447. # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1
  5448. # would be better.
  5449. output_verbose_link_cmd='echo'
  5450. # Archives containing C++ object files must be created using
  5451. # "CC -xar", where "CC" is the Sun C++ compiler. This is
  5452. # necessary to make sure instantiated templates are included
  5453. # in the archive.
  5454. _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs'
  5455. ;;
  5456. esac
  5457. ;;
  5458. esac
  5459. ;;
  5460. lynxos*)
  5461. # FIXME: insert proper C++ library support
  5462. _LT_TAGVAR(ld_shlibs, $1)=no
  5463. ;;
  5464. m88k*)
  5465. # FIXME: insert proper C++ library support
  5466. _LT_TAGVAR(ld_shlibs, $1)=no
  5467. ;;
  5468. mvs*)
  5469. case $cc_basename in
  5470. cxx*)
  5471. # FIXME: insert proper C++ library support
  5472. _LT_TAGVAR(ld_shlibs, $1)=no
  5473. ;;
  5474. *)
  5475. # FIXME: insert proper C++ library support
  5476. _LT_TAGVAR(ld_shlibs, $1)=no
  5477. ;;
  5478. esac
  5479. ;;
  5480. netbsd*)
  5481. if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
  5482. _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags'
  5483. wlarc=
  5484. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
  5485. _LT_TAGVAR(hardcode_direct, $1)=yes
  5486. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  5487. fi
  5488. # Workaround some broken pre-1.5 toolchains
  5489. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"'
  5490. ;;
  5491. *nto* | *qnx*)
  5492. _LT_TAGVAR(ld_shlibs, $1)=yes
  5493. ;;
  5494. openbsd2*)
  5495. # C++ shared libraries are fairly broken
  5496. _LT_TAGVAR(ld_shlibs, $1)=no
  5497. ;;
  5498. openbsd*)
  5499. if test -f /usr/libexec/ld.so; then
  5500. _LT_TAGVAR(hardcode_direct, $1)=yes
  5501. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  5502. _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
  5503. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib'
  5504. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
  5505. if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
  5506. _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'
  5507. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
  5508. _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
  5509. fi
  5510. output_verbose_link_cmd=echo
  5511. else
  5512. _LT_TAGVAR(ld_shlibs, $1)=no
  5513. fi
  5514. ;;
  5515. osf3* | osf4* | osf5*)
  5516. case $cc_basename in
  5517. KCC*)
  5518. # Kuck and Associates, Inc. (KAI) C++ Compiler
  5519. # KCC will only create a shared library if the output file
  5520. # ends with ".so" (or ".sl" for HP-UX), so rename the library
  5521. # to its proper name (with version) after linking.
  5522. _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'
  5523. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
  5524. _LT_TAGVAR(hardcode_libdir_separator, $1)=:
  5525. # Archives containing C++ object files must be created using
  5526. # the KAI C++ compiler.
  5527. case $host in
  5528. osf3*) _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;;
  5529. *) _LT_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;;
  5530. esac
  5531. ;;
  5532. RCC*)
  5533. # Rational C++ 2.4.1
  5534. # FIXME: insert proper C++ library support
  5535. _LT_TAGVAR(ld_shlibs, $1)=no
  5536. ;;
  5537. cxx*)
  5538. case $host in
  5539. osf3*)
  5540. _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
  5541. _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && $ECHO "X${wl}-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib'
  5542. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
  5543. ;;
  5544. *)
  5545. _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*'
  5546. _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib'
  5547. _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~
  5548. echo "-hidden">> $lib.exp~
  5549. $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 "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib~
  5550. $RM $lib.exp'
  5551. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'
  5552. ;;
  5553. esac
  5554. _LT_TAGVAR(hardcode_libdir_separator, $1)=:
  5555. # Commands to make compiler produce verbose output that lists
  5556. # what "hidden" libraries, object files and flags are used when
  5557. # linking a shared library.
  5558. #
  5559. # There doesn't appear to be a way to prevent this compiler from
  5560. # explicitly linking system object files so we need to strip them
  5561. # from the output so that they don't get included in the library
  5562. # dependencies.
  5563. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`$ECHO "X$templist" | $Xsed -e "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed'
  5564. ;;
  5565. *)
  5566. if test "$GXX" = yes && test "$with_gnu_ld" = no; then
  5567. _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
  5568. case $host in
  5569. osf3*)
  5570. _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" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
  5571. ;;
  5572. *)
  5573. _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
  5574. ;;
  5575. esac
  5576. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
  5577. _LT_TAGVAR(hardcode_libdir_separator, $1)=:
  5578. # Commands to make compiler produce verbose output that lists
  5579. # what "hidden" libraries, object files and flags are used when
  5580. # linking a shared library.
  5581. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "\-L"'
  5582. else
  5583. # FIXME: insert proper C++ library support
  5584. _LT_TAGVAR(ld_shlibs, $1)=no
  5585. fi
  5586. ;;
  5587. esac
  5588. ;;
  5589. psos*)
  5590. # FIXME: insert proper C++ library support
  5591. _LT_TAGVAR(ld_shlibs, $1)=no
  5592. ;;
  5593. sunos4*)
  5594. case $cc_basename in
  5595. CC*)
  5596. # Sun C++ 4.x
  5597. # FIXME: insert proper C++ library support
  5598. _LT_TAGVAR(ld_shlibs, $1)=no
  5599. ;;
  5600. lcc*)
  5601. # Lucid
  5602. # FIXME: insert proper C++ library support
  5603. _LT_TAGVAR(ld_shlibs, $1)=no
  5604. ;;
  5605. *)
  5606. # FIXME: insert proper C++ library support
  5607. _LT_TAGVAR(ld_shlibs, $1)=no
  5608. ;;
  5609. esac
  5610. ;;
  5611. solaris*)
  5612. case $cc_basename in
  5613. CC*)
  5614. # Sun C++ 4.2, 5.x and Centerline C++
  5615. _LT_TAGVAR(archive_cmds_need_lc,$1)=yes
  5616. _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs'
  5617. _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
  5618. _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
  5619. $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'
  5620. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
  5621. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  5622. case $host_os in
  5623. solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;
  5624. *)
  5625. # The compiler driver will combine and reorder linker options,
  5626. # but understands `-z linker_flag'.
  5627. # Supported since Solaris 2.6 (maybe 2.5.1?)
  5628. _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract'
  5629. ;;
  5630. esac
  5631. _LT_TAGVAR(link_all_deplibs, $1)=yes
  5632. output_verbose_link_cmd='echo'
  5633. # Archives containing C++ object files must be created using
  5634. # "CC -xar", where "CC" is the Sun C++ compiler. This is
  5635. # necessary to make sure instantiated templates are included
  5636. # in the archive.
  5637. _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs'
  5638. ;;
  5639. gcx*)
  5640. # Green Hills C++ Compiler
  5641. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'
  5642. # The C++ compiler must be used to create the archive.
  5643. _LT_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs'
  5644. ;;
  5645. *)
  5646. # GNU C++ compiler with Solaris linker
  5647. if test "$GXX" = yes && test "$with_gnu_ld" = no; then
  5648. _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs'
  5649. if $CC --version | $GREP -v '^2\.7' > /dev/null; then
  5650. _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'
  5651. _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
  5652. $CC -shared -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp'
  5653. # Commands to make compiler produce verbose output that lists
  5654. # what "hidden" libraries, object files and flags are used when
  5655. # linking a shared library.
  5656. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "\-L"'
  5657. else
  5658. # g++ 2.7 appears to require `-G' NOT `-shared' on this
  5659. # platform.
  5660. _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'
  5661. _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
  5662. $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp'
  5663. # Commands to make compiler produce verbose output that lists
  5664. # what "hidden" libraries, object files and flags are used when
  5665. # linking a shared library.
  5666. output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP "\-L"'
  5667. fi
  5668. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir'
  5669. case $host_os in
  5670. solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;
  5671. *)
  5672. _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract'
  5673. ;;
  5674. esac
  5675. fi
  5676. ;;
  5677. esac
  5678. ;;
  5679. sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*)
  5680. _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text'
  5681. _LT_TAGVAR(archive_cmds_need_lc, $1)=no
  5682. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  5683. runpath_var='LD_RUN_PATH'
  5684. case $cc_basename in
  5685. CC*)
  5686. _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
  5687. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
  5688. ;;
  5689. *)
  5690. _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
  5691. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
  5692. ;;
  5693. esac
  5694. ;;
  5695. sysv5* | sco3.2v5* | sco5v6*)
  5696. # Note: We can NOT use -z defs as we might desire, because we do not
  5697. # link with -lc, and that would cause any symbols used from libc to
  5698. # always be unresolved, which means just about no library would
  5699. # ever link correctly. If we're not using GNU ld we use -z text
  5700. # though, which does catch some bad symbols but isn't as heavy-handed
  5701. # as -z defs.
  5702. _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text'
  5703. _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs'
  5704. _LT_TAGVAR(archive_cmds_need_lc, $1)=no
  5705. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  5706. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir'
  5707. _LT_TAGVAR(hardcode_libdir_separator, $1)=':'
  5708. _LT_TAGVAR(link_all_deplibs, $1)=yes
  5709. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport'
  5710. runpath_var='LD_RUN_PATH'
  5711. case $cc_basename in
  5712. CC*)
  5713. _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
  5714. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
  5715. ;;
  5716. *)
  5717. _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
  5718. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
  5719. ;;
  5720. esac
  5721. ;;
  5722. tandem*)
  5723. case $cc_basename in
  5724. NCC*)
  5725. # NonStop-UX NCC 3.20
  5726. # FIXME: insert proper C++ library support
  5727. _LT_TAGVAR(ld_shlibs, $1)=no
  5728. ;;
  5729. *)
  5730. # FIXME: insert proper C++ library support
  5731. _LT_TAGVAR(ld_shlibs, $1)=no
  5732. ;;
  5733. esac
  5734. ;;
  5735. vxworks*)
  5736. # FIXME: insert proper C++ library support
  5737. _LT_TAGVAR(ld_shlibs, $1)=no
  5738. ;;
  5739. *)
  5740. # FIXME: insert proper C++ library support
  5741. _LT_TAGVAR(ld_shlibs, $1)=no
  5742. ;;
  5743. esac
  5744. AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)])
  5745. test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no
  5746. _LT_TAGVAR(GCC, $1)="$GXX"
  5747. _LT_TAGVAR(LD, $1)="$LD"
  5748. ## CAVEAT EMPTOR:
  5749. ## There is no encapsulation within the following macros, do not change
  5750. ## the running order or otherwise move them around unless you know exactly
  5751. ## what you are doing...
  5752. _LT_SYS_HIDDEN_LIBDEPS($1)
  5753. _LT_COMPILER_PIC($1)
  5754. _LT_COMPILER_C_O($1)
  5755. _LT_COMPILER_FILE_LOCKS($1)
  5756. _LT_LINKER_SHLIBS($1)
  5757. _LT_SYS_DYNAMIC_LINKER($1)
  5758. _LT_LINKER_HARDCODE_LIBPATH($1)
  5759. _LT_CONFIG($1)
  5760. fi # test -n "$compiler"
  5761. CC=$lt_save_CC
  5762. LDCXX=$LD
  5763. LD=$lt_save_LD
  5764. GCC=$lt_save_GCC
  5765. with_gnu_ld=$lt_save_with_gnu_ld
  5766. lt_cv_path_LDCXX=$lt_cv_path_LD
  5767. lt_cv_path_LD=$lt_save_path_LD
  5768. lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld
  5769. lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld
  5770. fi # test "$_lt_caught_CXX_error" != yes
  5771. AC_LANG_POP
  5772. ])# _LT_LANG_CXX_CONFIG
  5773. # _LT_SYS_HIDDEN_LIBDEPS([TAGNAME])
  5774. # ---------------------------------
  5775. # Figure out "hidden" library dependencies from verbose
  5776. # compiler output when linking a shared library.
  5777. # Parse the compiler output and extract the necessary
  5778. # objects, libraries and library flags.
  5779. m4_defun([_LT_SYS_HIDDEN_LIBDEPS],
  5780. [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
  5781. # Dependencies to place before and after the object being linked:
  5782. _LT_TAGVAR(predep_objects, $1)=
  5783. _LT_TAGVAR(postdep_objects, $1)=
  5784. _LT_TAGVAR(predeps, $1)=
  5785. _LT_TAGVAR(postdeps, $1)=
  5786. _LT_TAGVAR(compiler_lib_search_path, $1)=
  5787. dnl we can't use the lt_simple_compile_test_code here,
  5788. dnl because it contains code intended for an executable,
  5789. dnl not a library. It's possible we should let each
  5790. dnl tag define a new lt_????_link_test_code variable,
  5791. dnl but it's only used here...
  5792. m4_if([$1], [], [cat > conftest.$ac_ext <<_LT_EOF
  5793. int a;
  5794. void foo (void) { a = 0; }
  5795. _LT_EOF
  5796. ], [$1], [CXX], [cat > conftest.$ac_ext <<_LT_EOF
  5797. class Foo
  5798. {
  5799. public:
  5800. Foo (void) { a = 0; }
  5801. private:
  5802. int a;
  5803. };
  5804. _LT_EOF
  5805. ], [$1], [F77], [cat > conftest.$ac_ext <<_LT_EOF
  5806. subroutine foo
  5807. implicit none
  5808. integer*4 a
  5809. a=0
  5810. return
  5811. end
  5812. _LT_EOF
  5813. ], [$1], [FC], [cat > conftest.$ac_ext <<_LT_EOF
  5814. subroutine foo
  5815. implicit none
  5816. integer a
  5817. a=0
  5818. return
  5819. end
  5820. _LT_EOF
  5821. ], [$1], [GCJ], [cat > conftest.$ac_ext <<_LT_EOF
  5822. public class foo {
  5823. private int a;
  5824. public void bar (void) {
  5825. a = 0;
  5826. }
  5827. };
  5828. _LT_EOF
  5829. ])
  5830. dnl Parse the compiler output and extract the necessary
  5831. dnl objects, libraries and library flags.
  5832. if AC_TRY_EVAL(ac_compile); then
  5833. # Parse the compiler output and extract the necessary
  5834. # objects, libraries and library flags.
  5835. # Sentinel used to keep track of whether or not we are before
  5836. # the conftest object file.
  5837. pre_test_object_deps_done=no
  5838. for p in `eval "$output_verbose_link_cmd"`; do
  5839. case $p in
  5840. -L* | -R* | -l*)
  5841. # Some compilers place space between "-{L,R}" and the path.
  5842. # Remove the space.
  5843. if test $p = "-L" ||
  5844. test $p = "-R"; then
  5845. prev=$p
  5846. continue
  5847. else
  5848. prev=
  5849. fi
  5850. if test "$pre_test_object_deps_done" = no; then
  5851. case $p in
  5852. -L* | -R*)
  5853. # Internal compiler library paths should come after those
  5854. # provided the user. The postdeps already come after the
  5855. # user supplied libs so there is no need to process them.
  5856. if test -z "$_LT_TAGVAR(compiler_lib_search_path, $1)"; then
  5857. _LT_TAGVAR(compiler_lib_search_path, $1)="${prev}${p}"
  5858. else
  5859. _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} ${prev}${p}"
  5860. fi
  5861. ;;
  5862. # The "-l" case would never come before the object being
  5863. # linked, so don't bother handling this case.
  5864. esac
  5865. else
  5866. if test -z "$_LT_TAGVAR(postdeps, $1)"; then
  5867. _LT_TAGVAR(postdeps, $1)="${prev}${p}"
  5868. else
  5869. _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} ${prev}${p}"
  5870. fi
  5871. fi
  5872. ;;
  5873. *.$objext)
  5874. # This assumes that the test object file only shows up
  5875. # once in the compiler output.
  5876. if test "$p" = "conftest.$objext"; then
  5877. pre_test_object_deps_done=yes
  5878. continue
  5879. fi
  5880. if test "$pre_test_object_deps_done" = no; then
  5881. if test -z "$_LT_TAGVAR(predep_objects, $1)"; then
  5882. _LT_TAGVAR(predep_objects, $1)="$p"
  5883. else
  5884. _LT_TAGVAR(predep_objects, $1)="$_LT_TAGVAR(predep_objects, $1) $p"
  5885. fi
  5886. else
  5887. if test -z "$_LT_TAGVAR(postdep_objects, $1)"; then
  5888. _LT_TAGVAR(postdep_objects, $1)="$p"
  5889. else
  5890. _LT_TAGVAR(postdep_objects, $1)="$_LT_TAGVAR(postdep_objects, $1) $p"
  5891. fi
  5892. fi
  5893. ;;
  5894. *) ;; # Ignore the rest.
  5895. esac
  5896. done
  5897. # Clean up.
  5898. rm -f a.out a.exe
  5899. else
  5900. echo "libtool.m4: error: problem compiling $1 test program"
  5901. fi
  5902. $RM -f confest.$objext
  5903. # PORTME: override above test on systems where it is broken
  5904. m4_if([$1], [CXX],
  5905. [case $host_os in
  5906. interix[[3-9]]*)
  5907. # Interix 3.5 installs completely hosed .la files for C++, so rather than
  5908. # hack all around it, let's just trust "g++" to DTRT.
  5909. _LT_TAGVAR(predep_objects,$1)=
  5910. _LT_TAGVAR(postdep_objects,$1)=
  5911. _LT_TAGVAR(postdeps,$1)=
  5912. ;;
  5913. linux*)
  5914. case `$CC -V 2>&1 | sed 5q` in
  5915. *Sun\ C*)
  5916. # Sun C++ 5.9
  5917. # The more standards-conforming stlport4 library is
  5918. # incompatible with the Cstd library. Avoid specifying
  5919. # it if it's in CXXFLAGS. Ignore libCrun as
  5920. # -library=stlport4 depends on it.
  5921. case " $CXX $CXXFLAGS " in
  5922. *" -library=stlport4 "*)
  5923. solaris_use_stlport4=yes
  5924. ;;
  5925. esac
  5926. if test "$solaris_use_stlport4" != yes; then
  5927. _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun'
  5928. fi
  5929. ;;
  5930. esac
  5931. ;;
  5932. solaris*)
  5933. case $cc_basename in
  5934. CC*)
  5935. # The more standards-conforming stlport4 library is
  5936. # incompatible with the Cstd library. Avoid specifying
  5937. # it if it's in CXXFLAGS. Ignore libCrun as
  5938. # -library=stlport4 depends on it.
  5939. case " $CXX $CXXFLAGS " in
  5940. *" -library=stlport4 "*)
  5941. solaris_use_stlport4=yes
  5942. ;;
  5943. esac
  5944. # Adding this requires a known-good setup of shared libraries for
  5945. # Sun compiler versions before 5.6, else PIC objects from an old
  5946. # archive will be linked into the output, leading to subtle bugs.
  5947. if test "$solaris_use_stlport4" != yes; then
  5948. _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun'
  5949. fi
  5950. ;;
  5951. esac
  5952. ;;
  5953. esac
  5954. ])
  5955. case " $_LT_TAGVAR(postdeps, $1) " in
  5956. *" -lc "*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;;
  5957. esac
  5958. _LT_TAGVAR(compiler_lib_search_dirs, $1)=
  5959. if test -n "${_LT_TAGVAR(compiler_lib_search_path, $1)}"; then
  5960. _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | ${SED} -e 's! -L! !g' -e 's!^ !!'`
  5961. fi
  5962. _LT_TAGDECL([], [compiler_lib_search_dirs], [1],
  5963. [The directories searched by this compiler when creating a shared library])
  5964. _LT_TAGDECL([], [predep_objects], [1],
  5965. [Dependencies to place before and after the objects being linked to
  5966. create a shared library])
  5967. _LT_TAGDECL([], [postdep_objects], [1])
  5968. _LT_TAGDECL([], [predeps], [1])
  5969. _LT_TAGDECL([], [postdeps], [1])
  5970. _LT_TAGDECL([], [compiler_lib_search_path], [1],
  5971. [The library search path used internally by the compiler when linking
  5972. a shared library])
  5973. ])# _LT_SYS_HIDDEN_LIBDEPS
  5974. # _LT_PROG_F77
  5975. # ------------
  5976. # Since AC_PROG_F77 is broken, in that it returns the empty string
  5977. # if there is no fortran compiler, we have our own version here.
  5978. m4_defun([_LT_PROG_F77],
  5979. [
  5980. pushdef([AC_MSG_ERROR], [_lt_disable_F77=yes])
  5981. AC_PROG_F77
  5982. if test -z "$F77" || test "X$F77" = "Xno"; then
  5983. _lt_disable_F77=yes
  5984. fi
  5985. popdef([AC_MSG_ERROR])
  5986. ])# _LT_PROG_F77
  5987. dnl aclocal-1.4 backwards compatibility:
  5988. dnl AC_DEFUN([_LT_PROG_F77], [])
  5989. # _LT_LANG_F77_CONFIG([TAG])
  5990. # --------------------------
  5991. # Ensure that the configuration variables for a Fortran 77 compiler are
  5992. # suitably defined. These variables are subsequently used by _LT_CONFIG
  5993. # to write the compiler configuration to `libtool'.
  5994. m4_defun([_LT_LANG_F77_CONFIG],
  5995. [AC_REQUIRE([_LT_PROG_F77])dnl
  5996. AC_LANG_PUSH(Fortran 77)
  5997. _LT_TAGVAR(archive_cmds_need_lc, $1)=no
  5998. _LT_TAGVAR(allow_undefined_flag, $1)=
  5999. _LT_TAGVAR(always_export_symbols, $1)=no
  6000. _LT_TAGVAR(archive_expsym_cmds, $1)=
  6001. _LT_TAGVAR(export_dynamic_flag_spec, $1)=
  6002. _LT_TAGVAR(hardcode_direct, $1)=no
  6003. _LT_TAGVAR(hardcode_direct_absolute, $1)=no
  6004. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=
  6005. _LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)=
  6006. _LT_TAGVAR(hardcode_libdir_separator, $1)=
  6007. _LT_TAGVAR(hardcode_minus_L, $1)=no
  6008. _LT_TAGVAR(hardcode_automatic, $1)=no
  6009. _LT_TAGVAR(inherit_rpath, $1)=no
  6010. _LT_TAGVAR(module_cmds, $1)=
  6011. _LT_TAGVAR(module_expsym_cmds, $1)=
  6012. _LT_TAGVAR(link_all_deplibs, $1)=unknown
  6013. _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
  6014. _LT_TAGVAR(no_undefined_flag, $1)=
  6015. _LT_TAGVAR(whole_archive_flag_spec, $1)=
  6016. _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no
  6017. # Source file extension for f77 test sources.
  6018. ac_ext=f
  6019. # Object file extension for compiled f77 test sources.
  6020. objext=o
  6021. _LT_TAGVAR(objext, $1)=$objext
  6022. # No sense in running all these tests if we already determined that
  6023. # the F77 compiler isn't working. Some variables (like enable_shared)
  6024. # are currently assumed to apply to all compilers on this platform,
  6025. # and will be corrupted by setting them based on a non-working compiler.
  6026. if test "$_lt_disable_F77" != yes; then
  6027. # Code to be used in simple compile tests
  6028. lt_simple_compile_test_code="\
  6029. subroutine t
  6030. return
  6031. end
  6032. "
  6033. # Code to be used in simple link tests
  6034. lt_simple_link_test_code="\
  6035. program t
  6036. end
  6037. "
  6038. # ltmain only uses $CC for tagged configurations so make sure $CC is set.
  6039. _LT_TAG_COMPILER
  6040. # save warnings/boilerplate of simple test code
  6041. _LT_COMPILER_BOILERPLATE
  6042. _LT_LINKER_BOILERPLATE
  6043. # Allow CC to be a program name with arguments.
  6044. lt_save_CC="$CC"
  6045. lt_save_GCC=$GCC
  6046. CC=${F77-"f77"}
  6047. compiler=$CC
  6048. _LT_TAGVAR(compiler, $1)=$CC
  6049. _LT_CC_BASENAME([$compiler])
  6050. GCC=$G77
  6051. if test -n "$compiler"; then
  6052. AC_MSG_CHECKING([if libtool supports shared libraries])
  6053. AC_MSG_RESULT([$can_build_shared])
  6054. AC_MSG_CHECKING([whether to build shared libraries])
  6055. test "$can_build_shared" = "no" && enable_shared=no
  6056. # On AIX, shared libraries and static libraries use the same namespace, and
  6057. # are all built from PIC.
  6058. case $host_os in
  6059. aix3*)
  6060. test "$enable_shared" = yes && enable_static=no
  6061. if test -n "$RANLIB"; then
  6062. archive_cmds="$archive_cmds~\$RANLIB \$lib"
  6063. postinstall_cmds='$RANLIB $lib'
  6064. fi
  6065. ;;
  6066. aix[[4-9]]*)
  6067. if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
  6068. test "$enable_shared" = yes && enable_static=no
  6069. fi
  6070. ;;
  6071. esac
  6072. AC_MSG_RESULT([$enable_shared])
  6073. AC_MSG_CHECKING([whether to build static libraries])
  6074. # Make sure either enable_shared or enable_static is yes.
  6075. test "$enable_shared" = yes || enable_static=yes
  6076. AC_MSG_RESULT([$enable_static])
  6077. _LT_TAGVAR(GCC, $1)="$G77"
  6078. _LT_TAGVAR(LD, $1)="$LD"
  6079. ## CAVEAT EMPTOR:
  6080. ## There is no encapsulation within the following macros, do not change
  6081. ## the running order or otherwise move them around unless you know exactly
  6082. ## what you are doing...
  6083. _LT_COMPILER_PIC($1)
  6084. _LT_COMPILER_C_O($1)
  6085. _LT_COMPILER_FILE_LOCKS($1)
  6086. _LT_LINKER_SHLIBS($1)
  6087. _LT_SYS_DYNAMIC_LINKER($1)
  6088. _LT_LINKER_HARDCODE_LIBPATH($1)
  6089. _LT_CONFIG($1)
  6090. fi # test -n "$compiler"
  6091. GCC=$lt_save_GCC
  6092. CC="$lt_save_CC"
  6093. fi # test "$_lt_disable_F77" != yes
  6094. AC_LANG_POP
  6095. ])# _LT_LANG_F77_CONFIG
  6096. # _LT_PROG_FC
  6097. # -----------
  6098. # Since AC_PROG_FC is broken, in that it returns the empty string
  6099. # if there is no fortran compiler, we have our own version here.
  6100. m4_defun([_LT_PROG_FC],
  6101. [
  6102. pushdef([AC_MSG_ERROR], [_lt_disable_FC=yes])
  6103. AC_PROG_FC
  6104. if test -z "$FC" || test "X$FC" = "Xno"; then
  6105. _lt_disable_FC=yes
  6106. fi
  6107. popdef([AC_MSG_ERROR])
  6108. ])# _LT_PROG_FC
  6109. dnl aclocal-1.4 backwards compatibility:
  6110. dnl AC_DEFUN([_LT_PROG_FC], [])
  6111. # _LT_LANG_FC_CONFIG([TAG])
  6112. # -------------------------
  6113. # Ensure that the configuration variables for a Fortran compiler are
  6114. # suitably defined. These variables are subsequently used by _LT_CONFIG
  6115. # to write the compiler configuration to `libtool'.
  6116. m4_defun([_LT_LANG_FC_CONFIG],
  6117. [AC_REQUIRE([_LT_PROG_FC])dnl
  6118. AC_LANG_PUSH(Fortran)
  6119. _LT_TAGVAR(archive_cmds_need_lc, $1)=no
  6120. _LT_TAGVAR(allow_undefined_flag, $1)=
  6121. _LT_TAGVAR(always_export_symbols, $1)=no
  6122. _LT_TAGVAR(archive_expsym_cmds, $1)=
  6123. _LT_TAGVAR(export_dynamic_flag_spec, $1)=
  6124. _LT_TAGVAR(hardcode_direct, $1)=no
  6125. _LT_TAGVAR(hardcode_direct_absolute, $1)=no
  6126. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=
  6127. _LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)=
  6128. _LT_TAGVAR(hardcode_libdir_separator, $1)=
  6129. _LT_TAGVAR(hardcode_minus_L, $1)=no
  6130. _LT_TAGVAR(hardcode_automatic, $1)=no
  6131. _LT_TAGVAR(inherit_rpath, $1)=no
  6132. _LT_TAGVAR(module_cmds, $1)=
  6133. _LT_TAGVAR(module_expsym_cmds, $1)=
  6134. _LT_TAGVAR(link_all_deplibs, $1)=unknown
  6135. _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
  6136. _LT_TAGVAR(no_undefined_flag, $1)=
  6137. _LT_TAGVAR(whole_archive_flag_spec, $1)=
  6138. _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no
  6139. # Source file extension for fc test sources.
  6140. ac_ext=${ac_fc_srcext-f}
  6141. # Object file extension for compiled fc test sources.
  6142. objext=o
  6143. _LT_TAGVAR(objext, $1)=$objext
  6144. # No sense in running all these tests if we already determined that
  6145. # the FC compiler isn't working. Some variables (like enable_shared)
  6146. # are currently assumed to apply to all compilers on this platform,
  6147. # and will be corrupted by setting them based on a non-working compiler.
  6148. if test "$_lt_disable_FC" != yes; then
  6149. # Code to be used in simple compile tests
  6150. lt_simple_compile_test_code="\
  6151. subroutine t
  6152. return
  6153. end
  6154. "
  6155. # Code to be used in simple link tests
  6156. lt_simple_link_test_code="\
  6157. program t
  6158. end
  6159. "
  6160. # ltmain only uses $CC for tagged configurations so make sure $CC is set.
  6161. _LT_TAG_COMPILER
  6162. # save warnings/boilerplate of simple test code
  6163. _LT_COMPILER_BOILERPLATE
  6164. _LT_LINKER_BOILERPLATE
  6165. # Allow CC to be a program name with arguments.
  6166. lt_save_CC="$CC"
  6167. lt_save_GCC=$GCC
  6168. CC=${FC-"f95"}
  6169. compiler=$CC
  6170. GCC=$ac_cv_fc_compiler_gnu
  6171. _LT_TAGVAR(compiler, $1)=$CC
  6172. _LT_CC_BASENAME([$compiler])
  6173. if test -n "$compiler"; then
  6174. AC_MSG_CHECKING([if libtool supports shared libraries])
  6175. AC_MSG_RESULT([$can_build_shared])
  6176. AC_MSG_CHECKING([whether to build shared libraries])
  6177. test "$can_build_shared" = "no" && enable_shared=no
  6178. # On AIX, shared libraries and static libraries use the same namespace, and
  6179. # are all built from PIC.
  6180. case $host_os in
  6181. aix3*)
  6182. test "$enable_shared" = yes && enable_static=no
  6183. if test -n "$RANLIB"; then
  6184. archive_cmds="$archive_cmds~\$RANLIB \$lib"
  6185. postinstall_cmds='$RANLIB $lib'
  6186. fi
  6187. ;;
  6188. aix[[4-9]]*)
  6189. if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
  6190. test "$enable_shared" = yes && enable_static=no
  6191. fi
  6192. ;;
  6193. esac
  6194. AC_MSG_RESULT([$enable_shared])
  6195. AC_MSG_CHECKING([whether to build static libraries])
  6196. # Make sure either enable_shared or enable_static is yes.
  6197. test "$enable_shared" = yes || enable_static=yes
  6198. AC_MSG_RESULT([$enable_static])
  6199. _LT_TAGVAR(GCC, $1)="$ac_cv_fc_compiler_gnu"
  6200. _LT_TAGVAR(LD, $1)="$LD"
  6201. ## CAVEAT EMPTOR:
  6202. ## There is no encapsulation within the following macros, do not change
  6203. ## the running order or otherwise move them around unless you know exactly
  6204. ## what you are doing...
  6205. _LT_SYS_HIDDEN_LIBDEPS($1)
  6206. _LT_COMPILER_PIC($1)
  6207. _LT_COMPILER_C_O($1)
  6208. _LT_COMPILER_FILE_LOCKS($1)
  6209. _LT_LINKER_SHLIBS($1)
  6210. _LT_SYS_DYNAMIC_LINKER($1)
  6211. _LT_LINKER_HARDCODE_LIBPATH($1)
  6212. _LT_CONFIG($1)
  6213. fi # test -n "$compiler"
  6214. GCC=$lt_save_GCC
  6215. CC="$lt_save_CC"
  6216. fi # test "$_lt_disable_FC" != yes
  6217. AC_LANG_POP
  6218. ])# _LT_LANG_FC_CONFIG
  6219. # _LT_LANG_GCJ_CONFIG([TAG])
  6220. # --------------------------
  6221. # Ensure that the configuration variables for the GNU Java Compiler compiler
  6222. # are suitably defined. These variables are subsequently used by _LT_CONFIG
  6223. # to write the compiler configuration to `libtool'.
  6224. m4_defun([_LT_LANG_GCJ_CONFIG],
  6225. [AC_REQUIRE([LT_PROG_GCJ])dnl
  6226. AC_LANG_SAVE
  6227. # Source file extension for Java test sources.
  6228. ac_ext=java
  6229. # Object file extension for compiled Java test sources.
  6230. objext=o
  6231. _LT_TAGVAR(objext, $1)=$objext
  6232. # Code to be used in simple compile tests
  6233. lt_simple_compile_test_code="class foo {}"
  6234. # Code to be used in simple link tests
  6235. lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }'
  6236. # ltmain only uses $CC for tagged configurations so make sure $CC is set.
  6237. _LT_TAG_COMPILER
  6238. # save warnings/boilerplate of simple test code
  6239. _LT_COMPILER_BOILERPLATE
  6240. _LT_LINKER_BOILERPLATE
  6241. # Allow CC to be a program name with arguments.
  6242. lt_save_CC="$CC"
  6243. lt_save_GCC=$GCC
  6244. GCC=yes
  6245. CC=${GCJ-"gcj"}
  6246. compiler=$CC
  6247. _LT_TAGVAR(compiler, $1)=$CC
  6248. _LT_TAGVAR(LD, $1)="$LD"
  6249. _LT_CC_BASENAME([$compiler])
  6250. # GCJ did not exist at the time GCC didn't implicitly link libc in.
  6251. _LT_TAGVAR(archive_cmds_need_lc, $1)=no
  6252. _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
  6253. if test -n "$compiler"; then
  6254. _LT_COMPILER_NO_RTTI($1)
  6255. _LT_COMPILER_PIC($1)
  6256. _LT_COMPILER_C_O($1)
  6257. _LT_COMPILER_FILE_LOCKS($1)
  6258. _LT_LINKER_SHLIBS($1)
  6259. _LT_LINKER_HARDCODE_LIBPATH($1)
  6260. _LT_CONFIG($1)
  6261. fi
  6262. AC_LANG_RESTORE
  6263. GCC=$lt_save_GCC
  6264. CC="$lt_save_CC"
  6265. ])# _LT_LANG_GCJ_CONFIG
  6266. # _LT_LANG_RC_CONFIG([TAG])
  6267. # -------------------------
  6268. # Ensure that the configuration variables for the Windows resource compiler
  6269. # are suitably defined. These variables are subsequently used by _LT_CONFIG
  6270. # to write the compiler configuration to `libtool'.
  6271. m4_defun([_LT_LANG_RC_CONFIG],
  6272. [AC_REQUIRE([LT_PROG_RC])dnl
  6273. AC_LANG_SAVE
  6274. # Source file extension for RC test sources.
  6275. ac_ext=rc
  6276. # Object file extension for compiled RC test sources.
  6277. objext=o
  6278. _LT_TAGVAR(objext, $1)=$objext
  6279. # Code to be used in simple compile tests
  6280. lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }'
  6281. # Code to be used in simple link tests
  6282. lt_simple_link_test_code="$lt_simple_compile_test_code"
  6283. # ltmain only uses $CC for tagged configurations so make sure $CC is set.
  6284. _LT_TAG_COMPILER
  6285. # save warnings/boilerplate of simple test code
  6286. _LT_COMPILER_BOILERPLATE
  6287. _LT_LINKER_BOILERPLATE
  6288. # Allow CC to be a program name with arguments.
  6289. lt_save_CC="$CC"
  6290. lt_save_GCC=$GCC
  6291. GCC=
  6292. CC=${RC-"windres"}
  6293. compiler=$CC
  6294. _LT_TAGVAR(compiler, $1)=$CC
  6295. _LT_CC_BASENAME([$compiler])
  6296. _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes
  6297. if test -n "$compiler"; then
  6298. :
  6299. _LT_CONFIG($1)
  6300. fi
  6301. GCC=$lt_save_GCC
  6302. AC_LANG_RESTORE
  6303. CC="$lt_save_CC"
  6304. ])# _LT_LANG_RC_CONFIG
  6305. # LT_PROG_GCJ
  6306. # -----------
  6307. AC_DEFUN([LT_PROG_GCJ],
  6308. [m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ],
  6309. [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ],
  6310. [AC_CHECK_TOOL(GCJ, gcj,)
  6311. test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2"
  6312. AC_SUBST(GCJFLAGS)])])[]dnl
  6313. ])
  6314. # Old name:
  6315. AU_ALIAS([LT_AC_PROG_GCJ], [LT_PROG_GCJ])
  6316. dnl aclocal-1.4 backwards compatibility:
  6317. dnl AC_DEFUN([LT_AC_PROG_GCJ], [])
  6318. # LT_PROG_RC
  6319. # ----------
  6320. AC_DEFUN([LT_PROG_RC],
  6321. [AC_CHECK_TOOL(RC, windres,)
  6322. ])
  6323. # Old name:
  6324. AU_ALIAS([LT_AC_PROG_RC], [LT_PROG_RC])
  6325. dnl aclocal-1.4 backwards compatibility:
  6326. dnl AC_DEFUN([LT_AC_PROG_RC], [])
  6327. # _LT_DECL_EGREP
  6328. # --------------
  6329. # If we don't have a new enough Autoconf to choose the best grep
  6330. # available, choose the one first in the user's PATH.
  6331. m4_defun([_LT_DECL_EGREP],
  6332. [AC_REQUIRE([AC_PROG_EGREP])dnl
  6333. AC_REQUIRE([AC_PROG_FGREP])dnl
  6334. test -z "$GREP" && GREP=grep
  6335. _LT_DECL([], [GREP], [1], [A grep program that handles long lines])
  6336. _LT_DECL([], [EGREP], [1], [An ERE matcher])
  6337. _LT_DECL([], [FGREP], [1], [A literal string matcher])
  6338. dnl Non-bleeding-edge autoconf doesn't subst GREP, so do it here too
  6339. AC_SUBST([GREP])
  6340. ])
  6341. # _LT_DECL_OBJDUMP
  6342. # --------------
  6343. # If we don't have a new enough Autoconf to choose the best objdump
  6344. # available, choose the one first in the user's PATH.
  6345. m4_defun([_LT_DECL_OBJDUMP],
  6346. [AC_CHECK_TOOL(OBJDUMP, objdump, false)
  6347. test -z "$OBJDUMP" && OBJDUMP=objdump
  6348. _LT_DECL([], [OBJDUMP], [1], [An object symbol dumper])
  6349. AC_SUBST([OBJDUMP])
  6350. ])
  6351. # _LT_DECL_SED
  6352. # ------------
  6353. # Check for a fully-functional sed program, that truncates
  6354. # as few characters as possible. Prefer GNU sed if found.
  6355. m4_defun([_LT_DECL_SED],
  6356. [AC_PROG_SED
  6357. test -z "$SED" && SED=sed
  6358. Xsed="$SED -e 1s/^X//"
  6359. _LT_DECL([], [SED], [1], [A sed program that does not truncate output])
  6360. _LT_DECL([], [Xsed], ["\$SED -e 1s/^X//"],
  6361. [Sed that helps us avoid accidentally triggering echo(1) options like -n])
  6362. ])# _LT_DECL_SED
  6363. m4_ifndef([AC_PROG_SED], [
  6364. # NOTE: This macro has been submitted for inclusion into #
  6365. # GNU Autoconf as AC_PROG_SED. When it is available in #
  6366. # a released version of Autoconf we should remove this #
  6367. # macro and use it instead. #
  6368. m4_defun([AC_PROG_SED],
  6369. [AC_MSG_CHECKING([for a sed that does not truncate output])
  6370. AC_CACHE_VAL(lt_cv_path_SED,
  6371. [# Loop through the user's path and test for sed and gsed.
  6372. # Then use that list of sed's as ones to test for truncation.
  6373. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  6374. for as_dir in $PATH
  6375. do
  6376. IFS=$as_save_IFS
  6377. test -z "$as_dir" && as_dir=.
  6378. for lt_ac_prog in sed gsed; do
  6379. for ac_exec_ext in '' $ac_executable_extensions; do
  6380. if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then
  6381. lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext"
  6382. fi
  6383. done
  6384. done
  6385. done
  6386. IFS=$as_save_IFS
  6387. lt_ac_max=0
  6388. lt_ac_count=0
  6389. # Add /usr/xpg4/bin/sed as it is typically found on Solaris
  6390. # along with /bin/sed that truncates output.
  6391. for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do
  6392. test ! -f $lt_ac_sed && continue
  6393. cat /dev/null > conftest.in
  6394. lt_ac_count=0
  6395. echo $ECHO_N "0123456789$ECHO_C" >conftest.in
  6396. # Check for GNU sed and select it if it is found.
  6397. if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then
  6398. lt_cv_path_SED=$lt_ac_sed
  6399. break
  6400. fi
  6401. while true; do
  6402. cat conftest.in conftest.in >conftest.tmp
  6403. mv conftest.tmp conftest.in
  6404. cp conftest.in conftest.nl
  6405. echo >>conftest.nl
  6406. $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break
  6407. cmp -s conftest.out conftest.nl || break
  6408. # 10000 chars as input seems more than enough
  6409. test $lt_ac_count -gt 10 && break
  6410. lt_ac_count=`expr $lt_ac_count + 1`
  6411. if test $lt_ac_count -gt $lt_ac_max; then
  6412. lt_ac_max=$lt_ac_count
  6413. lt_cv_path_SED=$lt_ac_sed
  6414. fi
  6415. done
  6416. done
  6417. ])
  6418. SED=$lt_cv_path_SED
  6419. AC_SUBST([SED])
  6420. AC_MSG_RESULT([$SED])
  6421. ])#AC_PROG_SED
  6422. ])#m4_ifndef
  6423. # Old name:
  6424. AU_ALIAS([LT_AC_PROG_SED], [AC_PROG_SED])
  6425. dnl aclocal-1.4 backwards compatibility:
  6426. dnl AC_DEFUN([LT_AC_PROG_SED], [])
  6427. # _LT_CHECK_SHELL_FEATURES
  6428. # ------------------------
  6429. # Find out whether the shell is Bourne or XSI compatible,
  6430. # or has some other useful features.
  6431. m4_defun([_LT_CHECK_SHELL_FEATURES],
  6432. [AC_MSG_CHECKING([whether the shell understands some XSI constructs])
  6433. # Try some XSI features
  6434. xsi_shell=no
  6435. ( _lt_dummy="a/b/c"
  6436. test "${_lt_dummy##*/},${_lt_dummy%/*},"${_lt_dummy%"$_lt_dummy"}, \
  6437. = c,a/b,, \
  6438. && eval 'test $(( 1 + 1 )) -eq 2 \
  6439. && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \
  6440. && xsi_shell=yes
  6441. AC_MSG_RESULT([$xsi_shell])
  6442. _LT_CONFIG_LIBTOOL_INIT([xsi_shell='$xsi_shell'])
  6443. AC_MSG_CHECKING([whether the shell understands "+="])
  6444. lt_shell_append=no
  6445. ( foo=bar; set foo baz; eval "$[1]+=\$[2]" && test "$foo" = barbaz ) \
  6446. >/dev/null 2>&1 \
  6447. && lt_shell_append=yes
  6448. AC_MSG_RESULT([$lt_shell_append])
  6449. _LT_CONFIG_LIBTOOL_INIT([lt_shell_append='$lt_shell_append'])
  6450. if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
  6451. lt_unset=unset
  6452. else
  6453. lt_unset=false
  6454. fi
  6455. _LT_DECL([], [lt_unset], [0], [whether the shell understands "unset"])dnl
  6456. # test EBCDIC or ASCII
  6457. case `echo X|tr X '\101'` in
  6458. A) # ASCII based system
  6459. # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr
  6460. lt_SP2NL='tr \040 \012'
  6461. lt_NL2SP='tr \015\012 \040\040'
  6462. ;;
  6463. *) # EBCDIC based system
  6464. lt_SP2NL='tr \100 \n'
  6465. lt_NL2SP='tr \r\n \100\100'
  6466. ;;
  6467. esac
  6468. _LT_DECL([SP2NL], [lt_SP2NL], [1], [turn spaces into newlines])dnl
  6469. _LT_DECL([NL2SP], [lt_NL2SP], [1], [turn newlines into spaces])dnl
  6470. ])# _LT_CHECK_SHELL_FEATURES
  6471. # _LT_PROG_XSI_SHELLFNS
  6472. # ---------------------
  6473. # Bourne and XSI compatible variants of some useful shell functions.
  6474. m4_defun([_LT_PROG_XSI_SHELLFNS],
  6475. [case $xsi_shell in
  6476. yes)
  6477. cat << \_LT_EOF >> "$cfgfile"
  6478. # func_dirname file append nondir_replacement
  6479. # Compute the dirname of FILE. If nonempty, add APPEND to the result,
  6480. # otherwise set result to NONDIR_REPLACEMENT.
  6481. func_dirname ()
  6482. {
  6483. case ${1} in
  6484. */*) func_dirname_result="${1%/*}${2}" ;;
  6485. * ) func_dirname_result="${3}" ;;
  6486. esac
  6487. }
  6488. # func_basename file
  6489. func_basename ()
  6490. {
  6491. func_basename_result="${1##*/}"
  6492. }
  6493. # func_dirname_and_basename file append nondir_replacement
  6494. # perform func_basename and func_dirname in a single function
  6495. # call:
  6496. # dirname: Compute the dirname of FILE. If nonempty,
  6497. # add APPEND to the result, otherwise set result
  6498. # to NONDIR_REPLACEMENT.
  6499. # value returned in "$func_dirname_result"
  6500. # basename: Compute filename of FILE.
  6501. # value retuned in "$func_basename_result"
  6502. # Implementation must be kept synchronized with func_dirname
  6503. # and func_basename. For efficiency, we do not delegate to
  6504. # those functions but instead duplicate the functionality here.
  6505. func_dirname_and_basename ()
  6506. {
  6507. case ${1} in
  6508. */*) func_dirname_result="${1%/*}${2}" ;;
  6509. * ) func_dirname_result="${3}" ;;
  6510. esac
  6511. func_basename_result="${1##*/}"
  6512. }
  6513. # func_stripname prefix suffix name
  6514. # strip PREFIX and SUFFIX off of NAME.
  6515. # PREFIX and SUFFIX must not contain globbing or regex special
  6516. # characters, hashes, percent signs, but SUFFIX may contain a leading
  6517. # dot (in which case that matches only a dot).
  6518. func_stripname ()
  6519. {
  6520. # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are
  6521. # positional parameters, so assign one to ordinary parameter first.
  6522. func_stripname_result=${3}
  6523. func_stripname_result=${func_stripname_result#"${1}"}
  6524. func_stripname_result=${func_stripname_result%"${2}"}
  6525. }
  6526. # func_opt_split
  6527. func_opt_split ()
  6528. {
  6529. func_opt_split_opt=${1%%=*}
  6530. func_opt_split_arg=${1#*=}
  6531. }
  6532. # func_lo2o object
  6533. func_lo2o ()
  6534. {
  6535. case ${1} in
  6536. *.lo) func_lo2o_result=${1%.lo}.${objext} ;;
  6537. *) func_lo2o_result=${1} ;;
  6538. esac
  6539. }
  6540. # func_xform libobj-or-source
  6541. func_xform ()
  6542. {
  6543. func_xform_result=${1%.*}.lo
  6544. }
  6545. # func_arith arithmetic-term...
  6546. func_arith ()
  6547. {
  6548. func_arith_result=$(( $[*] ))
  6549. }
  6550. # func_len string
  6551. # STRING may not start with a hyphen.
  6552. func_len ()
  6553. {
  6554. func_len_result=${#1}
  6555. }
  6556. _LT_EOF
  6557. ;;
  6558. *) # Bourne compatible functions.
  6559. cat << \_LT_EOF >> "$cfgfile"
  6560. # func_dirname file append nondir_replacement
  6561. # Compute the dirname of FILE. If nonempty, add APPEND to the result,
  6562. # otherwise set result to NONDIR_REPLACEMENT.
  6563. func_dirname ()
  6564. {
  6565. # Extract subdirectory from the argument.
  6566. func_dirname_result=`$ECHO "X${1}" | $Xsed -e "$dirname"`
  6567. if test "X$func_dirname_result" = "X${1}"; then
  6568. func_dirname_result="${3}"
  6569. else
  6570. func_dirname_result="$func_dirname_result${2}"
  6571. fi
  6572. }
  6573. # func_basename file
  6574. func_basename ()
  6575. {
  6576. func_basename_result=`$ECHO "X${1}" | $Xsed -e "$basename"`
  6577. }
  6578. dnl func_dirname_and_basename
  6579. dnl A portable version of this function is already defined in general.m4sh
  6580. dnl so there is no need for it here.
  6581. # func_stripname prefix suffix name
  6582. # strip PREFIX and SUFFIX off of NAME.
  6583. # PREFIX and SUFFIX must not contain globbing or regex special
  6584. # characters, hashes, percent signs, but SUFFIX may contain a leading
  6585. # dot (in which case that matches only a dot).
  6586. # func_strip_suffix prefix name
  6587. func_stripname ()
  6588. {
  6589. case ${2} in
  6590. .*) func_stripname_result=`$ECHO "X${3}" \
  6591. | $Xsed -e "s%^${1}%%" -e "s%\\\\${2}\$%%"`;;
  6592. *) func_stripname_result=`$ECHO "X${3}" \
  6593. | $Xsed -e "s%^${1}%%" -e "s%${2}\$%%"`;;
  6594. esac
  6595. }
  6596. # sed scripts:
  6597. my_sed_long_opt='1s/^\(-[[^=]]*\)=.*/\1/;q'
  6598. my_sed_long_arg='1s/^-[[^=]]*=//'
  6599. # func_opt_split
  6600. func_opt_split ()
  6601. {
  6602. func_opt_split_opt=`$ECHO "X${1}" | $Xsed -e "$my_sed_long_opt"`
  6603. func_opt_split_arg=`$ECHO "X${1}" | $Xsed -e "$my_sed_long_arg"`
  6604. }
  6605. # func_lo2o object
  6606. func_lo2o ()
  6607. {
  6608. func_lo2o_result=`$ECHO "X${1}" | $Xsed -e "$lo2o"`
  6609. }
  6610. # func_xform libobj-or-source
  6611. func_xform ()
  6612. {
  6613. func_xform_result=`$ECHO "X${1}" | $Xsed -e 's/\.[[^.]]*$/.lo/'`
  6614. }
  6615. # func_arith arithmetic-term...
  6616. func_arith ()
  6617. {
  6618. func_arith_result=`expr "$[@]"`
  6619. }
  6620. # func_len string
  6621. # STRING may not start with a hyphen.
  6622. func_len ()
  6623. {
  6624. func_len_result=`expr "$[1]" : ".*" 2>/dev/null || echo $max_cmd_len`
  6625. }
  6626. _LT_EOF
  6627. esac
  6628. case $lt_shell_append in
  6629. yes)
  6630. cat << \_LT_EOF >> "$cfgfile"
  6631. # func_append var value
  6632. # Append VALUE to the end of shell variable VAR.
  6633. func_append ()
  6634. {
  6635. eval "$[1]+=\$[2]"
  6636. }
  6637. _LT_EOF
  6638. ;;
  6639. *)
  6640. cat << \_LT_EOF >> "$cfgfile"
  6641. # func_append var value
  6642. # Append VALUE to the end of shell variable VAR.
  6643. func_append ()
  6644. {
  6645. eval "$[1]=\$$[1]\$[2]"
  6646. }
  6647. _LT_EOF
  6648. ;;
  6649. esac
  6650. ])
  6651. # Helper functions for option handling. -*- Autoconf -*-
  6652. #
  6653. # Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation, Inc.
  6654. # Written by Gary V. Vaughan, 2004
  6655. #
  6656. # This file is free software; the Free Software Foundation gives
  6657. # unlimited permission to copy and/or distribute it, with or without
  6658. # modifications, as long as this notice is preserved.
  6659. # serial 6 ltoptions.m4
  6660. # This is to help aclocal find these macros, as it can't see m4_define.
  6661. AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])])
  6662. # _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME)
  6663. # ------------------------------------------
  6664. m4_define([_LT_MANGLE_OPTION],
  6665. [[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])])
  6666. # _LT_SET_OPTION(MACRO-NAME, OPTION-NAME)
  6667. # ---------------------------------------
  6668. # Set option OPTION-NAME for macro MACRO-NAME, and if there is a
  6669. # matching handler defined, dispatch to it. Other OPTION-NAMEs are
  6670. # saved as a flag.
  6671. m4_define([_LT_SET_OPTION],
  6672. [m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl
  6673. m4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]),
  6674. _LT_MANGLE_DEFUN([$1], [$2]),
  6675. [m4_warning([Unknown $1 option `$2'])])[]dnl
  6676. ])
  6677. # _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET])
  6678. # ------------------------------------------------------------
  6679. # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
  6680. m4_define([_LT_IF_OPTION],
  6681. [m4_ifdef(_LT_MANGLE_OPTION([$1], [$2]), [$3], [$4])])
  6682. # _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET)
  6683. # -------------------------------------------------------
  6684. # Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME
  6685. # are set.
  6686. m4_define([_LT_UNLESS_OPTIONS],
  6687. [m4_foreach([_LT_Option], m4_split(m4_normalize([$2])),
  6688. [m4_ifdef(_LT_MANGLE_OPTION([$1], _LT_Option),
  6689. [m4_define([$0_found])])])[]dnl
  6690. m4_ifdef([$0_found], [m4_undefine([$0_found])], [$3
  6691. ])[]dnl
  6692. ])
  6693. # _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST)
  6694. # ----------------------------------------
  6695. # OPTION-LIST is a space-separated list of Libtool options associated
  6696. # with MACRO-NAME. If any OPTION has a matching handler declared with
  6697. # LT_OPTION_DEFINE, dispatch to that macro; otherwise complain about
  6698. # the unknown option and exit.
  6699. m4_defun([_LT_SET_OPTIONS],
  6700. [# Set options
  6701. m4_foreach([_LT_Option], m4_split(m4_normalize([$2])),
  6702. [_LT_SET_OPTION([$1], _LT_Option)])
  6703. m4_if([$1],[LT_INIT],[
  6704. dnl
  6705. dnl Simply set some default values (i.e off) if boolean options were not
  6706. dnl specified:
  6707. _LT_UNLESS_OPTIONS([LT_INIT], [dlopen], [enable_dlopen=no
  6708. ])
  6709. _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no
  6710. ])
  6711. dnl
  6712. dnl If no reference was made to various pairs of opposing options, then
  6713. dnl we run the default mode handler for the pair. For example, if neither
  6714. dnl `shared' nor `disable-shared' was passed, we enable building of shared
  6715. dnl archives by default:
  6716. _LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED])
  6717. _LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC])
  6718. _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC])
  6719. _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install],
  6720. [_LT_ENABLE_FAST_INSTALL])
  6721. ])
  6722. ])# _LT_SET_OPTIONS
  6723. # _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME)
  6724. # -----------------------------------------
  6725. m4_define([_LT_MANGLE_DEFUN],
  6726. [[_LT_OPTION_DEFUN_]m4_bpatsubst(m4_toupper([$1__$2]), [[^A-Z0-9_]], [_])])
  6727. # LT_OPTION_DEFINE(MACRO-NAME, OPTION-NAME, CODE)
  6728. # -----------------------------------------------
  6729. m4_define([LT_OPTION_DEFINE],
  6730. [m4_define(_LT_MANGLE_DEFUN([$1], [$2]), [$3])[]dnl
  6731. ])# LT_OPTION_DEFINE
  6732. # dlopen
  6733. # ------
  6734. LT_OPTION_DEFINE([LT_INIT], [dlopen], [enable_dlopen=yes
  6735. ])
  6736. AU_DEFUN([AC_LIBTOOL_DLOPEN],
  6737. [_LT_SET_OPTION([LT_INIT], [dlopen])
  6738. AC_DIAGNOSE([obsolete],
  6739. [$0: Remove this warning and the call to _LT_SET_OPTION when you
  6740. put the `dlopen' option into LT_INIT's first parameter.])
  6741. ])
  6742. dnl aclocal-1.4 backwards compatibility:
  6743. dnl AC_DEFUN([AC_LIBTOOL_DLOPEN], [])
  6744. # win32-dll
  6745. # ---------
  6746. # Declare package support for building win32 dll's.
  6747. LT_OPTION_DEFINE([LT_INIT], [win32-dll],
  6748. [enable_win32_dll=yes
  6749. case $host in
  6750. *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-cegcc*)
  6751. AC_CHECK_TOOL(AS, as, false)
  6752. AC_CHECK_TOOL(DLLTOOL, dlltool, false)
  6753. AC_CHECK_TOOL(OBJDUMP, objdump, false)
  6754. ;;
  6755. esac
  6756. test -z "$AS" && AS=as
  6757. _LT_DECL([], [AS], [0], [Assembler program])dnl
  6758. test -z "$DLLTOOL" && DLLTOOL=dlltool
  6759. _LT_DECL([], [DLLTOOL], [0], [DLL creation program])dnl
  6760. test -z "$OBJDUMP" && OBJDUMP=objdump
  6761. _LT_DECL([], [OBJDUMP], [0], [Object dumper program])dnl
  6762. ])# win32-dll
  6763. AU_DEFUN([AC_LIBTOOL_WIN32_DLL],
  6764. [AC_REQUIRE([AC_CANONICAL_HOST])dnl
  6765. _LT_SET_OPTION([LT_INIT], [win32-dll])
  6766. AC_DIAGNOSE([obsolete],
  6767. [$0: Remove this warning and the call to _LT_SET_OPTION when you
  6768. put the `win32-dll' option into LT_INIT's first parameter.])
  6769. ])
  6770. dnl aclocal-1.4 backwards compatibility:
  6771. dnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [])
  6772. # _LT_ENABLE_SHARED([DEFAULT])
  6773. # ----------------------------
  6774. # implement the --enable-shared flag, and supports the `shared' and
  6775. # `disable-shared' LT_INIT options.
  6776. # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'.
  6777. m4_define([_LT_ENABLE_SHARED],
  6778. [m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl
  6779. AC_ARG_ENABLE([shared],
  6780. [AS_HELP_STRING([--enable-shared@<:@=PKGS@:>@],
  6781. [build shared libraries @<:@default=]_LT_ENABLE_SHARED_DEFAULT[@:>@])],
  6782. [p=${PACKAGE-default}
  6783. case $enableval in
  6784. yes) enable_shared=yes ;;
  6785. no) enable_shared=no ;;
  6786. *)
  6787. enable_shared=no
  6788. # Look at the argument we got. We use all the common list separators.
  6789. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
  6790. for pkg in $enableval; do
  6791. IFS="$lt_save_ifs"
  6792. if test "X$pkg" = "X$p"; then
  6793. enable_shared=yes
  6794. fi
  6795. done
  6796. IFS="$lt_save_ifs"
  6797. ;;
  6798. esac],
  6799. [enable_shared=]_LT_ENABLE_SHARED_DEFAULT)
  6800. _LT_DECL([build_libtool_libs], [enable_shared], [0],
  6801. [Whether or not to build shared libraries])
  6802. ])# _LT_ENABLE_SHARED
  6803. LT_OPTION_DEFINE([LT_INIT], [shared], [_LT_ENABLE_SHARED([yes])])
  6804. LT_OPTION_DEFINE([LT_INIT], [disable-shared], [_LT_ENABLE_SHARED([no])])
  6805. # Old names:
  6806. AC_DEFUN([AC_ENABLE_SHARED],
  6807. [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared])
  6808. ])
  6809. AC_DEFUN([AC_DISABLE_SHARED],
  6810. [_LT_SET_OPTION([LT_INIT], [disable-shared])
  6811. ])
  6812. AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)])
  6813. AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)])
  6814. dnl aclocal-1.4 backwards compatibility:
  6815. dnl AC_DEFUN([AM_ENABLE_SHARED], [])
  6816. dnl AC_DEFUN([AM_DISABLE_SHARED], [])
  6817. # _LT_ENABLE_STATIC([DEFAULT])
  6818. # ----------------------------
  6819. # implement the --enable-static flag, and support the `static' and
  6820. # `disable-static' LT_INIT options.
  6821. # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'.
  6822. m4_define([_LT_ENABLE_STATIC],
  6823. [m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl
  6824. AC_ARG_ENABLE([static],
  6825. [AS_HELP_STRING([--enable-static@<:@=PKGS@:>@],
  6826. [build static libraries @<:@default=]_LT_ENABLE_STATIC_DEFAULT[@:>@])],
  6827. [p=${PACKAGE-default}
  6828. case $enableval in
  6829. yes) enable_static=yes ;;
  6830. no) enable_static=no ;;
  6831. *)
  6832. enable_static=no
  6833. # Look at the argument we got. We use all the common list separators.
  6834. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
  6835. for pkg in $enableval; do
  6836. IFS="$lt_save_ifs"
  6837. if test "X$pkg" = "X$p"; then
  6838. enable_static=yes
  6839. fi
  6840. done
  6841. IFS="$lt_save_ifs"
  6842. ;;
  6843. esac],
  6844. [enable_static=]_LT_ENABLE_STATIC_DEFAULT)
  6845. _LT_DECL([build_old_libs], [enable_static], [0],
  6846. [Whether or not to build static libraries])
  6847. ])# _LT_ENABLE_STATIC
  6848. LT_OPTION_DEFINE([LT_INIT], [static], [_LT_ENABLE_STATIC([yes])])
  6849. LT_OPTION_DEFINE([LT_INIT], [disable-static], [_LT_ENABLE_STATIC([no])])
  6850. # Old names:
  6851. AC_DEFUN([AC_ENABLE_STATIC],
  6852. [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static])
  6853. ])
  6854. AC_DEFUN([AC_DISABLE_STATIC],
  6855. [_LT_SET_OPTION([LT_INIT], [disable-static])
  6856. ])
  6857. AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)])
  6858. AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)])
  6859. dnl aclocal-1.4 backwards compatibility:
  6860. dnl AC_DEFUN([AM_ENABLE_STATIC], [])
  6861. dnl AC_DEFUN([AM_DISABLE_STATIC], [])
  6862. # _LT_ENABLE_FAST_INSTALL([DEFAULT])
  6863. # ----------------------------------
  6864. # implement the --enable-fast-install flag, and support the `fast-install'
  6865. # and `disable-fast-install' LT_INIT options.
  6866. # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'.
  6867. m4_define([_LT_ENABLE_FAST_INSTALL],
  6868. [m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl
  6869. AC_ARG_ENABLE([fast-install],
  6870. [AS_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@],
  6871. [optimize for fast installation @<:@default=]_LT_ENABLE_FAST_INSTALL_DEFAULT[@:>@])],
  6872. [p=${PACKAGE-default}
  6873. case $enableval in
  6874. yes) enable_fast_install=yes ;;
  6875. no) enable_fast_install=no ;;
  6876. *)
  6877. enable_fast_install=no
  6878. # Look at the argument we got. We use all the common list separators.
  6879. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
  6880. for pkg in $enableval; do
  6881. IFS="$lt_save_ifs"
  6882. if test "X$pkg" = "X$p"; then
  6883. enable_fast_install=yes
  6884. fi
  6885. done
  6886. IFS="$lt_save_ifs"
  6887. ;;
  6888. esac],
  6889. [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT)
  6890. _LT_DECL([fast_install], [enable_fast_install], [0],
  6891. [Whether or not to optimize for fast installation])dnl
  6892. ])# _LT_ENABLE_FAST_INSTALL
  6893. LT_OPTION_DEFINE([LT_INIT], [fast-install], [_LT_ENABLE_FAST_INSTALL([yes])])
  6894. LT_OPTION_DEFINE([LT_INIT], [disable-fast-install], [_LT_ENABLE_FAST_INSTALL([no])])
  6895. # Old names:
  6896. AU_DEFUN([AC_ENABLE_FAST_INSTALL],
  6897. [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install])
  6898. AC_DIAGNOSE([obsolete],
  6899. [$0: Remove this warning and the call to _LT_SET_OPTION when you put
  6900. the `fast-install' option into LT_INIT's first parameter.])
  6901. ])
  6902. AU_DEFUN([AC_DISABLE_FAST_INSTALL],
  6903. [_LT_SET_OPTION([LT_INIT], [disable-fast-install])
  6904. AC_DIAGNOSE([obsolete],
  6905. [$0: Remove this warning and the call to _LT_SET_OPTION when you put
  6906. the `disable-fast-install' option into LT_INIT's first parameter.])
  6907. ])
  6908. dnl aclocal-1.4 backwards compatibility:
  6909. dnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], [])
  6910. dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], [])
  6911. # _LT_WITH_PIC([MODE])
  6912. # --------------------
  6913. # implement the --with-pic flag, and support the `pic-only' and `no-pic'
  6914. # LT_INIT options.
  6915. # MODE is either `yes' or `no'. If omitted, it defaults to `both'.
  6916. m4_define([_LT_WITH_PIC],
  6917. [AC_ARG_WITH([pic],
  6918. [AS_HELP_STRING([--with-pic],
  6919. [try to use only PIC/non-PIC objects @<:@default=use both@:>@])],
  6920. [pic_mode="$withval"],
  6921. [pic_mode=default])
  6922. test -z "$pic_mode" && pic_mode=m4_default([$1], [default])
  6923. _LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl
  6924. ])# _LT_WITH_PIC
  6925. LT_OPTION_DEFINE([LT_INIT], [pic-only], [_LT_WITH_PIC([yes])])
  6926. LT_OPTION_DEFINE([LT_INIT], [no-pic], [_LT_WITH_PIC([no])])
  6927. # Old name:
  6928. AU_DEFUN([AC_LIBTOOL_PICMODE],
  6929. [_LT_SET_OPTION([LT_INIT], [pic-only])
  6930. AC_DIAGNOSE([obsolete],
  6931. [$0: Remove this warning and the call to _LT_SET_OPTION when you
  6932. put the `pic-only' option into LT_INIT's first parameter.])
  6933. ])
  6934. dnl aclocal-1.4 backwards compatibility:
  6935. dnl AC_DEFUN([AC_LIBTOOL_PICMODE], [])
  6936. m4_define([_LTDL_MODE], [])
  6937. LT_OPTION_DEFINE([LTDL_INIT], [nonrecursive],
  6938. [m4_define([_LTDL_MODE], [nonrecursive])])
  6939. LT_OPTION_DEFINE([LTDL_INIT], [recursive],
  6940. [m4_define([_LTDL_MODE], [recursive])])
  6941. LT_OPTION_DEFINE([LTDL_INIT], [subproject],
  6942. [m4_define([_LTDL_MODE], [subproject])])
  6943. m4_define([_LTDL_TYPE], [])
  6944. LT_OPTION_DEFINE([LTDL_INIT], [installable],
  6945. [m4_define([_LTDL_TYPE], [installable])])
  6946. LT_OPTION_DEFINE([LTDL_INIT], [convenience],
  6947. [m4_define([_LTDL_TYPE], [convenience])])
  6948. # ltsugar.m4 -- libtool m4 base layer. -*-Autoconf-*-
  6949. #
  6950. # Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation, Inc.
  6951. # Written by Gary V. Vaughan, 2004
  6952. #
  6953. # This file is free software; the Free Software Foundation gives
  6954. # unlimited permission to copy and/or distribute it, with or without
  6955. # modifications, as long as this notice is preserved.
  6956. # serial 6 ltsugar.m4
  6957. # This is to help aclocal find these macros, as it can't see m4_define.
  6958. AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])])
  6959. # lt_join(SEP, ARG1, [ARG2...])
  6960. # -----------------------------
  6961. # Produce ARG1SEPARG2...SEPARGn, omitting [] arguments and their
  6962. # associated separator.
  6963. # Needed until we can rely on m4_join from Autoconf 2.62, since all earlier
  6964. # versions in m4sugar had bugs.
  6965. m4_define([lt_join],
  6966. [m4_if([$#], [1], [],
  6967. [$#], [2], [[$2]],
  6968. [m4_if([$2], [], [], [[$2]_])$0([$1], m4_shift(m4_shift($@)))])])
  6969. m4_define([_lt_join],
  6970. [m4_if([$#$2], [2], [],
  6971. [m4_if([$2], [], [], [[$1$2]])$0([$1], m4_shift(m4_shift($@)))])])
  6972. # lt_car(LIST)
  6973. # lt_cdr(LIST)
  6974. # ------------
  6975. # Manipulate m4 lists.
  6976. # These macros are necessary as long as will still need to support
  6977. # Autoconf-2.59 which quotes differently.
  6978. m4_define([lt_car], [[$1]])
  6979. m4_define([lt_cdr],
  6980. [m4_if([$#], 0, [m4_fatal([$0: cannot be called without arguments])],
  6981. [$#], 1, [],
  6982. [m4_dquote(m4_shift($@))])])
  6983. m4_define([lt_unquote], $1)
  6984. # lt_append(MACRO-NAME, STRING, [SEPARATOR])
  6985. # ------------------------------------------
  6986. # Redefine MACRO-NAME to hold its former content plus `SEPARATOR'`STRING'.
  6987. # Note that neither SEPARATOR nor STRING are expanded; they are appended
  6988. # to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked).
  6989. # No SEPARATOR is output if MACRO-NAME was previously undefined (different
  6990. # than defined and empty).
  6991. #
  6992. # This macro is needed until we can rely on Autoconf 2.62, since earlier
  6993. # versions of m4sugar mistakenly expanded SEPARATOR but not STRING.
  6994. m4_define([lt_append],
  6995. [m4_define([$1],
  6996. m4_ifdef([$1], [m4_defn([$1])[$3]])[$2])])
  6997. # lt_combine(SEP, PREFIX-LIST, INFIX, SUFFIX1, [SUFFIX2...])
  6998. # ----------------------------------------------------------
  6999. # Produce a SEP delimited list of all paired combinations of elements of
  7000. # PREFIX-LIST with SUFFIX1 through SUFFIXn. Each element of the list
  7001. # has the form PREFIXmINFIXSUFFIXn.
  7002. # Needed until we can rely on m4_combine added in Autoconf 2.62.
  7003. m4_define([lt_combine],
  7004. [m4_if(m4_eval([$# > 3]), [1],
  7005. [m4_pushdef([_Lt_sep], [m4_define([_Lt_sep], m4_defn([lt_car]))])]]dnl
  7006. [[m4_foreach([_Lt_prefix], [$2],
  7007. [m4_foreach([_Lt_suffix],
  7008. ]m4_dquote(m4_dquote(m4_shift(m4_shift(m4_shift($@)))))[,
  7009. [_Lt_sep([$1])[]m4_defn([_Lt_prefix])[$3]m4_defn([_Lt_suffix])])])])])
  7010. # lt_if_append_uniq(MACRO-NAME, VARNAME, [SEPARATOR], [UNIQ], [NOT-UNIQ])
  7011. # -----------------------------------------------------------------------
  7012. # Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited
  7013. # by SEPARATOR if supplied) and expand UNIQ, else NOT-UNIQ.
  7014. m4_define([lt_if_append_uniq],
  7015. [m4_ifdef([$1],
  7016. [m4_if(m4_index([$3]m4_defn([$1])[$3], [$3$2$3]), [-1],
  7017. [lt_append([$1], [$2], [$3])$4],
  7018. [$5])],
  7019. [lt_append([$1], [$2], [$3])$4])])
  7020. # lt_dict_add(DICT, KEY, VALUE)
  7021. # -----------------------------
  7022. m4_define([lt_dict_add],
  7023. [m4_define([$1($2)], [$3])])
  7024. # lt_dict_add_subkey(DICT, KEY, SUBKEY, VALUE)
  7025. # --------------------------------------------
  7026. m4_define([lt_dict_add_subkey],
  7027. [m4_define([$1($2:$3)], [$4])])
  7028. # lt_dict_fetch(DICT, KEY, [SUBKEY])
  7029. # ----------------------------------
  7030. m4_define([lt_dict_fetch],
  7031. [m4_ifval([$3],
  7032. m4_ifdef([$1($2:$3)], [m4_defn([$1($2:$3)])]),
  7033. m4_ifdef([$1($2)], [m4_defn([$1($2)])]))])
  7034. # lt_if_dict_fetch(DICT, KEY, [SUBKEY], VALUE, IF-TRUE, [IF-FALSE])
  7035. # -----------------------------------------------------------------
  7036. m4_define([lt_if_dict_fetch],
  7037. [m4_if(lt_dict_fetch([$1], [$2], [$3]), [$4],
  7038. [$5],
  7039. [$6])])
  7040. # lt_dict_filter(DICT, [SUBKEY], VALUE, [SEPARATOR], KEY, [...])
  7041. # --------------------------------------------------------------
  7042. m4_define([lt_dict_filter],
  7043. [m4_if([$5], [], [],
  7044. [lt_join(m4_quote(m4_default([$4], [[, ]])),
  7045. lt_unquote(m4_split(m4_normalize(m4_foreach(_Lt_key, lt_car([m4_shiftn(4, $@)]),
  7046. [lt_if_dict_fetch([$1], _Lt_key, [$2], [$3], [_Lt_key ])])))))])[]dnl
  7047. ])
  7048. # ltversion.m4 -- version numbers -*- Autoconf -*-
  7049. #
  7050. # Copyright (C) 2004 Free Software Foundation, Inc.
  7051. # Written by Scott James Remnant, 2004
  7052. #
  7053. # This file is free software; the Free Software Foundation gives
  7054. # unlimited permission to copy and/or distribute it, with or without
  7055. # modifications, as long as this notice is preserved.
  7056. # Generated from ltversion.in.
  7057. # serial 3012 ltversion.m4
  7058. # This file is part of GNU Libtool
  7059. m4_define([LT_PACKAGE_VERSION], [2.2.6])
  7060. m4_define([LT_PACKAGE_REVISION], [1.3012])
  7061. AC_DEFUN([LTVERSION_VERSION],
  7062. [macro_version='2.2.6'
  7063. macro_revision='1.3012'
  7064. _LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?])
  7065. _LT_DECL(, macro_revision, 0)
  7066. ])
  7067. # lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*-
  7068. #
  7069. # Copyright (C) 2004, 2005, 2007 Free Software Foundation, Inc.
  7070. # Written by Scott James Remnant, 2004.
  7071. #
  7072. # This file is free software; the Free Software Foundation gives
  7073. # unlimited permission to copy and/or distribute it, with or without
  7074. # modifications, as long as this notice is preserved.
  7075. # serial 4 lt~obsolete.m4
  7076. # These exist entirely to fool aclocal when bootstrapping libtool.
  7077. #
  7078. # In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN)
  7079. # which have later been changed to m4_define as they aren't part of the
  7080. # exported API, or moved to Autoconf or Automake where they belong.
  7081. #
  7082. # The trouble is, aclocal is a bit thick. It'll see the old AC_DEFUN
  7083. # in /usr/share/aclocal/libtool.m4 and remember it, then when it sees us
  7084. # using a macro with the same name in our local m4/libtool.m4 it'll
  7085. # pull the old libtool.m4 in (it doesn't see our shiny new m4_define
  7086. # and doesn't know about Autoconf macros at all.)
  7087. #
  7088. # So we provide this file, which has a silly filename so it's always
  7089. # included after everything else. This provides aclocal with the
  7090. # AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything
  7091. # because those macros already exist, or will be overwritten later.
  7092. # We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6.
  7093. #
  7094. # Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here.
  7095. # Yes, that means every name once taken will need to remain here until
  7096. # we give up compatibility with versions before 1.7, at which point
  7097. # we need to keep only those names which we still refer to.
  7098. # This is to help aclocal find these macros, as it can't see m4_define.
  7099. AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])])
  7100. m4_ifndef([AC_LIBTOOL_LINKER_OPTION], [AC_DEFUN([AC_LIBTOOL_LINKER_OPTION])])
  7101. m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP])])
  7102. m4_ifndef([_LT_AC_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])])
  7103. m4_ifndef([_LT_AC_SHELL_INIT], [AC_DEFUN([_LT_AC_SHELL_INIT])])
  7104. m4_ifndef([_LT_AC_SYS_LIBPATH_AIX], [AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])])
  7105. m4_ifndef([_LT_PROG_LTMAIN], [AC_DEFUN([_LT_PROG_LTMAIN])])
  7106. m4_ifndef([_LT_AC_TAGVAR], [AC_DEFUN([_LT_AC_TAGVAR])])
  7107. m4_ifndef([AC_LTDL_ENABLE_INSTALL], [AC_DEFUN([AC_LTDL_ENABLE_INSTALL])])
  7108. m4_ifndef([AC_LTDL_PREOPEN], [AC_DEFUN([AC_LTDL_PREOPEN])])
  7109. m4_ifndef([_LT_AC_SYS_COMPILER], [AC_DEFUN([_LT_AC_SYS_COMPILER])])
  7110. m4_ifndef([_LT_AC_LOCK], [AC_DEFUN([_LT_AC_LOCK])])
  7111. m4_ifndef([AC_LIBTOOL_SYS_OLD_ARCHIVE], [AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])])
  7112. m4_ifndef([_LT_AC_TRY_DLOPEN_SELF], [AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])])
  7113. m4_ifndef([AC_LIBTOOL_PROG_CC_C_O], [AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])])
  7114. m4_ifndef([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])])
  7115. m4_ifndef([AC_LIBTOOL_OBJDIR], [AC_DEFUN([AC_LIBTOOL_OBJDIR])])
  7116. m4_ifndef([AC_LTDL_OBJDIR], [AC_DEFUN([AC_LTDL_OBJDIR])])
  7117. m4_ifndef([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])])
  7118. m4_ifndef([AC_LIBTOOL_SYS_LIB_STRIP], [AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])])
  7119. m4_ifndef([AC_PATH_MAGIC], [AC_DEFUN([AC_PATH_MAGIC])])
  7120. m4_ifndef([AC_PROG_LD_GNU], [AC_DEFUN([AC_PROG_LD_GNU])])
  7121. m4_ifndef([AC_PROG_LD_RELOAD_FLAG], [AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])])
  7122. m4_ifndef([AC_DEPLIBS_CHECK_METHOD], [AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])])
  7123. m4_ifndef([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])])
  7124. m4_ifndef([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])])
  7125. m4_ifndef([AC_LIBTOOL_PROG_COMPILER_PIC], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])])
  7126. m4_ifndef([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])])
  7127. m4_ifndef([AC_LIBTOOL_POSTDEP_PREDEP], [AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])])
  7128. m4_ifndef([LT_AC_PROG_EGREP], [AC_DEFUN([LT_AC_PROG_EGREP])])
  7129. m4_ifndef([LT_AC_PROG_SED], [AC_DEFUN([LT_AC_PROG_SED])])
  7130. m4_ifndef([_LT_CC_BASENAME], [AC_DEFUN([_LT_CC_BASENAME])])
  7131. m4_ifndef([_LT_COMPILER_BOILERPLATE], [AC_DEFUN([_LT_COMPILER_BOILERPLATE])])
  7132. m4_ifndef([_LT_LINKER_BOILERPLATE], [AC_DEFUN([_LT_LINKER_BOILERPLATE])])
  7133. m4_ifndef([_AC_PROG_LIBTOOL], [AC_DEFUN([_AC_PROG_LIBTOOL])])
  7134. m4_ifndef([AC_LIBTOOL_SETUP], [AC_DEFUN([AC_LIBTOOL_SETUP])])
  7135. m4_ifndef([_LT_AC_CHECK_DLFCN], [AC_DEFUN([_LT_AC_CHECK_DLFCN])])
  7136. m4_ifndef([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])])
  7137. m4_ifndef([_LT_AC_TAGCONFIG], [AC_DEFUN([_LT_AC_TAGCONFIG])])
  7138. m4_ifndef([AC_DISABLE_FAST_INSTALL], [AC_DEFUN([AC_DISABLE_FAST_INSTALL])])
  7139. m4_ifndef([_LT_AC_LANG_CXX], [AC_DEFUN([_LT_AC_LANG_CXX])])
  7140. m4_ifndef([_LT_AC_LANG_F77], [AC_DEFUN([_LT_AC_LANG_F77])])
  7141. m4_ifndef([_LT_AC_LANG_GCJ], [AC_DEFUN([_LT_AC_LANG_GCJ])])
  7142. m4_ifndef([AC_LIBTOOL_RC], [AC_DEFUN([AC_LIBTOOL_RC])])
  7143. m4_ifndef([AC_LIBTOOL_LANG_C_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])])
  7144. m4_ifndef([_LT_AC_LANG_C_CONFIG], [AC_DEFUN([_LT_AC_LANG_C_CONFIG])])
  7145. m4_ifndef([AC_LIBTOOL_LANG_CXX_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])])
  7146. m4_ifndef([_LT_AC_LANG_CXX_CONFIG], [AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])])
  7147. m4_ifndef([AC_LIBTOOL_LANG_F77_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])])
  7148. m4_ifndef([_LT_AC_LANG_F77_CONFIG], [AC_DEFUN([_LT_AC_LANG_F77_CONFIG])])
  7149. m4_ifndef([AC_LIBTOOL_LANG_GCJ_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])])
  7150. m4_ifndef([_LT_AC_LANG_GCJ_CONFIG], [AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])])
  7151. m4_ifndef([AC_LIBTOOL_LANG_RC_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])])
  7152. m4_ifndef([_LT_AC_LANG_RC_CONFIG], [AC_DEFUN([_LT_AC_LANG_RC_CONFIG])])
  7153. m4_ifndef([AC_LIBTOOL_CONFIG], [AC_DEFUN([AC_LIBTOOL_CONFIG])])
  7154. m4_ifndef([_LT_AC_FILE_LTDLL_C], [AC_DEFUN([_LT_AC_FILE_LTDLL_C])])
  7155. # Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
  7156. #
  7157. # This file is free software; the Free Software Foundation
  7158. # gives unlimited permission to copy and/or distribute it,
  7159. # with or without modifications, as long as this notice is preserved.
  7160. # AM_AUTOMAKE_VERSION(VERSION)
  7161. # ----------------------------
  7162. # Automake X.Y traces this macro to ensure aclocal.m4 has been
  7163. # generated from the m4 files accompanying Automake X.Y.
  7164. # (This private macro should not be called outside this file.)
  7165. AC_DEFUN([AM_AUTOMAKE_VERSION],
  7166. [am__api_version='1.11'
  7167. dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
  7168. dnl require some minimum version. Point them to the right macro.
  7169. m4_if([$1], [1.11], [],
  7170. [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
  7171. ])
  7172. # _AM_AUTOCONF_VERSION(VERSION)
  7173. # -----------------------------
  7174. # aclocal traces this macro to find the Autoconf version.
  7175. # This is a private macro too. Using m4_define simplifies
  7176. # the logic in aclocal, which can simply ignore this definition.
  7177. m4_define([_AM_AUTOCONF_VERSION], [])
  7178. # AM_SET_CURRENT_AUTOMAKE_VERSION
  7179. # -------------------------------
  7180. # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
  7181. # This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
  7182. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
  7183. [AM_AUTOMAKE_VERSION([1.11])dnl
  7184. m4_ifndef([AC_AUTOCONF_VERSION],
  7185. [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
  7186. _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
  7187. # AM_AUX_DIR_EXPAND -*- Autoconf -*-
  7188. # Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc.
  7189. #
  7190. # This file is free software; the Free Software Foundation
  7191. # gives unlimited permission to copy and/or distribute it,
  7192. # with or without modifications, as long as this notice is preserved.
  7193. # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
  7194. # $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to
  7195. # `$srcdir', `$srcdir/..', or `$srcdir/../..'.
  7196. #
  7197. # Of course, Automake must honor this variable whenever it calls a
  7198. # tool from the auxiliary directory. The problem is that $srcdir (and
  7199. # therefore $ac_aux_dir as well) can be either absolute or relative,
  7200. # depending on how configure is run. This is pretty annoying, since
  7201. # it makes $ac_aux_dir quite unusable in subdirectories: in the top
  7202. # source directory, any form will work fine, but in subdirectories a
  7203. # relative path needs to be adjusted first.
  7204. #
  7205. # $ac_aux_dir/missing
  7206. # fails when called from a subdirectory if $ac_aux_dir is relative
  7207. # $top_srcdir/$ac_aux_dir/missing
  7208. # fails if $ac_aux_dir is absolute,
  7209. # fails when called from a subdirectory in a VPATH build with
  7210. # a relative $ac_aux_dir
  7211. #
  7212. # The reason of the latter failure is that $top_srcdir and $ac_aux_dir
  7213. # are both prefixed by $srcdir. In an in-source build this is usually
  7214. # harmless because $srcdir is `.', but things will broke when you
  7215. # start a VPATH build or use an absolute $srcdir.
  7216. #
  7217. # So we could use something similar to $top_srcdir/$ac_aux_dir/missing,
  7218. # iff we strip the leading $srcdir from $ac_aux_dir. That would be:
  7219. # am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"`
  7220. # and then we would define $MISSING as
  7221. # MISSING="\${SHELL} $am_aux_dir/missing"
  7222. # This will work as long as MISSING is not called from configure, because
  7223. # unfortunately $(top_srcdir) has no meaning in configure.
  7224. # However there are other variables, like CC, which are often used in
  7225. # configure, and could therefore not use this "fixed" $ac_aux_dir.
  7226. #
  7227. # Another solution, used here, is to always expand $ac_aux_dir to an
  7228. # absolute PATH. The drawback is that using absolute paths prevent a
  7229. # configured tree to be moved without reconfiguration.
  7230. AC_DEFUN([AM_AUX_DIR_EXPAND],
  7231. [dnl Rely on autoconf to set up CDPATH properly.
  7232. AC_PREREQ([2.50])dnl
  7233. # expand $ac_aux_dir to an absolute path
  7234. am_aux_dir=`cd $ac_aux_dir && pwd`
  7235. ])
  7236. # AM_CONDITIONAL -*- Autoconf -*-
  7237. # Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008
  7238. # Free Software Foundation, Inc.
  7239. #
  7240. # This file is free software; the Free Software Foundation
  7241. # gives unlimited permission to copy and/or distribute it,
  7242. # with or without modifications, as long as this notice is preserved.
  7243. # serial 9
  7244. # AM_CONDITIONAL(NAME, SHELL-CONDITION)
  7245. # -------------------------------------
  7246. # Define a conditional.
  7247. AC_DEFUN([AM_CONDITIONAL],
  7248. [AC_PREREQ(2.52)dnl
  7249. ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])],
  7250. [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
  7251. AC_SUBST([$1_TRUE])dnl
  7252. AC_SUBST([$1_FALSE])dnl
  7253. _AM_SUBST_NOTMAKE([$1_TRUE])dnl
  7254. _AM_SUBST_NOTMAKE([$1_FALSE])dnl
  7255. m4_define([_AM_COND_VALUE_$1], [$2])dnl
  7256. if $2; then
  7257. $1_TRUE=
  7258. $1_FALSE='#'
  7259. else
  7260. $1_TRUE='#'
  7261. $1_FALSE=
  7262. fi
  7263. AC_CONFIG_COMMANDS_PRE(
  7264. [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
  7265. AC_MSG_ERROR([[conditional "$1" was never defined.
  7266. Usually this means the macro was only invoked conditionally.]])
  7267. fi])])
  7268. # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009
  7269. # Free Software Foundation, Inc.
  7270. #
  7271. # This file is free software; the Free Software Foundation
  7272. # gives unlimited permission to copy and/or distribute it,
  7273. # with or without modifications, as long as this notice is preserved.
  7274. # serial 10
  7275. # There are a few dirty hacks below to avoid letting `AC_PROG_CC' be
  7276. # written in clear, in which case automake, when reading aclocal.m4,
  7277. # will think it sees a *use*, and therefore will trigger all it's
  7278. # C support machinery. Also note that it means that autoscan, seeing
  7279. # CC etc. in the Makefile, will ask for an AC_PROG_CC use...
  7280. # _AM_DEPENDENCIES(NAME)
  7281. # ----------------------
  7282. # See how the compiler implements dependency checking.
  7283. # NAME is "CC", "CXX", "GCJ", or "OBJC".
  7284. # We try a few techniques and use that to set a single cache variable.
  7285. #
  7286. # We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was
  7287. # modified to invoke _AM_DEPENDENCIES(CC); we would have a circular
  7288. # dependency, and given that the user is not expected to run this macro,
  7289. # just rely on AC_PROG_CC.
  7290. AC_DEFUN([_AM_DEPENDENCIES],
  7291. [AC_REQUIRE([AM_SET_DEPDIR])dnl
  7292. AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
  7293. AC_REQUIRE([AM_MAKE_INCLUDE])dnl
  7294. AC_REQUIRE([AM_DEP_TRACK])dnl
  7295. ifelse([$1], CC, [depcc="$CC" am_compiler_list=],
  7296. [$1], CXX, [depcc="$CXX" am_compiler_list=],
  7297. [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
  7298. [$1], UPC, [depcc="$UPC" am_compiler_list=],
  7299. [$1], GCJ, [depcc="$GCJ" am_compiler_list='gcc3 gcc'],
  7300. [depcc="$$1" am_compiler_list=])
  7301. AC_CACHE_CHECK([dependency style of $depcc],
  7302. [am_cv_$1_dependencies_compiler_type],
  7303. [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
  7304. # We make a subdir and do the tests there. Otherwise we can end up
  7305. # making bogus files that we don't know about and never remove. For
  7306. # instance it was reported that on HP-UX the gcc test will end up
  7307. # making a dummy file named `D' -- because `-MD' means `put the output
  7308. # in D'.
  7309. mkdir conftest.dir
  7310. # Copy depcomp to subdir because otherwise we won't find it if we're
  7311. # using a relative directory.
  7312. cp "$am_depcomp" conftest.dir
  7313. cd conftest.dir
  7314. # We will build objects and dependencies in a subdirectory because
  7315. # it helps to detect inapplicable dependency modes. For instance
  7316. # both Tru64's cc and ICC support -MD to output dependencies as a
  7317. # side effect of compilation, but ICC will put the dependencies in
  7318. # the current directory while Tru64 will put them in the object
  7319. # directory.
  7320. mkdir sub
  7321. am_cv_$1_dependencies_compiler_type=none
  7322. if test "$am_compiler_list" = ""; then
  7323. am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
  7324. fi
  7325. am__universal=false
  7326. m4_case([$1], [CC],
  7327. [case " $depcc " in #(
  7328. *\ -arch\ *\ -arch\ *) am__universal=true ;;
  7329. esac],
  7330. [CXX],
  7331. [case " $depcc " in #(
  7332. *\ -arch\ *\ -arch\ *) am__universal=true ;;
  7333. esac])
  7334. for depmode in $am_compiler_list; do
  7335. # Setup a source with many dependencies, because some compilers
  7336. # like to wrap large dependency lists on column 80 (with \), and
  7337. # we should not choose a depcomp mode which is confused by this.
  7338. #
  7339. # We need to recreate these files for each test, as the compiler may
  7340. # overwrite some of them when testing with obscure command lines.
  7341. # This happens at least with the AIX C compiler.
  7342. : > sub/conftest.c
  7343. for i in 1 2 3 4 5 6; do
  7344. echo '#include "conftst'$i'.h"' >> sub/conftest.c
  7345. # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
  7346. # Solaris 8's {/usr,}/bin/sh.
  7347. touch sub/conftst$i.h
  7348. done
  7349. echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
  7350. # We check with `-c' and `-o' for the sake of the "dashmstdout"
  7351. # mode. It turns out that the SunPro C++ compiler does not properly
  7352. # handle `-M -o', and we need to detect this. Also, some Intel
  7353. # versions had trouble with output in subdirs
  7354. am__obj=sub/conftest.${OBJEXT-o}
  7355. am__minus_obj="-o $am__obj"
  7356. case $depmode in
  7357. gcc)
  7358. # This depmode causes a compiler race in universal mode.
  7359. test "$am__universal" = false || continue
  7360. ;;
  7361. nosideeffect)
  7362. # after this tag, mechanisms are not by side-effect, so they'll
  7363. # only be used when explicitly requested
  7364. if test "x$enable_dependency_tracking" = xyes; then
  7365. continue
  7366. else
  7367. break
  7368. fi
  7369. ;;
  7370. msvisualcpp | msvcmsys)
  7371. # This compiler won't grok `-c -o', but also, the minuso test has
  7372. # not run yet. These depmodes are late enough in the game, and
  7373. # so weak that their functioning should not be impacted.
  7374. am__obj=conftest.${OBJEXT-o}
  7375. am__minus_obj=
  7376. ;;
  7377. none) break ;;
  7378. esac
  7379. if depmode=$depmode \
  7380. source=sub/conftest.c object=$am__obj \
  7381. depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
  7382. $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
  7383. >/dev/null 2>conftest.err &&
  7384. grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
  7385. grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
  7386. grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
  7387. ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
  7388. # icc doesn't choke on unknown options, it will just issue warnings
  7389. # or remarks (even with -Werror). So we grep stderr for any message
  7390. # that says an option was ignored or not supported.
  7391. # When given -MP, icc 7.0 and 7.1 complain thusly:
  7392. # icc: Command line warning: ignoring option '-M'; no argument required
  7393. # The diagnosis changed in icc 8.0:
  7394. # icc: Command line remark: option '-MP' not supported
  7395. if (grep 'ignoring option' conftest.err ||
  7396. grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
  7397. am_cv_$1_dependencies_compiler_type=$depmode
  7398. break
  7399. fi
  7400. fi
  7401. done
  7402. cd ..
  7403. rm -rf conftest.dir
  7404. else
  7405. am_cv_$1_dependencies_compiler_type=none
  7406. fi
  7407. ])
  7408. AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])
  7409. AM_CONDITIONAL([am__fastdep$1], [
  7410. test "x$enable_dependency_tracking" != xno \
  7411. && test "$am_cv_$1_dependencies_compiler_type" = gcc3])
  7412. ])
  7413. # AM_SET_DEPDIR
  7414. # -------------
  7415. # Choose a directory name for dependency files.
  7416. # This macro is AC_REQUIREd in _AM_DEPENDENCIES
  7417. AC_DEFUN([AM_SET_DEPDIR],
  7418. [AC_REQUIRE([AM_SET_LEADING_DOT])dnl
  7419. AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
  7420. ])
  7421. # AM_DEP_TRACK
  7422. # ------------
  7423. AC_DEFUN([AM_DEP_TRACK],
  7424. [AC_ARG_ENABLE(dependency-tracking,
  7425. [ --disable-dependency-tracking speeds up one-time build
  7426. --enable-dependency-tracking do not reject slow dependency extractors])
  7427. if test "x$enable_dependency_tracking" != xno; then
  7428. am_depcomp="$ac_aux_dir/depcomp"
  7429. AMDEPBACKSLASH='\'
  7430. fi
  7431. AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
  7432. AC_SUBST([AMDEPBACKSLASH])dnl
  7433. _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
  7434. ])
  7435. # Generate code to set up dependency tracking. -*- Autoconf -*-
  7436. # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008
  7437. # Free Software Foundation, Inc.
  7438. #
  7439. # This file is free software; the Free Software Foundation
  7440. # gives unlimited permission to copy and/or distribute it,
  7441. # with or without modifications, as long as this notice is preserved.
  7442. #serial 5
  7443. # _AM_OUTPUT_DEPENDENCY_COMMANDS
  7444. # ------------------------------
  7445. AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
  7446. [{
  7447. # Autoconf 2.62 quotes --file arguments for eval, but not when files
  7448. # are listed without --file. Let's play safe and only enable the eval
  7449. # if we detect the quoting.
  7450. case $CONFIG_FILES in
  7451. *\'*) eval set x "$CONFIG_FILES" ;;
  7452. *) set x $CONFIG_FILES ;;
  7453. esac
  7454. shift
  7455. for mf
  7456. do
  7457. # Strip MF so we end up with the name of the file.
  7458. mf=`echo "$mf" | sed -e 's/:.*$//'`
  7459. # Check whether this is an Automake generated Makefile or not.
  7460. # We used to match only the files named `Makefile.in', but
  7461. # some people rename them; so instead we look at the file content.
  7462. # Grep'ing the first line is not enough: some people post-process
  7463. # each Makefile.in and add a new line on top of each file to say so.
  7464. # Grep'ing the whole file is not good either: AIX grep has a line
  7465. # limit of 2048, but all sed's we know have understand at least 4000.
  7466. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
  7467. dirpart=`AS_DIRNAME("$mf")`
  7468. else
  7469. continue
  7470. fi
  7471. # Extract the definition of DEPDIR, am__include, and am__quote
  7472. # from the Makefile without running `make'.
  7473. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
  7474. test -z "$DEPDIR" && continue
  7475. am__include=`sed -n 's/^am__include = //p' < "$mf"`
  7476. test -z "am__include" && continue
  7477. am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
  7478. # When using ansi2knr, U may be empty or an underscore; expand it
  7479. U=`sed -n 's/^U = //p' < "$mf"`
  7480. # Find all dependency output files, they are included files with
  7481. # $(DEPDIR) in their names. We invoke sed twice because it is the
  7482. # simplest approach to changing $(DEPDIR) to its actual value in the
  7483. # expansion.
  7484. for file in `sed -n "
  7485. s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
  7486. sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
  7487. # Make sure the directory exists.
  7488. test -f "$dirpart/$file" && continue
  7489. fdir=`AS_DIRNAME(["$file"])`
  7490. AS_MKDIR_P([$dirpart/$fdir])
  7491. # echo "creating $dirpart/$file"
  7492. echo '# dummy' > "$dirpart/$file"
  7493. done
  7494. done
  7495. }
  7496. ])# _AM_OUTPUT_DEPENDENCY_COMMANDS
  7497. # AM_OUTPUT_DEPENDENCY_COMMANDS
  7498. # -----------------------------
  7499. # This macro should only be invoked once -- use via AC_REQUIRE.
  7500. #
  7501. # This code is only required when automatic dependency tracking
  7502. # is enabled. FIXME. This creates each `.P' file that we will
  7503. # need in order to bootstrap the dependency handling code.
  7504. AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],
  7505. [AC_CONFIG_COMMANDS([depfiles],
  7506. [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
  7507. [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
  7508. ])
  7509. # Do all the work for Automake. -*- Autoconf -*-
  7510. # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
  7511. # 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
  7512. #
  7513. # This file is free software; the Free Software Foundation
  7514. # gives unlimited permission to copy and/or distribute it,
  7515. # with or without modifications, as long as this notice is preserved.
  7516. # serial 16
  7517. # This macro actually does too much. Some checks are only needed if
  7518. # your package does certain things. But this isn't really a big deal.
  7519. # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
  7520. # AM_INIT_AUTOMAKE([OPTIONS])
  7521. # -----------------------------------------------
  7522. # The call with PACKAGE and VERSION arguments is the old style
  7523. # call (pre autoconf-2.50), which is being phased out. PACKAGE
  7524. # and VERSION should now be passed to AC_INIT and removed from
  7525. # the call to AM_INIT_AUTOMAKE.
  7526. # We support both call styles for the transition. After
  7527. # the next Automake release, Autoconf can make the AC_INIT
  7528. # arguments mandatory, and then we can depend on a new Autoconf
  7529. # release and drop the old call support.
  7530. AC_DEFUN([AM_INIT_AUTOMAKE],
  7531. [AC_PREREQ([2.62])dnl
  7532. dnl Autoconf wants to disallow AM_ names. We explicitly allow
  7533. dnl the ones we care about.
  7534. m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
  7535. AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
  7536. AC_REQUIRE([AC_PROG_INSTALL])dnl
  7537. if test "`cd $srcdir && pwd`" != "`pwd`"; then
  7538. # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
  7539. # is not polluted with repeated "-I."
  7540. AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl
  7541. # test to see if srcdir already configured
  7542. if test -f $srcdir/config.status; then
  7543. AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
  7544. fi
  7545. fi
  7546. # test whether we have cygpath
  7547. if test -z "$CYGPATH_W"; then
  7548. if (cygpath --version) >/dev/null 2>/dev/null; then
  7549. CYGPATH_W='cygpath -w'
  7550. else
  7551. CYGPATH_W=echo
  7552. fi
  7553. fi
  7554. AC_SUBST([CYGPATH_W])
  7555. # Define the identity of the package.
  7556. dnl Distinguish between old-style and new-style calls.
  7557. m4_ifval([$2],
  7558. [m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
  7559. AC_SUBST([PACKAGE], [$1])dnl
  7560. AC_SUBST([VERSION], [$2])],
  7561. [_AM_SET_OPTIONS([$1])dnl
  7562. dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
  7563. m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,,
  7564. [m4_fatal([AC_INIT should be called with package and version arguments])])dnl
  7565. AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
  7566. AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
  7567. _AM_IF_OPTION([no-define],,
  7568. [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
  7569. AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl
  7570. # Some tools Automake needs.
  7571. AC_REQUIRE([AM_SANITY_CHECK])dnl
  7572. AC_REQUIRE([AC_ARG_PROGRAM])dnl
  7573. AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version})
  7574. AM_MISSING_PROG(AUTOCONF, autoconf)
  7575. AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})
  7576. AM_MISSING_PROG(AUTOHEADER, autoheader)
  7577. AM_MISSING_PROG(MAKEINFO, makeinfo)
  7578. AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
  7579. AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
  7580. AC_REQUIRE([AM_PROG_MKDIR_P])dnl
  7581. # We need awk for the "check" target. The system "awk" is bad on
  7582. # some platforms.
  7583. AC_REQUIRE([AC_PROG_AWK])dnl
  7584. AC_REQUIRE([AC_PROG_MAKE_SET])dnl
  7585. AC_REQUIRE([AM_SET_LEADING_DOT])dnl
  7586. _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
  7587. [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
  7588. [_AM_PROG_TAR([v7])])])
  7589. _AM_IF_OPTION([no-dependencies],,
  7590. [AC_PROVIDE_IFELSE([AC_PROG_CC],
  7591. [_AM_DEPENDENCIES(CC)],
  7592. [define([AC_PROG_CC],
  7593. defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
  7594. AC_PROVIDE_IFELSE([AC_PROG_CXX],
  7595. [_AM_DEPENDENCIES(CXX)],
  7596. [define([AC_PROG_CXX],
  7597. defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
  7598. AC_PROVIDE_IFELSE([AC_PROG_OBJC],
  7599. [_AM_DEPENDENCIES(OBJC)],
  7600. [define([AC_PROG_OBJC],
  7601. defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl
  7602. ])
  7603. _AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl
  7604. dnl The `parallel-tests' driver may need to know about EXEEXT, so add the
  7605. dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This macro
  7606. dnl is hooked onto _AC_COMPILER_EXEEXT early, see below.
  7607. AC_CONFIG_COMMANDS_PRE(dnl
  7608. [m4_provide_if([_AM_COMPILER_EXEEXT],
  7609. [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
  7610. ])
  7611. dnl Hook into `_AC_COMPILER_EXEEXT' early to learn its expansion. Do not
  7612. dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further
  7613. dnl mangled by Autoconf and run in a shell conditional statement.
  7614. m4_define([_AC_COMPILER_EXEEXT],
  7615. m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])])
  7616. # When config.status generates a header, we must update the stamp-h file.
  7617. # This file resides in the same directory as the config header
  7618. # that is generated. The stamp files are numbered to have different names.
  7619. # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the
  7620. # loop where config.status creates the headers, so we can generate
  7621. # our stamp files there.
  7622. AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],
  7623. [# Compute $1's index in $config_headers.
  7624. _am_arg=$1
  7625. _am_stamp_count=1
  7626. for _am_header in $config_headers :; do
  7627. case $_am_header in
  7628. $_am_arg | $_am_arg:* )
  7629. break ;;
  7630. * )
  7631. _am_stamp_count=`expr $_am_stamp_count + 1` ;;
  7632. esac
  7633. done
  7634. echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
  7635. # Copyright (C) 2001, 2003, 2005, 2008 Free Software Foundation, Inc.
  7636. #
  7637. # This file is free software; the Free Software Foundation
  7638. # gives unlimited permission to copy and/or distribute it,
  7639. # with or without modifications, as long as this notice is preserved.
  7640. # AM_PROG_INSTALL_SH
  7641. # ------------------
  7642. # Define $install_sh.
  7643. AC_DEFUN([AM_PROG_INSTALL_SH],
  7644. [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
  7645. if test x"${install_sh}" != xset; then
  7646. case $am_aux_dir in
  7647. *\ * | *\ *)
  7648. install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
  7649. *)
  7650. install_sh="\${SHELL} $am_aux_dir/install-sh"
  7651. esac
  7652. fi
  7653. AC_SUBST(install_sh)])
  7654. # Copyright (C) 2003, 2005 Free Software Foundation, Inc.
  7655. #
  7656. # This file is free software; the Free Software Foundation
  7657. # gives unlimited permission to copy and/or distribute it,
  7658. # with or without modifications, as long as this notice is preserved.
  7659. # serial 2
  7660. # Check whether the underlying file-system supports filenames
  7661. # with a leading dot. For instance MS-DOS doesn't.
  7662. AC_DEFUN([AM_SET_LEADING_DOT],
  7663. [rm -rf .tst 2>/dev/null
  7664. mkdir .tst 2>/dev/null
  7665. if test -d .tst; then
  7666. am__leading_dot=.
  7667. else
  7668. am__leading_dot=_
  7669. fi
  7670. rmdir .tst 2>/dev/null
  7671. AC_SUBST([am__leading_dot])])
  7672. # Check to see how 'make' treats includes. -*- Autoconf -*-
  7673. # Copyright (C) 2001, 2002, 2003, 2005, 2009 Free Software Foundation, Inc.
  7674. #
  7675. # This file is free software; the Free Software Foundation
  7676. # gives unlimited permission to copy and/or distribute it,
  7677. # with or without modifications, as long as this notice is preserved.
  7678. # serial 4
  7679. # AM_MAKE_INCLUDE()
  7680. # -----------------
  7681. # Check to see how make treats includes.
  7682. AC_DEFUN([AM_MAKE_INCLUDE],
  7683. [am_make=${MAKE-make}
  7684. cat > confinc << 'END'
  7685. am__doit:
  7686. @echo this is the am__doit target
  7687. .PHONY: am__doit
  7688. END
  7689. # If we don't find an include directive, just comment out the code.
  7690. AC_MSG_CHECKING([for style of include used by $am_make])
  7691. am__include="#"
  7692. am__quote=
  7693. _am_result=none
  7694. # First try GNU make style include.
  7695. echo "include confinc" > confmf
  7696. # Ignore all kinds of additional output from `make'.
  7697. case `$am_make -s -f confmf 2> /dev/null` in #(
  7698. *the\ am__doit\ target*)
  7699. am__include=include
  7700. am__quote=
  7701. _am_result=GNU
  7702. ;;
  7703. esac
  7704. # Now try BSD make style include.
  7705. if test "$am__include" = "#"; then
  7706. echo '.include "confinc"' > confmf
  7707. case `$am_make -s -f confmf 2> /dev/null` in #(
  7708. *the\ am__doit\ target*)
  7709. am__include=.include
  7710. am__quote="\""
  7711. _am_result=BSD
  7712. ;;
  7713. esac
  7714. fi
  7715. AC_SUBST([am__include])
  7716. AC_SUBST([am__quote])
  7717. AC_MSG_RESULT([$_am_result])
  7718. rm -f confinc confmf
  7719. ])
  7720. # Copyright (C) 1999, 2000, 2001, 2003, 2004, 2005, 2008
  7721. # Free Software Foundation, Inc.
  7722. #
  7723. # This file is free software; the Free Software Foundation
  7724. # gives unlimited permission to copy and/or distribute it,
  7725. # with or without modifications, as long as this notice is preserved.
  7726. # serial 6
  7727. # AM_PROG_CC_C_O
  7728. # --------------
  7729. # Like AC_PROG_CC_C_O, but changed for automake.
  7730. AC_DEFUN([AM_PROG_CC_C_O],
  7731. [AC_REQUIRE([AC_PROG_CC_C_O])dnl
  7732. AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
  7733. AC_REQUIRE_AUX_FILE([compile])dnl
  7734. # FIXME: we rely on the cache variable name because
  7735. # there is no other way.
  7736. set dummy $CC
  7737. am_cc=`echo $[2] | sed ['s/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/']`
  7738. eval am_t=\$ac_cv_prog_cc_${am_cc}_c_o
  7739. if test "$am_t" != yes; then
  7740. # Losing compiler, so override with the script.
  7741. # FIXME: It is wrong to rewrite CC.
  7742. # But if we don't then we get into trouble of one sort or another.
  7743. # A longer-term fix would be to have automake use am__CC in this case,
  7744. # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
  7745. CC="$am_aux_dir/compile $CC"
  7746. fi
  7747. dnl Make sure AC_PROG_CC is never called again, or it will override our
  7748. dnl setting of CC.
  7749. m4_define([AC_PROG_CC],
  7750. [m4_fatal([AC_PROG_CC cannot be called after AM_PROG_CC_C_O])])
  7751. ])
  7752. # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*-
  7753. # Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005, 2008
  7754. # Free Software Foundation, Inc.
  7755. #
  7756. # This file is free software; the Free Software Foundation
  7757. # gives unlimited permission to copy and/or distribute it,
  7758. # with or without modifications, as long as this notice is preserved.
  7759. # serial 6
  7760. # AM_MISSING_PROG(NAME, PROGRAM)
  7761. # ------------------------------
  7762. AC_DEFUN([AM_MISSING_PROG],
  7763. [AC_REQUIRE([AM_MISSING_HAS_RUN])
  7764. $1=${$1-"${am_missing_run}$2"}
  7765. AC_SUBST($1)])
  7766. # AM_MISSING_HAS_RUN
  7767. # ------------------
  7768. # Define MISSING if not defined so far and test if it supports --run.
  7769. # If it does, set am_missing_run to use it, otherwise, to nothing.
  7770. AC_DEFUN([AM_MISSING_HAS_RUN],
  7771. [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
  7772. AC_REQUIRE_AUX_FILE([missing])dnl
  7773. if test x"${MISSING+set}" != xset; then
  7774. case $am_aux_dir in
  7775. *\ * | *\ *)
  7776. MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
  7777. *)
  7778. MISSING="\${SHELL} $am_aux_dir/missing" ;;
  7779. esac
  7780. fi
  7781. # Use eval to expand $SHELL
  7782. if eval "$MISSING --run true"; then
  7783. am_missing_run="$MISSING --run "
  7784. else
  7785. am_missing_run=
  7786. AC_MSG_WARN([`missing' script is too old or missing])
  7787. fi
  7788. ])
  7789. # Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
  7790. #
  7791. # This file is free software; the Free Software Foundation
  7792. # gives unlimited permission to copy and/or distribute it,
  7793. # with or without modifications, as long as this notice is preserved.
  7794. # AM_PROG_MKDIR_P
  7795. # ---------------
  7796. # Check for `mkdir -p'.
  7797. AC_DEFUN([AM_PROG_MKDIR_P],
  7798. [AC_PREREQ([2.60])dnl
  7799. AC_REQUIRE([AC_PROG_MKDIR_P])dnl
  7800. dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P,
  7801. dnl while keeping a definition of mkdir_p for backward compatibility.
  7802. dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile.
  7803. dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of
  7804. dnl Makefile.ins that do not define MKDIR_P, so we do our own
  7805. dnl adjustment using top_builddir (which is defined more often than
  7806. dnl MKDIR_P).
  7807. AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl
  7808. case $mkdir_p in
  7809. [[\\/$]]* | ?:[[\\/]]*) ;;
  7810. */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
  7811. esac
  7812. ])
  7813. # Helper functions for option handling. -*- Autoconf -*-
  7814. # Copyright (C) 2001, 2002, 2003, 2005, 2008 Free Software Foundation, Inc.
  7815. #
  7816. # This file is free software; the Free Software Foundation
  7817. # gives unlimited permission to copy and/or distribute it,
  7818. # with or without modifications, as long as this notice is preserved.
  7819. # serial 4
  7820. # _AM_MANGLE_OPTION(NAME)
  7821. # -----------------------
  7822. AC_DEFUN([_AM_MANGLE_OPTION],
  7823. [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
  7824. # _AM_SET_OPTION(NAME)
  7825. # ------------------------------
  7826. # Set option NAME. Presently that only means defining a flag for this option.
  7827. AC_DEFUN([_AM_SET_OPTION],
  7828. [m4_define(_AM_MANGLE_OPTION([$1]), 1)])
  7829. # _AM_SET_OPTIONS(OPTIONS)
  7830. # ----------------------------------
  7831. # OPTIONS is a space-separated list of Automake options.
  7832. AC_DEFUN([_AM_SET_OPTIONS],
  7833. [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
  7834. # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET])
  7835. # -------------------------------------------
  7836. # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
  7837. AC_DEFUN([_AM_IF_OPTION],
  7838. [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
  7839. # Check to make sure that the build environment is sane. -*- Autoconf -*-
  7840. # Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005, 2008
  7841. # Free Software Foundation, Inc.
  7842. #
  7843. # This file is free software; the Free Software Foundation
  7844. # gives unlimited permission to copy and/or distribute it,
  7845. # with or without modifications, as long as this notice is preserved.
  7846. # serial 5
  7847. # AM_SANITY_CHECK
  7848. # ---------------
  7849. AC_DEFUN([AM_SANITY_CHECK],
  7850. [AC_MSG_CHECKING([whether build environment is sane])
  7851. # Just in case
  7852. sleep 1
  7853. echo timestamp > conftest.file
  7854. # Reject unsafe characters in $srcdir or the absolute working directory
  7855. # name. Accept space and tab only in the latter.
  7856. am_lf='
  7857. '
  7858. case `pwd` in
  7859. *[[\\\"\#\$\&\'\`$am_lf]]*)
  7860. AC_MSG_ERROR([unsafe absolute working directory name]);;
  7861. esac
  7862. case $srcdir in
  7863. *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*)
  7864. AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);;
  7865. esac
  7866. # Do `set' in a subshell so we don't clobber the current shell's
  7867. # arguments. Must try -L first in case configure is actually a
  7868. # symlink; some systems play weird games with the mod time of symlinks
  7869. # (eg FreeBSD returns the mod time of the symlink's containing
  7870. # directory).
  7871. if (
  7872. set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
  7873. if test "$[*]" = "X"; then
  7874. # -L didn't work.
  7875. set X `ls -t "$srcdir/configure" conftest.file`
  7876. fi
  7877. rm -f conftest.file
  7878. if test "$[*]" != "X $srcdir/configure conftest.file" \
  7879. && test "$[*]" != "X conftest.file $srcdir/configure"; then
  7880. # If neither matched, then we have a broken ls. This can happen
  7881. # if, for instance, CONFIG_SHELL is bash and it inherits a
  7882. # broken ls alias from the environment. This has actually
  7883. # happened. Such a system could not be considered "sane".
  7884. AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken
  7885. alias in your environment])
  7886. fi
  7887. test "$[2]" = conftest.file
  7888. )
  7889. then
  7890. # Ok.
  7891. :
  7892. else
  7893. AC_MSG_ERROR([newly created file is older than distributed files!
  7894. Check your system clock])
  7895. fi
  7896. AC_MSG_RESULT(yes)])
  7897. # Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc.
  7898. #
  7899. # This file is free software; the Free Software Foundation
  7900. # gives unlimited permission to copy and/or distribute it,
  7901. # with or without modifications, as long as this notice is preserved.
  7902. # AM_PROG_INSTALL_STRIP
  7903. # ---------------------
  7904. # One issue with vendor `install' (even GNU) is that you can't
  7905. # specify the program used to strip binaries. This is especially
  7906. # annoying in cross-compiling environments, where the build's strip
  7907. # is unlikely to handle the host's binaries.
  7908. # Fortunately install-sh will honor a STRIPPROG variable, so we
  7909. # always use install-sh in `make install-strip', and initialize
  7910. # STRIPPROG with the value of the STRIP variable (set by the user).
  7911. AC_DEFUN([AM_PROG_INSTALL_STRIP],
  7912. [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
  7913. # Installed binaries are usually stripped using `strip' when the user
  7914. # run `make install-strip'. However `strip' might not be the right
  7915. # tool to use in cross-compilation environments, therefore Automake
  7916. # will honor the `STRIP' environment variable to overrule this program.
  7917. dnl Don't test for $cross_compiling = yes, because it might be `maybe'.
  7918. if test "$cross_compiling" != no; then
  7919. AC_CHECK_TOOL([STRIP], [strip], :)
  7920. fi
  7921. INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
  7922. AC_SUBST([INSTALL_STRIP_PROGRAM])])
  7923. # Copyright (C) 2006, 2008 Free Software Foundation, Inc.
  7924. #
  7925. # This file is free software; the Free Software Foundation
  7926. # gives unlimited permission to copy and/or distribute it,
  7927. # with or without modifications, as long as this notice is preserved.
  7928. # serial 2
  7929. # _AM_SUBST_NOTMAKE(VARIABLE)
  7930. # ---------------------------
  7931. # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in.
  7932. # This macro is traced by Automake.
  7933. AC_DEFUN([_AM_SUBST_NOTMAKE])
  7934. # AM_SUBST_NOTMAKE(VARIABLE)
  7935. # ---------------------------
  7936. # Public sister of _AM_SUBST_NOTMAKE.
  7937. AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
  7938. # Check how to create a tarball. -*- Autoconf -*-
  7939. # Copyright (C) 2004, 2005 Free Software Foundation, Inc.
  7940. #
  7941. # This file is free software; the Free Software Foundation
  7942. # gives unlimited permission to copy and/or distribute it,
  7943. # with or without modifications, as long as this notice is preserved.
  7944. # serial 2
  7945. # _AM_PROG_TAR(FORMAT)
  7946. # --------------------
  7947. # Check how to create a tarball in format FORMAT.
  7948. # FORMAT should be one of `v7', `ustar', or `pax'.
  7949. #
  7950. # Substitute a variable $(am__tar) that is a command
  7951. # writing to stdout a FORMAT-tarball containing the directory
  7952. # $tardir.
  7953. # tardir=directory && $(am__tar) > result.tar
  7954. #
  7955. # Substitute a variable $(am__untar) that extract such
  7956. # a tarball read from stdin.
  7957. # $(am__untar) < result.tar
  7958. AC_DEFUN([_AM_PROG_TAR],
  7959. [# Always define AMTAR for backward compatibility.
  7960. AM_MISSING_PROG([AMTAR], [tar])
  7961. m4_if([$1], [v7],
  7962. [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'],
  7963. [m4_case([$1], [ustar],, [pax],,
  7964. [m4_fatal([Unknown tar format])])
  7965. AC_MSG_CHECKING([how to create a $1 tar archive])
  7966. # Loop over all known methods to create a tar archive until one works.
  7967. _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
  7968. _am_tools=${am_cv_prog_tar_$1-$_am_tools}
  7969. # Do not fold the above two line into one, because Tru64 sh and
  7970. # Solaris sh will not grok spaces in the rhs of `-'.
  7971. for _am_tool in $_am_tools
  7972. do
  7973. case $_am_tool in
  7974. gnutar)
  7975. for _am_tar in tar gnutar gtar;
  7976. do
  7977. AM_RUN_LOG([$_am_tar --version]) && break
  7978. done
  7979. am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
  7980. am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
  7981. am__untar="$_am_tar -xf -"
  7982. ;;
  7983. plaintar)
  7984. # Must skip GNU tar: if it does not support --format= it doesn't create
  7985. # ustar tarball either.
  7986. (tar --version) >/dev/null 2>&1 && continue
  7987. am__tar='tar chf - "$$tardir"'
  7988. am__tar_='tar chf - "$tardir"'
  7989. am__untar='tar xf -'
  7990. ;;
  7991. pax)
  7992. am__tar='pax -L -x $1 -w "$$tardir"'
  7993. am__tar_='pax -L -x $1 -w "$tardir"'
  7994. am__untar='pax -r'
  7995. ;;
  7996. cpio)
  7997. am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
  7998. am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
  7999. am__untar='cpio -i -H $1 -d'
  8000. ;;
  8001. none)
  8002. am__tar=false
  8003. am__tar_=false
  8004. am__untar=false
  8005. ;;
  8006. esac
  8007. # If the value was cached, stop now. We just wanted to have am__tar
  8008. # and am__untar set.
  8009. test -n "${am_cv_prog_tar_$1}" && break
  8010. # tar/untar a dummy directory, and stop if the command works
  8011. rm -rf conftest.dir
  8012. mkdir conftest.dir
  8013. echo GrepMe > conftest.dir/file
  8014. AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
  8015. rm -rf conftest.dir
  8016. if test -s conftest.tar; then
  8017. AM_RUN_LOG([$am__untar <conftest.tar])
  8018. grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
  8019. fi
  8020. done
  8021. rm -rf conftest.dir
  8022. AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
  8023. AC_MSG_RESULT([$am_cv_prog_tar_$1])])
  8024. AC_SUBST([am__tar])
  8025. AC_SUBST([am__untar])
  8026. ]) # _AM_PROG_TAR