aclocal.m4 338 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629
  1. # generated automatically by aclocal 1.12 -*- Autoconf -*-
  2. # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
  3. # 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation,
  4. # Inc.
  5. # This file is free software; the Free Software Foundation
  6. # gives unlimited permission to copy and/or distribute it,
  7. # with or without modifications, as long as this notice is preserved.
  8. # This program is distributed in the hope that it will be useful,
  9. # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
  10. # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  11. # PARTICULAR PURPOSE.
  12. m4_ifndef([AC_AUTOCONF_VERSION],
  13. [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
  14. m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.69],,
  15. [m4_warning([this file was generated for autoconf 2.69.
  16. You have another version of autoconf. It may work, but is not guaranteed to.
  17. If you have problems, you may need to regenerate the build system entirely.
  18. To do so, use the procedure documented by the package, typically 'autoreconf'.])])
  19. # codeset.m4 serial 4 (gettext-0.18)
  20. dnl Copyright (C) 2000-2002, 2006, 2008-2010 Free Software Foundation, Inc.
  21. dnl This file is free software; the Free Software Foundation
  22. dnl gives unlimited permission to copy and/or distribute it,
  23. dnl with or without modifications, as long as this notice is preserved.
  24. dnl From Bruno Haible.
  25. AC_DEFUN([AM_LANGINFO_CODESET],
  26. [
  27. AC_CACHE_CHECK([for nl_langinfo and CODESET], [am_cv_langinfo_codeset],
  28. [AC_TRY_LINK([#include <langinfo.h>],
  29. [char* cs = nl_langinfo(CODESET); return !cs;],
  30. [am_cv_langinfo_codeset=yes],
  31. [am_cv_langinfo_codeset=no])
  32. ])
  33. if test $am_cv_langinfo_codeset = yes; then
  34. AC_DEFINE([HAVE_LANGINFO_CODESET], [1],
  35. [Define if you have <langinfo.h> and nl_langinfo(CODESET).])
  36. fi
  37. ])
  38. # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*-
  39. #
  40. # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
  41. # 2006, 2007, 2008, 2009, 2010, 2011 Free Software
  42. # Foundation, Inc.
  43. # Written by Gordon Matzigkeit, 1996
  44. #
  45. # This file is free software; the Free Software Foundation gives
  46. # unlimited permission to copy and/or distribute it, with or without
  47. # modifications, as long as this notice is preserved.
  48. m4_define([_LT_COPYING], [dnl
  49. # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
  50. # 2006, 2007, 2008, 2009, 2010, 2011 Free Software
  51. # Foundation, Inc.
  52. # Written by Gordon Matzigkeit, 1996
  53. #
  54. # This file is part of GNU Libtool.
  55. #
  56. # GNU Libtool is free software; you can redistribute it and/or
  57. # modify it under the terms of the GNU General Public License as
  58. # published by the Free Software Foundation; either version 2 of
  59. # the License, or (at your option) any later version.
  60. #
  61. # As a special exception to the GNU General Public License,
  62. # if you distribute this file as part of a program or library that
  63. # is built using GNU Libtool, you may include this file under the
  64. # same distribution terms that you use for the rest of that program.
  65. #
  66. # GNU Libtool is distributed in the hope that it will be useful,
  67. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  68. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  69. # GNU General Public License for more details.
  70. #
  71. # You should have received a copy of the GNU General Public License
  72. # along with GNU Libtool; see the file COPYING. If not, a copy
  73. # can be downloaded from http://www.gnu.org/licenses/gpl.html, or
  74. # obtained by writing to the Free Software Foundation, Inc.,
  75. # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  76. ])
  77. # serial 57 LT_INIT
  78. # LT_PREREQ(VERSION)
  79. # ------------------
  80. # Complain and exit if this libtool version is less that VERSION.
  81. m4_defun([LT_PREREQ],
  82. [m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1,
  83. [m4_default([$3],
  84. [m4_fatal([Libtool version $1 or higher is required],
  85. 63)])],
  86. [$2])])
  87. # _LT_CHECK_BUILDDIR
  88. # ------------------
  89. # Complain if the absolute build directory name contains unusual characters
  90. m4_defun([_LT_CHECK_BUILDDIR],
  91. [case `pwd` in
  92. *\ * | *\ *)
  93. AC_MSG_WARN([Libtool does not cope well with whitespace in `pwd`]) ;;
  94. esac
  95. ])
  96. # LT_INIT([OPTIONS])
  97. # ------------------
  98. AC_DEFUN([LT_INIT],
  99. [AC_PREREQ([2.58])dnl We use AC_INCLUDES_DEFAULT
  100. AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl
  101. AC_BEFORE([$0], [LT_LANG])dnl
  102. AC_BEFORE([$0], [LT_OUTPUT])dnl
  103. AC_BEFORE([$0], [LTDL_INIT])dnl
  104. m4_require([_LT_CHECK_BUILDDIR])dnl
  105. dnl Autoconf doesn't catch unexpanded LT_ macros by default:
  106. m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl
  107. m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl
  108. dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4
  109. dnl unless we require an AC_DEFUNed macro:
  110. AC_REQUIRE([LTOPTIONS_VERSION])dnl
  111. AC_REQUIRE([LTSUGAR_VERSION])dnl
  112. AC_REQUIRE([LTVERSION_VERSION])dnl
  113. AC_REQUIRE([LTOBSOLETE_VERSION])dnl
  114. m4_require([_LT_PROG_LTMAIN])dnl
  115. _LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}])
  116. dnl Parse OPTIONS
  117. _LT_SET_OPTIONS([$0], [$1])
  118. # This can be used to rebuild libtool when needed
  119. LIBTOOL_DEPS="$ltmain"
  120. # Always use our own libtool.
  121. LIBTOOL='$(SHELL) $(top_builddir)/libtool'
  122. AC_SUBST(LIBTOOL)dnl
  123. _LT_SETUP
  124. # Only expand once:
  125. m4_define([LT_INIT])
  126. ])# LT_INIT
  127. # Old names:
  128. AU_ALIAS([AC_PROG_LIBTOOL], [LT_INIT])
  129. AU_ALIAS([AM_PROG_LIBTOOL], [LT_INIT])
  130. dnl aclocal-1.4 backwards compatibility:
  131. dnl AC_DEFUN([AC_PROG_LIBTOOL], [])
  132. dnl AC_DEFUN([AM_PROG_LIBTOOL], [])
  133. # _LT_CC_BASENAME(CC)
  134. # -------------------
  135. # Calculate cc_basename. Skip known compiler wrappers and cross-prefix.
  136. m4_defun([_LT_CC_BASENAME],
  137. [for cc_temp in $1""; do
  138. case $cc_temp in
  139. compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;;
  140. distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;;
  141. \-*) ;;
  142. *) break;;
  143. esac
  144. done
  145. cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"`
  146. ])
  147. # _LT_FILEUTILS_DEFAULTS
  148. # ----------------------
  149. # It is okay to use these file commands and assume they have been set
  150. # sensibly after `m4_require([_LT_FILEUTILS_DEFAULTS])'.
  151. m4_defun([_LT_FILEUTILS_DEFAULTS],
  152. [: ${CP="cp -f"}
  153. : ${MV="mv -f"}
  154. : ${RM="rm -f"}
  155. ])# _LT_FILEUTILS_DEFAULTS
  156. # _LT_SETUP
  157. # ---------
  158. m4_defun([_LT_SETUP],
  159. [AC_REQUIRE([AC_CANONICAL_HOST])dnl
  160. AC_REQUIRE([AC_CANONICAL_BUILD])dnl
  161. AC_REQUIRE([_LT_PREPARE_SED_QUOTE_VARS])dnl
  162. AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl
  163. _LT_DECL([], [PATH_SEPARATOR], [1], [The PATH separator for the build system])dnl
  164. dnl
  165. _LT_DECL([], [host_alias], [0], [The host system])dnl
  166. _LT_DECL([], [host], [0])dnl
  167. _LT_DECL([], [host_os], [0])dnl
  168. dnl
  169. _LT_DECL([], [build_alias], [0], [The build system])dnl
  170. _LT_DECL([], [build], [0])dnl
  171. _LT_DECL([], [build_os], [0])dnl
  172. dnl
  173. AC_REQUIRE([AC_PROG_CC])dnl
  174. AC_REQUIRE([LT_PATH_LD])dnl
  175. AC_REQUIRE([LT_PATH_NM])dnl
  176. dnl
  177. AC_REQUIRE([AC_PROG_LN_S])dnl
  178. test -z "$LN_S" && LN_S="ln -s"
  179. _LT_DECL([], [LN_S], [1], [Whether we need soft or hard links])dnl
  180. dnl
  181. AC_REQUIRE([LT_CMD_MAX_LEN])dnl
  182. _LT_DECL([objext], [ac_objext], [0], [Object file suffix (normally "o")])dnl
  183. _LT_DECL([], [exeext], [0], [Executable file suffix (normally "")])dnl
  184. dnl
  185. m4_require([_LT_FILEUTILS_DEFAULTS])dnl
  186. m4_require([_LT_CHECK_SHELL_FEATURES])dnl
  187. m4_require([_LT_PATH_CONVERSION_FUNCTIONS])dnl
  188. m4_require([_LT_CMD_RELOAD])dnl
  189. m4_require([_LT_CHECK_MAGIC_METHOD])dnl
  190. m4_require([_LT_CHECK_SHAREDLIB_FROM_LINKLIB])dnl
  191. m4_require([_LT_CMD_OLD_ARCHIVE])dnl
  192. m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl
  193. m4_require([_LT_WITH_SYSROOT])dnl
  194. _LT_CONFIG_LIBTOOL_INIT([
  195. # See if we are running on zsh, and set the options which allow our
  196. # commands through without removal of \ escapes INIT.
  197. if test -n "\${ZSH_VERSION+set}" ; then
  198. setopt NO_GLOB_SUBST
  199. fi
  200. ])
  201. if test -n "${ZSH_VERSION+set}" ; then
  202. setopt NO_GLOB_SUBST
  203. fi
  204. _LT_CHECK_OBJDIR
  205. m4_require([_LT_TAG_COMPILER])dnl
  206. case $host_os in
  207. aix3*)
  208. # AIX sometimes has problems with the GCC collect2 program. For some
  209. # reason, if we set the COLLECT_NAMES environment variable, the problems
  210. # vanish in a puff of smoke.
  211. if test "X${COLLECT_NAMES+set}" != Xset; then
  212. COLLECT_NAMES=
  213. export COLLECT_NAMES
  214. fi
  215. ;;
  216. esac
  217. # Global variables:
  218. ofile=libtool
  219. can_build_shared=yes
  220. # All known linkers require a `.a' archive for static linking (except MSVC,
  221. # which needs '.lib').
  222. libext=a
  223. with_gnu_ld="$lt_cv_prog_gnu_ld"
  224. old_CC="$CC"
  225. old_CFLAGS="$CFLAGS"
  226. # Set sane defaults for various variables
  227. test -z "$CC" && CC=cc
  228. test -z "$LTCC" && LTCC=$CC
  229. test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS
  230. test -z "$LD" && LD=ld
  231. test -z "$ac_objext" && ac_objext=o
  232. _LT_CC_BASENAME([$compiler])
  233. # Only perform the check for file, if the check method requires it
  234. test -z "$MAGIC_CMD" && MAGIC_CMD=file
  235. case $deplibs_check_method in
  236. file_magic*)
  237. if test "$file_magic_cmd" = '$MAGIC_CMD'; then
  238. _LT_PATH_MAGIC
  239. fi
  240. ;;
  241. esac
  242. # Use C for the default configuration in the libtool script
  243. LT_SUPPORTED_TAG([CC])
  244. _LT_LANG_C_CONFIG
  245. _LT_LANG_DEFAULT_CONFIG
  246. _LT_CONFIG_COMMANDS
  247. ])# _LT_SETUP
  248. # _LT_PREPARE_SED_QUOTE_VARS
  249. # --------------------------
  250. # Define a few sed substitution that help us do robust quoting.
  251. m4_defun([_LT_PREPARE_SED_QUOTE_VARS],
  252. [# Backslashify metacharacters that are still active within
  253. # double-quoted strings.
  254. sed_quote_subst='s/\([["`$\\]]\)/\\\1/g'
  255. # Same as above, but do not quote variable references.
  256. double_quote_subst='s/\([["`\\]]\)/\\\1/g'
  257. # Sed substitution to delay expansion of an escaped shell variable in a
  258. # double_quote_subst'ed string.
  259. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g'
  260. # Sed substitution to delay expansion of an escaped single quote.
  261. delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g'
  262. # Sed substitution to avoid accidental globbing in evaled expressions
  263. no_glob_subst='s/\*/\\\*/g'
  264. ])
  265. # _LT_PROG_LTMAIN
  266. # ---------------
  267. # Note that this code is called both from `configure', and `config.status'
  268. # now that we use AC_CONFIG_COMMANDS to generate libtool. Notably,
  269. # `config.status' has no value for ac_aux_dir unless we are using Automake,
  270. # so we pass a copy along to make sure it has a sensible value anyway.
  271. m4_defun([_LT_PROG_LTMAIN],
  272. [m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([ltmain.sh])])dnl
  273. _LT_CONFIG_LIBTOOL_INIT([ac_aux_dir='$ac_aux_dir'])
  274. ltmain="$ac_aux_dir/ltmain.sh"
  275. ])# _LT_PROG_LTMAIN
  276. # So that we can recreate a full libtool script including additional
  277. # tags, we accumulate the chunks of code to send to AC_CONFIG_COMMANDS
  278. # in macros and then make a single call at the end using the `libtool'
  279. # label.
  280. # _LT_CONFIG_LIBTOOL_INIT([INIT-COMMANDS])
  281. # ----------------------------------------
  282. # Register INIT-COMMANDS to be passed to AC_CONFIG_COMMANDS later.
  283. m4_define([_LT_CONFIG_LIBTOOL_INIT],
  284. [m4_ifval([$1],
  285. [m4_append([_LT_OUTPUT_LIBTOOL_INIT],
  286. [$1
  287. ])])])
  288. # Initialize.
  289. m4_define([_LT_OUTPUT_LIBTOOL_INIT])
  290. # _LT_CONFIG_LIBTOOL([COMMANDS])
  291. # ------------------------------
  292. # Register COMMANDS to be passed to AC_CONFIG_COMMANDS later.
  293. m4_define([_LT_CONFIG_LIBTOOL],
  294. [m4_ifval([$1],
  295. [m4_append([_LT_OUTPUT_LIBTOOL_COMMANDS],
  296. [$1
  297. ])])])
  298. # Initialize.
  299. m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS])
  300. # _LT_CONFIG_SAVE_COMMANDS([COMMANDS], [INIT_COMMANDS])
  301. # -----------------------------------------------------
  302. m4_defun([_LT_CONFIG_SAVE_COMMANDS],
  303. [_LT_CONFIG_LIBTOOL([$1])
  304. _LT_CONFIG_LIBTOOL_INIT([$2])
  305. ])
  306. # _LT_FORMAT_COMMENT([COMMENT])
  307. # -----------------------------
  308. # Add leading comment marks to the start of each line, and a trailing
  309. # full-stop to the whole comment if one is not present already.
  310. m4_define([_LT_FORMAT_COMMENT],
  311. [m4_ifval([$1], [
  312. m4_bpatsubst([m4_bpatsubst([$1], [^ *], [# ])],
  313. [['`$\]], [\\\&])]m4_bmatch([$1], [[!?.]$], [], [.])
  314. )])
  315. # _LT_DECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION], [IS-TAGGED?])
  316. # -------------------------------------------------------------------
  317. # CONFIGNAME is the name given to the value in the libtool script.
  318. # VARNAME is the (base) name used in the configure script.
  319. # VALUE may be 0, 1 or 2 for a computed quote escaped value based on
  320. # VARNAME. Any other value will be used directly.
  321. m4_define([_LT_DECL],
  322. [lt_if_append_uniq([lt_decl_varnames], [$2], [, ],
  323. [lt_dict_add_subkey([lt_decl_dict], [$2], [libtool_name],
  324. [m4_ifval([$1], [$1], [$2])])
  325. lt_dict_add_subkey([lt_decl_dict], [$2], [value], [$3])
  326. m4_ifval([$4],
  327. [lt_dict_add_subkey([lt_decl_dict], [$2], [description], [$4])])
  328. lt_dict_add_subkey([lt_decl_dict], [$2],
  329. [tagged?], [m4_ifval([$5], [yes], [no])])])
  330. ])
  331. # _LT_TAGDECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION])
  332. # --------------------------------------------------------
  333. m4_define([_LT_TAGDECL], [_LT_DECL([$1], [$2], [$3], [$4], [yes])])
  334. # lt_decl_tag_varnames([SEPARATOR], [VARNAME1...])
  335. # ------------------------------------------------
  336. m4_define([lt_decl_tag_varnames],
  337. [_lt_decl_filter([tagged?], [yes], $@)])
  338. # _lt_decl_filter(SUBKEY, VALUE, [SEPARATOR], [VARNAME1..])
  339. # ---------------------------------------------------------
  340. m4_define([_lt_decl_filter],
  341. [m4_case([$#],
  342. [0], [m4_fatal([$0: too few arguments: $#])],
  343. [1], [m4_fatal([$0: too few arguments: $#: $1])],
  344. [2], [lt_dict_filter([lt_decl_dict], [$1], [$2], [], lt_decl_varnames)],
  345. [3], [lt_dict_filter([lt_decl_dict], [$1], [$2], [$3], lt_decl_varnames)],
  346. [lt_dict_filter([lt_decl_dict], $@)])[]dnl
  347. ])
  348. # lt_decl_quote_varnames([SEPARATOR], [VARNAME1...])
  349. # --------------------------------------------------
  350. m4_define([lt_decl_quote_varnames],
  351. [_lt_decl_filter([value], [1], $@)])
  352. # lt_decl_dquote_varnames([SEPARATOR], [VARNAME1...])
  353. # ---------------------------------------------------
  354. m4_define([lt_decl_dquote_varnames],
  355. [_lt_decl_filter([value], [2], $@)])
  356. # lt_decl_varnames_tagged([SEPARATOR], [VARNAME1...])
  357. # ---------------------------------------------------
  358. m4_define([lt_decl_varnames_tagged],
  359. [m4_assert([$# <= 2])dnl
  360. _$0(m4_quote(m4_default([$1], [[, ]])),
  361. m4_ifval([$2], [[$2]], [m4_dquote(lt_decl_tag_varnames)]),
  362. m4_split(m4_normalize(m4_quote(_LT_TAGS)), [ ]))])
  363. m4_define([_lt_decl_varnames_tagged],
  364. [m4_ifval([$3], [lt_combine([$1], [$2], [_], $3)])])
  365. # lt_decl_all_varnames([SEPARATOR], [VARNAME1...])
  366. # ------------------------------------------------
  367. m4_define([lt_decl_all_varnames],
  368. [_$0(m4_quote(m4_default([$1], [[, ]])),
  369. m4_if([$2], [],
  370. m4_quote(lt_decl_varnames),
  371. m4_quote(m4_shift($@))))[]dnl
  372. ])
  373. m4_define([_lt_decl_all_varnames],
  374. [lt_join($@, lt_decl_varnames_tagged([$1],
  375. lt_decl_tag_varnames([[, ]], m4_shift($@))))dnl
  376. ])
  377. # _LT_CONFIG_STATUS_DECLARE([VARNAME])
  378. # ------------------------------------
  379. # Quote a variable value, and forward it to `config.status' so that its
  380. # declaration there will have the same value as in `configure'. VARNAME
  381. # must have a single quote delimited value for this to work.
  382. m4_define([_LT_CONFIG_STATUS_DECLARE],
  383. [$1='`$ECHO "$][$1" | $SED "$delay_single_quote_subst"`'])
  384. # _LT_CONFIG_STATUS_DECLARATIONS
  385. # ------------------------------
  386. # We delimit libtool config variables with single quotes, so when
  387. # we write them to config.status, we have to be sure to quote all
  388. # embedded single quotes properly. In configure, this macro expands
  389. # each variable declared with _LT_DECL (and _LT_TAGDECL) into:
  390. #
  391. # <var>='`$ECHO "$<var>" | $SED "$delay_single_quote_subst"`'
  392. m4_defun([_LT_CONFIG_STATUS_DECLARATIONS],
  393. [m4_foreach([_lt_var], m4_quote(lt_decl_all_varnames),
  394. [m4_n([_LT_CONFIG_STATUS_DECLARE(_lt_var)])])])
  395. # _LT_LIBTOOL_TAGS
  396. # ----------------
  397. # Output comment and list of tags supported by the script
  398. m4_defun([_LT_LIBTOOL_TAGS],
  399. [_LT_FORMAT_COMMENT([The names of the tagged configurations supported by this script])dnl
  400. available_tags="_LT_TAGS"dnl
  401. ])
  402. # _LT_LIBTOOL_DECLARE(VARNAME, [TAG])
  403. # -----------------------------------
  404. # Extract the dictionary values for VARNAME (optionally with TAG) and
  405. # expand to a commented shell variable setting:
  406. #
  407. # # Some comment about what VAR is for.
  408. # visible_name=$lt_internal_name
  409. m4_define([_LT_LIBTOOL_DECLARE],
  410. [_LT_FORMAT_COMMENT(m4_quote(lt_dict_fetch([lt_decl_dict], [$1],
  411. [description])))[]dnl
  412. m4_pushdef([_libtool_name],
  413. m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [libtool_name])))[]dnl
  414. m4_case(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [value])),
  415. [0], [_libtool_name=[$]$1],
  416. [1], [_libtool_name=$lt_[]$1],
  417. [2], [_libtool_name=$lt_[]$1],
  418. [_libtool_name=lt_dict_fetch([lt_decl_dict], [$1], [value])])[]dnl
  419. m4_ifval([$2], [_$2])[]m4_popdef([_libtool_name])[]dnl
  420. ])
  421. # _LT_LIBTOOL_CONFIG_VARS
  422. # -----------------------
  423. # Produce commented declarations of non-tagged libtool config variables
  424. # suitable for insertion in the LIBTOOL CONFIG section of the `libtool'
  425. # script. Tagged libtool config variables (even for the LIBTOOL CONFIG
  426. # section) are produced by _LT_LIBTOOL_TAG_VARS.
  427. m4_defun([_LT_LIBTOOL_CONFIG_VARS],
  428. [m4_foreach([_lt_var],
  429. m4_quote(_lt_decl_filter([tagged?], [no], [], lt_decl_varnames)),
  430. [m4_n([_LT_LIBTOOL_DECLARE(_lt_var)])])])
  431. # _LT_LIBTOOL_TAG_VARS(TAG)
  432. # -------------------------
  433. m4_define([_LT_LIBTOOL_TAG_VARS],
  434. [m4_foreach([_lt_var], m4_quote(lt_decl_tag_varnames),
  435. [m4_n([_LT_LIBTOOL_DECLARE(_lt_var, [$1])])])])
  436. # _LT_TAGVAR(VARNAME, [TAGNAME])
  437. # ------------------------------
  438. m4_define([_LT_TAGVAR], [m4_ifval([$2], [$1_$2], [$1])])
  439. # _LT_CONFIG_COMMANDS
  440. # -------------------
  441. # Send accumulated output to $CONFIG_STATUS. Thanks to the lists of
  442. # variables for single and double quote escaping we saved from calls
  443. # to _LT_DECL, we can put quote escaped variables declarations
  444. # into `config.status', and then the shell code to quote escape them in
  445. # for loops in `config.status'. Finally, any additional code accumulated
  446. # from calls to _LT_CONFIG_LIBTOOL_INIT is expanded.
  447. m4_defun([_LT_CONFIG_COMMANDS],
  448. [AC_PROVIDE_IFELSE([LT_OUTPUT],
  449. dnl If the libtool generation code has been placed in $CONFIG_LT,
  450. dnl instead of duplicating it all over again into config.status,
  451. dnl then we will have config.status run $CONFIG_LT later, so it
  452. dnl needs to know what name is stored there:
  453. [AC_CONFIG_COMMANDS([libtool],
  454. [$SHELL $CONFIG_LT || AS_EXIT(1)], [CONFIG_LT='$CONFIG_LT'])],
  455. dnl If the libtool generation code is destined for config.status,
  456. dnl expand the accumulated commands and init code now:
  457. [AC_CONFIG_COMMANDS([libtool],
  458. [_LT_OUTPUT_LIBTOOL_COMMANDS], [_LT_OUTPUT_LIBTOOL_COMMANDS_INIT])])
  459. ])#_LT_CONFIG_COMMANDS
  460. # Initialize.
  461. m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS_INIT],
  462. [
  463. # The HP-UX ksh and POSIX shell print the target directory to stdout
  464. # if CDPATH is set.
  465. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
  466. sed_quote_subst='$sed_quote_subst'
  467. double_quote_subst='$double_quote_subst'
  468. delay_variable_subst='$delay_variable_subst'
  469. _LT_CONFIG_STATUS_DECLARATIONS
  470. LTCC='$LTCC'
  471. LTCFLAGS='$LTCFLAGS'
  472. compiler='$compiler_DEFAULT'
  473. # A function that is used when there is no print builtin or printf.
  474. func_fallback_echo ()
  475. {
  476. eval 'cat <<_LTECHO_EOF
  477. \$[]1
  478. _LTECHO_EOF'
  479. }
  480. # Quote evaled strings.
  481. for var in lt_decl_all_varnames([[ \
  482. ]], lt_decl_quote_varnames); do
  483. case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in
  484. *[[\\\\\\\`\\"\\\$]]*)
  485. eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\""
  486. ;;
  487. *)
  488. eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\""
  489. ;;
  490. esac
  491. done
  492. # Double-quote double-evaled strings.
  493. for var in lt_decl_all_varnames([[ \
  494. ]], lt_decl_dquote_varnames); do
  495. case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in
  496. *[[\\\\\\\`\\"\\\$]]*)
  497. eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\""
  498. ;;
  499. *)
  500. eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\""
  501. ;;
  502. esac
  503. done
  504. _LT_OUTPUT_LIBTOOL_INIT
  505. ])
  506. # _LT_GENERATED_FILE_INIT(FILE, [COMMENT])
  507. # ------------------------------------
  508. # Generate a child script FILE with all initialization necessary to
  509. # reuse the environment learned by the parent script, and make the
  510. # file executable. If COMMENT is supplied, it is inserted after the
  511. # `#!' sequence but before initialization text begins. After this
  512. # macro, additional text can be appended to FILE to form the body of
  513. # the child script. The macro ends with non-zero status if the
  514. # file could not be fully written (such as if the disk is full).
  515. m4_ifdef([AS_INIT_GENERATED],
  516. [m4_defun([_LT_GENERATED_FILE_INIT],[AS_INIT_GENERATED($@)])],
  517. [m4_defun([_LT_GENERATED_FILE_INIT],
  518. [m4_require([AS_PREPARE])]dnl
  519. [m4_pushdef([AS_MESSAGE_LOG_FD])]dnl
  520. [lt_write_fail=0
  521. cat >$1 <<_ASEOF || lt_write_fail=1
  522. #! $SHELL
  523. # Generated by $as_me.
  524. $2
  525. SHELL=\${CONFIG_SHELL-$SHELL}
  526. export SHELL
  527. _ASEOF
  528. cat >>$1 <<\_ASEOF || lt_write_fail=1
  529. AS_SHELL_SANITIZE
  530. _AS_PREPARE
  531. exec AS_MESSAGE_FD>&1
  532. _ASEOF
  533. test $lt_write_fail = 0 && chmod +x $1[]dnl
  534. m4_popdef([AS_MESSAGE_LOG_FD])])])# _LT_GENERATED_FILE_INIT
  535. # LT_OUTPUT
  536. # ---------
  537. # This macro allows early generation of the libtool script (before
  538. # AC_OUTPUT is called), incase it is used in configure for compilation
  539. # tests.
  540. AC_DEFUN([LT_OUTPUT],
  541. [: ${CONFIG_LT=./config.lt}
  542. AC_MSG_NOTICE([creating $CONFIG_LT])
  543. _LT_GENERATED_FILE_INIT(["$CONFIG_LT"],
  544. [# Run this file to recreate a libtool stub with the current configuration.])
  545. cat >>"$CONFIG_LT" <<\_LTEOF
  546. lt_cl_silent=false
  547. exec AS_MESSAGE_LOG_FD>>config.log
  548. {
  549. echo
  550. AS_BOX([Running $as_me.])
  551. } >&AS_MESSAGE_LOG_FD
  552. lt_cl_help="\
  553. \`$as_me' creates a local libtool stub from the current configuration,
  554. for use in further configure time tests before the real libtool is
  555. generated.
  556. Usage: $[0] [[OPTIONS]]
  557. -h, --help print this help, then exit
  558. -V, --version print version number, then exit
  559. -q, --quiet do not print progress messages
  560. -d, --debug don't remove temporary files
  561. Report bugs to <bug-libtool@gnu.org>."
  562. lt_cl_version="\
  563. m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl
  564. m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION])
  565. configured by $[0], generated by m4_PACKAGE_STRING.
  566. Copyright (C) 2011 Free Software Foundation, Inc.
  567. This config.lt script is free software; the Free Software Foundation
  568. gives unlimited permision to copy, distribute and modify it."
  569. while test $[#] != 0
  570. do
  571. case $[1] in
  572. --version | --v* | -V )
  573. echo "$lt_cl_version"; exit 0 ;;
  574. --help | --h* | -h )
  575. echo "$lt_cl_help"; exit 0 ;;
  576. --debug | --d* | -d )
  577. debug=: ;;
  578. --quiet | --q* | --silent | --s* | -q )
  579. lt_cl_silent=: ;;
  580. -*) AC_MSG_ERROR([unrecognized option: $[1]
  581. Try \`$[0] --help' for more information.]) ;;
  582. *) AC_MSG_ERROR([unrecognized argument: $[1]
  583. Try \`$[0] --help' for more information.]) ;;
  584. esac
  585. shift
  586. done
  587. if $lt_cl_silent; then
  588. exec AS_MESSAGE_FD>/dev/null
  589. fi
  590. _LTEOF
  591. cat >>"$CONFIG_LT" <<_LTEOF
  592. _LT_OUTPUT_LIBTOOL_COMMANDS_INIT
  593. _LTEOF
  594. cat >>"$CONFIG_LT" <<\_LTEOF
  595. AC_MSG_NOTICE([creating $ofile])
  596. _LT_OUTPUT_LIBTOOL_COMMANDS
  597. AS_EXIT(0)
  598. _LTEOF
  599. chmod +x "$CONFIG_LT"
  600. # configure is writing to config.log, but config.lt does its own redirection,
  601. # appending to config.log, which fails on DOS, as config.log is still kept
  602. # open by configure. Here we exec the FD to /dev/null, effectively closing
  603. # config.log, so it can be properly (re)opened and appended to by config.lt.
  604. lt_cl_success=:
  605. test "$silent" = yes &&
  606. lt_config_lt_args="$lt_config_lt_args --quiet"
  607. exec AS_MESSAGE_LOG_FD>/dev/null
  608. $SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false
  609. exec AS_MESSAGE_LOG_FD>>config.log
  610. $lt_cl_success || AS_EXIT(1)
  611. ])# LT_OUTPUT
  612. # _LT_CONFIG(TAG)
  613. # ---------------
  614. # If TAG is the built-in tag, create an initial libtool script with a
  615. # default configuration from the untagged config vars. Otherwise add code
  616. # to config.status for appending the configuration named by TAG from the
  617. # matching tagged config vars.
  618. m4_defun([_LT_CONFIG],
  619. [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
  620. _LT_CONFIG_SAVE_COMMANDS([
  621. m4_define([_LT_TAG], m4_if([$1], [], [C], [$1]))dnl
  622. m4_if(_LT_TAG, [C], [
  623. # See if we are running on zsh, and set the options which allow our
  624. # commands through without removal of \ escapes.
  625. if test -n "${ZSH_VERSION+set}" ; then
  626. setopt NO_GLOB_SUBST
  627. fi
  628. cfgfile="${ofile}T"
  629. trap "$RM \"$cfgfile\"; exit 1" 1 2 15
  630. $RM "$cfgfile"
  631. cat <<_LT_EOF >> "$cfgfile"
  632. #! $SHELL
  633. # `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services.
  634. # Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION
  635. # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
  636. # NOTE: Changes made to this file will be lost: look at ltmain.sh.
  637. #
  638. _LT_COPYING
  639. _LT_LIBTOOL_TAGS
  640. # ### BEGIN LIBTOOL CONFIG
  641. _LT_LIBTOOL_CONFIG_VARS
  642. _LT_LIBTOOL_TAG_VARS
  643. # ### END LIBTOOL CONFIG
  644. _LT_EOF
  645. case $host_os in
  646. aix3*)
  647. cat <<\_LT_EOF >> "$cfgfile"
  648. # AIX sometimes has problems with the GCC collect2 program. For some
  649. # reason, if we set the COLLECT_NAMES environment variable, the problems
  650. # vanish in a puff of smoke.
  651. if test "X${COLLECT_NAMES+set}" != Xset; then
  652. COLLECT_NAMES=
  653. export COLLECT_NAMES
  654. fi
  655. _LT_EOF
  656. ;;
  657. esac
  658. _LT_PROG_LTMAIN
  659. # We use sed instead of cat because bash on DJGPP gets confused if
  660. # if finds mixed CR/LF and LF-only lines. Since sed operates in
  661. # text mode, it properly converts lines to CR/LF. This bash problem
  662. # is reportedly fixed, but why not run on old versions too?
  663. sed '$q' "$ltmain" >> "$cfgfile" \
  664. || (rm -f "$cfgfile"; exit 1)
  665. _LT_PROG_REPLACE_SHELLFNS
  666. mv -f "$cfgfile" "$ofile" ||
  667. (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile")
  668. chmod +x "$ofile"
  669. ],
  670. [cat <<_LT_EOF >> "$ofile"
  671. dnl Unfortunately we have to use $1 here, since _LT_TAG is not expanded
  672. dnl in a comment (ie after a #).
  673. # ### BEGIN LIBTOOL TAG CONFIG: $1
  674. _LT_LIBTOOL_TAG_VARS(_LT_TAG)
  675. # ### END LIBTOOL TAG CONFIG: $1
  676. _LT_EOF
  677. ])dnl /m4_if
  678. ],
  679. [m4_if([$1], [], [
  680. PACKAGE='$PACKAGE'
  681. VERSION='$VERSION'
  682. TIMESTAMP='$TIMESTAMP'
  683. RM='$RM'
  684. ofile='$ofile'], [])
  685. ])dnl /_LT_CONFIG_SAVE_COMMANDS
  686. ])# _LT_CONFIG
  687. # LT_SUPPORTED_TAG(TAG)
  688. # ---------------------
  689. # Trace this macro to discover what tags are supported by the libtool
  690. # --tag option, using:
  691. # autoconf --trace 'LT_SUPPORTED_TAG:$1'
  692. AC_DEFUN([LT_SUPPORTED_TAG], [])
  693. # C support is built-in for now
  694. m4_define([_LT_LANG_C_enabled], [])
  695. m4_define([_LT_TAGS], [])
  696. # LT_LANG(LANG)
  697. # -------------
  698. # Enable libtool support for the given language if not already enabled.
  699. AC_DEFUN([LT_LANG],
  700. [AC_BEFORE([$0], [LT_OUTPUT])dnl
  701. m4_case([$1],
  702. [C], [_LT_LANG(C)],
  703. [C++], [_LT_LANG(CXX)],
  704. [Go], [_LT_LANG(GO)],
  705. [Java], [_LT_LANG(GCJ)],
  706. [Fortran 77], [_LT_LANG(F77)],
  707. [Fortran], [_LT_LANG(FC)],
  708. [Windows Resource], [_LT_LANG(RC)],
  709. [m4_ifdef([_LT_LANG_]$1[_CONFIG],
  710. [_LT_LANG($1)],
  711. [m4_fatal([$0: unsupported language: "$1"])])])dnl
  712. ])# LT_LANG
  713. # _LT_LANG(LANGNAME)
  714. # ------------------
  715. m4_defun([_LT_LANG],
  716. [m4_ifdef([_LT_LANG_]$1[_enabled], [],
  717. [LT_SUPPORTED_TAG([$1])dnl
  718. m4_append([_LT_TAGS], [$1 ])dnl
  719. m4_define([_LT_LANG_]$1[_enabled], [])dnl
  720. _LT_LANG_$1_CONFIG($1)])dnl
  721. ])# _LT_LANG
  722. m4_ifndef([AC_PROG_GO], [
  723. # NOTE: This macro has been submitted for inclusion into #
  724. # GNU Autoconf as AC_PROG_GO. When it is available in #
  725. # a released version of Autoconf we should remove this #
  726. # macro and use it instead. #
  727. m4_defun([AC_PROG_GO],
  728. [AC_LANG_PUSH(Go)dnl
  729. AC_ARG_VAR([GOC], [Go compiler command])dnl
  730. AC_ARG_VAR([GOFLAGS], [Go compiler flags])dnl
  731. _AC_ARG_VAR_LDFLAGS()dnl
  732. AC_CHECK_TOOL(GOC, gccgo)
  733. if test -z "$GOC"; then
  734. if test -n "$ac_tool_prefix"; then
  735. AC_CHECK_PROG(GOC, [${ac_tool_prefix}gccgo], [${ac_tool_prefix}gccgo])
  736. fi
  737. fi
  738. if test -z "$GOC"; then
  739. AC_CHECK_PROG(GOC, gccgo, gccgo, false)
  740. fi
  741. ])#m4_defun
  742. ])#m4_ifndef
  743. # _LT_LANG_DEFAULT_CONFIG
  744. # -----------------------
  745. m4_defun([_LT_LANG_DEFAULT_CONFIG],
  746. [AC_PROVIDE_IFELSE([AC_PROG_CXX],
  747. [LT_LANG(CXX)],
  748. [m4_define([AC_PROG_CXX], defn([AC_PROG_CXX])[LT_LANG(CXX)])])
  749. AC_PROVIDE_IFELSE([AC_PROG_F77],
  750. [LT_LANG(F77)],
  751. [m4_define([AC_PROG_F77], defn([AC_PROG_F77])[LT_LANG(F77)])])
  752. AC_PROVIDE_IFELSE([AC_PROG_FC],
  753. [LT_LANG(FC)],
  754. [m4_define([AC_PROG_FC], defn([AC_PROG_FC])[LT_LANG(FC)])])
  755. dnl The call to [A][M_PROG_GCJ] is quoted like that to stop aclocal
  756. dnl pulling things in needlessly.
  757. AC_PROVIDE_IFELSE([AC_PROG_GCJ],
  758. [LT_LANG(GCJ)],
  759. [AC_PROVIDE_IFELSE([A][M_PROG_GCJ],
  760. [LT_LANG(GCJ)],
  761. [AC_PROVIDE_IFELSE([LT_PROG_GCJ],
  762. [LT_LANG(GCJ)],
  763. [m4_ifdef([AC_PROG_GCJ],
  764. [m4_define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[LT_LANG(GCJ)])])
  765. m4_ifdef([A][M_PROG_GCJ],
  766. [m4_define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[LT_LANG(GCJ)])])
  767. m4_ifdef([LT_PROG_GCJ],
  768. [m4_define([LT_PROG_GCJ], defn([LT_PROG_GCJ])[LT_LANG(GCJ)])])])])])
  769. AC_PROVIDE_IFELSE([AC_PROG_GO],
  770. [LT_LANG(GO)],
  771. [m4_define([AC_PROG_GO], defn([AC_PROG_GO])[LT_LANG(GO)])])
  772. AC_PROVIDE_IFELSE([LT_PROG_RC],
  773. [LT_LANG(RC)],
  774. [m4_define([LT_PROG_RC], defn([LT_PROG_RC])[LT_LANG(RC)])])
  775. ])# _LT_LANG_DEFAULT_CONFIG
  776. # Obsolete macros:
  777. AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)])
  778. AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)])
  779. AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)])
  780. AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)])
  781. AU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)])
  782. dnl aclocal-1.4 backwards compatibility:
  783. dnl AC_DEFUN([AC_LIBTOOL_CXX], [])
  784. dnl AC_DEFUN([AC_LIBTOOL_F77], [])
  785. dnl AC_DEFUN([AC_LIBTOOL_FC], [])
  786. dnl AC_DEFUN([AC_LIBTOOL_GCJ], [])
  787. dnl AC_DEFUN([AC_LIBTOOL_RC], [])
  788. # _LT_TAG_COMPILER
  789. # ----------------
  790. m4_defun([_LT_TAG_COMPILER],
  791. [AC_REQUIRE([AC_PROG_CC])dnl
  792. _LT_DECL([LTCC], [CC], [1], [A C compiler])dnl
  793. _LT_DECL([LTCFLAGS], [CFLAGS], [1], [LTCC compiler flags])dnl
  794. _LT_TAGDECL([CC], [compiler], [1], [A language specific compiler])dnl
  795. _LT_TAGDECL([with_gcc], [GCC], [0], [Is the compiler the GNU compiler?])dnl
  796. # If no C compiler was specified, use CC.
  797. LTCC=${LTCC-"$CC"}
  798. # If no C compiler flags were specified, use CFLAGS.
  799. LTCFLAGS=${LTCFLAGS-"$CFLAGS"}
  800. # Allow CC to be a program name with arguments.
  801. compiler=$CC
  802. ])# _LT_TAG_COMPILER
  803. # _LT_COMPILER_BOILERPLATE
  804. # ------------------------
  805. # Check for compiler boilerplate output or warnings with
  806. # the simple compiler test code.
  807. m4_defun([_LT_COMPILER_BOILERPLATE],
  808. [m4_require([_LT_DECL_SED])dnl
  809. ac_outfile=conftest.$ac_objext
  810. echo "$lt_simple_compile_test_code" >conftest.$ac_ext
  811. eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err
  812. _lt_compiler_boilerplate=`cat conftest.err`
  813. $RM conftest*
  814. ])# _LT_COMPILER_BOILERPLATE
  815. # _LT_LINKER_BOILERPLATE
  816. # ----------------------
  817. # Check for linker boilerplate output or warnings with
  818. # the simple link test code.
  819. m4_defun([_LT_LINKER_BOILERPLATE],
  820. [m4_require([_LT_DECL_SED])dnl
  821. ac_outfile=conftest.$ac_objext
  822. echo "$lt_simple_link_test_code" >conftest.$ac_ext
  823. eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err
  824. _lt_linker_boilerplate=`cat conftest.err`
  825. $RM -r conftest*
  826. ])# _LT_LINKER_BOILERPLATE
  827. # _LT_REQUIRED_DARWIN_CHECKS
  828. # -------------------------
  829. m4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[
  830. case $host_os in
  831. rhapsody* | darwin*)
  832. AC_CHECK_TOOL([DSYMUTIL], [dsymutil], [:])
  833. AC_CHECK_TOOL([NMEDIT], [nmedit], [:])
  834. AC_CHECK_TOOL([LIPO], [lipo], [:])
  835. AC_CHECK_TOOL([OTOOL], [otool], [:])
  836. AC_CHECK_TOOL([OTOOL64], [otool64], [:])
  837. _LT_DECL([], [DSYMUTIL], [1],
  838. [Tool to manipulate archived DWARF debug symbol files on Mac OS X])
  839. _LT_DECL([], [NMEDIT], [1],
  840. [Tool to change global to local symbols on Mac OS X])
  841. _LT_DECL([], [LIPO], [1],
  842. [Tool to manipulate fat objects and archives on Mac OS X])
  843. _LT_DECL([], [OTOOL], [1],
  844. [ldd/readelf like tool for Mach-O binaries on Mac OS X])
  845. _LT_DECL([], [OTOOL64], [1],
  846. [ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4])
  847. AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod],
  848. [lt_cv_apple_cc_single_mod=no
  849. if test -z "${LT_MULTI_MODULE}"; then
  850. # By default we will add the -single_module flag. You can override
  851. # by either setting the environment variable LT_MULTI_MODULE
  852. # non-empty at configure time, or by adding -multi_module to the
  853. # link flags.
  854. rm -rf libconftest.dylib*
  855. echo "int foo(void){return 1;}" > conftest.c
  856. echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \
  857. -dynamiclib -Wl,-single_module conftest.c" >&AS_MESSAGE_LOG_FD
  858. $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \
  859. -dynamiclib -Wl,-single_module conftest.c 2>conftest.err
  860. _lt_result=$?
  861. # If there is a non-empty error log, and "single_module"
  862. # appears in it, assume the flag caused a linker warning
  863. if test -s conftest.err && $GREP single_module conftest.err; then
  864. cat conftest.err >&AS_MESSAGE_LOG_FD
  865. # Otherwise, if the output was created with a 0 exit code from
  866. # the compiler, it worked.
  867. elif test -f libconftest.dylib && test $_lt_result -eq 0; then
  868. lt_cv_apple_cc_single_mod=yes
  869. else
  870. cat conftest.err >&AS_MESSAGE_LOG_FD
  871. fi
  872. rm -rf libconftest.dylib*
  873. rm -f conftest.*
  874. fi])
  875. AC_CACHE_CHECK([for -exported_symbols_list linker flag],
  876. [lt_cv_ld_exported_symbols_list],
  877. [lt_cv_ld_exported_symbols_list=no
  878. save_LDFLAGS=$LDFLAGS
  879. echo "_main" > conftest.sym
  880. LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym"
  881. AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])],
  882. [lt_cv_ld_exported_symbols_list=yes],
  883. [lt_cv_ld_exported_symbols_list=no])
  884. LDFLAGS="$save_LDFLAGS"
  885. ])
  886. AC_CACHE_CHECK([for -force_load linker flag],[lt_cv_ld_force_load],
  887. [lt_cv_ld_force_load=no
  888. cat > conftest.c << _LT_EOF
  889. int forced_loaded() { return 2;}
  890. _LT_EOF
  891. echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&AS_MESSAGE_LOG_FD
  892. $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&AS_MESSAGE_LOG_FD
  893. echo "$AR cru libconftest.a conftest.o" >&AS_MESSAGE_LOG_FD
  894. $AR cru libconftest.a conftest.o 2>&AS_MESSAGE_LOG_FD
  895. echo "$RANLIB libconftest.a" >&AS_MESSAGE_LOG_FD
  896. $RANLIB libconftest.a 2>&AS_MESSAGE_LOG_FD
  897. cat > conftest.c << _LT_EOF
  898. int main() { return 0;}
  899. _LT_EOF
  900. echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&AS_MESSAGE_LOG_FD
  901. $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err
  902. _lt_result=$?
  903. if test -s conftest.err && $GREP force_load conftest.err; then
  904. cat conftest.err >&AS_MESSAGE_LOG_FD
  905. elif test -f conftest && test $_lt_result -eq 0 && $GREP forced_load conftest >/dev/null 2>&1 ; then
  906. lt_cv_ld_force_load=yes
  907. else
  908. cat conftest.err >&AS_MESSAGE_LOG_FD
  909. fi
  910. rm -f conftest.err libconftest.a conftest conftest.c
  911. rm -rf conftest.dSYM
  912. ])
  913. case $host_os in
  914. rhapsody* | darwin1.[[012]])
  915. _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;;
  916. darwin1.*)
  917. _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;;
  918. darwin*) # darwin 5.x on
  919. # if running on 10.5 or later, the deployment target defaults
  920. # to the OS version, if on x86, and 10.4, the deployment
  921. # target defaults to 10.4. Don't you love it?
  922. case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in
  923. 10.0,*86*-darwin8*|10.0,*-darwin[[91]]*)
  924. _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;;
  925. 10.[[012]]*)
  926. _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;;
  927. 10.*)
  928. _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;;
  929. esac
  930. ;;
  931. esac
  932. if test "$lt_cv_apple_cc_single_mod" = "yes"; then
  933. _lt_dar_single_mod='$single_module'
  934. fi
  935. if test "$lt_cv_ld_exported_symbols_list" = "yes"; then
  936. _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym'
  937. else
  938. _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}'
  939. fi
  940. if test "$DSYMUTIL" != ":" && test "$lt_cv_ld_force_load" = "no"; then
  941. _lt_dsymutil='~$DSYMUTIL $lib || :'
  942. else
  943. _lt_dsymutil=
  944. fi
  945. ;;
  946. esac
  947. ])
  948. # _LT_DARWIN_LINKER_FEATURES([TAG])
  949. # ---------------------------------
  950. # Checks for linker and compiler features on darwin
  951. m4_defun([_LT_DARWIN_LINKER_FEATURES],
  952. [
  953. m4_require([_LT_REQUIRED_DARWIN_CHECKS])
  954. _LT_TAGVAR(archive_cmds_need_lc, $1)=no
  955. _LT_TAGVAR(hardcode_direct, $1)=no
  956. _LT_TAGVAR(hardcode_automatic, $1)=yes
  957. _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
  958. if test "$lt_cv_ld_force_load" = "yes"; then
  959. _LT_TAGVAR(whole_archive_flag_spec, $1)='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`'
  960. m4_case([$1], [F77], [_LT_TAGVAR(compiler_needs_object, $1)=yes],
  961. [FC], [_LT_TAGVAR(compiler_needs_object, $1)=yes])
  962. else
  963. _LT_TAGVAR(whole_archive_flag_spec, $1)=''
  964. fi
  965. _LT_TAGVAR(link_all_deplibs, $1)=yes
  966. _LT_TAGVAR(allow_undefined_flag, $1)="$_lt_dar_allow_undefined"
  967. case $cc_basename in
  968. ifort*) _lt_dar_can_shared=yes ;;
  969. *) _lt_dar_can_shared=$GCC ;;
  970. esac
  971. if test "$_lt_dar_can_shared" = "yes"; then
  972. output_verbose_link_cmd=func_echo_all
  973. _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}"
  974. _LT_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}"
  975. _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}"
  976. _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}"
  977. m4_if([$1], [CXX],
  978. [ if test "$lt_cv_apple_cc_single_mod" != "yes"; then
  979. _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}"
  980. _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}"
  981. fi
  982. ],[])
  983. else
  984. _LT_TAGVAR(ld_shlibs, $1)=no
  985. fi
  986. ])
  987. # _LT_SYS_MODULE_PATH_AIX([TAGNAME])
  988. # ----------------------------------
  989. # Links a minimal program and checks the executable
  990. # for the system default hardcoded library path. In most cases,
  991. # this is /usr/lib:/lib, but when the MPI compilers are used
  992. # the location of the communication and MPI libs are included too.
  993. # If we don't find anything, use the default library path according
  994. # to the aix ld manual.
  995. # Store the results from the different compilers for each TAGNAME.
  996. # Allow to override them for all tags through lt_cv_aix_libpath.
  997. m4_defun([_LT_SYS_MODULE_PATH_AIX],
  998. [m4_require([_LT_DECL_SED])dnl
  999. if test "${lt_cv_aix_libpath+set}" = set; then
  1000. aix_libpath=$lt_cv_aix_libpath
  1001. else
  1002. AC_CACHE_VAL([_LT_TAGVAR([lt_cv_aix_libpath_], [$1])],
  1003. [AC_LINK_IFELSE([AC_LANG_PROGRAM],[
  1004. lt_aix_libpath_sed='[
  1005. /Import File Strings/,/^$/ {
  1006. /^0/ {
  1007. s/^0 *\([^ ]*\) *$/\1/
  1008. p
  1009. }
  1010. }]'
  1011. _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
  1012. # Check for a 64-bit object if we didn't find anything.
  1013. if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then
  1014. _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
  1015. fi],[])
  1016. if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then
  1017. _LT_TAGVAR([lt_cv_aix_libpath_], [$1])="/usr/lib:/lib"
  1018. fi
  1019. ])
  1020. aix_libpath=$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])
  1021. fi
  1022. ])# _LT_SYS_MODULE_PATH_AIX
  1023. # _LT_SHELL_INIT(ARG)
  1024. # -------------------
  1025. m4_define([_LT_SHELL_INIT],
  1026. [m4_divert_text([M4SH-INIT], [$1
  1027. ])])# _LT_SHELL_INIT
  1028. # _LT_PROG_ECHO_BACKSLASH
  1029. # -----------------------
  1030. # Find how we can fake an echo command that does not interpret backslash.
  1031. # In particular, with Autoconf 2.60 or later we add some code to the start
  1032. # of the generated configure script which will find a shell with a builtin
  1033. # printf (which we can use as an echo command).
  1034. m4_defun([_LT_PROG_ECHO_BACKSLASH],
  1035. [ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
  1036. ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO
  1037. ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO
  1038. AC_MSG_CHECKING([how to print strings])
  1039. # Test print first, because it will be a builtin if present.
  1040. if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \
  1041. test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then
  1042. ECHO='print -r --'
  1043. elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then
  1044. ECHO='printf %s\n'
  1045. else
  1046. # Use this function as a fallback that always works.
  1047. func_fallback_echo ()
  1048. {
  1049. eval 'cat <<_LTECHO_EOF
  1050. $[]1
  1051. _LTECHO_EOF'
  1052. }
  1053. ECHO='func_fallback_echo'
  1054. fi
  1055. # func_echo_all arg...
  1056. # Invoke $ECHO with all args, space-separated.
  1057. func_echo_all ()
  1058. {
  1059. $ECHO "$*"
  1060. }
  1061. case "$ECHO" in
  1062. printf*) AC_MSG_RESULT([printf]) ;;
  1063. print*) AC_MSG_RESULT([print -r]) ;;
  1064. *) AC_MSG_RESULT([cat]) ;;
  1065. esac
  1066. m4_ifdef([_AS_DETECT_SUGGESTED],
  1067. [_AS_DETECT_SUGGESTED([
  1068. test -n "${ZSH_VERSION+set}${BASH_VERSION+set}" || (
  1069. ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
  1070. ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO
  1071. ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO
  1072. PATH=/empty FPATH=/empty; export PATH FPATH
  1073. test "X`printf %s $ECHO`" = "X$ECHO" \
  1074. || test "X`print -r -- $ECHO`" = "X$ECHO" )])])
  1075. _LT_DECL([], [SHELL], [1], [Shell to use when invoking shell scripts])
  1076. _LT_DECL([], [ECHO], [1], [An echo program that protects backslashes])
  1077. ])# _LT_PROG_ECHO_BACKSLASH
  1078. # _LT_WITH_SYSROOT
  1079. # ----------------
  1080. AC_DEFUN([_LT_WITH_SYSROOT],
  1081. [AC_MSG_CHECKING([for sysroot])
  1082. AC_ARG_WITH([sysroot],
  1083. [ --with-sysroot[=DIR] Search for dependent libraries within DIR
  1084. (or the compiler's sysroot if not specified).],
  1085. [], [with_sysroot=no])
  1086. dnl lt_sysroot will always be passed unquoted. We quote it here
  1087. dnl in case the user passed a directory name.
  1088. lt_sysroot=
  1089. case ${with_sysroot} in #(
  1090. yes)
  1091. if test "$GCC" = yes; then
  1092. lt_sysroot=`$CC --print-sysroot 2>/dev/null`
  1093. fi
  1094. ;; #(
  1095. /*)
  1096. lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"`
  1097. ;; #(
  1098. no|'')
  1099. ;; #(
  1100. *)
  1101. AC_MSG_RESULT([${with_sysroot}])
  1102. AC_MSG_ERROR([The sysroot must be an absolute path.])
  1103. ;;
  1104. esac
  1105. AC_MSG_RESULT([${lt_sysroot:-no}])
  1106. _LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl
  1107. [dependent libraries, and in which our libraries should be installed.])])
  1108. # _LT_ENABLE_LOCK
  1109. # ---------------
  1110. m4_defun([_LT_ENABLE_LOCK],
  1111. [AC_ARG_ENABLE([libtool-lock],
  1112. [AS_HELP_STRING([--disable-libtool-lock],
  1113. [avoid locking (might break parallel builds)])])
  1114. test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes
  1115. # Some flags need to be propagated to the compiler or linker for good
  1116. # libtool support.
  1117. case $host in
  1118. ia64-*-hpux*)
  1119. # Find out which ABI we are using.
  1120. echo 'int i;' > conftest.$ac_ext
  1121. if AC_TRY_EVAL(ac_compile); then
  1122. case `/usr/bin/file conftest.$ac_objext` in
  1123. *ELF-32*)
  1124. HPUX_IA64_MODE="32"
  1125. ;;
  1126. *ELF-64*)
  1127. HPUX_IA64_MODE="64"
  1128. ;;
  1129. esac
  1130. fi
  1131. rm -rf conftest*
  1132. ;;
  1133. *-*-irix6*)
  1134. # Find out which ABI we are using.
  1135. echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext
  1136. if AC_TRY_EVAL(ac_compile); then
  1137. if test "$lt_cv_prog_gnu_ld" = yes; then
  1138. case `/usr/bin/file conftest.$ac_objext` in
  1139. *32-bit*)
  1140. LD="${LD-ld} -melf32bsmip"
  1141. ;;
  1142. *N32*)
  1143. LD="${LD-ld} -melf32bmipn32"
  1144. ;;
  1145. *64-bit*)
  1146. LD="${LD-ld} -melf64bmip"
  1147. ;;
  1148. esac
  1149. else
  1150. case `/usr/bin/file conftest.$ac_objext` in
  1151. *32-bit*)
  1152. LD="${LD-ld} -32"
  1153. ;;
  1154. *N32*)
  1155. LD="${LD-ld} -n32"
  1156. ;;
  1157. *64-bit*)
  1158. LD="${LD-ld} -64"
  1159. ;;
  1160. esac
  1161. fi
  1162. fi
  1163. rm -rf conftest*
  1164. ;;
  1165. x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \
  1166. s390*-*linux*|s390*-*tpf*|sparc*-*linux*)
  1167. # Find out which ABI we are using.
  1168. echo 'int i;' > conftest.$ac_ext
  1169. if AC_TRY_EVAL(ac_compile); then
  1170. case `/usr/bin/file conftest.o` in
  1171. *32-bit*)
  1172. case $host in
  1173. x86_64-*kfreebsd*-gnu)
  1174. LD="${LD-ld} -m elf_i386_fbsd"
  1175. ;;
  1176. x86_64-*linux*)
  1177. LD="${LD-ld} -m elf_i386"
  1178. ;;
  1179. ppc64-*linux*|powerpc64-*linux*)
  1180. LD="${LD-ld} -m elf32ppclinux"
  1181. ;;
  1182. s390x-*linux*)
  1183. LD="${LD-ld} -m elf_s390"
  1184. ;;
  1185. sparc64-*linux*)
  1186. LD="${LD-ld} -m elf32_sparc"
  1187. ;;
  1188. esac
  1189. ;;
  1190. *64-bit*)
  1191. case $host in
  1192. x86_64-*kfreebsd*-gnu)
  1193. LD="${LD-ld} -m elf_x86_64_fbsd"
  1194. ;;
  1195. x86_64-*linux*)
  1196. LD="${LD-ld} -m elf_x86_64"
  1197. ;;
  1198. ppc*-*linux*|powerpc*-*linux*)
  1199. LD="${LD-ld} -m elf64ppc"
  1200. ;;
  1201. s390*-*linux*|s390*-*tpf*)
  1202. LD="${LD-ld} -m elf64_s390"
  1203. ;;
  1204. sparc*-*linux*)
  1205. LD="${LD-ld} -m elf64_sparc"
  1206. ;;
  1207. esac
  1208. ;;
  1209. esac
  1210. fi
  1211. rm -rf conftest*
  1212. ;;
  1213. *-*-sco3.2v5*)
  1214. # On SCO OpenServer 5, we need -belf to get full-featured binaries.
  1215. SAVE_CFLAGS="$CFLAGS"
  1216. CFLAGS="$CFLAGS -belf"
  1217. AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf,
  1218. [AC_LANG_PUSH(C)
  1219. AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no])
  1220. AC_LANG_POP])
  1221. if test x"$lt_cv_cc_needs_belf" != x"yes"; then
  1222. # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf
  1223. CFLAGS="$SAVE_CFLAGS"
  1224. fi
  1225. ;;
  1226. *-*solaris*)
  1227. # Find out which ABI we are using.
  1228. echo 'int i;' > conftest.$ac_ext
  1229. if AC_TRY_EVAL(ac_compile); then
  1230. case `/usr/bin/file conftest.o` in
  1231. *64-bit*)
  1232. case $lt_cv_prog_gnu_ld in
  1233. yes*)
  1234. case $host in
  1235. i?86-*-solaris*)
  1236. LD="${LD-ld} -m elf_x86_64"
  1237. ;;
  1238. sparc*-*-solaris*)
  1239. LD="${LD-ld} -m elf64_sparc"
  1240. ;;
  1241. esac
  1242. # GNU ld 2.21 introduced _sol2 emulations. Use them if available.
  1243. if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then
  1244. LD="${LD-ld}_sol2"
  1245. fi
  1246. ;;
  1247. *)
  1248. if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then
  1249. LD="${LD-ld} -64"
  1250. fi
  1251. ;;
  1252. esac
  1253. ;;
  1254. esac
  1255. fi
  1256. rm -rf conftest*
  1257. ;;
  1258. esac
  1259. need_locks="$enable_libtool_lock"
  1260. ])# _LT_ENABLE_LOCK
  1261. # _LT_PROG_AR
  1262. # -----------
  1263. m4_defun([_LT_PROG_AR],
  1264. [AC_CHECK_TOOLS(AR, [ar], false)
  1265. : ${AR=ar}
  1266. : ${AR_FLAGS=cru}
  1267. _LT_DECL([], [AR], [1], [The archiver])
  1268. _LT_DECL([], [AR_FLAGS], [1], [Flags to create an archive])
  1269. AC_CACHE_CHECK([for archiver @FILE support], [lt_cv_ar_at_file],
  1270. [lt_cv_ar_at_file=no
  1271. AC_COMPILE_IFELSE([AC_LANG_PROGRAM],
  1272. [echo conftest.$ac_objext > conftest.lst
  1273. lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&AS_MESSAGE_LOG_FD'
  1274. AC_TRY_EVAL([lt_ar_try])
  1275. if test "$ac_status" -eq 0; then
  1276. # Ensure the archiver fails upon bogus file names.
  1277. rm -f conftest.$ac_objext libconftest.a
  1278. AC_TRY_EVAL([lt_ar_try])
  1279. if test "$ac_status" -ne 0; then
  1280. lt_cv_ar_at_file=@
  1281. fi
  1282. fi
  1283. rm -f conftest.* libconftest.a
  1284. ])
  1285. ])
  1286. if test "x$lt_cv_ar_at_file" = xno; then
  1287. archiver_list_spec=
  1288. else
  1289. archiver_list_spec=$lt_cv_ar_at_file
  1290. fi
  1291. _LT_DECL([], [archiver_list_spec], [1],
  1292. [How to feed a file listing to the archiver])
  1293. ])# _LT_PROG_AR
  1294. # _LT_CMD_OLD_ARCHIVE
  1295. # -------------------
  1296. m4_defun([_LT_CMD_OLD_ARCHIVE],
  1297. [_LT_PROG_AR
  1298. AC_CHECK_TOOL(STRIP, strip, :)
  1299. test -z "$STRIP" && STRIP=:
  1300. _LT_DECL([], [STRIP], [1], [A symbol stripping program])
  1301. AC_CHECK_TOOL(RANLIB, ranlib, :)
  1302. test -z "$RANLIB" && RANLIB=:
  1303. _LT_DECL([], [RANLIB], [1],
  1304. [Commands used to install an old-style archive])
  1305. # Determine commands to create old-style static archives.
  1306. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs'
  1307. old_postinstall_cmds='chmod 644 $oldlib'
  1308. old_postuninstall_cmds=
  1309. if test -n "$RANLIB"; then
  1310. case $host_os in
  1311. openbsd*)
  1312. old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib"
  1313. ;;
  1314. *)
  1315. old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib"
  1316. ;;
  1317. esac
  1318. old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib"
  1319. fi
  1320. case $host_os in
  1321. darwin*)
  1322. lock_old_archive_extraction=yes ;;
  1323. *)
  1324. lock_old_archive_extraction=no ;;
  1325. esac
  1326. _LT_DECL([], [old_postinstall_cmds], [2])
  1327. _LT_DECL([], [old_postuninstall_cmds], [2])
  1328. _LT_TAGDECL([], [old_archive_cmds], [2],
  1329. [Commands used to build an old-style archive])
  1330. _LT_DECL([], [lock_old_archive_extraction], [0],
  1331. [Whether to use a lock for old archive extraction])
  1332. ])# _LT_CMD_OLD_ARCHIVE
  1333. # _LT_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS,
  1334. # [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE])
  1335. # ----------------------------------------------------------------
  1336. # Check whether the given compiler option works
  1337. AC_DEFUN([_LT_COMPILER_OPTION],
  1338. [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
  1339. m4_require([_LT_DECL_SED])dnl
  1340. AC_CACHE_CHECK([$1], [$2],
  1341. [$2=no
  1342. m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4])
  1343. echo "$lt_simple_compile_test_code" > conftest.$ac_ext
  1344. lt_compiler_flag="$3"
  1345. # Insert the option either (1) after the last *FLAGS variable, or
  1346. # (2) before a word containing "conftest.", or (3) at the end.
  1347. # Note that $ac_compile itself does not contain backslashes and begins
  1348. # with a dollar sign (not a hyphen), so the echo should work correctly.
  1349. # The option is referenced via a variable to avoid confusing sed.
  1350. lt_compile=`echo "$ac_compile" | $SED \
  1351. -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
  1352. -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \
  1353. -e 's:$: $lt_compiler_flag:'`
  1354. (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD)
  1355. (eval "$lt_compile" 2>conftest.err)
  1356. ac_status=$?
  1357. cat conftest.err >&AS_MESSAGE_LOG_FD
  1358. echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
  1359. if (exit $ac_status) && test -s "$ac_outfile"; then
  1360. # The compiler can only warn and ignore the option if not recognized
  1361. # So say no if there are warnings other than the usual output.
  1362. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp
  1363. $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
  1364. if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then
  1365. $2=yes
  1366. fi
  1367. fi
  1368. $RM conftest*
  1369. ])
  1370. if test x"[$]$2" = xyes; then
  1371. m4_if([$5], , :, [$5])
  1372. else
  1373. m4_if([$6], , :, [$6])
  1374. fi
  1375. ])# _LT_COMPILER_OPTION
  1376. # Old name:
  1377. AU_ALIAS([AC_LIBTOOL_COMPILER_OPTION], [_LT_COMPILER_OPTION])
  1378. dnl aclocal-1.4 backwards compatibility:
  1379. dnl AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [])
  1380. # _LT_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS,
  1381. # [ACTION-SUCCESS], [ACTION-FAILURE])
  1382. # ----------------------------------------------------
  1383. # Check whether the given linker option works
  1384. AC_DEFUN([_LT_LINKER_OPTION],
  1385. [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
  1386. m4_require([_LT_DECL_SED])dnl
  1387. AC_CACHE_CHECK([$1], [$2],
  1388. [$2=no
  1389. save_LDFLAGS="$LDFLAGS"
  1390. LDFLAGS="$LDFLAGS $3"
  1391. echo "$lt_simple_link_test_code" > conftest.$ac_ext
  1392. if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then
  1393. # The linker can only warn and ignore the option if not recognized
  1394. # So say no if there are warnings
  1395. if test -s conftest.err; then
  1396. # Append any errors to the config.log.
  1397. cat conftest.err 1>&AS_MESSAGE_LOG_FD
  1398. $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp
  1399. $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
  1400. if diff conftest.exp conftest.er2 >/dev/null; then
  1401. $2=yes
  1402. fi
  1403. else
  1404. $2=yes
  1405. fi
  1406. fi
  1407. $RM -r conftest*
  1408. LDFLAGS="$save_LDFLAGS"
  1409. ])
  1410. if test x"[$]$2" = xyes; then
  1411. m4_if([$4], , :, [$4])
  1412. else
  1413. m4_if([$5], , :, [$5])
  1414. fi
  1415. ])# _LT_LINKER_OPTION
  1416. # Old name:
  1417. AU_ALIAS([AC_LIBTOOL_LINKER_OPTION], [_LT_LINKER_OPTION])
  1418. dnl aclocal-1.4 backwards compatibility:
  1419. dnl AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], [])
  1420. # LT_CMD_MAX_LEN
  1421. #---------------
  1422. AC_DEFUN([LT_CMD_MAX_LEN],
  1423. [AC_REQUIRE([AC_CANONICAL_HOST])dnl
  1424. # find the maximum length of command line arguments
  1425. AC_MSG_CHECKING([the maximum length of command line arguments])
  1426. AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl
  1427. i=0
  1428. teststring="ABCD"
  1429. case $build_os in
  1430. msdosdjgpp*)
  1431. # On DJGPP, this test can blow up pretty badly due to problems in libc
  1432. # (any single argument exceeding 2000 bytes causes a buffer overrun
  1433. # during glob expansion). Even if it were fixed, the result of this
  1434. # check would be larger than it should be.
  1435. lt_cv_sys_max_cmd_len=12288; # 12K is about right
  1436. ;;
  1437. gnu*)
  1438. # Under GNU Hurd, this test is not required because there is
  1439. # no limit to the length of command line arguments.
  1440. # Libtool will interpret -1 as no limit whatsoever
  1441. lt_cv_sys_max_cmd_len=-1;
  1442. ;;
  1443. cygwin* | mingw* | cegcc*)
  1444. # On Win9x/ME, this test blows up -- it succeeds, but takes
  1445. # about 5 minutes as the teststring grows exponentially.
  1446. # Worse, since 9x/ME are not pre-emptively multitasking,
  1447. # you end up with a "frozen" computer, even though with patience
  1448. # the test eventually succeeds (with a max line length of 256k).
  1449. # Instead, let's just punt: use the minimum linelength reported by
  1450. # all of the supported platforms: 8192 (on NT/2K/XP).
  1451. lt_cv_sys_max_cmd_len=8192;
  1452. ;;
  1453. mint*)
  1454. # On MiNT this can take a long time and run out of memory.
  1455. lt_cv_sys_max_cmd_len=8192;
  1456. ;;
  1457. amigaos*)
  1458. # On AmigaOS with pdksh, this test takes hours, literally.
  1459. # So we just punt and use a minimum line length of 8192.
  1460. lt_cv_sys_max_cmd_len=8192;
  1461. ;;
  1462. netbsd* | freebsd* | openbsd* | darwin* | dragonfly*)
  1463. # This has been around since 386BSD, at least. Likely further.
  1464. if test -x /sbin/sysctl; then
  1465. lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax`
  1466. elif test -x /usr/sbin/sysctl; then
  1467. lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax`
  1468. else
  1469. lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs
  1470. fi
  1471. # And add a safety zone
  1472. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
  1473. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
  1474. ;;
  1475. interix*)
  1476. # We know the value 262144 and hardcode it with a safety zone (like BSD)
  1477. lt_cv_sys_max_cmd_len=196608
  1478. ;;
  1479. os2*)
  1480. # The test takes a long time on OS/2.
  1481. lt_cv_sys_max_cmd_len=8192
  1482. ;;
  1483. osf*)
  1484. # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure
  1485. # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not
  1486. # nice to cause kernel panics so lets avoid the loop below.
  1487. # First set a reasonable default.
  1488. lt_cv_sys_max_cmd_len=16384
  1489. #
  1490. if test -x /sbin/sysconfig; then
  1491. case `/sbin/sysconfig -q proc exec_disable_arg_limit` in
  1492. *1*) lt_cv_sys_max_cmd_len=-1 ;;
  1493. esac
  1494. fi
  1495. ;;
  1496. sco3.2v5*)
  1497. lt_cv_sys_max_cmd_len=102400
  1498. ;;
  1499. sysv5* | sco5v6* | sysv4.2uw2*)
  1500. kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null`
  1501. if test -n "$kargmax"; then
  1502. lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'`
  1503. else
  1504. lt_cv_sys_max_cmd_len=32768
  1505. fi
  1506. ;;
  1507. *)
  1508. lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null`
  1509. if test -n "$lt_cv_sys_max_cmd_len"; then
  1510. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
  1511. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
  1512. else
  1513. # Make teststring a little bigger before we do anything with it.
  1514. # a 1K string should be a reasonable start.
  1515. for i in 1 2 3 4 5 6 7 8 ; do
  1516. teststring=$teststring$teststring
  1517. done
  1518. SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}}
  1519. # If test is not a shell built-in, we'll probably end up computing a
  1520. # maximum length that is only half of the actual maximum length, but
  1521. # we can't tell.
  1522. while { test "X"`env echo "$teststring$teststring" 2>/dev/null` \
  1523. = "X$teststring$teststring"; } >/dev/null 2>&1 &&
  1524. test $i != 17 # 1/2 MB should be enough
  1525. do
  1526. i=`expr $i + 1`
  1527. teststring=$teststring$teststring
  1528. done
  1529. # Only check the string length outside the loop.
  1530. lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1`
  1531. teststring=
  1532. # Add a significant safety factor because C++ compilers can tack on
  1533. # massive amounts of additional arguments before passing them to the
  1534. # linker. It appears as though 1/2 is a usable value.
  1535. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2`
  1536. fi
  1537. ;;
  1538. esac
  1539. ])
  1540. if test -n $lt_cv_sys_max_cmd_len ; then
  1541. AC_MSG_RESULT($lt_cv_sys_max_cmd_len)
  1542. else
  1543. AC_MSG_RESULT(none)
  1544. fi
  1545. max_cmd_len=$lt_cv_sys_max_cmd_len
  1546. _LT_DECL([], [max_cmd_len], [0],
  1547. [What is the maximum length of a command?])
  1548. ])# LT_CMD_MAX_LEN
  1549. # Old name:
  1550. AU_ALIAS([AC_LIBTOOL_SYS_MAX_CMD_LEN], [LT_CMD_MAX_LEN])
  1551. dnl aclocal-1.4 backwards compatibility:
  1552. dnl AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [])
  1553. # _LT_HEADER_DLFCN
  1554. # ----------------
  1555. m4_defun([_LT_HEADER_DLFCN],
  1556. [AC_CHECK_HEADERS([dlfcn.h], [], [], [AC_INCLUDES_DEFAULT])dnl
  1557. ])# _LT_HEADER_DLFCN
  1558. # _LT_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE,
  1559. # ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING)
  1560. # ----------------------------------------------------------------
  1561. m4_defun([_LT_TRY_DLOPEN_SELF],
  1562. [m4_require([_LT_HEADER_DLFCN])dnl
  1563. if test "$cross_compiling" = yes; then :
  1564. [$4]
  1565. else
  1566. lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
  1567. lt_status=$lt_dlunknown
  1568. cat > conftest.$ac_ext <<_LT_EOF
  1569. [#line $LINENO "configure"
  1570. #include "confdefs.h"
  1571. #if HAVE_DLFCN_H
  1572. #include <dlfcn.h>
  1573. #endif
  1574. #include <stdio.h>
  1575. #ifdef RTLD_GLOBAL
  1576. # define LT_DLGLOBAL RTLD_GLOBAL
  1577. #else
  1578. # ifdef DL_GLOBAL
  1579. # define LT_DLGLOBAL DL_GLOBAL
  1580. # else
  1581. # define LT_DLGLOBAL 0
  1582. # endif
  1583. #endif
  1584. /* We may have to define LT_DLLAZY_OR_NOW in the command line if we
  1585. find out it does not work in some platform. */
  1586. #ifndef LT_DLLAZY_OR_NOW
  1587. # ifdef RTLD_LAZY
  1588. # define LT_DLLAZY_OR_NOW RTLD_LAZY
  1589. # else
  1590. # ifdef DL_LAZY
  1591. # define LT_DLLAZY_OR_NOW DL_LAZY
  1592. # else
  1593. # ifdef RTLD_NOW
  1594. # define LT_DLLAZY_OR_NOW RTLD_NOW
  1595. # else
  1596. # ifdef DL_NOW
  1597. # define LT_DLLAZY_OR_NOW DL_NOW
  1598. # else
  1599. # define LT_DLLAZY_OR_NOW 0
  1600. # endif
  1601. # endif
  1602. # endif
  1603. # endif
  1604. #endif
  1605. /* When -fvisbility=hidden is used, assume the code has been annotated
  1606. correspondingly for the symbols needed. */
  1607. #if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3))
  1608. int fnord () __attribute__((visibility("default")));
  1609. #endif
  1610. int fnord () { return 42; }
  1611. int main ()
  1612. {
  1613. void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW);
  1614. int status = $lt_dlunknown;
  1615. if (self)
  1616. {
  1617. if (dlsym (self,"fnord")) status = $lt_dlno_uscore;
  1618. else
  1619. {
  1620. if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore;
  1621. else puts (dlerror ());
  1622. }
  1623. /* dlclose (self); */
  1624. }
  1625. else
  1626. puts (dlerror ());
  1627. return status;
  1628. }]
  1629. _LT_EOF
  1630. if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then
  1631. (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null
  1632. lt_status=$?
  1633. case x$lt_status in
  1634. x$lt_dlno_uscore) $1 ;;
  1635. x$lt_dlneed_uscore) $2 ;;
  1636. x$lt_dlunknown|x*) $3 ;;
  1637. esac
  1638. else :
  1639. # compilation failed
  1640. $3
  1641. fi
  1642. fi
  1643. rm -fr conftest*
  1644. ])# _LT_TRY_DLOPEN_SELF
  1645. # LT_SYS_DLOPEN_SELF
  1646. # ------------------
  1647. AC_DEFUN([LT_SYS_DLOPEN_SELF],
  1648. [m4_require([_LT_HEADER_DLFCN])dnl
  1649. if test "x$enable_dlopen" != xyes; then
  1650. enable_dlopen=unknown
  1651. enable_dlopen_self=unknown
  1652. enable_dlopen_self_static=unknown
  1653. else
  1654. lt_cv_dlopen=no
  1655. lt_cv_dlopen_libs=
  1656. case $host_os in
  1657. beos*)
  1658. lt_cv_dlopen="load_add_on"
  1659. lt_cv_dlopen_libs=
  1660. lt_cv_dlopen_self=yes
  1661. ;;
  1662. mingw* | pw32* | cegcc*)
  1663. lt_cv_dlopen="LoadLibrary"
  1664. lt_cv_dlopen_libs=
  1665. ;;
  1666. cygwin*)
  1667. lt_cv_dlopen="dlopen"
  1668. lt_cv_dlopen_libs=
  1669. ;;
  1670. darwin*)
  1671. # if libdl is installed we need to link against it
  1672. AC_CHECK_LIB([dl], [dlopen],
  1673. [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[
  1674. lt_cv_dlopen="dyld"
  1675. lt_cv_dlopen_libs=
  1676. lt_cv_dlopen_self=yes
  1677. ])
  1678. ;;
  1679. *)
  1680. AC_CHECK_FUNC([shl_load],
  1681. [lt_cv_dlopen="shl_load"],
  1682. [AC_CHECK_LIB([dld], [shl_load],
  1683. [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"],
  1684. [AC_CHECK_FUNC([dlopen],
  1685. [lt_cv_dlopen="dlopen"],
  1686. [AC_CHECK_LIB([dl], [dlopen],
  1687. [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],
  1688. [AC_CHECK_LIB([svld], [dlopen],
  1689. [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"],
  1690. [AC_CHECK_LIB([dld], [dld_link],
  1691. [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"])
  1692. ])
  1693. ])
  1694. ])
  1695. ])
  1696. ])
  1697. ;;
  1698. esac
  1699. if test "x$lt_cv_dlopen" != xno; then
  1700. enable_dlopen=yes
  1701. else
  1702. enable_dlopen=no
  1703. fi
  1704. case $lt_cv_dlopen in
  1705. dlopen)
  1706. save_CPPFLAGS="$CPPFLAGS"
  1707. test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H"
  1708. save_LDFLAGS="$LDFLAGS"
  1709. wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\"
  1710. save_LIBS="$LIBS"
  1711. LIBS="$lt_cv_dlopen_libs $LIBS"
  1712. AC_CACHE_CHECK([whether a program can dlopen itself],
  1713. lt_cv_dlopen_self, [dnl
  1714. _LT_TRY_DLOPEN_SELF(
  1715. lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes,
  1716. lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross)
  1717. ])
  1718. if test "x$lt_cv_dlopen_self" = xyes; then
  1719. wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\"
  1720. AC_CACHE_CHECK([whether a statically linked program can dlopen itself],
  1721. lt_cv_dlopen_self_static, [dnl
  1722. _LT_TRY_DLOPEN_SELF(
  1723. lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes,
  1724. lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross)
  1725. ])
  1726. fi
  1727. CPPFLAGS="$save_CPPFLAGS"
  1728. LDFLAGS="$save_LDFLAGS"
  1729. LIBS="$save_LIBS"
  1730. ;;
  1731. esac
  1732. case $lt_cv_dlopen_self in
  1733. yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;;
  1734. *) enable_dlopen_self=unknown ;;
  1735. esac
  1736. case $lt_cv_dlopen_self_static in
  1737. yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;;
  1738. *) enable_dlopen_self_static=unknown ;;
  1739. esac
  1740. fi
  1741. _LT_DECL([dlopen_support], [enable_dlopen], [0],
  1742. [Whether dlopen is supported])
  1743. _LT_DECL([dlopen_self], [enable_dlopen_self], [0],
  1744. [Whether dlopen of programs is supported])
  1745. _LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0],
  1746. [Whether dlopen of statically linked programs is supported])
  1747. ])# LT_SYS_DLOPEN_SELF
  1748. # Old name:
  1749. AU_ALIAS([AC_LIBTOOL_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF])
  1750. dnl aclocal-1.4 backwards compatibility:
  1751. dnl AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [])
  1752. # _LT_COMPILER_C_O([TAGNAME])
  1753. # ---------------------------
  1754. # Check to see if options -c and -o are simultaneously supported by compiler.
  1755. # This macro does not hard code the compiler like AC_PROG_CC_C_O.
  1756. m4_defun([_LT_COMPILER_C_O],
  1757. [m4_require([_LT_DECL_SED])dnl
  1758. m4_require([_LT_FILEUTILS_DEFAULTS])dnl
  1759. m4_require([_LT_TAG_COMPILER])dnl
  1760. AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext],
  1761. [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)],
  1762. [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no
  1763. $RM -r conftest 2>/dev/null
  1764. mkdir conftest
  1765. cd conftest
  1766. mkdir out
  1767. echo "$lt_simple_compile_test_code" > conftest.$ac_ext
  1768. lt_compiler_flag="-o out/conftest2.$ac_objext"
  1769. # Insert the option either (1) after the last *FLAGS variable, or
  1770. # (2) before a word containing "conftest.", or (3) at the end.
  1771. # Note that $ac_compile itself does not contain backslashes and begins
  1772. # with a dollar sign (not a hyphen), so the echo should work correctly.
  1773. lt_compile=`echo "$ac_compile" | $SED \
  1774. -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
  1775. -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \
  1776. -e 's:$: $lt_compiler_flag:'`
  1777. (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD)
  1778. (eval "$lt_compile" 2>out/conftest.err)
  1779. ac_status=$?
  1780. cat out/conftest.err >&AS_MESSAGE_LOG_FD
  1781. echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
  1782. if (exit $ac_status) && test -s out/conftest2.$ac_objext
  1783. then
  1784. # The compiler can only warn and ignore the option if not recognized
  1785. # So say no if there are warnings
  1786. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp
  1787. $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2
  1788. if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then
  1789. _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes
  1790. fi
  1791. fi
  1792. chmod u+w . 2>&AS_MESSAGE_LOG_FD
  1793. $RM conftest*
  1794. # SGI C++ compiler will create directory out/ii_files/ for
  1795. # template instantiation
  1796. test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files
  1797. $RM out/* && rmdir out
  1798. cd ..
  1799. $RM -r conftest
  1800. $RM conftest*
  1801. ])
  1802. _LT_TAGDECL([compiler_c_o], [lt_cv_prog_compiler_c_o], [1],
  1803. [Does compiler simultaneously support -c and -o options?])
  1804. ])# _LT_COMPILER_C_O
  1805. # _LT_COMPILER_FILE_LOCKS([TAGNAME])
  1806. # ----------------------------------
  1807. # Check to see if we can do hard links to lock some files if needed
  1808. m4_defun([_LT_COMPILER_FILE_LOCKS],
  1809. [m4_require([_LT_ENABLE_LOCK])dnl
  1810. m4_require([_LT_FILEUTILS_DEFAULTS])dnl
  1811. _LT_COMPILER_C_O([$1])
  1812. hard_links="nottested"
  1813. if test "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then
  1814. # do not overwrite the value of need_locks provided by the user
  1815. AC_MSG_CHECKING([if we can lock with hard links])
  1816. hard_links=yes
  1817. $RM conftest*
  1818. ln conftest.a conftest.b 2>/dev/null && hard_links=no
  1819. touch conftest.a
  1820. ln conftest.a conftest.b 2>&5 || hard_links=no
  1821. ln conftest.a conftest.b 2>/dev/null && hard_links=no
  1822. AC_MSG_RESULT([$hard_links])
  1823. if test "$hard_links" = no; then
  1824. AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe])
  1825. need_locks=warn
  1826. fi
  1827. else
  1828. need_locks=no
  1829. fi
  1830. _LT_DECL([], [need_locks], [1], [Must we lock files when doing compilation?])
  1831. ])# _LT_COMPILER_FILE_LOCKS
  1832. # _LT_CHECK_OBJDIR
  1833. # ----------------
  1834. m4_defun([_LT_CHECK_OBJDIR],
  1835. [AC_CACHE_CHECK([for objdir], [lt_cv_objdir],
  1836. [rm -f .libs 2>/dev/null
  1837. mkdir .libs 2>/dev/null
  1838. if test -d .libs; then
  1839. lt_cv_objdir=.libs
  1840. else
  1841. # MS-DOS does not allow filenames that begin with a dot.
  1842. lt_cv_objdir=_libs
  1843. fi
  1844. rmdir .libs 2>/dev/null])
  1845. objdir=$lt_cv_objdir
  1846. _LT_DECL([], [objdir], [0],
  1847. [The name of the directory that contains temporary libtool files])dnl
  1848. m4_pattern_allow([LT_OBJDIR])dnl
  1849. AC_DEFINE_UNQUOTED(LT_OBJDIR, "$lt_cv_objdir/",
  1850. [Define to the sub-directory in which libtool stores uninstalled libraries.])
  1851. ])# _LT_CHECK_OBJDIR
  1852. # _LT_LINKER_HARDCODE_LIBPATH([TAGNAME])
  1853. # --------------------------------------
  1854. # Check hardcoding attributes.
  1855. m4_defun([_LT_LINKER_HARDCODE_LIBPATH],
  1856. [AC_MSG_CHECKING([how to hardcode library paths into programs])
  1857. _LT_TAGVAR(hardcode_action, $1)=
  1858. if test -n "$_LT_TAGVAR(hardcode_libdir_flag_spec, $1)" ||
  1859. test -n "$_LT_TAGVAR(runpath_var, $1)" ||
  1860. test "X$_LT_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then
  1861. # We can hardcode non-existent directories.
  1862. if test "$_LT_TAGVAR(hardcode_direct, $1)" != no &&
  1863. # If the only mechanism to avoid hardcoding is shlibpath_var, we
  1864. # have to relink, otherwise we might link with an installed library
  1865. # when we should be linking with a yet-to-be-installed one
  1866. ## test "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" != no &&
  1867. test "$_LT_TAGVAR(hardcode_minus_L, $1)" != no; then
  1868. # Linking always hardcodes the temporary library directory.
  1869. _LT_TAGVAR(hardcode_action, $1)=relink
  1870. else
  1871. # We can link without hardcoding, and we can hardcode nonexisting dirs.
  1872. _LT_TAGVAR(hardcode_action, $1)=immediate
  1873. fi
  1874. else
  1875. # We cannot hardcode anything, or else we can only hardcode existing
  1876. # directories.
  1877. _LT_TAGVAR(hardcode_action, $1)=unsupported
  1878. fi
  1879. AC_MSG_RESULT([$_LT_TAGVAR(hardcode_action, $1)])
  1880. if test "$_LT_TAGVAR(hardcode_action, $1)" = relink ||
  1881. test "$_LT_TAGVAR(inherit_rpath, $1)" = yes; then
  1882. # Fast installation is not supported
  1883. enable_fast_install=no
  1884. elif test "$shlibpath_overrides_runpath" = yes ||
  1885. test "$enable_shared" = no; then
  1886. # Fast installation is not necessary
  1887. enable_fast_install=needless
  1888. fi
  1889. _LT_TAGDECL([], [hardcode_action], [0],
  1890. [How to hardcode a shared library path into an executable])
  1891. ])# _LT_LINKER_HARDCODE_LIBPATH
  1892. # _LT_CMD_STRIPLIB
  1893. # ----------------
  1894. m4_defun([_LT_CMD_STRIPLIB],
  1895. [m4_require([_LT_DECL_EGREP])
  1896. striplib=
  1897. old_striplib=
  1898. AC_MSG_CHECKING([whether stripping libraries is possible])
  1899. if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then
  1900. test -z "$old_striplib" && old_striplib="$STRIP --strip-debug"
  1901. test -z "$striplib" && striplib="$STRIP --strip-unneeded"
  1902. AC_MSG_RESULT([yes])
  1903. else
  1904. # FIXME - insert some real tests, host_os isn't really good enough
  1905. case $host_os in
  1906. darwin*)
  1907. if test -n "$STRIP" ; then
  1908. striplib="$STRIP -x"
  1909. old_striplib="$STRIP -S"
  1910. AC_MSG_RESULT([yes])
  1911. else
  1912. AC_MSG_RESULT([no])
  1913. fi
  1914. ;;
  1915. *)
  1916. AC_MSG_RESULT([no])
  1917. ;;
  1918. esac
  1919. fi
  1920. _LT_DECL([], [old_striplib], [1], [Commands to strip libraries])
  1921. _LT_DECL([], [striplib], [1])
  1922. ])# _LT_CMD_STRIPLIB
  1923. # _LT_SYS_DYNAMIC_LINKER([TAG])
  1924. # -----------------------------
  1925. # PORTME Fill in your ld.so characteristics
  1926. m4_defun([_LT_SYS_DYNAMIC_LINKER],
  1927. [AC_REQUIRE([AC_CANONICAL_HOST])dnl
  1928. m4_require([_LT_DECL_EGREP])dnl
  1929. m4_require([_LT_FILEUTILS_DEFAULTS])dnl
  1930. m4_require([_LT_DECL_OBJDUMP])dnl
  1931. m4_require([_LT_DECL_SED])dnl
  1932. m4_require([_LT_CHECK_SHELL_FEATURES])dnl
  1933. AC_MSG_CHECKING([dynamic linker characteristics])
  1934. m4_if([$1],
  1935. [], [
  1936. if test "$GCC" = yes; then
  1937. case $host_os in
  1938. darwin*) lt_awk_arg="/^libraries:/,/LR/" ;;
  1939. *) lt_awk_arg="/^libraries:/" ;;
  1940. esac
  1941. case $host_os in
  1942. mingw* | cegcc*) lt_sed_strip_eq="s,=\([[A-Za-z]]:\),\1,g" ;;
  1943. *) lt_sed_strip_eq="s,=/,/,g" ;;
  1944. esac
  1945. lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq`
  1946. case $lt_search_path_spec in
  1947. *\;*)
  1948. # if the path contains ";" then we assume it to be the separator
  1949. # otherwise default to the standard path separator (i.e. ":") - it is
  1950. # assumed that no part of a normal pathname contains ";" but that should
  1951. # okay in the real world where ";" in dirpaths is itself problematic.
  1952. lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'`
  1953. ;;
  1954. *)
  1955. lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"`
  1956. ;;
  1957. esac
  1958. # Ok, now we have the path, separated by spaces, we can step through it
  1959. # and add multilib dir if necessary.
  1960. lt_tmp_lt_search_path_spec=
  1961. lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null`
  1962. for lt_sys_path in $lt_search_path_spec; do
  1963. if test -d "$lt_sys_path/$lt_multi_os_dir"; then
  1964. lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir"
  1965. else
  1966. test -d "$lt_sys_path" && \
  1967. lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path"
  1968. fi
  1969. done
  1970. lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk '
  1971. BEGIN {RS=" "; FS="/|\n";} {
  1972. lt_foo="";
  1973. lt_count=0;
  1974. for (lt_i = NF; lt_i > 0; lt_i--) {
  1975. if ($lt_i != "" && $lt_i != ".") {
  1976. if ($lt_i == "..") {
  1977. lt_count++;
  1978. } else {
  1979. if (lt_count == 0) {
  1980. lt_foo="/" $lt_i lt_foo;
  1981. } else {
  1982. lt_count--;
  1983. }
  1984. }
  1985. }
  1986. }
  1987. if (lt_foo != "") { lt_freq[[lt_foo]]++; }
  1988. if (lt_freq[[lt_foo]] == 1) { print lt_foo; }
  1989. }'`
  1990. # AWK program above erroneously prepends '/' to C:/dos/paths
  1991. # for these hosts.
  1992. case $host_os in
  1993. mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\
  1994. $SED 's,/\([[A-Za-z]]:\),\1,g'` ;;
  1995. esac
  1996. sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP`
  1997. else
  1998. sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib"
  1999. fi])
  2000. library_names_spec=
  2001. libname_spec='lib$name'
  2002. soname_spec=
  2003. shrext_cmds=".so"
  2004. postinstall_cmds=
  2005. postuninstall_cmds=
  2006. finish_cmds=
  2007. finish_eval=
  2008. shlibpath_var=
  2009. shlibpath_overrides_runpath=unknown
  2010. version_type=none
  2011. dynamic_linker="$host_os ld.so"
  2012. sys_lib_dlsearch_path_spec="/lib /usr/lib"
  2013. need_lib_prefix=unknown
  2014. hardcode_into_libs=no
  2015. # when you set need_version to no, make sure it does not cause -set_version
  2016. # flags to be left without arguments
  2017. need_version=unknown
  2018. case $host_os in
  2019. aix3*)
  2020. version_type=linux # correct to gnu/linux during the next big refactor
  2021. library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a'
  2022. shlibpath_var=LIBPATH
  2023. # AIX 3 has no versioning support, so we append a major version to the name.
  2024. soname_spec='${libname}${release}${shared_ext}$major'
  2025. ;;
  2026. aix[[4-9]]*)
  2027. version_type=linux # correct to gnu/linux during the next big refactor
  2028. need_lib_prefix=no
  2029. need_version=no
  2030. hardcode_into_libs=yes
  2031. if test "$host_cpu" = ia64; then
  2032. # AIX 5 supports IA64
  2033. library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}'
  2034. shlibpath_var=LD_LIBRARY_PATH
  2035. else
  2036. # With GCC up to 2.95.x, collect2 would create an import file
  2037. # for dependence libraries. The import file would start with
  2038. # the line `#! .'. This would cause the generated library to
  2039. # depend on `.', always an invalid library. This was fixed in
  2040. # development snapshots of GCC prior to 3.0.
  2041. case $host_os in
  2042. aix4 | aix4.[[01]] | aix4.[[01]].*)
  2043. if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)'
  2044. echo ' yes '
  2045. echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then
  2046. :
  2047. else
  2048. can_build_shared=no
  2049. fi
  2050. ;;
  2051. esac
  2052. # AIX (on Power*) has no versioning support, so currently we can not hardcode correct
  2053. # soname into executable. Probably we can add versioning support to
  2054. # collect2, so additional links can be useful in future.
  2055. if test "$aix_use_runtimelinking" = yes; then
  2056. # If using run time linking (on AIX 4.2 or later) use lib<name>.so
  2057. # instead of lib<name>.a to let people know that these are not
  2058. # typical AIX shared libraries.
  2059. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2060. else
  2061. # We preserve .a as extension for shared libraries through AIX4.2
  2062. # and later when we are not doing run time linking.
  2063. library_names_spec='${libname}${release}.a $libname.a'
  2064. soname_spec='${libname}${release}${shared_ext}$major'
  2065. fi
  2066. shlibpath_var=LIBPATH
  2067. fi
  2068. ;;
  2069. amigaos*)
  2070. case $host_cpu in
  2071. powerpc)
  2072. # Since July 2007 AmigaOS4 officially supports .so libraries.
  2073. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline.
  2074. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2075. ;;
  2076. m68k)
  2077. library_names_spec='$libname.ixlibrary $libname.a'
  2078. # Create ${libname}_ixlibrary.a entries in /sys/libs.
  2079. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done'
  2080. ;;
  2081. esac
  2082. ;;
  2083. beos*)
  2084. library_names_spec='${libname}${shared_ext}'
  2085. dynamic_linker="$host_os ld.so"
  2086. shlibpath_var=LIBRARY_PATH
  2087. ;;
  2088. bsdi[[45]]*)
  2089. version_type=linux # correct to gnu/linux during the next big refactor
  2090. need_version=no
  2091. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2092. soname_spec='${libname}${release}${shared_ext}$major'
  2093. finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir'
  2094. shlibpath_var=LD_LIBRARY_PATH
  2095. sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib"
  2096. sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib"
  2097. # the default ld.so.conf also contains /usr/contrib/lib and
  2098. # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow
  2099. # libtool to hard-code these into programs
  2100. ;;
  2101. cygwin* | mingw* | pw32* | cegcc*)
  2102. version_type=windows
  2103. shrext_cmds=".dll"
  2104. need_version=no
  2105. need_lib_prefix=no
  2106. case $GCC,$cc_basename in
  2107. yes,*)
  2108. # gcc
  2109. library_names_spec='$libname.dll.a'
  2110. # DLL is installed to $(libdir)/../bin by postinstall_cmds
  2111. postinstall_cmds='base_file=`basename \${file}`~
  2112. dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~
  2113. dldir=$destdir/`dirname \$dlpath`~
  2114. test -d \$dldir || mkdir -p \$dldir~
  2115. $install_prog $dir/$dlname \$dldir/$dlname~
  2116. chmod a+x \$dldir/$dlname~
  2117. if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then
  2118. eval '\''$striplib \$dldir/$dlname'\'' || exit \$?;
  2119. fi'
  2120. postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~
  2121. dlpath=$dir/\$dldll~
  2122. $RM \$dlpath'
  2123. shlibpath_overrides_runpath=yes
  2124. case $host_os in
  2125. cygwin*)
  2126. # Cygwin DLLs use 'cyg' prefix rather than 'lib'
  2127. soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
  2128. m4_if([$1], [],[
  2129. sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api"])
  2130. ;;
  2131. mingw* | cegcc*)
  2132. # MinGW DLLs use traditional 'lib' prefix
  2133. soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
  2134. ;;
  2135. pw32*)
  2136. # pw32 DLLs use 'pw' prefix rather than 'lib'
  2137. library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
  2138. ;;
  2139. esac
  2140. dynamic_linker='Win32 ld.exe'
  2141. ;;
  2142. *,cl*)
  2143. # Native MSVC
  2144. libname_spec='$name'
  2145. soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
  2146. library_names_spec='${libname}.dll.lib'
  2147. case $build_os in
  2148. mingw*)
  2149. sys_lib_search_path_spec=
  2150. lt_save_ifs=$IFS
  2151. IFS=';'
  2152. for lt_path in $LIB
  2153. do
  2154. IFS=$lt_save_ifs
  2155. # Let DOS variable expansion print the short 8.3 style file name.
  2156. lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"`
  2157. sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path"
  2158. done
  2159. IFS=$lt_save_ifs
  2160. # Convert to MSYS style.
  2161. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([[a-zA-Z]]\\):| /\\1|g' -e 's|^ ||'`
  2162. ;;
  2163. cygwin*)
  2164. # Convert to unix form, then to dos form, then back to unix form
  2165. # but this time dos style (no spaces!) so that the unix form looks
  2166. # like /cygdrive/c/PROGRA~1:/cygdr...
  2167. sys_lib_search_path_spec=`cygpath --path --unix "$LIB"`
  2168. sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null`
  2169. sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"`
  2170. ;;
  2171. *)
  2172. sys_lib_search_path_spec="$LIB"
  2173. if $ECHO "$sys_lib_search_path_spec" | [$GREP ';[c-zC-Z]:/' >/dev/null]; then
  2174. # It is most probably a Windows format PATH.
  2175. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
  2176. else
  2177. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"`
  2178. fi
  2179. # FIXME: find the short name or the path components, as spaces are
  2180. # common. (e.g. "Program Files" -> "PROGRA~1")
  2181. ;;
  2182. esac
  2183. # DLL is installed to $(libdir)/../bin by postinstall_cmds
  2184. postinstall_cmds='base_file=`basename \${file}`~
  2185. dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~
  2186. dldir=$destdir/`dirname \$dlpath`~
  2187. test -d \$dldir || mkdir -p \$dldir~
  2188. $install_prog $dir/$dlname \$dldir/$dlname'
  2189. postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~
  2190. dlpath=$dir/\$dldll~
  2191. $RM \$dlpath'
  2192. shlibpath_overrides_runpath=yes
  2193. dynamic_linker='Win32 link.exe'
  2194. ;;
  2195. *)
  2196. # Assume MSVC wrapper
  2197. library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib'
  2198. dynamic_linker='Win32 ld.exe'
  2199. ;;
  2200. esac
  2201. # FIXME: first we should search . and the directory the executable is in
  2202. shlibpath_var=PATH
  2203. ;;
  2204. darwin* | rhapsody*)
  2205. dynamic_linker="$host_os dyld"
  2206. version_type=darwin
  2207. need_lib_prefix=no
  2208. need_version=no
  2209. library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext'
  2210. soname_spec='${libname}${release}${major}$shared_ext'
  2211. shlibpath_overrides_runpath=yes
  2212. shlibpath_var=DYLD_LIBRARY_PATH
  2213. shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`'
  2214. m4_if([$1], [],[
  2215. sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"])
  2216. sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib'
  2217. ;;
  2218. dgux*)
  2219. version_type=linux # correct to gnu/linux during the next big refactor
  2220. need_lib_prefix=no
  2221. need_version=no
  2222. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext'
  2223. soname_spec='${libname}${release}${shared_ext}$major'
  2224. shlibpath_var=LD_LIBRARY_PATH
  2225. ;;
  2226. freebsd* | dragonfly*)
  2227. # DragonFly does not have aout. When/if they implement a new
  2228. # versioning mechanism, adjust this.
  2229. if test -x /usr/bin/objformat; then
  2230. objformat=`/usr/bin/objformat`
  2231. else
  2232. case $host_os in
  2233. freebsd[[23]].*) objformat=aout ;;
  2234. *) objformat=elf ;;
  2235. esac
  2236. fi
  2237. version_type=freebsd-$objformat
  2238. case $version_type in
  2239. freebsd-elf*)
  2240. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
  2241. need_version=no
  2242. need_lib_prefix=no
  2243. ;;
  2244. freebsd-*)
  2245. library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix'
  2246. need_version=yes
  2247. ;;
  2248. esac
  2249. shlibpath_var=LD_LIBRARY_PATH
  2250. case $host_os in
  2251. freebsd2.*)
  2252. shlibpath_overrides_runpath=yes
  2253. ;;
  2254. freebsd3.[[01]]* | freebsdelf3.[[01]]*)
  2255. shlibpath_overrides_runpath=yes
  2256. hardcode_into_libs=yes
  2257. ;;
  2258. freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \
  2259. freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1)
  2260. shlibpath_overrides_runpath=no
  2261. hardcode_into_libs=yes
  2262. ;;
  2263. *) # from 4.6 on, and DragonFly
  2264. shlibpath_overrides_runpath=yes
  2265. hardcode_into_libs=yes
  2266. ;;
  2267. esac
  2268. ;;
  2269. gnu*)
  2270. version_type=linux # correct to gnu/linux during the next big refactor
  2271. need_lib_prefix=no
  2272. need_version=no
  2273. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
  2274. soname_spec='${libname}${release}${shared_ext}$major'
  2275. shlibpath_var=LD_LIBRARY_PATH
  2276. shlibpath_overrides_runpath=no
  2277. hardcode_into_libs=yes
  2278. ;;
  2279. haiku*)
  2280. version_type=linux # correct to gnu/linux during the next big refactor
  2281. need_lib_prefix=no
  2282. need_version=no
  2283. dynamic_linker="$host_os runtime_loader"
  2284. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
  2285. soname_spec='${libname}${release}${shared_ext}$major'
  2286. shlibpath_var=LIBRARY_PATH
  2287. shlibpath_overrides_runpath=yes
  2288. sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib'
  2289. hardcode_into_libs=yes
  2290. ;;
  2291. hpux9* | hpux10* | hpux11*)
  2292. # Give a soname corresponding to the major version so that dld.sl refuses to
  2293. # link against other versions.
  2294. version_type=sunos
  2295. need_lib_prefix=no
  2296. need_version=no
  2297. case $host_cpu in
  2298. ia64*)
  2299. shrext_cmds='.so'
  2300. hardcode_into_libs=yes
  2301. dynamic_linker="$host_os dld.so"
  2302. shlibpath_var=LD_LIBRARY_PATH
  2303. shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
  2304. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2305. soname_spec='${libname}${release}${shared_ext}$major'
  2306. if test "X$HPUX_IA64_MODE" = X32; then
  2307. sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib"
  2308. else
  2309. sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64"
  2310. fi
  2311. sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
  2312. ;;
  2313. hppa*64*)
  2314. shrext_cmds='.sl'
  2315. hardcode_into_libs=yes
  2316. dynamic_linker="$host_os dld.sl"
  2317. shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH
  2318. shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
  2319. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2320. soname_spec='${libname}${release}${shared_ext}$major'
  2321. sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64"
  2322. sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
  2323. ;;
  2324. *)
  2325. shrext_cmds='.sl'
  2326. dynamic_linker="$host_os dld.sl"
  2327. shlibpath_var=SHLIB_PATH
  2328. shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH
  2329. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2330. soname_spec='${libname}${release}${shared_ext}$major'
  2331. ;;
  2332. esac
  2333. # HP-UX runs *really* slowly unless shared libraries are mode 555, ...
  2334. postinstall_cmds='chmod 555 $lib'
  2335. # or fails outright, so override atomically:
  2336. install_override_mode=555
  2337. ;;
  2338. interix[[3-9]]*)
  2339. version_type=linux # correct to gnu/linux during the next big refactor
  2340. need_lib_prefix=no
  2341. need_version=no
  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. dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)'
  2345. shlibpath_var=LD_LIBRARY_PATH
  2346. shlibpath_overrides_runpath=no
  2347. hardcode_into_libs=yes
  2348. ;;
  2349. irix5* | irix6* | nonstopux*)
  2350. case $host_os in
  2351. nonstopux*) version_type=nonstopux ;;
  2352. *)
  2353. if test "$lt_cv_prog_gnu_ld" = yes; then
  2354. version_type=linux # correct to gnu/linux during the next big refactor
  2355. else
  2356. version_type=irix
  2357. fi ;;
  2358. esac
  2359. need_lib_prefix=no
  2360. need_version=no
  2361. soname_spec='${libname}${release}${shared_ext}$major'
  2362. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}'
  2363. case $host_os in
  2364. irix5* | nonstopux*)
  2365. libsuff= shlibsuff=
  2366. ;;
  2367. *)
  2368. case $LD in # libtool.m4 will add one of these switches to LD
  2369. *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ")
  2370. libsuff= shlibsuff= libmagic=32-bit;;
  2371. *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ")
  2372. libsuff=32 shlibsuff=N32 libmagic=N32;;
  2373. *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ")
  2374. libsuff=64 shlibsuff=64 libmagic=64-bit;;
  2375. *) libsuff= shlibsuff= libmagic=never-match;;
  2376. esac
  2377. ;;
  2378. esac
  2379. shlibpath_var=LD_LIBRARY${shlibsuff}_PATH
  2380. shlibpath_overrides_runpath=no
  2381. sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}"
  2382. sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}"
  2383. hardcode_into_libs=yes
  2384. ;;
  2385. # No shared lib support for Linux oldld, aout, or coff.
  2386. linux*oldld* | linux*aout* | linux*coff*)
  2387. dynamic_linker=no
  2388. ;;
  2389. # This must be glibc/ELF.
  2390. linux* | k*bsd*-gnu | kopensolaris*-gnu)
  2391. version_type=linux # correct to gnu/linux during the next big refactor
  2392. need_lib_prefix=no
  2393. need_version=no
  2394. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2395. soname_spec='${libname}${release}${shared_ext}$major'
  2396. finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir'
  2397. shlibpath_var=LD_LIBRARY_PATH
  2398. shlibpath_overrides_runpath=no
  2399. # Some binutils ld are patched to set DT_RUNPATH
  2400. AC_CACHE_VAL([lt_cv_shlibpath_overrides_runpath],
  2401. [lt_cv_shlibpath_overrides_runpath=no
  2402. save_LDFLAGS=$LDFLAGS
  2403. save_libdir=$libdir
  2404. eval "libdir=/foo; wl=\"$_LT_TAGVAR(lt_prog_compiler_wl, $1)\"; \
  2405. LDFLAGS=\"\$LDFLAGS $_LT_TAGVAR(hardcode_libdir_flag_spec, $1)\""
  2406. AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])],
  2407. [AS_IF([ ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null],
  2408. [lt_cv_shlibpath_overrides_runpath=yes])])
  2409. LDFLAGS=$save_LDFLAGS
  2410. libdir=$save_libdir
  2411. ])
  2412. shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath
  2413. # This implies no fast_install, which is unacceptable.
  2414. # Some rework will be needed to allow for fast_install
  2415. # before this can be enabled.
  2416. hardcode_into_libs=yes
  2417. # Append ld.so.conf contents to the search path
  2418. if test -f /etc/ld.so.conf; then
  2419. lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '`
  2420. sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
  2421. fi
  2422. # We used to test for /lib/ld.so.1 and disable shared libraries on
  2423. # powerpc, because MkLinux only supported shared libraries with the
  2424. # GNU dynamic linker. Since this was broken with cross compilers,
  2425. # most powerpc-linux boxes support dynamic linking these days and
  2426. # people can always --disable-shared, the test was removed, and we
  2427. # assume the GNU/Linux dynamic linker is in use.
  2428. dynamic_linker='GNU/Linux ld.so'
  2429. ;;
  2430. netbsd*)
  2431. version_type=sunos
  2432. need_lib_prefix=no
  2433. need_version=no
  2434. if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
  2435. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
  2436. finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
  2437. dynamic_linker='NetBSD (a.out) ld.so'
  2438. else
  2439. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
  2440. soname_spec='${libname}${release}${shared_ext}$major'
  2441. dynamic_linker='NetBSD ld.elf_so'
  2442. fi
  2443. shlibpath_var=LD_LIBRARY_PATH
  2444. shlibpath_overrides_runpath=yes
  2445. hardcode_into_libs=yes
  2446. ;;
  2447. newsos6)
  2448. version_type=linux # correct to gnu/linux during the next big refactor
  2449. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2450. shlibpath_var=LD_LIBRARY_PATH
  2451. shlibpath_overrides_runpath=yes
  2452. ;;
  2453. *nto* | *qnx*)
  2454. version_type=qnx
  2455. need_lib_prefix=no
  2456. need_version=no
  2457. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2458. soname_spec='${libname}${release}${shared_ext}$major'
  2459. shlibpath_var=LD_LIBRARY_PATH
  2460. shlibpath_overrides_runpath=no
  2461. hardcode_into_libs=yes
  2462. dynamic_linker='ldqnx.so'
  2463. ;;
  2464. openbsd*)
  2465. version_type=sunos
  2466. sys_lib_dlsearch_path_spec="/usr/lib"
  2467. need_lib_prefix=no
  2468. # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs.
  2469. case $host_os in
  2470. openbsd3.3 | openbsd3.3.*) need_version=yes ;;
  2471. *) need_version=no ;;
  2472. esac
  2473. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
  2474. finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
  2475. shlibpath_var=LD_LIBRARY_PATH
  2476. if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
  2477. case $host_os in
  2478. openbsd2.[[89]] | openbsd2.[[89]].*)
  2479. shlibpath_overrides_runpath=no
  2480. ;;
  2481. *)
  2482. shlibpath_overrides_runpath=yes
  2483. ;;
  2484. esac
  2485. else
  2486. shlibpath_overrides_runpath=yes
  2487. fi
  2488. ;;
  2489. os2*)
  2490. libname_spec='$name'
  2491. shrext_cmds=".dll"
  2492. need_lib_prefix=no
  2493. library_names_spec='$libname${shared_ext} $libname.a'
  2494. dynamic_linker='OS/2 ld.exe'
  2495. shlibpath_var=LIBPATH
  2496. ;;
  2497. osf3* | osf4* | osf5*)
  2498. version_type=osf
  2499. need_lib_prefix=no
  2500. need_version=no
  2501. soname_spec='${libname}${release}${shared_ext}$major'
  2502. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2503. shlibpath_var=LD_LIBRARY_PATH
  2504. sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib"
  2505. sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec"
  2506. ;;
  2507. rdos*)
  2508. dynamic_linker=no
  2509. ;;
  2510. solaris*)
  2511. version_type=linux # correct to gnu/linux during the next big refactor
  2512. need_lib_prefix=no
  2513. need_version=no
  2514. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2515. soname_spec='${libname}${release}${shared_ext}$major'
  2516. shlibpath_var=LD_LIBRARY_PATH
  2517. shlibpath_overrides_runpath=yes
  2518. hardcode_into_libs=yes
  2519. # ldd complains unless libraries are executable
  2520. postinstall_cmds='chmod +x $lib'
  2521. ;;
  2522. sunos4*)
  2523. version_type=sunos
  2524. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
  2525. finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir'
  2526. shlibpath_var=LD_LIBRARY_PATH
  2527. shlibpath_overrides_runpath=yes
  2528. if test "$with_gnu_ld" = yes; then
  2529. need_lib_prefix=no
  2530. fi
  2531. need_version=yes
  2532. ;;
  2533. sysv4 | sysv4.3*)
  2534. version_type=linux # correct to gnu/linux during the next big refactor
  2535. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2536. soname_spec='${libname}${release}${shared_ext}$major'
  2537. shlibpath_var=LD_LIBRARY_PATH
  2538. case $host_vendor in
  2539. sni)
  2540. shlibpath_overrides_runpath=no
  2541. need_lib_prefix=no
  2542. runpath_var=LD_RUN_PATH
  2543. ;;
  2544. siemens)
  2545. need_lib_prefix=no
  2546. ;;
  2547. motorola)
  2548. need_lib_prefix=no
  2549. need_version=no
  2550. shlibpath_overrides_runpath=no
  2551. sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib'
  2552. ;;
  2553. esac
  2554. ;;
  2555. sysv4*MP*)
  2556. if test -d /usr/nec ;then
  2557. version_type=linux # correct to gnu/linux during the next big refactor
  2558. library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}'
  2559. soname_spec='$libname${shared_ext}.$major'
  2560. shlibpath_var=LD_LIBRARY_PATH
  2561. fi
  2562. ;;
  2563. sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
  2564. version_type=freebsd-elf
  2565. need_lib_prefix=no
  2566. need_version=no
  2567. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
  2568. soname_spec='${libname}${release}${shared_ext}$major'
  2569. shlibpath_var=LD_LIBRARY_PATH
  2570. shlibpath_overrides_runpath=yes
  2571. hardcode_into_libs=yes
  2572. if test "$with_gnu_ld" = yes; then
  2573. sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib'
  2574. else
  2575. sys_lib_search_path_spec='/usr/ccs/lib /usr/lib'
  2576. case $host_os in
  2577. sco3.2v5*)
  2578. sys_lib_search_path_spec="$sys_lib_search_path_spec /lib"
  2579. ;;
  2580. esac
  2581. fi
  2582. sys_lib_dlsearch_path_spec='/usr/lib'
  2583. ;;
  2584. tpf*)
  2585. # TPF is a cross-target only. Preferred cross-host = GNU/Linux.
  2586. version_type=linux # correct to gnu/linux during the next big refactor
  2587. need_lib_prefix=no
  2588. need_version=no
  2589. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2590. shlibpath_var=LD_LIBRARY_PATH
  2591. shlibpath_overrides_runpath=no
  2592. hardcode_into_libs=yes
  2593. ;;
  2594. uts4*)
  2595. version_type=linux # correct to gnu/linux during the next big refactor
  2596. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2597. soname_spec='${libname}${release}${shared_ext}$major'
  2598. shlibpath_var=LD_LIBRARY_PATH
  2599. ;;
  2600. *)
  2601. dynamic_linker=no
  2602. ;;
  2603. esac
  2604. AC_MSG_RESULT([$dynamic_linker])
  2605. test "$dynamic_linker" = no && can_build_shared=no
  2606. variables_saved_for_relink="PATH $shlibpath_var $runpath_var"
  2607. if test "$GCC" = yes; then
  2608. variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH"
  2609. fi
  2610. if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then
  2611. sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec"
  2612. fi
  2613. if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then
  2614. sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec"
  2615. fi
  2616. _LT_DECL([], [variables_saved_for_relink], [1],
  2617. [Variables whose values should be saved in libtool wrapper scripts and
  2618. restored at link time])
  2619. _LT_DECL([], [need_lib_prefix], [0],
  2620. [Do we need the "lib" prefix for modules?])
  2621. _LT_DECL([], [need_version], [0], [Do we need a version for libraries?])
  2622. _LT_DECL([], [version_type], [0], [Library versioning type])
  2623. _LT_DECL([], [runpath_var], [0], [Shared library runtime path variable])
  2624. _LT_DECL([], [shlibpath_var], [0],[Shared library path variable])
  2625. _LT_DECL([], [shlibpath_overrides_runpath], [0],
  2626. [Is shlibpath searched before the hard-coded library search path?])
  2627. _LT_DECL([], [libname_spec], [1], [Format of library name prefix])
  2628. _LT_DECL([], [library_names_spec], [1],
  2629. [[List of archive names. First name is the real one, the rest are links.
  2630. The last name is the one that the linker finds with -lNAME]])
  2631. _LT_DECL([], [soname_spec], [1],
  2632. [[The coded name of the library, if different from the real name]])
  2633. _LT_DECL([], [install_override_mode], [1],
  2634. [Permission mode override for installation of shared libraries])
  2635. _LT_DECL([], [postinstall_cmds], [2],
  2636. [Command to use after installation of a shared archive])
  2637. _LT_DECL([], [postuninstall_cmds], [2],
  2638. [Command to use after uninstallation of a shared archive])
  2639. _LT_DECL([], [finish_cmds], [2],
  2640. [Commands used to finish a libtool library installation in a directory])
  2641. _LT_DECL([], [finish_eval], [1],
  2642. [[As "finish_cmds", except a single script fragment to be evaled but
  2643. not shown]])
  2644. _LT_DECL([], [hardcode_into_libs], [0],
  2645. [Whether we should hardcode library paths into libraries])
  2646. _LT_DECL([], [sys_lib_search_path_spec], [2],
  2647. [Compile-time system search path for libraries])
  2648. _LT_DECL([], [sys_lib_dlsearch_path_spec], [2],
  2649. [Run-time system search path for libraries])
  2650. ])# _LT_SYS_DYNAMIC_LINKER
  2651. # _LT_PATH_TOOL_PREFIX(TOOL)
  2652. # --------------------------
  2653. # find a file program which can recognize shared library
  2654. AC_DEFUN([_LT_PATH_TOOL_PREFIX],
  2655. [m4_require([_LT_DECL_EGREP])dnl
  2656. AC_MSG_CHECKING([for $1])
  2657. AC_CACHE_VAL(lt_cv_path_MAGIC_CMD,
  2658. [case $MAGIC_CMD in
  2659. [[\\/*] | ?:[\\/]*])
  2660. lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path.
  2661. ;;
  2662. *)
  2663. lt_save_MAGIC_CMD="$MAGIC_CMD"
  2664. lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
  2665. dnl $ac_dummy forces splitting on constant user-supplied paths.
  2666. dnl POSIX.2 word splitting is done only on the output of word expansions,
  2667. dnl not every word. This closes a longstanding sh security hole.
  2668. ac_dummy="m4_if([$2], , $PATH, [$2])"
  2669. for ac_dir in $ac_dummy; do
  2670. IFS="$lt_save_ifs"
  2671. test -z "$ac_dir" && ac_dir=.
  2672. if test -f $ac_dir/$1; then
  2673. lt_cv_path_MAGIC_CMD="$ac_dir/$1"
  2674. if test -n "$file_magic_test_file"; then
  2675. case $deplibs_check_method in
  2676. "file_magic "*)
  2677. file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"`
  2678. MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
  2679. if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null |
  2680. $EGREP "$file_magic_regex" > /dev/null; then
  2681. :
  2682. else
  2683. cat <<_LT_EOF 1>&2
  2684. *** Warning: the command libtool uses to detect shared libraries,
  2685. *** $file_magic_cmd, produces output that libtool cannot recognize.
  2686. *** The result is that libtool may fail to recognize shared libraries
  2687. *** as such. This will affect the creation of libtool libraries that
  2688. *** depend on shared libraries, but programs linked with such libtool
  2689. *** libraries will work regardless of this problem. Nevertheless, you
  2690. *** may want to report the problem to your system manager and/or to
  2691. *** bug-libtool@gnu.org
  2692. _LT_EOF
  2693. fi ;;
  2694. esac
  2695. fi
  2696. break
  2697. fi
  2698. done
  2699. IFS="$lt_save_ifs"
  2700. MAGIC_CMD="$lt_save_MAGIC_CMD"
  2701. ;;
  2702. esac])
  2703. MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
  2704. if test -n "$MAGIC_CMD"; then
  2705. AC_MSG_RESULT($MAGIC_CMD)
  2706. else
  2707. AC_MSG_RESULT(no)
  2708. fi
  2709. _LT_DECL([], [MAGIC_CMD], [0],
  2710. [Used to examine libraries when file_magic_cmd begins with "file"])dnl
  2711. ])# _LT_PATH_TOOL_PREFIX
  2712. # Old name:
  2713. AU_ALIAS([AC_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX])
  2714. dnl aclocal-1.4 backwards compatibility:
  2715. dnl AC_DEFUN([AC_PATH_TOOL_PREFIX], [])
  2716. # _LT_PATH_MAGIC
  2717. # --------------
  2718. # find a file program which can recognize a shared library
  2719. m4_defun([_LT_PATH_MAGIC],
  2720. [_LT_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH)
  2721. if test -z "$lt_cv_path_MAGIC_CMD"; then
  2722. if test -n "$ac_tool_prefix"; then
  2723. _LT_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH)
  2724. else
  2725. MAGIC_CMD=:
  2726. fi
  2727. fi
  2728. ])# _LT_PATH_MAGIC
  2729. # LT_PATH_LD
  2730. # ----------
  2731. # find the pathname to the GNU or non-GNU linker
  2732. AC_DEFUN([LT_PATH_LD],
  2733. [AC_REQUIRE([AC_PROG_CC])dnl
  2734. AC_REQUIRE([AC_CANONICAL_HOST])dnl
  2735. AC_REQUIRE([AC_CANONICAL_BUILD])dnl
  2736. m4_require([_LT_DECL_SED])dnl
  2737. m4_require([_LT_DECL_EGREP])dnl
  2738. m4_require([_LT_PROG_ECHO_BACKSLASH])dnl
  2739. AC_ARG_WITH([gnu-ld],
  2740. [AS_HELP_STRING([--with-gnu-ld],
  2741. [assume the C compiler uses GNU ld @<:@default=no@:>@])],
  2742. [test "$withval" = no || with_gnu_ld=yes],
  2743. [with_gnu_ld=no])dnl
  2744. ac_prog=ld
  2745. if test "$GCC" = yes; then
  2746. # Check if gcc -print-prog-name=ld gives a path.
  2747. AC_MSG_CHECKING([for ld used by $CC])
  2748. case $host in
  2749. *-*-mingw*)
  2750. # gcc leaves a trailing carriage return which upsets mingw
  2751. ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
  2752. *)
  2753. ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
  2754. esac
  2755. case $ac_prog in
  2756. # Accept absolute paths.
  2757. [[\\/]]* | ?:[[\\/]]*)
  2758. re_direlt='/[[^/]][[^/]]*/\.\./'
  2759. # Canonicalize the pathname of ld
  2760. ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'`
  2761. while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do
  2762. ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"`
  2763. done
  2764. test -z "$LD" && LD="$ac_prog"
  2765. ;;
  2766. "")
  2767. # If it fails, then pretend we aren't using GCC.
  2768. ac_prog=ld
  2769. ;;
  2770. *)
  2771. # If it is relative, then search for the first ld in PATH.
  2772. with_gnu_ld=unknown
  2773. ;;
  2774. esac
  2775. elif test "$with_gnu_ld" = yes; then
  2776. AC_MSG_CHECKING([for GNU ld])
  2777. else
  2778. AC_MSG_CHECKING([for non-GNU ld])
  2779. fi
  2780. AC_CACHE_VAL(lt_cv_path_LD,
  2781. [if test -z "$LD"; then
  2782. lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
  2783. for ac_dir in $PATH; do
  2784. IFS="$lt_save_ifs"
  2785. test -z "$ac_dir" && ac_dir=.
  2786. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
  2787. lt_cv_path_LD="$ac_dir/$ac_prog"
  2788. # Check to see if the program is GNU ld. I'd rather use --version,
  2789. # but apparently some variants of GNU ld only accept -v.
  2790. # Break only if it was the GNU/non-GNU ld that we prefer.
  2791. case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in
  2792. *GNU* | *'with BFD'*)
  2793. test "$with_gnu_ld" != no && break
  2794. ;;
  2795. *)
  2796. test "$with_gnu_ld" != yes && break
  2797. ;;
  2798. esac
  2799. fi
  2800. done
  2801. IFS="$lt_save_ifs"
  2802. else
  2803. lt_cv_path_LD="$LD" # Let the user override the test with a path.
  2804. fi])
  2805. LD="$lt_cv_path_LD"
  2806. if test -n "$LD"; then
  2807. AC_MSG_RESULT($LD)
  2808. else
  2809. AC_MSG_RESULT(no)
  2810. fi
  2811. test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH])
  2812. _LT_PATH_LD_GNU
  2813. AC_SUBST([LD])
  2814. _LT_TAGDECL([], [LD], [1], [The linker used to build libraries])
  2815. ])# LT_PATH_LD
  2816. # Old names:
  2817. AU_ALIAS([AM_PROG_LD], [LT_PATH_LD])
  2818. AU_ALIAS([AC_PROG_LD], [LT_PATH_LD])
  2819. dnl aclocal-1.4 backwards compatibility:
  2820. dnl AC_DEFUN([AM_PROG_LD], [])
  2821. dnl AC_DEFUN([AC_PROG_LD], [])
  2822. # _LT_PATH_LD_GNU
  2823. #- --------------
  2824. m4_defun([_LT_PATH_LD_GNU],
  2825. [AC_CACHE_CHECK([if the linker ($LD) is GNU ld], lt_cv_prog_gnu_ld,
  2826. [# I'd rather use --version here, but apparently some GNU lds only accept -v.
  2827. case `$LD -v 2>&1 </dev/null` in
  2828. *GNU* | *'with BFD'*)
  2829. lt_cv_prog_gnu_ld=yes
  2830. ;;
  2831. *)
  2832. lt_cv_prog_gnu_ld=no
  2833. ;;
  2834. esac])
  2835. with_gnu_ld=$lt_cv_prog_gnu_ld
  2836. ])# _LT_PATH_LD_GNU
  2837. # _LT_CMD_RELOAD
  2838. # --------------
  2839. # find reload flag for linker
  2840. # -- PORTME Some linkers may need a different reload flag.
  2841. m4_defun([_LT_CMD_RELOAD],
  2842. [AC_CACHE_CHECK([for $LD option to reload object files],
  2843. lt_cv_ld_reload_flag,
  2844. [lt_cv_ld_reload_flag='-r'])
  2845. reload_flag=$lt_cv_ld_reload_flag
  2846. case $reload_flag in
  2847. "" | " "*) ;;
  2848. *) reload_flag=" $reload_flag" ;;
  2849. esac
  2850. reload_cmds='$LD$reload_flag -o $output$reload_objs'
  2851. case $host_os in
  2852. cygwin* | mingw* | pw32* | cegcc*)
  2853. if test "$GCC" != yes; then
  2854. reload_cmds=false
  2855. fi
  2856. ;;
  2857. darwin*)
  2858. if test "$GCC" = yes; then
  2859. reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs'
  2860. else
  2861. reload_cmds='$LD$reload_flag -o $output$reload_objs'
  2862. fi
  2863. ;;
  2864. esac
  2865. _LT_TAGDECL([], [reload_flag], [1], [How to create reloadable object files])dnl
  2866. _LT_TAGDECL([], [reload_cmds], [2])dnl
  2867. ])# _LT_CMD_RELOAD
  2868. # _LT_CHECK_MAGIC_METHOD
  2869. # ----------------------
  2870. # how to check for library dependencies
  2871. # -- PORTME fill in with the dynamic library characteristics
  2872. m4_defun([_LT_CHECK_MAGIC_METHOD],
  2873. [m4_require([_LT_DECL_EGREP])
  2874. m4_require([_LT_DECL_OBJDUMP])
  2875. AC_CACHE_CHECK([how to recognize dependent libraries],
  2876. lt_cv_deplibs_check_method,
  2877. [lt_cv_file_magic_cmd='$MAGIC_CMD'
  2878. lt_cv_file_magic_test_file=
  2879. lt_cv_deplibs_check_method='unknown'
  2880. # Need to set the preceding variable on all platforms that support
  2881. # interlibrary dependencies.
  2882. # 'none' -- dependencies not supported.
  2883. # `unknown' -- same as none, but documents that we really don't know.
  2884. # 'pass_all' -- all dependencies passed with no checks.
  2885. # 'test_compile' -- check by making test program.
  2886. # 'file_magic [[regex]]' -- check by looking for files in library path
  2887. # which responds to the $file_magic_cmd with a given extended regex.
  2888. # If you have `file' or equivalent on your system and you're not sure
  2889. # whether `pass_all' will *always* work, you probably want this one.
  2890. case $host_os in
  2891. aix[[4-9]]*)
  2892. lt_cv_deplibs_check_method=pass_all
  2893. ;;
  2894. beos*)
  2895. lt_cv_deplibs_check_method=pass_all
  2896. ;;
  2897. bsdi[[45]]*)
  2898. lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib)'
  2899. lt_cv_file_magic_cmd='/usr/bin/file -L'
  2900. lt_cv_file_magic_test_file=/shlib/libc.so
  2901. ;;
  2902. cygwin*)
  2903. # func_win32_libid is a shell function defined in ltmain.sh
  2904. lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'
  2905. lt_cv_file_magic_cmd='func_win32_libid'
  2906. ;;
  2907. mingw* | pw32*)
  2908. # Base MSYS/MinGW do not provide the 'file' command needed by
  2909. # func_win32_libid shell function, so use a weaker test based on 'objdump',
  2910. # unless we find 'file', for example because we are cross-compiling.
  2911. # func_win32_libid assumes BSD nm, so disallow it if using MS dumpbin.
  2912. if ( test "$lt_cv_nm_interface" = "BSD nm" && file / ) >/dev/null 2>&1; then
  2913. lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'
  2914. lt_cv_file_magic_cmd='func_win32_libid'
  2915. else
  2916. # Keep this pattern in sync with the one in func_win32_libid.
  2917. lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)'
  2918. lt_cv_file_magic_cmd='$OBJDUMP -f'
  2919. fi
  2920. ;;
  2921. cegcc*)
  2922. # use the weaker test based on 'objdump'. See mingw*.
  2923. lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?'
  2924. lt_cv_file_magic_cmd='$OBJDUMP -f'
  2925. ;;
  2926. darwin* | rhapsody*)
  2927. lt_cv_deplibs_check_method=pass_all
  2928. ;;
  2929. freebsd* | dragonfly*)
  2930. if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then
  2931. case $host_cpu in
  2932. i*86 )
  2933. # Not sure whether the presence of OpenBSD here was a mistake.
  2934. # Let's accept both of them until this is cleared up.
  2935. lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library'
  2936. lt_cv_file_magic_cmd=/usr/bin/file
  2937. lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*`
  2938. ;;
  2939. esac
  2940. else
  2941. lt_cv_deplibs_check_method=pass_all
  2942. fi
  2943. ;;
  2944. gnu*)
  2945. lt_cv_deplibs_check_method=pass_all
  2946. ;;
  2947. haiku*)
  2948. lt_cv_deplibs_check_method=pass_all
  2949. ;;
  2950. hpux10.20* | hpux11*)
  2951. lt_cv_file_magic_cmd=/usr/bin/file
  2952. case $host_cpu in
  2953. ia64*)
  2954. lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64'
  2955. lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so
  2956. ;;
  2957. hppa*64*)
  2958. [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]']
  2959. lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl
  2960. ;;
  2961. *)
  2962. lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]]\.[[0-9]]) shared library'
  2963. lt_cv_file_magic_test_file=/usr/lib/libc.sl
  2964. ;;
  2965. esac
  2966. ;;
  2967. interix[[3-9]]*)
  2968. # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here
  2969. lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$'
  2970. ;;
  2971. irix5* | irix6* | nonstopux*)
  2972. case $LD in
  2973. *-32|*"-32 ") libmagic=32-bit;;
  2974. *-n32|*"-n32 ") libmagic=N32;;
  2975. *-64|*"-64 ") libmagic=64-bit;;
  2976. *) libmagic=never-match;;
  2977. esac
  2978. lt_cv_deplibs_check_method=pass_all
  2979. ;;
  2980. # This must be glibc/ELF.
  2981. linux* | k*bsd*-gnu | kopensolaris*-gnu)
  2982. lt_cv_deplibs_check_method=pass_all
  2983. ;;
  2984. netbsd*)
  2985. if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then
  2986. lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$'
  2987. else
  2988. lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$'
  2989. fi
  2990. ;;
  2991. newos6*)
  2992. lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)'
  2993. lt_cv_file_magic_cmd=/usr/bin/file
  2994. lt_cv_file_magic_test_file=/usr/lib/libnls.so
  2995. ;;
  2996. *nto* | *qnx*)
  2997. lt_cv_deplibs_check_method=pass_all
  2998. ;;
  2999. openbsd*)
  3000. if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
  3001. lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$'
  3002. else
  3003. lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$'
  3004. fi
  3005. ;;
  3006. osf3* | osf4* | osf5*)
  3007. lt_cv_deplibs_check_method=pass_all
  3008. ;;
  3009. rdos*)
  3010. lt_cv_deplibs_check_method=pass_all
  3011. ;;
  3012. solaris*)
  3013. lt_cv_deplibs_check_method=pass_all
  3014. ;;
  3015. sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
  3016. lt_cv_deplibs_check_method=pass_all
  3017. ;;
  3018. sysv4 | sysv4.3*)
  3019. case $host_vendor in
  3020. motorola)
  3021. 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]]'
  3022. lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*`
  3023. ;;
  3024. ncr)
  3025. lt_cv_deplibs_check_method=pass_all
  3026. ;;
  3027. sequent)
  3028. lt_cv_file_magic_cmd='/bin/file'
  3029. lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )'
  3030. ;;
  3031. sni)
  3032. lt_cv_file_magic_cmd='/bin/file'
  3033. lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib"
  3034. lt_cv_file_magic_test_file=/lib/libc.so
  3035. ;;
  3036. siemens)
  3037. lt_cv_deplibs_check_method=pass_all
  3038. ;;
  3039. pc)
  3040. lt_cv_deplibs_check_method=pass_all
  3041. ;;
  3042. esac
  3043. ;;
  3044. tpf*)
  3045. lt_cv_deplibs_check_method=pass_all
  3046. ;;
  3047. esac
  3048. ])
  3049. file_magic_glob=
  3050. want_nocaseglob=no
  3051. if test "$build" = "$host"; then
  3052. case $host_os in
  3053. mingw* | pw32*)
  3054. if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then
  3055. want_nocaseglob=yes
  3056. else
  3057. file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[[\1]]\/[[\1]]\/g;/g"`
  3058. fi
  3059. ;;
  3060. esac
  3061. fi
  3062. file_magic_cmd=$lt_cv_file_magic_cmd
  3063. deplibs_check_method=$lt_cv_deplibs_check_method
  3064. test -z "$deplibs_check_method" && deplibs_check_method=unknown
  3065. _LT_DECL([], [deplibs_check_method], [1],
  3066. [Method to check whether dependent libraries are shared objects])
  3067. _LT_DECL([], [file_magic_cmd], [1],
  3068. [Command to use when deplibs_check_method = "file_magic"])
  3069. _LT_DECL([], [file_magic_glob], [1],
  3070. [How to find potential files when deplibs_check_method = "file_magic"])
  3071. _LT_DECL([], [want_nocaseglob], [1],
  3072. [Find potential files using nocaseglob when deplibs_check_method = "file_magic"])
  3073. ])# _LT_CHECK_MAGIC_METHOD
  3074. # LT_PATH_NM
  3075. # ----------
  3076. # find the pathname to a BSD- or MS-compatible name lister
  3077. AC_DEFUN([LT_PATH_NM],
  3078. [AC_REQUIRE([AC_PROG_CC])dnl
  3079. AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM,
  3080. [if test -n "$NM"; then
  3081. # Let the user override the test.
  3082. lt_cv_path_NM="$NM"
  3083. else
  3084. lt_nm_to_check="${ac_tool_prefix}nm"
  3085. if test -n "$ac_tool_prefix" && test "$build" = "$host"; then
  3086. lt_nm_to_check="$lt_nm_to_check nm"
  3087. fi
  3088. for lt_tmp_nm in $lt_nm_to_check; do
  3089. lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
  3090. for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do
  3091. IFS="$lt_save_ifs"
  3092. test -z "$ac_dir" && ac_dir=.
  3093. tmp_nm="$ac_dir/$lt_tmp_nm"
  3094. if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then
  3095. # Check to see if the nm accepts a BSD-compat flag.
  3096. # Adding the `sed 1q' prevents false positives on HP-UX, which says:
  3097. # nm: unknown option "B" ignored
  3098. # Tru64's nm complains that /dev/null is an invalid object file
  3099. case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in
  3100. */dev/null* | *'Invalid file or object type'*)
  3101. lt_cv_path_NM="$tmp_nm -B"
  3102. break
  3103. ;;
  3104. *)
  3105. case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in
  3106. */dev/null*)
  3107. lt_cv_path_NM="$tmp_nm -p"
  3108. break
  3109. ;;
  3110. *)
  3111. lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but
  3112. continue # so that we can try to find one that supports BSD flags
  3113. ;;
  3114. esac
  3115. ;;
  3116. esac
  3117. fi
  3118. done
  3119. IFS="$lt_save_ifs"
  3120. done
  3121. : ${lt_cv_path_NM=no}
  3122. fi])
  3123. if test "$lt_cv_path_NM" != "no"; then
  3124. NM="$lt_cv_path_NM"
  3125. else
  3126. # Didn't find any BSD compatible name lister, look for dumpbin.
  3127. if test -n "$DUMPBIN"; then :
  3128. # Let the user override the test.
  3129. else
  3130. AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :)
  3131. case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in
  3132. *COFF*)
  3133. DUMPBIN="$DUMPBIN -symbols"
  3134. ;;
  3135. *)
  3136. DUMPBIN=:
  3137. ;;
  3138. esac
  3139. fi
  3140. AC_SUBST([DUMPBIN])
  3141. if test "$DUMPBIN" != ":"; then
  3142. NM="$DUMPBIN"
  3143. fi
  3144. fi
  3145. test -z "$NM" && NM=nm
  3146. AC_SUBST([NM])
  3147. _LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl
  3148. AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface],
  3149. [lt_cv_nm_interface="BSD nm"
  3150. echo "int some_variable = 0;" > conftest.$ac_ext
  3151. (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&AS_MESSAGE_LOG_FD)
  3152. (eval "$ac_compile" 2>conftest.err)
  3153. cat conftest.err >&AS_MESSAGE_LOG_FD
  3154. (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD)
  3155. (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out)
  3156. cat conftest.err >&AS_MESSAGE_LOG_FD
  3157. (eval echo "\"\$as_me:$LINENO: output\"" >&AS_MESSAGE_LOG_FD)
  3158. cat conftest.out >&AS_MESSAGE_LOG_FD
  3159. if $GREP 'External.*some_variable' conftest.out > /dev/null; then
  3160. lt_cv_nm_interface="MS dumpbin"
  3161. fi
  3162. rm -f conftest*])
  3163. ])# LT_PATH_NM
  3164. # Old names:
  3165. AU_ALIAS([AM_PROG_NM], [LT_PATH_NM])
  3166. AU_ALIAS([AC_PROG_NM], [LT_PATH_NM])
  3167. dnl aclocal-1.4 backwards compatibility:
  3168. dnl AC_DEFUN([AM_PROG_NM], [])
  3169. dnl AC_DEFUN([AC_PROG_NM], [])
  3170. # _LT_CHECK_SHAREDLIB_FROM_LINKLIB
  3171. # --------------------------------
  3172. # how to determine the name of the shared library
  3173. # associated with a specific link library.
  3174. # -- PORTME fill in with the dynamic library characteristics
  3175. m4_defun([_LT_CHECK_SHAREDLIB_FROM_LINKLIB],
  3176. [m4_require([_LT_DECL_EGREP])
  3177. m4_require([_LT_DECL_OBJDUMP])
  3178. m4_require([_LT_DECL_DLLTOOL])
  3179. AC_CACHE_CHECK([how to associate runtime and link libraries],
  3180. lt_cv_sharedlib_from_linklib_cmd,
  3181. [lt_cv_sharedlib_from_linklib_cmd='unknown'
  3182. case $host_os in
  3183. cygwin* | mingw* | pw32* | cegcc*)
  3184. # two different shell functions defined in ltmain.sh
  3185. # decide which to use based on capabilities of $DLLTOOL
  3186. case `$DLLTOOL --help 2>&1` in
  3187. *--identify-strict*)
  3188. lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib
  3189. ;;
  3190. *)
  3191. lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback
  3192. ;;
  3193. esac
  3194. ;;
  3195. *)
  3196. # fallback: assume linklib IS sharedlib
  3197. lt_cv_sharedlib_from_linklib_cmd="$ECHO"
  3198. ;;
  3199. esac
  3200. ])
  3201. sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd
  3202. test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO
  3203. _LT_DECL([], [sharedlib_from_linklib_cmd], [1],
  3204. [Command to associate shared and link libraries])
  3205. ])# _LT_CHECK_SHAREDLIB_FROM_LINKLIB
  3206. # _LT_PATH_MANIFEST_TOOL
  3207. # ----------------------
  3208. # locate the manifest tool
  3209. m4_defun([_LT_PATH_MANIFEST_TOOL],
  3210. [AC_CHECK_TOOL(MANIFEST_TOOL, mt, :)
  3211. test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt
  3212. AC_CACHE_CHECK([if $MANIFEST_TOOL is a manifest tool], [lt_cv_path_mainfest_tool],
  3213. [lt_cv_path_mainfest_tool=no
  3214. echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&AS_MESSAGE_LOG_FD
  3215. $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out
  3216. cat conftest.err >&AS_MESSAGE_LOG_FD
  3217. if $GREP 'Manifest Tool' conftest.out > /dev/null; then
  3218. lt_cv_path_mainfest_tool=yes
  3219. fi
  3220. rm -f conftest*])
  3221. if test "x$lt_cv_path_mainfest_tool" != xyes; then
  3222. MANIFEST_TOOL=:
  3223. fi
  3224. _LT_DECL([], [MANIFEST_TOOL], [1], [Manifest tool])dnl
  3225. ])# _LT_PATH_MANIFEST_TOOL
  3226. # LT_LIB_M
  3227. # --------
  3228. # check for math library
  3229. AC_DEFUN([LT_LIB_M],
  3230. [AC_REQUIRE([AC_CANONICAL_HOST])dnl
  3231. LIBM=
  3232. case $host in
  3233. *-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-pw32* | *-*-darwin*)
  3234. # These system don't have libm, or don't need it
  3235. ;;
  3236. *-ncr-sysv4.3*)
  3237. AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw")
  3238. AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm")
  3239. ;;
  3240. *)
  3241. AC_CHECK_LIB(m, cos, LIBM="-lm")
  3242. ;;
  3243. esac
  3244. AC_SUBST([LIBM])
  3245. ])# LT_LIB_M
  3246. # Old name:
  3247. AU_ALIAS([AC_CHECK_LIBM], [LT_LIB_M])
  3248. dnl aclocal-1.4 backwards compatibility:
  3249. dnl AC_DEFUN([AC_CHECK_LIBM], [])
  3250. # _LT_COMPILER_NO_RTTI([TAGNAME])
  3251. # -------------------------------
  3252. m4_defun([_LT_COMPILER_NO_RTTI],
  3253. [m4_require([_LT_TAG_COMPILER])dnl
  3254. _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=
  3255. if test "$GCC" = yes; then
  3256. case $cc_basename in
  3257. nvcc*)
  3258. _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -Xcompiler -fno-builtin' ;;
  3259. *)
  3260. _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' ;;
  3261. esac
  3262. _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions],
  3263. lt_cv_prog_compiler_rtti_exceptions,
  3264. [-fno-rtti -fno-exceptions], [],
  3265. [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"])
  3266. fi
  3267. _LT_TAGDECL([no_builtin_flag], [lt_prog_compiler_no_builtin_flag], [1],
  3268. [Compiler flag to turn off builtin functions])
  3269. ])# _LT_COMPILER_NO_RTTI
  3270. # _LT_CMD_GLOBAL_SYMBOLS
  3271. # ----------------------
  3272. m4_defun([_LT_CMD_GLOBAL_SYMBOLS],
  3273. [AC_REQUIRE([AC_CANONICAL_HOST])dnl
  3274. AC_REQUIRE([AC_PROG_CC])dnl
  3275. AC_REQUIRE([AC_PROG_AWK])dnl
  3276. AC_REQUIRE([LT_PATH_NM])dnl
  3277. AC_REQUIRE([LT_PATH_LD])dnl
  3278. m4_require([_LT_DECL_SED])dnl
  3279. m4_require([_LT_DECL_EGREP])dnl
  3280. m4_require([_LT_TAG_COMPILER])dnl
  3281. # Check for command to grab the raw symbol name followed by C symbol from nm.
  3282. AC_MSG_CHECKING([command to parse $NM output from $compiler object])
  3283. AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe],
  3284. [
  3285. # These are sane defaults that work on at least a few old systems.
  3286. # [They come from Ultrix. What could be older than Ultrix?!! ;)]
  3287. # Character class describing NM global symbol codes.
  3288. symcode='[[BCDEGRST]]'
  3289. # Regexp to match symbols that can be accessed directly from C.
  3290. sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)'
  3291. # Define system-specific variables.
  3292. case $host_os in
  3293. aix*)
  3294. symcode='[[BCDT]]'
  3295. ;;
  3296. cygwin* | mingw* | pw32* | cegcc*)
  3297. symcode='[[ABCDGISTW]]'
  3298. ;;
  3299. hpux*)
  3300. if test "$host_cpu" = ia64; then
  3301. symcode='[[ABCDEGRST]]'
  3302. fi
  3303. ;;
  3304. irix* | nonstopux*)
  3305. symcode='[[BCDEGRST]]'
  3306. ;;
  3307. osf*)
  3308. symcode='[[BCDEGQRST]]'
  3309. ;;
  3310. solaris*)
  3311. symcode='[[BDRT]]'
  3312. ;;
  3313. sco3.2v5*)
  3314. symcode='[[DT]]'
  3315. ;;
  3316. sysv4.2uw2*)
  3317. symcode='[[DT]]'
  3318. ;;
  3319. sysv5* | sco5v6* | unixware* | OpenUNIX*)
  3320. symcode='[[ABDT]]'
  3321. ;;
  3322. sysv4)
  3323. symcode='[[DFNSTU]]'
  3324. ;;
  3325. esac
  3326. # If we're using GNU nm, then use its standard symbol codes.
  3327. case `$NM -V 2>&1` in
  3328. *GNU* | *'with BFD'*)
  3329. symcode='[[ABCDGIRSTW]]' ;;
  3330. esac
  3331. # Transform an extracted symbol line into a proper C declaration.
  3332. # Some systems (esp. on ia64) link data and code symbols differently,
  3333. # so use this general approach.
  3334. lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'"
  3335. # Transform an extracted symbol line into symbol name and symbol address
  3336. lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p'"
  3337. 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'"
  3338. # Handle CRLF in mingw tool chain
  3339. opt_cr=
  3340. case $build_os in
  3341. mingw*)
  3342. opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp
  3343. ;;
  3344. esac
  3345. # Try without a prefix underscore, then with it.
  3346. for ac_symprfx in "" "_"; do
  3347. # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol.
  3348. symxfrm="\\1 $ac_symprfx\\2 \\2"
  3349. # Write the raw and C identifiers.
  3350. if test "$lt_cv_nm_interface" = "MS dumpbin"; then
  3351. # Fake it for dumpbin and say T for any non-static function
  3352. # and D for any global variable.
  3353. # Also find C++ and __fastcall symbols from MSVC++,
  3354. # which start with @ or ?.
  3355. lt_cv_sys_global_symbol_pipe="$AWK ['"\
  3356. " {last_section=section; section=\$ 3};"\
  3357. " /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\
  3358. " /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\
  3359. " \$ 0!~/External *\|/{next};"\
  3360. " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\
  3361. " {if(hide[section]) next};"\
  3362. " {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\
  3363. " {split(\$ 0, a, /\||\r/); split(a[2], s)};"\
  3364. " s[1]~/^[@?]/{print s[1], s[1]; next};"\
  3365. " s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\
  3366. " ' prfx=^$ac_symprfx]"
  3367. else
  3368. lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'"
  3369. fi
  3370. lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'"
  3371. # Check to see that the pipe works correctly.
  3372. pipe_works=no
  3373. rm -f conftest*
  3374. cat > conftest.$ac_ext <<_LT_EOF
  3375. #ifdef __cplusplus
  3376. extern "C" {
  3377. #endif
  3378. char nm_test_var;
  3379. void nm_test_func(void);
  3380. void nm_test_func(void){}
  3381. #ifdef __cplusplus
  3382. }
  3383. #endif
  3384. int main(){nm_test_var='a';nm_test_func();return(0);}
  3385. _LT_EOF
  3386. if AC_TRY_EVAL(ac_compile); then
  3387. # Now try to grab the symbols.
  3388. nlist=conftest.nm
  3389. if AC_TRY_EVAL(NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) && test -s "$nlist"; then
  3390. # Try sorting and uniquifying the output.
  3391. if sort "$nlist" | uniq > "$nlist"T; then
  3392. mv -f "$nlist"T "$nlist"
  3393. else
  3394. rm -f "$nlist"T
  3395. fi
  3396. # Make sure that we snagged all the symbols we need.
  3397. if $GREP ' nm_test_var$' "$nlist" >/dev/null; then
  3398. if $GREP ' nm_test_func$' "$nlist" >/dev/null; then
  3399. cat <<_LT_EOF > conftest.$ac_ext
  3400. /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */
  3401. #if defined(_WIN32) || defined(__CYGWIN__) || defined(_WIN32_WCE)
  3402. /* DATA imports from DLLs on WIN32 con't be const, because runtime
  3403. relocations are performed -- see ld's documentation on pseudo-relocs. */
  3404. # define LT@&t@_DLSYM_CONST
  3405. #elif defined(__osf__)
  3406. /* This system does not cope well with relocations in const data. */
  3407. # define LT@&t@_DLSYM_CONST
  3408. #else
  3409. # define LT@&t@_DLSYM_CONST const
  3410. #endif
  3411. #ifdef __cplusplus
  3412. extern "C" {
  3413. #endif
  3414. _LT_EOF
  3415. # Now generate the symbol file.
  3416. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext'
  3417. cat <<_LT_EOF >> conftest.$ac_ext
  3418. /* The mapping between symbol names and symbols. */
  3419. LT@&t@_DLSYM_CONST struct {
  3420. const char *name;
  3421. void *address;
  3422. }
  3423. lt__PROGRAM__LTX_preloaded_symbols[[]] =
  3424. {
  3425. { "@PROGRAM@", (void *) 0 },
  3426. _LT_EOF
  3427. $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext
  3428. cat <<\_LT_EOF >> conftest.$ac_ext
  3429. {0, (void *) 0}
  3430. };
  3431. /* This works around a problem in FreeBSD linker */
  3432. #ifdef FREEBSD_WORKAROUND
  3433. static const void *lt_preloaded_setup() {
  3434. return lt__PROGRAM__LTX_preloaded_symbols;
  3435. }
  3436. #endif
  3437. #ifdef __cplusplus
  3438. }
  3439. #endif
  3440. _LT_EOF
  3441. # Now try linking the two files.
  3442. mv conftest.$ac_objext conftstm.$ac_objext
  3443. lt_globsym_save_LIBS=$LIBS
  3444. lt_globsym_save_CFLAGS=$CFLAGS
  3445. LIBS="conftstm.$ac_objext"
  3446. CFLAGS="$CFLAGS$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)"
  3447. if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then
  3448. pipe_works=yes
  3449. fi
  3450. LIBS=$lt_globsym_save_LIBS
  3451. CFLAGS=$lt_globsym_save_CFLAGS
  3452. else
  3453. echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD
  3454. fi
  3455. else
  3456. echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD
  3457. fi
  3458. else
  3459. echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD
  3460. fi
  3461. else
  3462. echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD
  3463. cat conftest.$ac_ext >&5
  3464. fi
  3465. rm -rf conftest* conftst*
  3466. # Do not use the global_symbol_pipe unless it works.
  3467. if test "$pipe_works" = yes; then
  3468. break
  3469. else
  3470. lt_cv_sys_global_symbol_pipe=
  3471. fi
  3472. done
  3473. ])
  3474. if test -z "$lt_cv_sys_global_symbol_pipe"; then
  3475. lt_cv_sys_global_symbol_to_cdecl=
  3476. fi
  3477. if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then
  3478. AC_MSG_RESULT(failed)
  3479. else
  3480. AC_MSG_RESULT(ok)
  3481. fi
  3482. # Response file support.
  3483. if test "$lt_cv_nm_interface" = "MS dumpbin"; then
  3484. nm_file_list_spec='@'
  3485. elif $NM --help 2>/dev/null | grep '[[@]]FILE' >/dev/null; then
  3486. nm_file_list_spec='@'
  3487. fi
  3488. _LT_DECL([global_symbol_pipe], [lt_cv_sys_global_symbol_pipe], [1],
  3489. [Take the output of nm and produce a listing of raw symbols and C names])
  3490. _LT_DECL([global_symbol_to_cdecl], [lt_cv_sys_global_symbol_to_cdecl], [1],
  3491. [Transform the output of nm in a proper C declaration])
  3492. _LT_DECL([global_symbol_to_c_name_address],
  3493. [lt_cv_sys_global_symbol_to_c_name_address], [1],
  3494. [Transform the output of nm in a C name address pair])
  3495. _LT_DECL([global_symbol_to_c_name_address_lib_prefix],
  3496. [lt_cv_sys_global_symbol_to_c_name_address_lib_prefix], [1],
  3497. [Transform the output of nm in a C name address pair when lib prefix is needed])
  3498. _LT_DECL([], [nm_file_list_spec], [1],
  3499. [Specify filename containing input files for $NM])
  3500. ]) # _LT_CMD_GLOBAL_SYMBOLS
  3501. # _LT_COMPILER_PIC([TAGNAME])
  3502. # ---------------------------
  3503. m4_defun([_LT_COMPILER_PIC],
  3504. [m4_require([_LT_TAG_COMPILER])dnl
  3505. _LT_TAGVAR(lt_prog_compiler_wl, $1)=
  3506. _LT_TAGVAR(lt_prog_compiler_pic, $1)=
  3507. _LT_TAGVAR(lt_prog_compiler_static, $1)=
  3508. m4_if([$1], [CXX], [
  3509. # C++ specific cases for pic, static, wl, etc.
  3510. if test "$GXX" = yes; then
  3511. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3512. _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
  3513. case $host_os in
  3514. aix*)
  3515. # All AIX code is PIC.
  3516. if test "$host_cpu" = ia64; then
  3517. # AIX 5 now supports IA64 processor
  3518. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  3519. fi
  3520. ;;
  3521. amigaos*)
  3522. case $host_cpu in
  3523. powerpc)
  3524. # see comment about AmigaOS4 .so support
  3525. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
  3526. ;;
  3527. m68k)
  3528. # FIXME: we need at least 68020 code to build shared libraries, but
  3529. # adding the `-m68020' flag to GCC prevents building anything better,
  3530. # like `-m68040'.
  3531. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4'
  3532. ;;
  3533. esac
  3534. ;;
  3535. beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)
  3536. # PIC is the default for these OSes.
  3537. ;;
  3538. mingw* | cygwin* | os2* | pw32* | cegcc*)
  3539. # This hack is so that the source file can tell whether it is being
  3540. # built for inclusion in a dll (and should export symbols for example).
  3541. # Although the cygwin gcc ignores -fPIC, still need this for old-style
  3542. # (--disable-auto-import) libraries
  3543. m4_if([$1], [GCJ], [],
  3544. [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])
  3545. ;;
  3546. darwin* | rhapsody*)
  3547. # PIC is the default on this platform
  3548. # Common symbols not allowed in MH_DYLIB files
  3549. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common'
  3550. ;;
  3551. *djgpp*)
  3552. # DJGPP does not support shared libraries at all
  3553. _LT_TAGVAR(lt_prog_compiler_pic, $1)=
  3554. ;;
  3555. haiku*)
  3556. # PIC is the default for Haiku.
  3557. # The "-static" flag exists, but is broken.
  3558. _LT_TAGVAR(lt_prog_compiler_static, $1)=
  3559. ;;
  3560. interix[[3-9]]*)
  3561. # Interix 3.x gcc -fpic/-fPIC options generate broken code.
  3562. # Instead, we relocate shared libraries at runtime.
  3563. ;;
  3564. sysv4*MP*)
  3565. if test -d /usr/nec; then
  3566. _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic
  3567. fi
  3568. ;;
  3569. hpux*)
  3570. # PIC is the default for 64-bit PA HP-UX, but not for 32-bit
  3571. # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag
  3572. # sets the default TLS model and affects inlining.
  3573. case $host_cpu in
  3574. hppa*64*)
  3575. ;;
  3576. *)
  3577. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
  3578. ;;
  3579. esac
  3580. ;;
  3581. *qnx* | *nto*)
  3582. # QNX uses GNU C++, but need to define -shared option too, otherwise
  3583. # it will coredump.
  3584. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared'
  3585. ;;
  3586. *)
  3587. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
  3588. ;;
  3589. esac
  3590. else
  3591. case $host_os in
  3592. aix[[4-9]]*)
  3593. # All AIX code is PIC.
  3594. if test "$host_cpu" = ia64; then
  3595. # AIX 5 now supports IA64 processor
  3596. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  3597. else
  3598. _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp'
  3599. fi
  3600. ;;
  3601. chorus*)
  3602. case $cc_basename in
  3603. cxch68*)
  3604. # Green Hills C++ Compiler
  3605. # _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"
  3606. ;;
  3607. esac
  3608. ;;
  3609. mingw* | cygwin* | os2* | pw32* | cegcc*)
  3610. # This hack is so that the source file can tell whether it is being
  3611. # built for inclusion in a dll (and should export symbols for example).
  3612. m4_if([$1], [GCJ], [],
  3613. [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])
  3614. ;;
  3615. dgux*)
  3616. case $cc_basename in
  3617. ec++*)
  3618. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  3619. ;;
  3620. ghcx*)
  3621. # Green Hills C++ Compiler
  3622. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
  3623. ;;
  3624. *)
  3625. ;;
  3626. esac
  3627. ;;
  3628. freebsd* | dragonfly*)
  3629. # FreeBSD uses GNU C++
  3630. ;;
  3631. hpux9* | hpux10* | hpux11*)
  3632. case $cc_basename in
  3633. CC*)
  3634. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3635. _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive'
  3636. if test "$host_cpu" != ia64; then
  3637. _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
  3638. fi
  3639. ;;
  3640. aCC*)
  3641. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3642. _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive'
  3643. case $host_cpu in
  3644. hppa*64*|ia64*)
  3645. # +Z the default
  3646. ;;
  3647. *)
  3648. _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
  3649. ;;
  3650. esac
  3651. ;;
  3652. *)
  3653. ;;
  3654. esac
  3655. ;;
  3656. interix*)
  3657. # This is c89, which is MS Visual C++ (no shared libs)
  3658. # Anyone wants to do a port?
  3659. ;;
  3660. irix5* | irix6* | nonstopux*)
  3661. case $cc_basename in
  3662. CC*)
  3663. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3664. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
  3665. # CC pic flag -KPIC is the default.
  3666. ;;
  3667. *)
  3668. ;;
  3669. esac
  3670. ;;
  3671. linux* | k*bsd*-gnu | kopensolaris*-gnu)
  3672. case $cc_basename in
  3673. KCC*)
  3674. # KAI C++ Compiler
  3675. _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,'
  3676. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
  3677. ;;
  3678. ecpc* )
  3679. # old Intel C++ for x86_64 which still supported -KPIC.
  3680. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3681. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  3682. _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
  3683. ;;
  3684. icpc* )
  3685. # Intel C++, used to be incompatible with GCC.
  3686. # ICC 10 doesn't accept -KPIC any more.
  3687. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3688. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
  3689. _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
  3690. ;;
  3691. pgCC* | pgcpp*)
  3692. # Portland Group C++ compiler
  3693. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3694. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic'
  3695. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  3696. ;;
  3697. cxx*)
  3698. # Compaq C++
  3699. # Make sure the PIC flag is empty. It appears that all Alpha
  3700. # Linux and Compaq Tru64 Unix objects are PIC.
  3701. _LT_TAGVAR(lt_prog_compiler_pic, $1)=
  3702. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
  3703. ;;
  3704. xlc* | xlC* | bgxl[[cC]]* | mpixl[[cC]]*)
  3705. # IBM XL 8.0, 9.0 on PPC and BlueGene
  3706. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3707. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic'
  3708. _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink'
  3709. ;;
  3710. *)
  3711. case `$CC -V 2>&1 | sed 5q` in
  3712. *Sun\ C*)
  3713. # Sun C++ 5.9
  3714. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  3715. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  3716. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
  3717. ;;
  3718. esac
  3719. ;;
  3720. esac
  3721. ;;
  3722. lynxos*)
  3723. ;;
  3724. m88k*)
  3725. ;;
  3726. mvs*)
  3727. case $cc_basename in
  3728. cxx*)
  3729. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall'
  3730. ;;
  3731. *)
  3732. ;;
  3733. esac
  3734. ;;
  3735. netbsd*)
  3736. ;;
  3737. *qnx* | *nto*)
  3738. # QNX uses GNU C++, but need to define -shared option too, otherwise
  3739. # it will coredump.
  3740. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared'
  3741. ;;
  3742. osf3* | osf4* | osf5*)
  3743. case $cc_basename in
  3744. KCC*)
  3745. _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,'
  3746. ;;
  3747. RCC*)
  3748. # Rational C++ 2.4.1
  3749. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
  3750. ;;
  3751. cxx*)
  3752. # Digital/Compaq C++
  3753. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3754. # Make sure the PIC flag is empty. It appears that all Alpha
  3755. # Linux and Compaq Tru64 Unix objects are PIC.
  3756. _LT_TAGVAR(lt_prog_compiler_pic, $1)=
  3757. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
  3758. ;;
  3759. *)
  3760. ;;
  3761. esac
  3762. ;;
  3763. psos*)
  3764. ;;
  3765. solaris*)
  3766. case $cc_basename in
  3767. CC* | sunCC*)
  3768. # Sun C++ 4.2, 5.x and Centerline C++
  3769. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  3770. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  3771. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
  3772. ;;
  3773. gcx*)
  3774. # Green Hills C++ Compiler
  3775. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'
  3776. ;;
  3777. *)
  3778. ;;
  3779. esac
  3780. ;;
  3781. sunos4*)
  3782. case $cc_basename in
  3783. CC*)
  3784. # Sun C++ 4.x
  3785. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
  3786. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  3787. ;;
  3788. lcc*)
  3789. # Lucid
  3790. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
  3791. ;;
  3792. *)
  3793. ;;
  3794. esac
  3795. ;;
  3796. sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)
  3797. case $cc_basename in
  3798. CC*)
  3799. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3800. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  3801. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  3802. ;;
  3803. esac
  3804. ;;
  3805. tandem*)
  3806. case $cc_basename in
  3807. NCC*)
  3808. # NonStop-UX NCC 3.20
  3809. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  3810. ;;
  3811. *)
  3812. ;;
  3813. esac
  3814. ;;
  3815. vxworks*)
  3816. ;;
  3817. *)
  3818. _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
  3819. ;;
  3820. esac
  3821. fi
  3822. ],
  3823. [
  3824. if test "$GCC" = yes; then
  3825. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3826. _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
  3827. case $host_os in
  3828. aix*)
  3829. # All AIX code is PIC.
  3830. if test "$host_cpu" = ia64; then
  3831. # AIX 5 now supports IA64 processor
  3832. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  3833. fi
  3834. ;;
  3835. amigaos*)
  3836. case $host_cpu in
  3837. powerpc)
  3838. # see comment about AmigaOS4 .so support
  3839. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
  3840. ;;
  3841. m68k)
  3842. # FIXME: we need at least 68020 code to build shared libraries, but
  3843. # adding the `-m68020' flag to GCC prevents building anything better,
  3844. # like `-m68040'.
  3845. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4'
  3846. ;;
  3847. esac
  3848. ;;
  3849. beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)
  3850. # PIC is the default for these OSes.
  3851. ;;
  3852. mingw* | cygwin* | pw32* | os2* | cegcc*)
  3853. # This hack is so that the source file can tell whether it is being
  3854. # built for inclusion in a dll (and should export symbols for example).
  3855. # Although the cygwin gcc ignores -fPIC, still need this for old-style
  3856. # (--disable-auto-import) libraries
  3857. m4_if([$1], [GCJ], [],
  3858. [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])
  3859. ;;
  3860. darwin* | rhapsody*)
  3861. # PIC is the default on this platform
  3862. # Common symbols not allowed in MH_DYLIB files
  3863. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common'
  3864. ;;
  3865. haiku*)
  3866. # PIC is the default for Haiku.
  3867. # The "-static" flag exists, but is broken.
  3868. _LT_TAGVAR(lt_prog_compiler_static, $1)=
  3869. ;;
  3870. hpux*)
  3871. # PIC is the default for 64-bit PA HP-UX, but not for 32-bit
  3872. # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag
  3873. # sets the default TLS model and affects inlining.
  3874. case $host_cpu in
  3875. hppa*64*)
  3876. # +Z the default
  3877. ;;
  3878. *)
  3879. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
  3880. ;;
  3881. esac
  3882. ;;
  3883. interix[[3-9]]*)
  3884. # Interix 3.x gcc -fpic/-fPIC options generate broken code.
  3885. # Instead, we relocate shared libraries at runtime.
  3886. ;;
  3887. msdosdjgpp*)
  3888. # Just because we use GCC doesn't mean we suddenly get shared libraries
  3889. # on systems that don't support them.
  3890. _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
  3891. enable_shared=no
  3892. ;;
  3893. *nto* | *qnx*)
  3894. # QNX uses GNU C++, but need to define -shared option too, otherwise
  3895. # it will coredump.
  3896. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared'
  3897. ;;
  3898. sysv4*MP*)
  3899. if test -d /usr/nec; then
  3900. _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic
  3901. fi
  3902. ;;
  3903. *)
  3904. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
  3905. ;;
  3906. esac
  3907. case $cc_basename in
  3908. nvcc*) # Cuda Compiler Driver 2.2
  3909. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Xlinker '
  3910. if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then
  3911. _LT_TAGVAR(lt_prog_compiler_pic, $1)="-Xcompiler $_LT_TAGVAR(lt_prog_compiler_pic, $1)"
  3912. fi
  3913. ;;
  3914. esac
  3915. else
  3916. # PORTME Check for flag to pass linker flags through the system compiler.
  3917. case $host_os in
  3918. aix*)
  3919. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3920. if test "$host_cpu" = ia64; then
  3921. # AIX 5 now supports IA64 processor
  3922. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  3923. else
  3924. _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp'
  3925. fi
  3926. ;;
  3927. mingw* | cygwin* | pw32* | os2* | cegcc*)
  3928. # This hack is so that the source file can tell whether it is being
  3929. # built for inclusion in a dll (and should export symbols for example).
  3930. m4_if([$1], [GCJ], [],
  3931. [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])
  3932. ;;
  3933. hpux9* | hpux10* | hpux11*)
  3934. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3935. # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
  3936. # not for PA HP-UX.
  3937. case $host_cpu in
  3938. hppa*64*|ia64*)
  3939. # +Z the default
  3940. ;;
  3941. *)
  3942. _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
  3943. ;;
  3944. esac
  3945. # Is there a better lt_prog_compiler_static that works with the bundled CC?
  3946. _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive'
  3947. ;;
  3948. irix5* | irix6* | nonstopux*)
  3949. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3950. # PIC (with -KPIC) is the default.
  3951. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
  3952. ;;
  3953. linux* | k*bsd*-gnu | kopensolaris*-gnu)
  3954. case $cc_basename in
  3955. # old Intel for x86_64 which still supported -KPIC.
  3956. ecc*)
  3957. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3958. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  3959. _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
  3960. ;;
  3961. # icc used to be incompatible with GCC.
  3962. # ICC 10 doesn't accept -KPIC any more.
  3963. icc* | ifort*)
  3964. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3965. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
  3966. _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
  3967. ;;
  3968. # Lahey Fortran 8.1.
  3969. lf95*)
  3970. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3971. _LT_TAGVAR(lt_prog_compiler_pic, $1)='--shared'
  3972. _LT_TAGVAR(lt_prog_compiler_static, $1)='--static'
  3973. ;;
  3974. nagfor*)
  3975. # NAG Fortran compiler
  3976. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,'
  3977. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'
  3978. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  3979. ;;
  3980. pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*)
  3981. # Portland Group compilers (*not* the Pentium gcc compiler,
  3982. # which looks to be a dead project)
  3983. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3984. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic'
  3985. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  3986. ;;
  3987. ccc*)
  3988. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3989. # All Alpha code is PIC.
  3990. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
  3991. ;;
  3992. xl* | bgxl* | bgf* | mpixl*)
  3993. # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene
  3994. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3995. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic'
  3996. _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink'
  3997. ;;
  3998. *)
  3999. case `$CC -V 2>&1 | sed 5q` in
  4000. *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [[1-7]].* | *Sun*Fortran*\ 8.[[0-3]]*)
  4001. # Sun Fortran 8.3 passes all unrecognized flags to the linker
  4002. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  4003. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  4004. _LT_TAGVAR(lt_prog_compiler_wl, $1)=''
  4005. ;;
  4006. *Sun\ F* | *Sun*Fortran*)
  4007. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  4008. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  4009. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
  4010. ;;
  4011. *Sun\ C*)
  4012. # Sun C 5.9
  4013. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  4014. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  4015. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  4016. ;;
  4017. *Intel*\ [[CF]]*Compiler*)
  4018. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  4019. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
  4020. _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
  4021. ;;
  4022. *Portland\ Group*)
  4023. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  4024. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic'
  4025. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  4026. ;;
  4027. esac
  4028. ;;
  4029. esac
  4030. ;;
  4031. newsos6)
  4032. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  4033. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  4034. ;;
  4035. *nto* | *qnx*)
  4036. # QNX uses GNU C++, but need to define -shared option too, otherwise
  4037. # it will coredump.
  4038. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared'
  4039. ;;
  4040. osf3* | osf4* | osf5*)
  4041. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  4042. # All OSF/1 code is PIC.
  4043. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
  4044. ;;
  4045. rdos*)
  4046. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
  4047. ;;
  4048. solaris*)
  4049. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  4050. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  4051. case $cc_basename in
  4052. f77* | f90* | f95* | sunf77* | sunf90* | sunf95*)
  4053. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';;
  4054. *)
  4055. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';;
  4056. esac
  4057. ;;
  4058. sunos4*)
  4059. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
  4060. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'
  4061. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  4062. ;;
  4063. sysv4 | sysv4.2uw2* | sysv4.3*)
  4064. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  4065. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  4066. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  4067. ;;
  4068. sysv4*MP*)
  4069. if test -d /usr/nec ;then
  4070. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic'
  4071. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  4072. fi
  4073. ;;
  4074. sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)
  4075. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  4076. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  4077. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  4078. ;;
  4079. unicos*)
  4080. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  4081. _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
  4082. ;;
  4083. uts4*)
  4084. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
  4085. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  4086. ;;
  4087. *)
  4088. _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
  4089. ;;
  4090. esac
  4091. fi
  4092. ])
  4093. case $host_os in
  4094. # For platforms which do not support PIC, -DPIC is meaningless:
  4095. *djgpp*)
  4096. _LT_TAGVAR(lt_prog_compiler_pic, $1)=
  4097. ;;
  4098. *)
  4099. _LT_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])"
  4100. ;;
  4101. esac
  4102. AC_CACHE_CHECK([for $compiler option to produce PIC],
  4103. [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)],
  4104. [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_prog_compiler_pic, $1)])
  4105. _LT_TAGVAR(lt_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)
  4106. #
  4107. # Check to make sure the PIC flag actually works.
  4108. #
  4109. if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then
  4110. _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, $1) works],
  4111. [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, $1)],
  4112. [$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])], [],
  4113. [case $_LT_TAGVAR(lt_prog_compiler_pic, $1) in
  4114. "" | " "*) ;;
  4115. *) _LT_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_TAGVAR(lt_prog_compiler_pic, $1)" ;;
  4116. esac],
  4117. [_LT_TAGVAR(lt_prog_compiler_pic, $1)=
  4118. _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no])
  4119. fi
  4120. _LT_TAGDECL([pic_flag], [lt_prog_compiler_pic], [1],
  4121. [Additional compiler flags for building library objects])
  4122. _LT_TAGDECL([wl], [lt_prog_compiler_wl], [1],
  4123. [How to pass a linker flag through the compiler])
  4124. #
  4125. # Check to make sure the static flag actually works.
  4126. #
  4127. wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_TAGVAR(lt_prog_compiler_static, $1)\"
  4128. _LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works],
  4129. _LT_TAGVAR(lt_cv_prog_compiler_static_works, $1),
  4130. $lt_tmp_static_flag,
  4131. [],
  4132. [_LT_TAGVAR(lt_prog_compiler_static, $1)=])
  4133. _LT_TAGDECL([link_static_flag], [lt_prog_compiler_static], [1],
  4134. [Compiler flag to prevent dynamic linking])
  4135. ])# _LT_COMPILER_PIC
  4136. # _LT_LINKER_SHLIBS([TAGNAME])
  4137. # ----------------------------
  4138. # See if the linker supports building shared libraries.
  4139. m4_defun([_LT_LINKER_SHLIBS],
  4140. [AC_REQUIRE([LT_PATH_LD])dnl
  4141. AC_REQUIRE([LT_PATH_NM])dnl
  4142. m4_require([_LT_PATH_MANIFEST_TOOL])dnl
  4143. m4_require([_LT_FILEUTILS_DEFAULTS])dnl
  4144. m4_require([_LT_DECL_EGREP])dnl
  4145. m4_require([_LT_DECL_SED])dnl
  4146. m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl
  4147. m4_require([_LT_TAG_COMPILER])dnl
  4148. AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries])
  4149. m4_if([$1], [CXX], [
  4150. _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
  4151. _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*']
  4152. case $host_os in
  4153. aix[[4-9]]*)
  4154. # If we're using GNU nm, then we don't want the "-C" option.
  4155. # -C means demangle to AIX nm, but means don't demangle with GNU nm
  4156. # Also, AIX nm treats weak defined symbols like other global defined
  4157. # symbols, whereas GNU nm marks them as "W".
  4158. if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then
  4159. _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols'
  4160. else
  4161. _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'
  4162. fi
  4163. ;;
  4164. pw32*)
  4165. _LT_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds"
  4166. ;;
  4167. cygwin* | mingw* | cegcc*)
  4168. case $cc_basename in
  4169. cl*)
  4170. _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*'
  4171. ;;
  4172. *)
  4173. _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols'
  4174. _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname']
  4175. ;;
  4176. esac
  4177. ;;
  4178. *)
  4179. _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
  4180. ;;
  4181. esac
  4182. ], [
  4183. runpath_var=
  4184. _LT_TAGVAR(allow_undefined_flag, $1)=
  4185. _LT_TAGVAR(always_export_symbols, $1)=no
  4186. _LT_TAGVAR(archive_cmds, $1)=
  4187. _LT_TAGVAR(archive_expsym_cmds, $1)=
  4188. _LT_TAGVAR(compiler_needs_object, $1)=no
  4189. _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no
  4190. _LT_TAGVAR(export_dynamic_flag_spec, $1)=
  4191. _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
  4192. _LT_TAGVAR(hardcode_automatic, $1)=no
  4193. _LT_TAGVAR(hardcode_direct, $1)=no
  4194. _LT_TAGVAR(hardcode_direct_absolute, $1)=no
  4195. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=
  4196. _LT_TAGVAR(hardcode_libdir_separator, $1)=
  4197. _LT_TAGVAR(hardcode_minus_L, $1)=no
  4198. _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
  4199. _LT_TAGVAR(inherit_rpath, $1)=no
  4200. _LT_TAGVAR(link_all_deplibs, $1)=unknown
  4201. _LT_TAGVAR(module_cmds, $1)=
  4202. _LT_TAGVAR(module_expsym_cmds, $1)=
  4203. _LT_TAGVAR(old_archive_from_new_cmds, $1)=
  4204. _LT_TAGVAR(old_archive_from_expsyms_cmds, $1)=
  4205. _LT_TAGVAR(thread_safe_flag_spec, $1)=
  4206. _LT_TAGVAR(whole_archive_flag_spec, $1)=
  4207. # include_expsyms should be a list of space-separated symbols to be *always*
  4208. # included in the symbol list
  4209. _LT_TAGVAR(include_expsyms, $1)=
  4210. # exclude_expsyms can be an extended regexp of symbols to exclude
  4211. # it will be wrapped by ` (' and `)$', so one must not match beginning or
  4212. # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc',
  4213. # as well as any symbol that contains `d'.
  4214. _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*']
  4215. # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out
  4216. # platforms (ab)use it in PIC code, but their linkers get confused if
  4217. # the symbol is explicitly referenced. Since portable code cannot
  4218. # rely on this symbol name, it's probably fine to never include it in
  4219. # preloaded symbol tables.
  4220. # Exclude shared library initialization/finalization symbols.
  4221. dnl Note also adjust exclude_expsyms for C++ above.
  4222. extract_expsyms_cmds=
  4223. case $host_os in
  4224. cygwin* | mingw* | pw32* | cegcc*)
  4225. # FIXME: the MSVC++ port hasn't been tested in a loooong time
  4226. # When not using gcc, we currently assume that we are using
  4227. # Microsoft Visual C++.
  4228. if test "$GCC" != yes; then
  4229. with_gnu_ld=no
  4230. fi
  4231. ;;
  4232. interix*)
  4233. # we just hope/assume this is gcc and not c89 (= MSVC++)
  4234. with_gnu_ld=yes
  4235. ;;
  4236. openbsd*)
  4237. with_gnu_ld=no
  4238. ;;
  4239. esac
  4240. _LT_TAGVAR(ld_shlibs, $1)=yes
  4241. # On some targets, GNU ld is compatible enough with the native linker
  4242. # that we're better off using the native interface for both.
  4243. lt_use_gnu_ld_interface=no
  4244. if test "$with_gnu_ld" = yes; then
  4245. case $host_os in
  4246. aix*)
  4247. # The AIX port of GNU ld has always aspired to compatibility
  4248. # with the native linker. However, as the warning in the GNU ld
  4249. # block says, versions before 2.19.5* couldn't really create working
  4250. # shared libraries, regardless of the interface used.
  4251. case `$LD -v 2>&1` in
  4252. *\ \(GNU\ Binutils\)\ 2.19.5*) ;;
  4253. *\ \(GNU\ Binutils\)\ 2.[[2-9]]*) ;;
  4254. *\ \(GNU\ Binutils\)\ [[3-9]]*) ;;
  4255. *)
  4256. lt_use_gnu_ld_interface=yes
  4257. ;;
  4258. esac
  4259. ;;
  4260. *)
  4261. lt_use_gnu_ld_interface=yes
  4262. ;;
  4263. esac
  4264. fi
  4265. if test "$lt_use_gnu_ld_interface" = yes; then
  4266. # If archive_cmds runs LD, not CC, wlarc should be empty
  4267. wlarc='${wl}'
  4268. # Set some defaults for GNU ld with shared library support. These
  4269. # are reset later if shared libraries are not supported. Putting them
  4270. # here allows them to be overridden if necessary.
  4271. runpath_var=LD_RUN_PATH
  4272. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
  4273. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
  4274. # ancient GNU ld didn't support --whole-archive et. al.
  4275. if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then
  4276. _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
  4277. else
  4278. _LT_TAGVAR(whole_archive_flag_spec, $1)=
  4279. fi
  4280. supports_anon_versioning=no
  4281. case `$LD -v 2>&1` in
  4282. *GNU\ gold*) supports_anon_versioning=yes ;;
  4283. *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11
  4284. *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ...
  4285. *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ...
  4286. *\ 2.11.*) ;; # other 2.11 versions
  4287. *) supports_anon_versioning=yes ;;
  4288. esac
  4289. # See if GNU ld supports shared libraries.
  4290. case $host_os in
  4291. aix[[3-9]]*)
  4292. # On AIX/PPC, the GNU linker is very broken
  4293. if test "$host_cpu" != ia64; then
  4294. _LT_TAGVAR(ld_shlibs, $1)=no
  4295. cat <<_LT_EOF 1>&2
  4296. *** Warning: the GNU linker, at least up to release 2.19, is reported
  4297. *** to be unable to reliably create shared libraries on AIX.
  4298. *** Therefore, libtool is disabling shared libraries support. If you
  4299. *** really care for shared libraries, you may want to install binutils
  4300. *** 2.20 or above, or modify your PATH so that a non-GNU linker is found.
  4301. *** You will then need to restart the configuration process.
  4302. _LT_EOF
  4303. fi
  4304. ;;
  4305. amigaos*)
  4306. case $host_cpu in
  4307. powerpc)
  4308. # see comment about AmigaOS4 .so support
  4309. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  4310. _LT_TAGVAR(archive_expsym_cmds, $1)=''
  4311. ;;
  4312. m68k)
  4313. _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)'
  4314. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
  4315. _LT_TAGVAR(hardcode_minus_L, $1)=yes
  4316. ;;
  4317. esac
  4318. ;;
  4319. beos*)
  4320. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
  4321. _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
  4322. # Joseph Beckenbach <jrb3@best.com> says some releases of gcc
  4323. # support --undefined. This deserves some investigation. FIXME
  4324. _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  4325. else
  4326. _LT_TAGVAR(ld_shlibs, $1)=no
  4327. fi
  4328. ;;
  4329. cygwin* | mingw* | pw32* | cegcc*)
  4330. # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless,
  4331. # as there is no search path for DLLs.
  4332. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
  4333. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols'
  4334. _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
  4335. _LT_TAGVAR(always_export_symbols, $1)=no
  4336. _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
  4337. _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols'
  4338. _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname']
  4339. if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then
  4340. _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'
  4341. # If the export-symbols file already is a .def file (1st line
  4342. # is EXPORTS), use it as is; otherwise, prepend...
  4343. _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
  4344. cp $export_symbols $output_objdir/$soname.def;
  4345. else
  4346. echo EXPORTS > $output_objdir/$soname.def;
  4347. cat $export_symbols >> $output_objdir/$soname.def;
  4348. fi~
  4349. $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
  4350. else
  4351. _LT_TAGVAR(ld_shlibs, $1)=no
  4352. fi
  4353. ;;
  4354. haiku*)
  4355. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  4356. _LT_TAGVAR(link_all_deplibs, $1)=yes
  4357. ;;
  4358. interix[[3-9]]*)
  4359. _LT_TAGVAR(hardcode_direct, $1)=no
  4360. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  4361. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
  4362. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
  4363. # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc.
  4364. # Instead, shared libraries are loaded at an image base (0x10000000 by
  4365. # default) and relocated if they conflict, which is a slow very memory
  4366. # consuming and fragmenting process. To avoid this, we pick a random,
  4367. # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link
  4368. # time. Moving up from 0x10000000 also allows more sbrk(2) space.
  4369. _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'
  4370. _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'
  4371. ;;
  4372. gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu)
  4373. tmp_diet=no
  4374. if test "$host_os" = linux-dietlibc; then
  4375. case $cc_basename in
  4376. diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn)
  4377. esac
  4378. fi
  4379. if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \
  4380. && test "$tmp_diet" = no
  4381. then
  4382. tmp_addflag=' $pic_flag'
  4383. tmp_sharedflag='-shared'
  4384. case $cc_basename,$host_cpu in
  4385. pgcc*) # Portland Group C compiler
  4386. _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive'
  4387. tmp_addflag=' $pic_flag'
  4388. ;;
  4389. pgf77* | pgf90* | pgf95* | pgfortran*)
  4390. # Portland Group f77 and f90 compilers
  4391. _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive'
  4392. tmp_addflag=' $pic_flag -Mnomain' ;;
  4393. ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64
  4394. tmp_addflag=' -i_dynamic' ;;
  4395. efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64
  4396. tmp_addflag=' -i_dynamic -nofor_main' ;;
  4397. ifc* | ifort*) # Intel Fortran compiler
  4398. tmp_addflag=' -nofor_main' ;;
  4399. lf95*) # Lahey Fortran 8.1
  4400. _LT_TAGVAR(whole_archive_flag_spec, $1)=
  4401. tmp_sharedflag='--shared' ;;
  4402. xl[[cC]]* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL C 8.0 on PPC (deal with xlf below)
  4403. tmp_sharedflag='-qmkshrobj'
  4404. tmp_addflag= ;;
  4405. nvcc*) # Cuda Compiler Driver 2.2
  4406. _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive'
  4407. _LT_TAGVAR(compiler_needs_object, $1)=yes
  4408. ;;
  4409. esac
  4410. case `$CC -V 2>&1 | sed 5q` in
  4411. *Sun\ C*) # Sun C 5.9
  4412. _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive'
  4413. _LT_TAGVAR(compiler_needs_object, $1)=yes
  4414. tmp_sharedflag='-G' ;;
  4415. *Sun\ F*) # Sun Fortran 8.3
  4416. tmp_sharedflag='-G' ;;
  4417. esac
  4418. _LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  4419. if test "x$supports_anon_versioning" = xyes; then
  4420. _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~
  4421. cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
  4422. echo "local: *; };" >> $output_objdir/$libname.ver~
  4423. $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'
  4424. fi
  4425. case $cc_basename in
  4426. xlf* | bgf* | bgxlf* | mpixlf*)
  4427. # IBM XL Fortran 10.1 on PPC cannot create shared libs itself
  4428. _LT_TAGVAR(whole_archive_flag_spec, $1)='--whole-archive$convenience --no-whole-archive'
  4429. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
  4430. _LT_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib'
  4431. if test "x$supports_anon_versioning" = xyes; then
  4432. _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~
  4433. cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
  4434. echo "local: *; };" >> $output_objdir/$libname.ver~
  4435. $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib'
  4436. fi
  4437. ;;
  4438. esac
  4439. else
  4440. _LT_TAGVAR(ld_shlibs, $1)=no
  4441. fi
  4442. ;;
  4443. netbsd*)
  4444. if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
  4445. _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'
  4446. wlarc=
  4447. else
  4448. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  4449. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
  4450. fi
  4451. ;;
  4452. solaris*)
  4453. if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then
  4454. _LT_TAGVAR(ld_shlibs, $1)=no
  4455. cat <<_LT_EOF 1>&2
  4456. *** Warning: The releases 2.8.* of the GNU linker cannot reliably
  4457. *** create shared libraries on Solaris systems. Therefore, libtool
  4458. *** is disabling shared libraries support. We urge you to upgrade GNU
  4459. *** binutils to release 2.9.1 or newer. Another option is to modify
  4460. *** your PATH or compiler configuration so that the native linker is
  4461. *** used, and then restart.
  4462. _LT_EOF
  4463. elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
  4464. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  4465. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
  4466. else
  4467. _LT_TAGVAR(ld_shlibs, $1)=no
  4468. fi
  4469. ;;
  4470. sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*)
  4471. case `$LD -v 2>&1` in
  4472. *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*)
  4473. _LT_TAGVAR(ld_shlibs, $1)=no
  4474. cat <<_LT_EOF 1>&2
  4475. *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not
  4476. *** reliably create shared libraries on SCO systems. Therefore, libtool
  4477. *** is disabling shared libraries support. We urge you to upgrade GNU
  4478. *** binutils to release 2.16.91.0.3 or newer. Another option is to modify
  4479. *** your PATH or compiler configuration so that the native linker is
  4480. *** used, and then restart.
  4481. _LT_EOF
  4482. ;;
  4483. *)
  4484. # For security reasons, it is highly recommended that you always
  4485. # use absolute paths for naming shared libraries, and exclude the
  4486. # DT_RUNPATH tag from executables and libraries. But doing so
  4487. # requires that you compile everything twice, which is a pain.
  4488. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
  4489. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
  4490. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  4491. _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'
  4492. else
  4493. _LT_TAGVAR(ld_shlibs, $1)=no
  4494. fi
  4495. ;;
  4496. esac
  4497. ;;
  4498. sunos4*)
  4499. _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags'
  4500. wlarc=
  4501. _LT_TAGVAR(hardcode_direct, $1)=yes
  4502. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  4503. ;;
  4504. *)
  4505. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
  4506. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  4507. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
  4508. else
  4509. _LT_TAGVAR(ld_shlibs, $1)=no
  4510. fi
  4511. ;;
  4512. esac
  4513. if test "$_LT_TAGVAR(ld_shlibs, $1)" = no; then
  4514. runpath_var=
  4515. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=
  4516. _LT_TAGVAR(export_dynamic_flag_spec, $1)=
  4517. _LT_TAGVAR(whole_archive_flag_spec, $1)=
  4518. fi
  4519. else
  4520. # PORTME fill in a description of your system's linker (not GNU ld)
  4521. case $host_os in
  4522. aix3*)
  4523. _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
  4524. _LT_TAGVAR(always_export_symbols, $1)=yes
  4525. _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'
  4526. # Note: this linker hardcodes the directories in LIBPATH if there
  4527. # are no directories specified by -L.
  4528. _LT_TAGVAR(hardcode_minus_L, $1)=yes
  4529. if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then
  4530. # Neither direct hardcoding nor static linking is supported with a
  4531. # broken collect2.
  4532. _LT_TAGVAR(hardcode_direct, $1)=unsupported
  4533. fi
  4534. ;;
  4535. aix[[4-9]]*)
  4536. if test "$host_cpu" = ia64; then
  4537. # On IA64, the linker does run time linking by default, so we don't
  4538. # have to do anything special.
  4539. aix_use_runtimelinking=no
  4540. exp_sym_flag='-Bexport'
  4541. no_entry_flag=""
  4542. else
  4543. # If we're using GNU nm, then we don't want the "-C" option.
  4544. # -C means demangle to AIX nm, but means don't demangle with GNU nm
  4545. # Also, AIX nm treats weak defined symbols like other global
  4546. # defined symbols, whereas GNU nm marks them as "W".
  4547. if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then
  4548. _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols'
  4549. else
  4550. _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'
  4551. fi
  4552. aix_use_runtimelinking=no
  4553. # Test if we are trying to use run time linking or normal
  4554. # AIX style linking. If -brtl is somewhere in LDFLAGS, we
  4555. # need to do runtime linking.
  4556. case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*)
  4557. for ld_flag in $LDFLAGS; do
  4558. if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then
  4559. aix_use_runtimelinking=yes
  4560. break
  4561. fi
  4562. done
  4563. ;;
  4564. esac
  4565. exp_sym_flag='-bexport'
  4566. no_entry_flag='-bnoentry'
  4567. fi
  4568. # When large executables or shared objects are built, AIX ld can
  4569. # have problems creating the table of contents. If linking a library
  4570. # or program results in "error TOC overflow" add -mminimal-toc to
  4571. # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not
  4572. # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.
  4573. _LT_TAGVAR(archive_cmds, $1)=''
  4574. _LT_TAGVAR(hardcode_direct, $1)=yes
  4575. _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
  4576. _LT_TAGVAR(hardcode_libdir_separator, $1)=':'
  4577. _LT_TAGVAR(link_all_deplibs, $1)=yes
  4578. _LT_TAGVAR(file_list_spec, $1)='${wl}-f,'
  4579. if test "$GCC" = yes; then
  4580. case $host_os in aix4.[[012]]|aix4.[[012]].*)
  4581. # We only want to do this on AIX 4.2 and lower, the check
  4582. # below for broken collect2 doesn't work under 4.3+
  4583. collect2name=`${CC} -print-prog-name=collect2`
  4584. if test -f "$collect2name" &&
  4585. strings "$collect2name" | $GREP resolve_lib_name >/dev/null
  4586. then
  4587. # We have reworked collect2
  4588. :
  4589. else
  4590. # We have old collect2
  4591. _LT_TAGVAR(hardcode_direct, $1)=unsupported
  4592. # It fails to find uninstalled libraries when the uninstalled
  4593. # path is not listed in the libpath. Setting hardcode_minus_L
  4594. # to unsupported forces relinking
  4595. _LT_TAGVAR(hardcode_minus_L, $1)=yes
  4596. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
  4597. _LT_TAGVAR(hardcode_libdir_separator, $1)=
  4598. fi
  4599. ;;
  4600. esac
  4601. shared_flag='-shared'
  4602. if test "$aix_use_runtimelinking" = yes; then
  4603. shared_flag="$shared_flag "'${wl}-G'
  4604. fi
  4605. else
  4606. # not using gcc
  4607. if test "$host_cpu" = ia64; then
  4608. # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release
  4609. # chokes on -Wl,-G. The following line is correct:
  4610. shared_flag='-G'
  4611. else
  4612. if test "$aix_use_runtimelinking" = yes; then
  4613. shared_flag='${wl}-G'
  4614. else
  4615. shared_flag='${wl}-bM:SRE'
  4616. fi
  4617. fi
  4618. fi
  4619. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall'
  4620. # It seems that -bexpall does not export symbols beginning with
  4621. # underscore (_), so it is better to generate a list of symbols to export.
  4622. _LT_TAGVAR(always_export_symbols, $1)=yes
  4623. if test "$aix_use_runtimelinking" = yes; then
  4624. # Warning - without using the other runtime loading flags (-brtl),
  4625. # -berok will link without error, but may produce a broken library.
  4626. _LT_TAGVAR(allow_undefined_flag, $1)='-berok'
  4627. # Determine the default libpath from the value encoded in an
  4628. # empty executable.
  4629. _LT_SYS_MODULE_PATH_AIX([$1])
  4630. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
  4631. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag"
  4632. else
  4633. if test "$host_cpu" = ia64; then
  4634. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib'
  4635. _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs"
  4636. _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"
  4637. else
  4638. # Determine the default libpath from the value encoded in an
  4639. # empty executable.
  4640. _LT_SYS_MODULE_PATH_AIX([$1])
  4641. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
  4642. # Warning - without using the other run time loading flags,
  4643. # -berok will link without error, but may produce a broken library.
  4644. _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok'
  4645. _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok'
  4646. if test "$with_gnu_ld" = yes; then
  4647. # We only use this code for GNU lds that support --whole-archive.
  4648. _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive'
  4649. else
  4650. # Exported symbols can be pulled into shared objects from archives
  4651. _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience'
  4652. fi
  4653. _LT_TAGVAR(archive_cmds_need_lc, $1)=yes
  4654. # This is similar to how AIX traditionally builds its shared libraries.
  4655. _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'
  4656. fi
  4657. fi
  4658. ;;
  4659. amigaos*)
  4660. case $host_cpu in
  4661. powerpc)
  4662. # see comment about AmigaOS4 .so support
  4663. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  4664. _LT_TAGVAR(archive_expsym_cmds, $1)=''
  4665. ;;
  4666. m68k)
  4667. _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)'
  4668. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
  4669. _LT_TAGVAR(hardcode_minus_L, $1)=yes
  4670. ;;
  4671. esac
  4672. ;;
  4673. bsdi[[45]]*)
  4674. _LT_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic
  4675. ;;
  4676. cygwin* | mingw* | pw32* | cegcc*)
  4677. # When not using gcc, we currently assume that we are using
  4678. # Microsoft Visual C++.
  4679. # hardcode_libdir_flag_spec is actually meaningless, as there is
  4680. # no search path for DLLs.
  4681. case $cc_basename in
  4682. cl*)
  4683. # Native MSVC
  4684. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' '
  4685. _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
  4686. _LT_TAGVAR(always_export_symbols, $1)=yes
  4687. _LT_TAGVAR(file_list_spec, $1)='@'
  4688. # Tell ltmain to make .lib files, not .a files.
  4689. libext=lib
  4690. # Tell ltmain to make .dll files, not .so files.
  4691. shrext_cmds=".dll"
  4692. # FIXME: Setting linknames here is a bad hack.
  4693. _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames='
  4694. _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
  4695. sed -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp;
  4696. else
  4697. sed -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp;
  4698. fi~
  4699. $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~
  4700. linknames='
  4701. # The linker will not automatically build a static lib if we build a DLL.
  4702. # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true'
  4703. _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
  4704. _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*'
  4705. _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'
  4706. # Don't use ranlib
  4707. _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib'
  4708. _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~
  4709. lt_tool_outputfile="@TOOL_OUTPUT@"~
  4710. case $lt_outputfile in
  4711. *.exe|*.EXE) ;;
  4712. *)
  4713. lt_outputfile="$lt_outputfile.exe"
  4714. lt_tool_outputfile="$lt_tool_outputfile.exe"
  4715. ;;
  4716. esac~
  4717. if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then
  4718. $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1;
  4719. $RM "$lt_outputfile.manifest";
  4720. fi'
  4721. ;;
  4722. *)
  4723. # Assume MSVC wrapper
  4724. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' '
  4725. _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
  4726. # Tell ltmain to make .lib files, not .a files.
  4727. libext=lib
  4728. # Tell ltmain to make .dll files, not .so files.
  4729. shrext_cmds=".dll"
  4730. # FIXME: Setting linknames here is a bad hack.
  4731. _LT_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames='
  4732. # The linker will automatically build a .lib file if we build a DLL.
  4733. _LT_TAGVAR(old_archive_from_new_cmds, $1)='true'
  4734. # FIXME: Should let the user specify the lib program.
  4735. _LT_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs'
  4736. _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
  4737. ;;
  4738. esac
  4739. ;;
  4740. darwin* | rhapsody*)
  4741. _LT_DARWIN_LINKER_FEATURES($1)
  4742. ;;
  4743. dgux*)
  4744. _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
  4745. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
  4746. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  4747. ;;
  4748. # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor
  4749. # support. Future versions do this automatically, but an explicit c++rt0.o
  4750. # does not break anything, and helps significantly (at the cost of a little
  4751. # extra space).
  4752. freebsd2.2*)
  4753. _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o'
  4754. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
  4755. _LT_TAGVAR(hardcode_direct, $1)=yes
  4756. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  4757. ;;
  4758. # Unfortunately, older versions of FreeBSD 2 do not have this feature.
  4759. freebsd2.*)
  4760. _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'
  4761. _LT_TAGVAR(hardcode_direct, $1)=yes
  4762. _LT_TAGVAR(hardcode_minus_L, $1)=yes
  4763. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  4764. ;;
  4765. # FreeBSD 3 and greater uses gcc -shared to do shared libraries.
  4766. freebsd* | dragonfly*)
  4767. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
  4768. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
  4769. _LT_TAGVAR(hardcode_direct, $1)=yes
  4770. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  4771. ;;
  4772. hpux9*)
  4773. if test "$GCC" = yes; then
  4774. _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
  4775. else
  4776. _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'
  4777. fi
  4778. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
  4779. _LT_TAGVAR(hardcode_libdir_separator, $1)=:
  4780. _LT_TAGVAR(hardcode_direct, $1)=yes
  4781. # hardcode_minus_L: Not really in the search PATH,
  4782. # but as the default location of the library.
  4783. _LT_TAGVAR(hardcode_minus_L, $1)=yes
  4784. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
  4785. ;;
  4786. hpux10*)
  4787. if test "$GCC" = yes && test "$with_gnu_ld" = no; then
  4788. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
  4789. else
  4790. _LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'
  4791. fi
  4792. if test "$with_gnu_ld" = no; then
  4793. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
  4794. _LT_TAGVAR(hardcode_libdir_separator, $1)=:
  4795. _LT_TAGVAR(hardcode_direct, $1)=yes
  4796. _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
  4797. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
  4798. # hardcode_minus_L: Not really in the search PATH,
  4799. # but as the default location of the library.
  4800. _LT_TAGVAR(hardcode_minus_L, $1)=yes
  4801. fi
  4802. ;;
  4803. hpux11*)
  4804. if test "$GCC" = yes && test "$with_gnu_ld" = no; then
  4805. case $host_cpu in
  4806. hppa*64*)
  4807. _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
  4808. ;;
  4809. ia64*)
  4810. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'
  4811. ;;
  4812. *)
  4813. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
  4814. ;;
  4815. esac
  4816. else
  4817. case $host_cpu in
  4818. hppa*64*)
  4819. _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
  4820. ;;
  4821. ia64*)
  4822. _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'
  4823. ;;
  4824. *)
  4825. m4_if($1, [], [
  4826. # Older versions of the 11.00 compiler do not understand -b yet
  4827. # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does)
  4828. _LT_LINKER_OPTION([if $CC understands -b],
  4829. _LT_TAGVAR(lt_cv_prog_compiler__b, $1), [-b],
  4830. [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'],
  4831. [_LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'])],
  4832. [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'])
  4833. ;;
  4834. esac
  4835. fi
  4836. if test "$with_gnu_ld" = no; then
  4837. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
  4838. _LT_TAGVAR(hardcode_libdir_separator, $1)=:
  4839. case $host_cpu in
  4840. hppa*64*|ia64*)
  4841. _LT_TAGVAR(hardcode_direct, $1)=no
  4842. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  4843. ;;
  4844. *)
  4845. _LT_TAGVAR(hardcode_direct, $1)=yes
  4846. _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
  4847. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
  4848. # hardcode_minus_L: Not really in the search PATH,
  4849. # but as the default location of the library.
  4850. _LT_TAGVAR(hardcode_minus_L, $1)=yes
  4851. ;;
  4852. esac
  4853. fi
  4854. ;;
  4855. irix5* | irix6* | nonstopux*)
  4856. if test "$GCC" = yes; then
  4857. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
  4858. # Try to use the -exported_symbol ld option, if it does not
  4859. # work, assume that -exports_file does not work either and
  4860. # implicitly export all symbols.
  4861. # This should be the same for all languages, so no per-tag cache variable.
  4862. AC_CACHE_CHECK([whether the $host_os linker accepts -exported_symbol],
  4863. [lt_cv_irix_exported_symbol],
  4864. [save_LDFLAGS="$LDFLAGS"
  4865. LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null"
  4866. AC_LINK_IFELSE(
  4867. [AC_LANG_SOURCE(
  4868. [AC_LANG_CASE([C], [[int foo (void) { return 0; }]],
  4869. [C++], [[int foo (void) { return 0; }]],
  4870. [Fortran 77], [[
  4871. subroutine foo
  4872. end]],
  4873. [Fortran], [[
  4874. subroutine foo
  4875. end]])])],
  4876. [lt_cv_irix_exported_symbol=yes],
  4877. [lt_cv_irix_exported_symbol=no])
  4878. LDFLAGS="$save_LDFLAGS"])
  4879. if test "$lt_cv_irix_exported_symbol" = yes; then
  4880. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib'
  4881. fi
  4882. else
  4883. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib'
  4884. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib'
  4885. fi
  4886. _LT_TAGVAR(archive_cmds_need_lc, $1)='no'
  4887. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
  4888. _LT_TAGVAR(hardcode_libdir_separator, $1)=:
  4889. _LT_TAGVAR(inherit_rpath, $1)=yes
  4890. _LT_TAGVAR(link_all_deplibs, $1)=yes
  4891. ;;
  4892. netbsd*)
  4893. if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
  4894. _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out
  4895. else
  4896. _LT_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF
  4897. fi
  4898. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
  4899. _LT_TAGVAR(hardcode_direct, $1)=yes
  4900. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  4901. ;;
  4902. newsos6)
  4903. _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
  4904. _LT_TAGVAR(hardcode_direct, $1)=yes
  4905. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
  4906. _LT_TAGVAR(hardcode_libdir_separator, $1)=:
  4907. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  4908. ;;
  4909. *nto* | *qnx*)
  4910. ;;
  4911. openbsd*)
  4912. if test -f /usr/libexec/ld.so; then
  4913. _LT_TAGVAR(hardcode_direct, $1)=yes
  4914. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  4915. _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
  4916. if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
  4917. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
  4918. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols'
  4919. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
  4920. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
  4921. else
  4922. case $host_os in
  4923. openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*)
  4924. _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'
  4925. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
  4926. ;;
  4927. *)
  4928. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
  4929. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
  4930. ;;
  4931. esac
  4932. fi
  4933. else
  4934. _LT_TAGVAR(ld_shlibs, $1)=no
  4935. fi
  4936. ;;
  4937. os2*)
  4938. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
  4939. _LT_TAGVAR(hardcode_minus_L, $1)=yes
  4940. _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
  4941. _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'
  4942. _LT_TAGVAR(old_archive_from_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def'
  4943. ;;
  4944. osf3*)
  4945. if test "$GCC" = yes; then
  4946. _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
  4947. _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
  4948. else
  4949. _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*'
  4950. _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib'
  4951. fi
  4952. _LT_TAGVAR(archive_cmds_need_lc, $1)='no'
  4953. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
  4954. _LT_TAGVAR(hardcode_libdir_separator, $1)=:
  4955. ;;
  4956. osf4* | osf5*) # as osf3* with the addition of -msym flag
  4957. if test "$GCC" = yes; then
  4958. _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
  4959. _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $pic_flag $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
  4960. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
  4961. else
  4962. _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*'
  4963. _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib'
  4964. _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~
  4965. $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp'
  4966. # Both c and cxx compiler support -rpath directly
  4967. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'
  4968. fi
  4969. _LT_TAGVAR(archive_cmds_need_lc, $1)='no'
  4970. _LT_TAGVAR(hardcode_libdir_separator, $1)=:
  4971. ;;
  4972. solaris*)
  4973. _LT_TAGVAR(no_undefined_flag, $1)=' -z defs'
  4974. if test "$GCC" = yes; then
  4975. wlarc='${wl}'
  4976. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
  4977. _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
  4978. $CC -shared $pic_flag ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp'
  4979. else
  4980. case `$CC -V 2>&1` in
  4981. *"Compilers 5.0"*)
  4982. wlarc=''
  4983. _LT_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags'
  4984. _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
  4985. $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp'
  4986. ;;
  4987. *)
  4988. wlarc='${wl}'
  4989. _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags'
  4990. _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
  4991. $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp'
  4992. ;;
  4993. esac
  4994. fi
  4995. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
  4996. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  4997. case $host_os in
  4998. solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;
  4999. *)
  5000. # The compiler driver will combine and reorder linker options,
  5001. # but understands `-z linker_flag'. GCC discards it without `$wl',
  5002. # but is careful enough not to reorder.
  5003. # Supported since Solaris 2.6 (maybe 2.5.1?)
  5004. if test "$GCC" = yes; then
  5005. _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract'
  5006. else
  5007. _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract'
  5008. fi
  5009. ;;
  5010. esac
  5011. _LT_TAGVAR(link_all_deplibs, $1)=yes
  5012. ;;
  5013. sunos4*)
  5014. if test "x$host_vendor" = xsequent; then
  5015. # Use $CC to link under sequent, because it throws in some extra .o
  5016. # files that make .init and .fini sections work.
  5017. _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags'
  5018. else
  5019. _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags'
  5020. fi
  5021. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
  5022. _LT_TAGVAR(hardcode_direct, $1)=yes
  5023. _LT_TAGVAR(hardcode_minus_L, $1)=yes
  5024. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  5025. ;;
  5026. sysv4)
  5027. case $host_vendor in
  5028. sni)
  5029. _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
  5030. _LT_TAGVAR(hardcode_direct, $1)=yes # is this really true???
  5031. ;;
  5032. siemens)
  5033. ## LD is ld it makes a PLAMLIB
  5034. ## CC just makes a GrossModule.
  5035. _LT_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags'
  5036. _LT_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs'
  5037. _LT_TAGVAR(hardcode_direct, $1)=no
  5038. ;;
  5039. motorola)
  5040. _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
  5041. _LT_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie
  5042. ;;
  5043. esac
  5044. runpath_var='LD_RUN_PATH'
  5045. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  5046. ;;
  5047. sysv4.3*)
  5048. _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
  5049. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  5050. _LT_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport'
  5051. ;;
  5052. sysv4*MP*)
  5053. if test -d /usr/nec; then
  5054. _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
  5055. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  5056. runpath_var=LD_RUN_PATH
  5057. hardcode_runpath_var=yes
  5058. _LT_TAGVAR(ld_shlibs, $1)=yes
  5059. fi
  5060. ;;
  5061. sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*)
  5062. _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text'
  5063. _LT_TAGVAR(archive_cmds_need_lc, $1)=no
  5064. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  5065. runpath_var='LD_RUN_PATH'
  5066. if test "$GCC" = yes; then
  5067. _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
  5068. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
  5069. else
  5070. _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
  5071. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
  5072. fi
  5073. ;;
  5074. sysv5* | sco3.2v5* | sco5v6*)
  5075. # Note: We can NOT use -z defs as we might desire, because we do not
  5076. # link with -lc, and that would cause any symbols used from libc to
  5077. # always be unresolved, which means just about no library would
  5078. # ever link correctly. If we're not using GNU ld we use -z text
  5079. # though, which does catch some bad symbols but isn't as heavy-handed
  5080. # as -z defs.
  5081. _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text'
  5082. _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs'
  5083. _LT_TAGVAR(archive_cmds_need_lc, $1)=no
  5084. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  5085. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir'
  5086. _LT_TAGVAR(hardcode_libdir_separator, $1)=':'
  5087. _LT_TAGVAR(link_all_deplibs, $1)=yes
  5088. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport'
  5089. runpath_var='LD_RUN_PATH'
  5090. if test "$GCC" = yes; then
  5091. _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
  5092. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
  5093. else
  5094. _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
  5095. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
  5096. fi
  5097. ;;
  5098. uts4*)
  5099. _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
  5100. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
  5101. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  5102. ;;
  5103. *)
  5104. _LT_TAGVAR(ld_shlibs, $1)=no
  5105. ;;
  5106. esac
  5107. if test x$host_vendor = xsni; then
  5108. case $host in
  5109. sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
  5110. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Blargedynsym'
  5111. ;;
  5112. esac
  5113. fi
  5114. fi
  5115. ])
  5116. AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)])
  5117. test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no
  5118. _LT_TAGVAR(with_gnu_ld, $1)=$with_gnu_ld
  5119. _LT_DECL([], [libext], [0], [Old archive suffix (normally "a")])dnl
  5120. _LT_DECL([], [shrext_cmds], [1], [Shared library suffix (normally ".so")])dnl
  5121. _LT_DECL([], [extract_expsyms_cmds], [2],
  5122. [The commands to extract the exported symbol list from a shared archive])
  5123. #
  5124. # Do we need to explicitly link libc?
  5125. #
  5126. case "x$_LT_TAGVAR(archive_cmds_need_lc, $1)" in
  5127. x|xyes)
  5128. # Assume -lc should be added
  5129. _LT_TAGVAR(archive_cmds_need_lc, $1)=yes
  5130. if test "$enable_shared" = yes && test "$GCC" = yes; then
  5131. case $_LT_TAGVAR(archive_cmds, $1) in
  5132. *'~'*)
  5133. # FIXME: we may have to deal with multi-command sequences.
  5134. ;;
  5135. '$CC '*)
  5136. # Test whether the compiler implicitly links with -lc since on some
  5137. # systems, -lgcc has to come before -lc. If gcc already passes -lc
  5138. # to ld, don't add -lc before -lgcc.
  5139. AC_CACHE_CHECK([whether -lc should be explicitly linked in],
  5140. [lt_cv_]_LT_TAGVAR(archive_cmds_need_lc, $1),
  5141. [$RM conftest*
  5142. echo "$lt_simple_compile_test_code" > conftest.$ac_ext
  5143. if AC_TRY_EVAL(ac_compile) 2>conftest.err; then
  5144. soname=conftest
  5145. lib=conftest
  5146. libobjs=conftest.$ac_objext
  5147. deplibs=
  5148. wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1)
  5149. pic_flag=$_LT_TAGVAR(lt_prog_compiler_pic, $1)
  5150. compiler_flags=-v
  5151. linker_flags=-v
  5152. verstring=
  5153. output_objdir=.
  5154. libname=conftest
  5155. lt_save_allow_undefined_flag=$_LT_TAGVAR(allow_undefined_flag, $1)
  5156. _LT_TAGVAR(allow_undefined_flag, $1)=
  5157. if AC_TRY_EVAL(_LT_TAGVAR(archive_cmds, $1) 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1)
  5158. then
  5159. lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=no
  5160. else
  5161. lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=yes
  5162. fi
  5163. _LT_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag
  5164. else
  5165. cat conftest.err 1>&5
  5166. fi
  5167. $RM conftest*
  5168. ])
  5169. _LT_TAGVAR(archive_cmds_need_lc, $1)=$lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)
  5170. ;;
  5171. esac
  5172. fi
  5173. ;;
  5174. esac
  5175. _LT_TAGDECL([build_libtool_need_lc], [archive_cmds_need_lc], [0],
  5176. [Whether or not to add -lc for building shared libraries])
  5177. _LT_TAGDECL([allow_libtool_libs_with_static_runtimes],
  5178. [enable_shared_with_static_runtimes], [0],
  5179. [Whether or not to disallow shared libs when runtime libs are static])
  5180. _LT_TAGDECL([], [export_dynamic_flag_spec], [1],
  5181. [Compiler flag to allow reflexive dlopens])
  5182. _LT_TAGDECL([], [whole_archive_flag_spec], [1],
  5183. [Compiler flag to generate shared objects directly from archives])
  5184. _LT_TAGDECL([], [compiler_needs_object], [1],
  5185. [Whether the compiler copes with passing no objects directly])
  5186. _LT_TAGDECL([], [old_archive_from_new_cmds], [2],
  5187. [Create an old-style archive from a shared archive])
  5188. _LT_TAGDECL([], [old_archive_from_expsyms_cmds], [2],
  5189. [Create a temporary old-style archive to link instead of a shared archive])
  5190. _LT_TAGDECL([], [archive_cmds], [2], [Commands used to build a shared archive])
  5191. _LT_TAGDECL([], [archive_expsym_cmds], [2])
  5192. _LT_TAGDECL([], [module_cmds], [2],
  5193. [Commands used to build a loadable module if different from building
  5194. a shared archive.])
  5195. _LT_TAGDECL([], [module_expsym_cmds], [2])
  5196. _LT_TAGDECL([], [with_gnu_ld], [1],
  5197. [Whether we are building with GNU ld or not])
  5198. _LT_TAGDECL([], [allow_undefined_flag], [1],
  5199. [Flag that allows shared libraries with undefined symbols to be built])
  5200. _LT_TAGDECL([], [no_undefined_flag], [1],
  5201. [Flag that enforces no undefined symbols])
  5202. _LT_TAGDECL([], [hardcode_libdir_flag_spec], [1],
  5203. [Flag to hardcode $libdir into a binary during linking.
  5204. This must work even if $libdir does not exist])
  5205. _LT_TAGDECL([], [hardcode_libdir_separator], [1],
  5206. [Whether we need a single "-rpath" flag with a separated argument])
  5207. _LT_TAGDECL([], [hardcode_direct], [0],
  5208. [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes
  5209. DIR into the resulting binary])
  5210. _LT_TAGDECL([], [hardcode_direct_absolute], [0],
  5211. [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes
  5212. DIR into the resulting binary and the resulting library dependency is
  5213. "absolute", i.e impossible to change by setting ${shlibpath_var} if the
  5214. library is relocated])
  5215. _LT_TAGDECL([], [hardcode_minus_L], [0],
  5216. [Set to "yes" if using the -LDIR flag during linking hardcodes DIR
  5217. into the resulting binary])
  5218. _LT_TAGDECL([], [hardcode_shlibpath_var], [0],
  5219. [Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR
  5220. into the resulting binary])
  5221. _LT_TAGDECL([], [hardcode_automatic], [0],
  5222. [Set to "yes" if building a shared library automatically hardcodes DIR
  5223. into the library and all subsequent libraries and executables linked
  5224. against it])
  5225. _LT_TAGDECL([], [inherit_rpath], [0],
  5226. [Set to yes if linker adds runtime paths of dependent libraries
  5227. to runtime path list])
  5228. _LT_TAGDECL([], [link_all_deplibs], [0],
  5229. [Whether libtool must link a program against all its dependency libraries])
  5230. _LT_TAGDECL([], [always_export_symbols], [0],
  5231. [Set to "yes" if exported symbols are required])
  5232. _LT_TAGDECL([], [export_symbols_cmds], [2],
  5233. [The commands to list exported symbols])
  5234. _LT_TAGDECL([], [exclude_expsyms], [1],
  5235. [Symbols that should not be listed in the preloaded symbols])
  5236. _LT_TAGDECL([], [include_expsyms], [1],
  5237. [Symbols that must always be exported])
  5238. _LT_TAGDECL([], [prelink_cmds], [2],
  5239. [Commands necessary for linking programs (against libraries) with templates])
  5240. _LT_TAGDECL([], [postlink_cmds], [2],
  5241. [Commands necessary for finishing linking programs])
  5242. _LT_TAGDECL([], [file_list_spec], [1],
  5243. [Specify filename containing input files])
  5244. dnl FIXME: Not yet implemented
  5245. dnl _LT_TAGDECL([], [thread_safe_flag_spec], [1],
  5246. dnl [Compiler flag to generate thread safe objects])
  5247. ])# _LT_LINKER_SHLIBS
  5248. # _LT_LANG_C_CONFIG([TAG])
  5249. # ------------------------
  5250. # Ensure that the configuration variables for a C compiler are suitably
  5251. # defined. These variables are subsequently used by _LT_CONFIG to write
  5252. # the compiler configuration to `libtool'.
  5253. m4_defun([_LT_LANG_C_CONFIG],
  5254. [m4_require([_LT_DECL_EGREP])dnl
  5255. lt_save_CC="$CC"
  5256. AC_LANG_PUSH(C)
  5257. # Source file extension for C test sources.
  5258. ac_ext=c
  5259. # Object file extension for compiled C test sources.
  5260. objext=o
  5261. _LT_TAGVAR(objext, $1)=$objext
  5262. # Code to be used in simple compile tests
  5263. lt_simple_compile_test_code="int some_variable = 0;"
  5264. # Code to be used in simple link tests
  5265. lt_simple_link_test_code='int main(){return(0);}'
  5266. _LT_TAG_COMPILER
  5267. # Save the default compiler, since it gets overwritten when the other
  5268. # tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP.
  5269. compiler_DEFAULT=$CC
  5270. # save warnings/boilerplate of simple test code
  5271. _LT_COMPILER_BOILERPLATE
  5272. _LT_LINKER_BOILERPLATE
  5273. if test -n "$compiler"; then
  5274. _LT_COMPILER_NO_RTTI($1)
  5275. _LT_COMPILER_PIC($1)
  5276. _LT_COMPILER_C_O($1)
  5277. _LT_COMPILER_FILE_LOCKS($1)
  5278. _LT_LINKER_SHLIBS($1)
  5279. _LT_SYS_DYNAMIC_LINKER($1)
  5280. _LT_LINKER_HARDCODE_LIBPATH($1)
  5281. LT_SYS_DLOPEN_SELF
  5282. _LT_CMD_STRIPLIB
  5283. # Report which library types will actually be built
  5284. AC_MSG_CHECKING([if libtool supports shared libraries])
  5285. AC_MSG_RESULT([$can_build_shared])
  5286. AC_MSG_CHECKING([whether to build shared libraries])
  5287. test "$can_build_shared" = "no" && enable_shared=no
  5288. # On AIX, shared libraries and static libraries use the same namespace, and
  5289. # are all built from PIC.
  5290. case $host_os in
  5291. aix3*)
  5292. test "$enable_shared" = yes && enable_static=no
  5293. if test -n "$RANLIB"; then
  5294. archive_cmds="$archive_cmds~\$RANLIB \$lib"
  5295. postinstall_cmds='$RANLIB $lib'
  5296. fi
  5297. ;;
  5298. aix[[4-9]]*)
  5299. if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
  5300. test "$enable_shared" = yes && enable_static=no
  5301. fi
  5302. ;;
  5303. esac
  5304. AC_MSG_RESULT([$enable_shared])
  5305. AC_MSG_CHECKING([whether to build static libraries])
  5306. # Make sure either enable_shared or enable_static is yes.
  5307. test "$enable_shared" = yes || enable_static=yes
  5308. AC_MSG_RESULT([$enable_static])
  5309. _LT_CONFIG($1)
  5310. fi
  5311. AC_LANG_POP
  5312. CC="$lt_save_CC"
  5313. ])# _LT_LANG_C_CONFIG
  5314. # _LT_LANG_CXX_CONFIG([TAG])
  5315. # --------------------------
  5316. # Ensure that the configuration variables for a C++ compiler are suitably
  5317. # defined. These variables are subsequently used by _LT_CONFIG to write
  5318. # the compiler configuration to `libtool'.
  5319. m4_defun([_LT_LANG_CXX_CONFIG],
  5320. [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
  5321. m4_require([_LT_DECL_EGREP])dnl
  5322. m4_require([_LT_PATH_MANIFEST_TOOL])dnl
  5323. if test -n "$CXX" && ( test "X$CXX" != "Xno" &&
  5324. ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) ||
  5325. (test "X$CXX" != "Xg++"))) ; then
  5326. AC_PROG_CXXCPP
  5327. else
  5328. _lt_caught_CXX_error=yes
  5329. fi
  5330. AC_LANG_PUSH(C++)
  5331. _LT_TAGVAR(archive_cmds_need_lc, $1)=no
  5332. _LT_TAGVAR(allow_undefined_flag, $1)=
  5333. _LT_TAGVAR(always_export_symbols, $1)=no
  5334. _LT_TAGVAR(archive_expsym_cmds, $1)=
  5335. _LT_TAGVAR(compiler_needs_object, $1)=no
  5336. _LT_TAGVAR(export_dynamic_flag_spec, $1)=
  5337. _LT_TAGVAR(hardcode_direct, $1)=no
  5338. _LT_TAGVAR(hardcode_direct_absolute, $1)=no
  5339. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=
  5340. _LT_TAGVAR(hardcode_libdir_separator, $1)=
  5341. _LT_TAGVAR(hardcode_minus_L, $1)=no
  5342. _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
  5343. _LT_TAGVAR(hardcode_automatic, $1)=no
  5344. _LT_TAGVAR(inherit_rpath, $1)=no
  5345. _LT_TAGVAR(module_cmds, $1)=
  5346. _LT_TAGVAR(module_expsym_cmds, $1)=
  5347. _LT_TAGVAR(link_all_deplibs, $1)=unknown
  5348. _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
  5349. _LT_TAGVAR(reload_flag, $1)=$reload_flag
  5350. _LT_TAGVAR(reload_cmds, $1)=$reload_cmds
  5351. _LT_TAGVAR(no_undefined_flag, $1)=
  5352. _LT_TAGVAR(whole_archive_flag_spec, $1)=
  5353. _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no
  5354. # Source file extension for C++ test sources.
  5355. ac_ext=cpp
  5356. # Object file extension for compiled C++ test sources.
  5357. objext=o
  5358. _LT_TAGVAR(objext, $1)=$objext
  5359. # No sense in running all these tests if we already determined that
  5360. # the CXX compiler isn't working. Some variables (like enable_shared)
  5361. # are currently assumed to apply to all compilers on this platform,
  5362. # and will be corrupted by setting them based on a non-working compiler.
  5363. if test "$_lt_caught_CXX_error" != yes; then
  5364. # Code to be used in simple compile tests
  5365. lt_simple_compile_test_code="int some_variable = 0;"
  5366. # Code to be used in simple link tests
  5367. lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }'
  5368. # ltmain only uses $CC for tagged configurations so make sure $CC is set.
  5369. _LT_TAG_COMPILER
  5370. # save warnings/boilerplate of simple test code
  5371. _LT_COMPILER_BOILERPLATE
  5372. _LT_LINKER_BOILERPLATE
  5373. # Allow CC to be a program name with arguments.
  5374. lt_save_CC=$CC
  5375. lt_save_CFLAGS=$CFLAGS
  5376. lt_save_LD=$LD
  5377. lt_save_GCC=$GCC
  5378. GCC=$GXX
  5379. lt_save_with_gnu_ld=$with_gnu_ld
  5380. lt_save_path_LD=$lt_cv_path_LD
  5381. if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then
  5382. lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx
  5383. else
  5384. $as_unset lt_cv_prog_gnu_ld
  5385. fi
  5386. if test -n "${lt_cv_path_LDCXX+set}"; then
  5387. lt_cv_path_LD=$lt_cv_path_LDCXX
  5388. else
  5389. $as_unset lt_cv_path_LD
  5390. fi
  5391. test -z "${LDCXX+set}" || LD=$LDCXX
  5392. CC=${CXX-"c++"}
  5393. CFLAGS=$CXXFLAGS
  5394. compiler=$CC
  5395. _LT_TAGVAR(compiler, $1)=$CC
  5396. _LT_CC_BASENAME([$compiler])
  5397. if test -n "$compiler"; then
  5398. # We don't want -fno-exception when compiling C++ code, so set the
  5399. # no_builtin_flag separately
  5400. if test "$GXX" = yes; then
  5401. _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin'
  5402. else
  5403. _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=
  5404. fi
  5405. if test "$GXX" = yes; then
  5406. # Set up default GNU C++ configuration
  5407. LT_PATH_LD
  5408. # Check if GNU C++ uses GNU ld as the underlying linker, since the
  5409. # archiving commands below assume that GNU ld is being used.
  5410. if test "$with_gnu_ld" = yes; then
  5411. _LT_TAGVAR(archive_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
  5412. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
  5413. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
  5414. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
  5415. # If archive_cmds runs LD, not CC, wlarc should be empty
  5416. # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to
  5417. # investigate it a little bit more. (MM)
  5418. wlarc='${wl}'
  5419. # ancient GNU ld didn't support --whole-archive et. al.
  5420. if eval "`$CC -print-prog-name=ld` --help 2>&1" |
  5421. $GREP 'no-whole-archive' > /dev/null; then
  5422. _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
  5423. else
  5424. _LT_TAGVAR(whole_archive_flag_spec, $1)=
  5425. fi
  5426. else
  5427. with_gnu_ld=no
  5428. wlarc=
  5429. # A generic and very simple default shared library creation
  5430. # command for GNU C++ for the case where it uses the native
  5431. # linker, instead of GNU ld. If possible, this setting should
  5432. # overridden to take advantage of the native linker features on
  5433. # the platform it is being used on.
  5434. _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib'
  5435. fi
  5436. # Commands to make compiler produce verbose output that lists
  5437. # what "hidden" libraries, object files and flags are used when
  5438. # linking a shared library.
  5439. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"'
  5440. else
  5441. GXX=no
  5442. with_gnu_ld=no
  5443. wlarc=
  5444. fi
  5445. # PORTME: fill in a description of your system's C++ link characteristics
  5446. AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries])
  5447. _LT_TAGVAR(ld_shlibs, $1)=yes
  5448. case $host_os in
  5449. aix3*)
  5450. # FIXME: insert proper C++ library support
  5451. _LT_TAGVAR(ld_shlibs, $1)=no
  5452. ;;
  5453. aix[[4-9]]*)
  5454. if test "$host_cpu" = ia64; then
  5455. # On IA64, the linker does run time linking by default, so we don't
  5456. # have to do anything special.
  5457. aix_use_runtimelinking=no
  5458. exp_sym_flag='-Bexport'
  5459. no_entry_flag=""
  5460. else
  5461. aix_use_runtimelinking=no
  5462. # Test if we are trying to use run time linking or normal
  5463. # AIX style linking. If -brtl is somewhere in LDFLAGS, we
  5464. # need to do runtime linking.
  5465. case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*)
  5466. for ld_flag in $LDFLAGS; do
  5467. case $ld_flag in
  5468. *-brtl*)
  5469. aix_use_runtimelinking=yes
  5470. break
  5471. ;;
  5472. esac
  5473. done
  5474. ;;
  5475. esac
  5476. exp_sym_flag='-bexport'
  5477. no_entry_flag='-bnoentry'
  5478. fi
  5479. # When large executables or shared objects are built, AIX ld can
  5480. # have problems creating the table of contents. If linking a library
  5481. # or program results in "error TOC overflow" add -mminimal-toc to
  5482. # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not
  5483. # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.
  5484. _LT_TAGVAR(archive_cmds, $1)=''
  5485. _LT_TAGVAR(hardcode_direct, $1)=yes
  5486. _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
  5487. _LT_TAGVAR(hardcode_libdir_separator, $1)=':'
  5488. _LT_TAGVAR(link_all_deplibs, $1)=yes
  5489. _LT_TAGVAR(file_list_spec, $1)='${wl}-f,'
  5490. if test "$GXX" = yes; then
  5491. case $host_os in aix4.[[012]]|aix4.[[012]].*)
  5492. # We only want to do this on AIX 4.2 and lower, the check
  5493. # below for broken collect2 doesn't work under 4.3+
  5494. collect2name=`${CC} -print-prog-name=collect2`
  5495. if test -f "$collect2name" &&
  5496. strings "$collect2name" | $GREP resolve_lib_name >/dev/null
  5497. then
  5498. # We have reworked collect2
  5499. :
  5500. else
  5501. # We have old collect2
  5502. _LT_TAGVAR(hardcode_direct, $1)=unsupported
  5503. # It fails to find uninstalled libraries when the uninstalled
  5504. # path is not listed in the libpath. Setting hardcode_minus_L
  5505. # to unsupported forces relinking
  5506. _LT_TAGVAR(hardcode_minus_L, $1)=yes
  5507. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
  5508. _LT_TAGVAR(hardcode_libdir_separator, $1)=
  5509. fi
  5510. esac
  5511. shared_flag='-shared'
  5512. if test "$aix_use_runtimelinking" = yes; then
  5513. shared_flag="$shared_flag "'${wl}-G'
  5514. fi
  5515. else
  5516. # not using gcc
  5517. if test "$host_cpu" = ia64; then
  5518. # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release
  5519. # chokes on -Wl,-G. The following line is correct:
  5520. shared_flag='-G'
  5521. else
  5522. if test "$aix_use_runtimelinking" = yes; then
  5523. shared_flag='${wl}-G'
  5524. else
  5525. shared_flag='${wl}-bM:SRE'
  5526. fi
  5527. fi
  5528. fi
  5529. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall'
  5530. # It seems that -bexpall does not export symbols beginning with
  5531. # underscore (_), so it is better to generate a list of symbols to
  5532. # export.
  5533. _LT_TAGVAR(always_export_symbols, $1)=yes
  5534. if test "$aix_use_runtimelinking" = yes; then
  5535. # Warning - without using the other runtime loading flags (-brtl),
  5536. # -berok will link without error, but may produce a broken library.
  5537. _LT_TAGVAR(allow_undefined_flag, $1)='-berok'
  5538. # Determine the default libpath from the value encoded in an empty
  5539. # executable.
  5540. _LT_SYS_MODULE_PATH_AIX([$1])
  5541. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
  5542. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag"
  5543. else
  5544. if test "$host_cpu" = ia64; then
  5545. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib'
  5546. _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs"
  5547. _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"
  5548. else
  5549. # Determine the default libpath from the value encoded in an
  5550. # empty executable.
  5551. _LT_SYS_MODULE_PATH_AIX([$1])
  5552. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
  5553. # Warning - without using the other run time loading flags,
  5554. # -berok will link without error, but may produce a broken library.
  5555. _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok'
  5556. _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok'
  5557. if test "$with_gnu_ld" = yes; then
  5558. # We only use this code for GNU lds that support --whole-archive.
  5559. _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive'
  5560. else
  5561. # Exported symbols can be pulled into shared objects from archives
  5562. _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience'
  5563. fi
  5564. _LT_TAGVAR(archive_cmds_need_lc, $1)=yes
  5565. # This is similar to how AIX traditionally builds its shared
  5566. # libraries.
  5567. _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'
  5568. fi
  5569. fi
  5570. ;;
  5571. beos*)
  5572. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
  5573. _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
  5574. # Joseph Beckenbach <jrb3@best.com> says some releases of gcc
  5575. # support --undefined. This deserves some investigation. FIXME
  5576. _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  5577. else
  5578. _LT_TAGVAR(ld_shlibs, $1)=no
  5579. fi
  5580. ;;
  5581. chorus*)
  5582. case $cc_basename in
  5583. *)
  5584. # FIXME: insert proper C++ library support
  5585. _LT_TAGVAR(ld_shlibs, $1)=no
  5586. ;;
  5587. esac
  5588. ;;
  5589. cygwin* | mingw* | pw32* | cegcc*)
  5590. case $GXX,$cc_basename in
  5591. ,cl* | no,cl*)
  5592. # Native MSVC
  5593. # hardcode_libdir_flag_spec is actually meaningless, as there is
  5594. # no search path for DLLs.
  5595. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' '
  5596. _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
  5597. _LT_TAGVAR(always_export_symbols, $1)=yes
  5598. _LT_TAGVAR(file_list_spec, $1)='@'
  5599. # Tell ltmain to make .lib files, not .a files.
  5600. libext=lib
  5601. # Tell ltmain to make .dll files, not .so files.
  5602. shrext_cmds=".dll"
  5603. # FIXME: Setting linknames here is a bad hack.
  5604. _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-dll~linknames='
  5605. _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
  5606. $SED -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp;
  5607. else
  5608. $SED -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $export_symbols > $output_objdir/$soname.exp;
  5609. fi~
  5610. $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~
  5611. linknames='
  5612. # The linker will not automatically build a static lib if we build a DLL.
  5613. # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true'
  5614. _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
  5615. # Don't use ranlib
  5616. _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib'
  5617. _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~
  5618. lt_tool_outputfile="@TOOL_OUTPUT@"~
  5619. case $lt_outputfile in
  5620. *.exe|*.EXE) ;;
  5621. *)
  5622. lt_outputfile="$lt_outputfile.exe"
  5623. lt_tool_outputfile="$lt_tool_outputfile.exe"
  5624. ;;
  5625. esac~
  5626. func_to_tool_file "$lt_outputfile"~
  5627. if test "$MANIFEST_TOOL" != ":" && test -f "$lt_outputfile.manifest"; then
  5628. $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1;
  5629. $RM "$lt_outputfile.manifest";
  5630. fi'
  5631. ;;
  5632. *)
  5633. # g++
  5634. # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless,
  5635. # as there is no search path for DLLs.
  5636. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
  5637. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols'
  5638. _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
  5639. _LT_TAGVAR(always_export_symbols, $1)=no
  5640. _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
  5641. if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then
  5642. _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'
  5643. # If the export-symbols file already is a .def file (1st line
  5644. # is EXPORTS), use it as is; otherwise, prepend...
  5645. _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
  5646. cp $export_symbols $output_objdir/$soname.def;
  5647. else
  5648. echo EXPORTS > $output_objdir/$soname.def;
  5649. cat $export_symbols >> $output_objdir/$soname.def;
  5650. fi~
  5651. $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'
  5652. else
  5653. _LT_TAGVAR(ld_shlibs, $1)=no
  5654. fi
  5655. ;;
  5656. esac
  5657. ;;
  5658. darwin* | rhapsody*)
  5659. _LT_DARWIN_LINKER_FEATURES($1)
  5660. ;;
  5661. dgux*)
  5662. case $cc_basename in
  5663. ec++*)
  5664. # FIXME: insert proper C++ library support
  5665. _LT_TAGVAR(ld_shlibs, $1)=no
  5666. ;;
  5667. ghcx*)
  5668. # Green Hills C++ Compiler
  5669. # FIXME: insert proper C++ library support
  5670. _LT_TAGVAR(ld_shlibs, $1)=no
  5671. ;;
  5672. *)
  5673. # FIXME: insert proper C++ library support
  5674. _LT_TAGVAR(ld_shlibs, $1)=no
  5675. ;;
  5676. esac
  5677. ;;
  5678. freebsd2.*)
  5679. # C++ shared libraries reported to be fairly broken before
  5680. # switch to ELF
  5681. _LT_TAGVAR(ld_shlibs, $1)=no
  5682. ;;
  5683. freebsd-elf*)
  5684. _LT_TAGVAR(archive_cmds_need_lc, $1)=no
  5685. ;;
  5686. freebsd* | dragonfly*)
  5687. # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF
  5688. # conventions
  5689. _LT_TAGVAR(ld_shlibs, $1)=yes
  5690. ;;
  5691. gnu*)
  5692. ;;
  5693. haiku*)
  5694. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  5695. _LT_TAGVAR(link_all_deplibs, $1)=yes
  5696. ;;
  5697. hpux9*)
  5698. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
  5699. _LT_TAGVAR(hardcode_libdir_separator, $1)=:
  5700. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
  5701. _LT_TAGVAR(hardcode_direct, $1)=yes
  5702. _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH,
  5703. # but as the default
  5704. # location of the library.
  5705. case $cc_basename in
  5706. CC*)
  5707. # FIXME: insert proper C++ library support
  5708. _LT_TAGVAR(ld_shlibs, $1)=no
  5709. ;;
  5710. aCC*)
  5711. _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'
  5712. # Commands to make compiler produce verbose output that lists
  5713. # what "hidden" libraries, object files and flags are used when
  5714. # linking a shared library.
  5715. #
  5716. # There doesn't appear to be a way to prevent this compiler from
  5717. # explicitly linking system object files so we need to strip them
  5718. # from the output so that they don't get included in the library
  5719. # dependencies.
  5720. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"'
  5721. ;;
  5722. *)
  5723. if test "$GXX" = yes; then
  5724. _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
  5725. else
  5726. # FIXME: insert proper C++ library support
  5727. _LT_TAGVAR(ld_shlibs, $1)=no
  5728. fi
  5729. ;;
  5730. esac
  5731. ;;
  5732. hpux10*|hpux11*)
  5733. if test $with_gnu_ld = no; then
  5734. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
  5735. _LT_TAGVAR(hardcode_libdir_separator, $1)=:
  5736. case $host_cpu in
  5737. hppa*64*|ia64*)
  5738. ;;
  5739. *)
  5740. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
  5741. ;;
  5742. esac
  5743. fi
  5744. case $host_cpu in
  5745. hppa*64*|ia64*)
  5746. _LT_TAGVAR(hardcode_direct, $1)=no
  5747. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  5748. ;;
  5749. *)
  5750. _LT_TAGVAR(hardcode_direct, $1)=yes
  5751. _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
  5752. _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH,
  5753. # but as the default
  5754. # location of the library.
  5755. ;;
  5756. esac
  5757. case $cc_basename in
  5758. CC*)
  5759. # FIXME: insert proper C++ library support
  5760. _LT_TAGVAR(ld_shlibs, $1)=no
  5761. ;;
  5762. aCC*)
  5763. case $host_cpu in
  5764. hppa*64*)
  5765. _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
  5766. ;;
  5767. ia64*)
  5768. _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
  5769. ;;
  5770. *)
  5771. _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'
  5772. ;;
  5773. esac
  5774. # Commands to make compiler produce verbose output that lists
  5775. # what "hidden" libraries, object files and flags are used when
  5776. # linking a shared library.
  5777. #
  5778. # There doesn't appear to be a way to prevent this compiler from
  5779. # explicitly linking system object files so we need to strip them
  5780. # from the output so that they don't get included in the library
  5781. # dependencies.
  5782. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"'
  5783. ;;
  5784. *)
  5785. if test "$GXX" = yes; then
  5786. if test $with_gnu_ld = no; then
  5787. case $host_cpu in
  5788. hppa*64*)
  5789. _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
  5790. ;;
  5791. ia64*)
  5792. _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
  5793. ;;
  5794. *)
  5795. _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
  5796. ;;
  5797. esac
  5798. fi
  5799. else
  5800. # FIXME: insert proper C++ library support
  5801. _LT_TAGVAR(ld_shlibs, $1)=no
  5802. fi
  5803. ;;
  5804. esac
  5805. ;;
  5806. interix[[3-9]]*)
  5807. _LT_TAGVAR(hardcode_direct, $1)=no
  5808. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  5809. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
  5810. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
  5811. # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc.
  5812. # Instead, shared libraries are loaded at an image base (0x10000000 by
  5813. # default) and relocated if they conflict, which is a slow very memory
  5814. # consuming and fragmenting process. To avoid this, we pick a random,
  5815. # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link
  5816. # time. Moving up from 0x10000000 also allows more sbrk(2) space.
  5817. _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'
  5818. _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'
  5819. ;;
  5820. irix5* | irix6*)
  5821. case $cc_basename in
  5822. CC*)
  5823. # SGI C++
  5824. _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib'
  5825. # Archives containing C++ object files must be created using
  5826. # "CC -ar", where "CC" is the IRIX C++ compiler. This is
  5827. # necessary to make sure instantiated templates are included
  5828. # in the archive.
  5829. _LT_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs'
  5830. ;;
  5831. *)
  5832. if test "$GXX" = yes; then
  5833. if test "$with_gnu_ld" = no; then
  5834. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
  5835. else
  5836. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` -o $lib'
  5837. fi
  5838. fi
  5839. _LT_TAGVAR(link_all_deplibs, $1)=yes
  5840. ;;
  5841. esac
  5842. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
  5843. _LT_TAGVAR(hardcode_libdir_separator, $1)=:
  5844. _LT_TAGVAR(inherit_rpath, $1)=yes
  5845. ;;
  5846. linux* | k*bsd*-gnu | kopensolaris*-gnu)
  5847. case $cc_basename in
  5848. KCC*)
  5849. # Kuck and Associates, Inc. (KAI) C++ Compiler
  5850. # KCC will only create a shared library if the output file
  5851. # ends with ".so" (or ".sl" for HP-UX), so rename the library
  5852. # to its proper name (with version) after linking.
  5853. _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'
  5854. _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'
  5855. # Commands to make compiler produce verbose output that lists
  5856. # what "hidden" libraries, object files and flags are used when
  5857. # linking a shared library.
  5858. #
  5859. # There doesn't appear to be a way to prevent this compiler from
  5860. # explicitly linking system object files so we need to strip them
  5861. # from the output so that they don't get included in the library
  5862. # dependencies.
  5863. output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"'
  5864. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
  5865. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
  5866. # Archives containing C++ object files must be created using
  5867. # "CC -Bstatic", where "CC" is the KAI C++ compiler.
  5868. _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs'
  5869. ;;
  5870. icpc* | ecpc* )
  5871. # Intel C++
  5872. with_gnu_ld=yes
  5873. # version 8.0 and above of icpc choke on multiply defined symbols
  5874. # if we add $predep_objects and $postdep_objects, however 7.1 and
  5875. # earlier do not add the objects themselves.
  5876. case `$CC -V 2>&1` in
  5877. *"Version 7."*)
  5878. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
  5879. _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'
  5880. ;;
  5881. *) # Version 8.0 or newer
  5882. tmp_idyn=
  5883. case $host_cpu in
  5884. ia64*) tmp_idyn=' -i_dynamic';;
  5885. esac
  5886. _LT_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  5887. _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'
  5888. ;;
  5889. esac
  5890. _LT_TAGVAR(archive_cmds_need_lc, $1)=no
  5891. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
  5892. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
  5893. _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive'
  5894. ;;
  5895. pgCC* | pgcpp*)
  5896. # Portland Group C++ compiler
  5897. case `$CC -V` in
  5898. *pgCC\ [[1-5]].* | *pgcpp\ [[1-5]].*)
  5899. _LT_TAGVAR(prelink_cmds, $1)='tpldir=Template.dir~
  5900. rm -rf $tpldir~
  5901. $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~
  5902. compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"'
  5903. _LT_TAGVAR(old_archive_cmds, $1)='tpldir=Template.dir~
  5904. rm -rf $tpldir~
  5905. $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~
  5906. $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~
  5907. $RANLIB $oldlib'
  5908. _LT_TAGVAR(archive_cmds, $1)='tpldir=Template.dir~
  5909. rm -rf $tpldir~
  5910. $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~
  5911. $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib'
  5912. _LT_TAGVAR(archive_expsym_cmds, $1)='tpldir=Template.dir~
  5913. rm -rf $tpldir~
  5914. $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~
  5915. $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib'
  5916. ;;
  5917. *) # Version 6 and above use weak symbols
  5918. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib'
  5919. _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'
  5920. ;;
  5921. esac
  5922. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir'
  5923. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
  5924. _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive'
  5925. ;;
  5926. cxx*)
  5927. # Compaq C++
  5928. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
  5929. _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'
  5930. runpath_var=LD_RUN_PATH
  5931. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'
  5932. _LT_TAGVAR(hardcode_libdir_separator, $1)=:
  5933. # Commands to make compiler produce verbose output that lists
  5934. # what "hidden" libraries, object files and flags are used when
  5935. # linking a shared library.
  5936. #
  5937. # There doesn't appear to be a way to prevent this compiler from
  5938. # explicitly linking system object files so we need to strip them
  5939. # from the output so that they don't get included in the library
  5940. # dependencies.
  5941. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed'
  5942. ;;
  5943. xl* | mpixl* | bgxl*)
  5944. # IBM XL 8.0 on PPC, with GNU ld
  5945. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
  5946. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
  5947. _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
  5948. if test "x$supports_anon_versioning" = xyes; then
  5949. _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~
  5950. cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
  5951. echo "local: *; };" >> $output_objdir/$libname.ver~
  5952. $CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'
  5953. fi
  5954. ;;
  5955. *)
  5956. case `$CC -V 2>&1 | sed 5q` in
  5957. *Sun\ C*)
  5958. # Sun C++ 5.9
  5959. _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs'
  5960. _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
  5961. _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'
  5962. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
  5963. _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive'
  5964. _LT_TAGVAR(compiler_needs_object, $1)=yes
  5965. # Not sure whether something based on
  5966. # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1
  5967. # would be better.
  5968. output_verbose_link_cmd='func_echo_all'
  5969. # Archives containing C++ object files must be created using
  5970. # "CC -xar", where "CC" is the Sun C++ compiler. This is
  5971. # necessary to make sure instantiated templates are included
  5972. # in the archive.
  5973. _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs'
  5974. ;;
  5975. esac
  5976. ;;
  5977. esac
  5978. ;;
  5979. lynxos*)
  5980. # FIXME: insert proper C++ library support
  5981. _LT_TAGVAR(ld_shlibs, $1)=no
  5982. ;;
  5983. m88k*)
  5984. # FIXME: insert proper C++ library support
  5985. _LT_TAGVAR(ld_shlibs, $1)=no
  5986. ;;
  5987. mvs*)
  5988. case $cc_basename in
  5989. cxx*)
  5990. # FIXME: insert proper C++ library support
  5991. _LT_TAGVAR(ld_shlibs, $1)=no
  5992. ;;
  5993. *)
  5994. # FIXME: insert proper C++ library support
  5995. _LT_TAGVAR(ld_shlibs, $1)=no
  5996. ;;
  5997. esac
  5998. ;;
  5999. netbsd*)
  6000. if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
  6001. _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags'
  6002. wlarc=
  6003. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
  6004. _LT_TAGVAR(hardcode_direct, $1)=yes
  6005. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  6006. fi
  6007. # Workaround some broken pre-1.5 toolchains
  6008. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"'
  6009. ;;
  6010. *nto* | *qnx*)
  6011. _LT_TAGVAR(ld_shlibs, $1)=yes
  6012. ;;
  6013. openbsd2*)
  6014. # C++ shared libraries are fairly broken
  6015. _LT_TAGVAR(ld_shlibs, $1)=no
  6016. ;;
  6017. openbsd*)
  6018. if test -f /usr/libexec/ld.so; then
  6019. _LT_TAGVAR(hardcode_direct, $1)=yes
  6020. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  6021. _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
  6022. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib'
  6023. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
  6024. if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
  6025. _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'
  6026. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
  6027. _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
  6028. fi
  6029. output_verbose_link_cmd=func_echo_all
  6030. else
  6031. _LT_TAGVAR(ld_shlibs, $1)=no
  6032. fi
  6033. ;;
  6034. osf3* | osf4* | osf5*)
  6035. case $cc_basename in
  6036. KCC*)
  6037. # Kuck and Associates, Inc. (KAI) C++ Compiler
  6038. # KCC will only create a shared library if the output file
  6039. # ends with ".so" (or ".sl" for HP-UX), so rename the library
  6040. # to its proper name (with version) after linking.
  6041. _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'
  6042. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
  6043. _LT_TAGVAR(hardcode_libdir_separator, $1)=:
  6044. # Archives containing C++ object files must be created using
  6045. # the KAI C++ compiler.
  6046. case $host in
  6047. osf3*) _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;;
  6048. *) _LT_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;;
  6049. esac
  6050. ;;
  6051. RCC*)
  6052. # Rational C++ 2.4.1
  6053. # FIXME: insert proper C++ library support
  6054. _LT_TAGVAR(ld_shlibs, $1)=no
  6055. ;;
  6056. cxx*)
  6057. case $host in
  6058. osf3*)
  6059. _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
  6060. _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && func_echo_all "${wl}-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib'
  6061. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
  6062. ;;
  6063. *)
  6064. _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*'
  6065. _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib'
  6066. _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~
  6067. echo "-hidden">> $lib.exp~
  6068. $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname ${wl}-input ${wl}$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~
  6069. $RM $lib.exp'
  6070. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'
  6071. ;;
  6072. esac
  6073. _LT_TAGVAR(hardcode_libdir_separator, $1)=:
  6074. # Commands to make compiler produce verbose output that lists
  6075. # what "hidden" libraries, object files and flags are used when
  6076. # linking a shared library.
  6077. #
  6078. # There doesn't appear to be a way to prevent this compiler from
  6079. # explicitly linking system object files so we need to strip them
  6080. # from the output so that they don't get included in the library
  6081. # dependencies.
  6082. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"'
  6083. ;;
  6084. *)
  6085. if test "$GXX" = yes && test "$with_gnu_ld" = no; then
  6086. _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
  6087. case $host in
  6088. osf3*)
  6089. _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
  6090. ;;
  6091. *)
  6092. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
  6093. ;;
  6094. esac
  6095. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
  6096. _LT_TAGVAR(hardcode_libdir_separator, $1)=:
  6097. # Commands to make compiler produce verbose output that lists
  6098. # what "hidden" libraries, object files and flags are used when
  6099. # linking a shared library.
  6100. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"'
  6101. else
  6102. # FIXME: insert proper C++ library support
  6103. _LT_TAGVAR(ld_shlibs, $1)=no
  6104. fi
  6105. ;;
  6106. esac
  6107. ;;
  6108. psos*)
  6109. # FIXME: insert proper C++ library support
  6110. _LT_TAGVAR(ld_shlibs, $1)=no
  6111. ;;
  6112. sunos4*)
  6113. case $cc_basename in
  6114. CC*)
  6115. # Sun C++ 4.x
  6116. # FIXME: insert proper C++ library support
  6117. _LT_TAGVAR(ld_shlibs, $1)=no
  6118. ;;
  6119. lcc*)
  6120. # Lucid
  6121. # FIXME: insert proper C++ library support
  6122. _LT_TAGVAR(ld_shlibs, $1)=no
  6123. ;;
  6124. *)
  6125. # FIXME: insert proper C++ library support
  6126. _LT_TAGVAR(ld_shlibs, $1)=no
  6127. ;;
  6128. esac
  6129. ;;
  6130. solaris*)
  6131. case $cc_basename in
  6132. CC* | sunCC*)
  6133. # Sun C++ 4.2, 5.x and Centerline C++
  6134. _LT_TAGVAR(archive_cmds_need_lc,$1)=yes
  6135. _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs'
  6136. _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
  6137. _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
  6138. $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'
  6139. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
  6140. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  6141. case $host_os in
  6142. solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;
  6143. *)
  6144. # The compiler driver will combine and reorder linker options,
  6145. # but understands `-z linker_flag'.
  6146. # Supported since Solaris 2.6 (maybe 2.5.1?)
  6147. _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract'
  6148. ;;
  6149. esac
  6150. _LT_TAGVAR(link_all_deplibs, $1)=yes
  6151. output_verbose_link_cmd='func_echo_all'
  6152. # Archives containing C++ object files must be created using
  6153. # "CC -xar", where "CC" is the Sun C++ compiler. This is
  6154. # necessary to make sure instantiated templates are included
  6155. # in the archive.
  6156. _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs'
  6157. ;;
  6158. gcx*)
  6159. # Green Hills C++ Compiler
  6160. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'
  6161. # The C++ compiler must be used to create the archive.
  6162. _LT_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs'
  6163. ;;
  6164. *)
  6165. # GNU C++ compiler with Solaris linker
  6166. if test "$GXX" = yes && test "$with_gnu_ld" = no; then
  6167. _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs'
  6168. if $CC --version | $GREP -v '^2\.7' > /dev/null; then
  6169. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'
  6170. _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
  6171. $CC -shared $pic_flag -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp'
  6172. # Commands to make compiler produce verbose output that lists
  6173. # what "hidden" libraries, object files and flags are used when
  6174. # linking a shared library.
  6175. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"'
  6176. else
  6177. # g++ 2.7 appears to require `-G' NOT `-shared' on this
  6178. # platform.
  6179. _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'
  6180. _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
  6181. $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp'
  6182. # Commands to make compiler produce verbose output that lists
  6183. # what "hidden" libraries, object files and flags are used when
  6184. # linking a shared library.
  6185. output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"'
  6186. fi
  6187. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir'
  6188. case $host_os in
  6189. solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;
  6190. *)
  6191. _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract'
  6192. ;;
  6193. esac
  6194. fi
  6195. ;;
  6196. esac
  6197. ;;
  6198. sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*)
  6199. _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text'
  6200. _LT_TAGVAR(archive_cmds_need_lc, $1)=no
  6201. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  6202. runpath_var='LD_RUN_PATH'
  6203. case $cc_basename in
  6204. CC*)
  6205. _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
  6206. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
  6207. ;;
  6208. *)
  6209. _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
  6210. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
  6211. ;;
  6212. esac
  6213. ;;
  6214. sysv5* | sco3.2v5* | sco5v6*)
  6215. # Note: We can NOT use -z defs as we might desire, because we do not
  6216. # link with -lc, and that would cause any symbols used from libc to
  6217. # always be unresolved, which means just about no library would
  6218. # ever link correctly. If we're not using GNU ld we use -z text
  6219. # though, which does catch some bad symbols but isn't as heavy-handed
  6220. # as -z defs.
  6221. _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text'
  6222. _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs'
  6223. _LT_TAGVAR(archive_cmds_need_lc, $1)=no
  6224. _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
  6225. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir'
  6226. _LT_TAGVAR(hardcode_libdir_separator, $1)=':'
  6227. _LT_TAGVAR(link_all_deplibs, $1)=yes
  6228. _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport'
  6229. runpath_var='LD_RUN_PATH'
  6230. case $cc_basename in
  6231. CC*)
  6232. _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
  6233. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
  6234. _LT_TAGVAR(old_archive_cmds, $1)='$CC -Tprelink_objects $oldobjs~
  6235. '"$_LT_TAGVAR(old_archive_cmds, $1)"
  6236. _LT_TAGVAR(reload_cmds, $1)='$CC -Tprelink_objects $reload_objs~
  6237. '"$_LT_TAGVAR(reload_cmds, $1)"
  6238. ;;
  6239. *)
  6240. _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
  6241. _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
  6242. ;;
  6243. esac
  6244. ;;
  6245. tandem*)
  6246. case $cc_basename in
  6247. NCC*)
  6248. # NonStop-UX NCC 3.20
  6249. # FIXME: insert proper C++ library support
  6250. _LT_TAGVAR(ld_shlibs, $1)=no
  6251. ;;
  6252. *)
  6253. # FIXME: insert proper C++ library support
  6254. _LT_TAGVAR(ld_shlibs, $1)=no
  6255. ;;
  6256. esac
  6257. ;;
  6258. vxworks*)
  6259. # FIXME: insert proper C++ library support
  6260. _LT_TAGVAR(ld_shlibs, $1)=no
  6261. ;;
  6262. *)
  6263. # FIXME: insert proper C++ library support
  6264. _LT_TAGVAR(ld_shlibs, $1)=no
  6265. ;;
  6266. esac
  6267. AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)])
  6268. test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no
  6269. _LT_TAGVAR(GCC, $1)="$GXX"
  6270. _LT_TAGVAR(LD, $1)="$LD"
  6271. ## CAVEAT EMPTOR:
  6272. ## There is no encapsulation within the following macros, do not change
  6273. ## the running order or otherwise move them around unless you know exactly
  6274. ## what you are doing...
  6275. _LT_SYS_HIDDEN_LIBDEPS($1)
  6276. _LT_COMPILER_PIC($1)
  6277. _LT_COMPILER_C_O($1)
  6278. _LT_COMPILER_FILE_LOCKS($1)
  6279. _LT_LINKER_SHLIBS($1)
  6280. _LT_SYS_DYNAMIC_LINKER($1)
  6281. _LT_LINKER_HARDCODE_LIBPATH($1)
  6282. _LT_CONFIG($1)
  6283. fi # test -n "$compiler"
  6284. CC=$lt_save_CC
  6285. CFLAGS=$lt_save_CFLAGS
  6286. LDCXX=$LD
  6287. LD=$lt_save_LD
  6288. GCC=$lt_save_GCC
  6289. with_gnu_ld=$lt_save_with_gnu_ld
  6290. lt_cv_path_LDCXX=$lt_cv_path_LD
  6291. lt_cv_path_LD=$lt_save_path_LD
  6292. lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld
  6293. lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld
  6294. fi # test "$_lt_caught_CXX_error" != yes
  6295. AC_LANG_POP
  6296. ])# _LT_LANG_CXX_CONFIG
  6297. # _LT_FUNC_STRIPNAME_CNF
  6298. # ----------------------
  6299. # func_stripname_cnf prefix suffix name
  6300. # strip PREFIX and SUFFIX off of NAME.
  6301. # PREFIX and SUFFIX must not contain globbing or regex special
  6302. # characters, hashes, percent signs, but SUFFIX may contain a leading
  6303. # dot (in which case that matches only a dot).
  6304. #
  6305. # This function is identical to the (non-XSI) version of func_stripname,
  6306. # except this one can be used by m4 code that may be executed by configure,
  6307. # rather than the libtool script.
  6308. m4_defun([_LT_FUNC_STRIPNAME_CNF],[dnl
  6309. AC_REQUIRE([_LT_DECL_SED])
  6310. AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])
  6311. func_stripname_cnf ()
  6312. {
  6313. case ${2} in
  6314. .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;;
  6315. *) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;;
  6316. esac
  6317. } # func_stripname_cnf
  6318. ])# _LT_FUNC_STRIPNAME_CNF
  6319. # _LT_SYS_HIDDEN_LIBDEPS([TAGNAME])
  6320. # ---------------------------------
  6321. # Figure out "hidden" library dependencies from verbose
  6322. # compiler output when linking a shared library.
  6323. # Parse the compiler output and extract the necessary
  6324. # objects, libraries and library flags.
  6325. m4_defun([_LT_SYS_HIDDEN_LIBDEPS],
  6326. [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
  6327. AC_REQUIRE([_LT_FUNC_STRIPNAME_CNF])dnl
  6328. # Dependencies to place before and after the object being linked:
  6329. _LT_TAGVAR(predep_objects, $1)=
  6330. _LT_TAGVAR(postdep_objects, $1)=
  6331. _LT_TAGVAR(predeps, $1)=
  6332. _LT_TAGVAR(postdeps, $1)=
  6333. _LT_TAGVAR(compiler_lib_search_path, $1)=
  6334. dnl we can't use the lt_simple_compile_test_code here,
  6335. dnl because it contains code intended for an executable,
  6336. dnl not a library. It's possible we should let each
  6337. dnl tag define a new lt_????_link_test_code variable,
  6338. dnl but it's only used here...
  6339. m4_if([$1], [], [cat > conftest.$ac_ext <<_LT_EOF
  6340. int a;
  6341. void foo (void) { a = 0; }
  6342. _LT_EOF
  6343. ], [$1], [CXX], [cat > conftest.$ac_ext <<_LT_EOF
  6344. class Foo
  6345. {
  6346. public:
  6347. Foo (void) { a = 0; }
  6348. private:
  6349. int a;
  6350. };
  6351. _LT_EOF
  6352. ], [$1], [F77], [cat > conftest.$ac_ext <<_LT_EOF
  6353. subroutine foo
  6354. implicit none
  6355. integer*4 a
  6356. a=0
  6357. return
  6358. end
  6359. _LT_EOF
  6360. ], [$1], [FC], [cat > conftest.$ac_ext <<_LT_EOF
  6361. subroutine foo
  6362. implicit none
  6363. integer a
  6364. a=0
  6365. return
  6366. end
  6367. _LT_EOF
  6368. ], [$1], [GCJ], [cat > conftest.$ac_ext <<_LT_EOF
  6369. public class foo {
  6370. private int a;
  6371. public void bar (void) {
  6372. a = 0;
  6373. }
  6374. };
  6375. _LT_EOF
  6376. ], [$1], [GO], [cat > conftest.$ac_ext <<_LT_EOF
  6377. package foo
  6378. func foo() {
  6379. }
  6380. _LT_EOF
  6381. ])
  6382. _lt_libdeps_save_CFLAGS=$CFLAGS
  6383. case "$CC $CFLAGS " in #(
  6384. *\ -flto*\ *) CFLAGS="$CFLAGS -fno-lto" ;;
  6385. *\ -fwhopr*\ *) CFLAGS="$CFLAGS -fno-whopr" ;;
  6386. *\ -fuse-linker-plugin*\ *) CFLAGS="$CFLAGS -fno-use-linker-plugin" ;;
  6387. esac
  6388. dnl Parse the compiler output and extract the necessary
  6389. dnl objects, libraries and library flags.
  6390. if AC_TRY_EVAL(ac_compile); then
  6391. # Parse the compiler output and extract the necessary
  6392. # objects, libraries and library flags.
  6393. # Sentinel used to keep track of whether or not we are before
  6394. # the conftest object file.
  6395. pre_test_object_deps_done=no
  6396. for p in `eval "$output_verbose_link_cmd"`; do
  6397. case ${prev}${p} in
  6398. -L* | -R* | -l*)
  6399. # Some compilers place space between "-{L,R}" and the path.
  6400. # Remove the space.
  6401. if test $p = "-L" ||
  6402. test $p = "-R"; then
  6403. prev=$p
  6404. continue
  6405. fi
  6406. # Expand the sysroot to ease extracting the directories later.
  6407. if test -z "$prev"; then
  6408. case $p in
  6409. -L*) func_stripname_cnf '-L' '' "$p"; prev=-L; p=$func_stripname_result ;;
  6410. -R*) func_stripname_cnf '-R' '' "$p"; prev=-R; p=$func_stripname_result ;;
  6411. -l*) func_stripname_cnf '-l' '' "$p"; prev=-l; p=$func_stripname_result ;;
  6412. esac
  6413. fi
  6414. case $p in
  6415. =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;;
  6416. esac
  6417. if test "$pre_test_object_deps_done" = no; then
  6418. case ${prev} in
  6419. -L | -R)
  6420. # Internal compiler library paths should come after those
  6421. # provided the user. The postdeps already come after the
  6422. # user supplied libs so there is no need to process them.
  6423. if test -z "$_LT_TAGVAR(compiler_lib_search_path, $1)"; then
  6424. _LT_TAGVAR(compiler_lib_search_path, $1)="${prev}${p}"
  6425. else
  6426. _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} ${prev}${p}"
  6427. fi
  6428. ;;
  6429. # The "-l" case would never come before the object being
  6430. # linked, so don't bother handling this case.
  6431. esac
  6432. else
  6433. if test -z "$_LT_TAGVAR(postdeps, $1)"; then
  6434. _LT_TAGVAR(postdeps, $1)="${prev}${p}"
  6435. else
  6436. _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} ${prev}${p}"
  6437. fi
  6438. fi
  6439. prev=
  6440. ;;
  6441. *.lto.$objext) ;; # Ignore GCC LTO objects
  6442. *.$objext)
  6443. # This assumes that the test object file only shows up
  6444. # once in the compiler output.
  6445. if test "$p" = "conftest.$objext"; then
  6446. pre_test_object_deps_done=yes
  6447. continue
  6448. fi
  6449. if test "$pre_test_object_deps_done" = no; then
  6450. if test -z "$_LT_TAGVAR(predep_objects, $1)"; then
  6451. _LT_TAGVAR(predep_objects, $1)="$p"
  6452. else
  6453. _LT_TAGVAR(predep_objects, $1)="$_LT_TAGVAR(predep_objects, $1) $p"
  6454. fi
  6455. else
  6456. if test -z "$_LT_TAGVAR(postdep_objects, $1)"; then
  6457. _LT_TAGVAR(postdep_objects, $1)="$p"
  6458. else
  6459. _LT_TAGVAR(postdep_objects, $1)="$_LT_TAGVAR(postdep_objects, $1) $p"
  6460. fi
  6461. fi
  6462. ;;
  6463. *) ;; # Ignore the rest.
  6464. esac
  6465. done
  6466. # Clean up.
  6467. rm -f a.out a.exe
  6468. else
  6469. echo "libtool.m4: error: problem compiling $1 test program"
  6470. fi
  6471. $RM -f confest.$objext
  6472. CFLAGS=$_lt_libdeps_save_CFLAGS
  6473. # PORTME: override above test on systems where it is broken
  6474. m4_if([$1], [CXX],
  6475. [case $host_os in
  6476. interix[[3-9]]*)
  6477. # Interix 3.5 installs completely hosed .la files for C++, so rather than
  6478. # hack all around it, let's just trust "g++" to DTRT.
  6479. _LT_TAGVAR(predep_objects,$1)=
  6480. _LT_TAGVAR(postdep_objects,$1)=
  6481. _LT_TAGVAR(postdeps,$1)=
  6482. ;;
  6483. linux*)
  6484. case `$CC -V 2>&1 | sed 5q` in
  6485. *Sun\ C*)
  6486. # Sun C++ 5.9
  6487. # The more standards-conforming stlport4 library is
  6488. # incompatible with the Cstd library. Avoid specifying
  6489. # it if it's in CXXFLAGS. Ignore libCrun as
  6490. # -library=stlport4 depends on it.
  6491. case " $CXX $CXXFLAGS " in
  6492. *" -library=stlport4 "*)
  6493. solaris_use_stlport4=yes
  6494. ;;
  6495. esac
  6496. if test "$solaris_use_stlport4" != yes; then
  6497. _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun'
  6498. fi
  6499. ;;
  6500. esac
  6501. ;;
  6502. solaris*)
  6503. case $cc_basename in
  6504. CC* | sunCC*)
  6505. # The more standards-conforming stlport4 library is
  6506. # incompatible with the Cstd library. Avoid specifying
  6507. # it if it's in CXXFLAGS. Ignore libCrun as
  6508. # -library=stlport4 depends on it.
  6509. case " $CXX $CXXFLAGS " in
  6510. *" -library=stlport4 "*)
  6511. solaris_use_stlport4=yes
  6512. ;;
  6513. esac
  6514. # Adding this requires a known-good setup of shared libraries for
  6515. # Sun compiler versions before 5.6, else PIC objects from an old
  6516. # archive will be linked into the output, leading to subtle bugs.
  6517. if test "$solaris_use_stlport4" != yes; then
  6518. _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun'
  6519. fi
  6520. ;;
  6521. esac
  6522. ;;
  6523. esac
  6524. ])
  6525. case " $_LT_TAGVAR(postdeps, $1) " in
  6526. *" -lc "*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;;
  6527. esac
  6528. _LT_TAGVAR(compiler_lib_search_dirs, $1)=
  6529. if test -n "${_LT_TAGVAR(compiler_lib_search_path, $1)}"; then
  6530. _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | ${SED} -e 's! -L! !g' -e 's!^ !!'`
  6531. fi
  6532. _LT_TAGDECL([], [compiler_lib_search_dirs], [1],
  6533. [The directories searched by this compiler when creating a shared library])
  6534. _LT_TAGDECL([], [predep_objects], [1],
  6535. [Dependencies to place before and after the objects being linked to
  6536. create a shared library])
  6537. _LT_TAGDECL([], [postdep_objects], [1])
  6538. _LT_TAGDECL([], [predeps], [1])
  6539. _LT_TAGDECL([], [postdeps], [1])
  6540. _LT_TAGDECL([], [compiler_lib_search_path], [1],
  6541. [The library search path used internally by the compiler when linking
  6542. a shared library])
  6543. ])# _LT_SYS_HIDDEN_LIBDEPS
  6544. # _LT_LANG_F77_CONFIG([TAG])
  6545. # --------------------------
  6546. # Ensure that the configuration variables for a Fortran 77 compiler are
  6547. # suitably defined. These variables are subsequently used by _LT_CONFIG
  6548. # to write the compiler configuration to `libtool'.
  6549. m4_defun([_LT_LANG_F77_CONFIG],
  6550. [AC_LANG_PUSH(Fortran 77)
  6551. if test -z "$F77" || test "X$F77" = "Xno"; then
  6552. _lt_disable_F77=yes
  6553. fi
  6554. _LT_TAGVAR(archive_cmds_need_lc, $1)=no
  6555. _LT_TAGVAR(allow_undefined_flag, $1)=
  6556. _LT_TAGVAR(always_export_symbols, $1)=no
  6557. _LT_TAGVAR(archive_expsym_cmds, $1)=
  6558. _LT_TAGVAR(export_dynamic_flag_spec, $1)=
  6559. _LT_TAGVAR(hardcode_direct, $1)=no
  6560. _LT_TAGVAR(hardcode_direct_absolute, $1)=no
  6561. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=
  6562. _LT_TAGVAR(hardcode_libdir_separator, $1)=
  6563. _LT_TAGVAR(hardcode_minus_L, $1)=no
  6564. _LT_TAGVAR(hardcode_automatic, $1)=no
  6565. _LT_TAGVAR(inherit_rpath, $1)=no
  6566. _LT_TAGVAR(module_cmds, $1)=
  6567. _LT_TAGVAR(module_expsym_cmds, $1)=
  6568. _LT_TAGVAR(link_all_deplibs, $1)=unknown
  6569. _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
  6570. _LT_TAGVAR(reload_flag, $1)=$reload_flag
  6571. _LT_TAGVAR(reload_cmds, $1)=$reload_cmds
  6572. _LT_TAGVAR(no_undefined_flag, $1)=
  6573. _LT_TAGVAR(whole_archive_flag_spec, $1)=
  6574. _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no
  6575. # Source file extension for f77 test sources.
  6576. ac_ext=f
  6577. # Object file extension for compiled f77 test sources.
  6578. objext=o
  6579. _LT_TAGVAR(objext, $1)=$objext
  6580. # No sense in running all these tests if we already determined that
  6581. # the F77 compiler isn't working. Some variables (like enable_shared)
  6582. # are currently assumed to apply to all compilers on this platform,
  6583. # and will be corrupted by setting them based on a non-working compiler.
  6584. if test "$_lt_disable_F77" != yes; then
  6585. # Code to be used in simple compile tests
  6586. lt_simple_compile_test_code="\
  6587. subroutine t
  6588. return
  6589. end
  6590. "
  6591. # Code to be used in simple link tests
  6592. lt_simple_link_test_code="\
  6593. program t
  6594. end
  6595. "
  6596. # ltmain only uses $CC for tagged configurations so make sure $CC is set.
  6597. _LT_TAG_COMPILER
  6598. # save warnings/boilerplate of simple test code
  6599. _LT_COMPILER_BOILERPLATE
  6600. _LT_LINKER_BOILERPLATE
  6601. # Allow CC to be a program name with arguments.
  6602. lt_save_CC="$CC"
  6603. lt_save_GCC=$GCC
  6604. lt_save_CFLAGS=$CFLAGS
  6605. CC=${F77-"f77"}
  6606. CFLAGS=$FFLAGS
  6607. compiler=$CC
  6608. _LT_TAGVAR(compiler, $1)=$CC
  6609. _LT_CC_BASENAME([$compiler])
  6610. GCC=$G77
  6611. if test -n "$compiler"; then
  6612. AC_MSG_CHECKING([if libtool supports shared libraries])
  6613. AC_MSG_RESULT([$can_build_shared])
  6614. AC_MSG_CHECKING([whether to build shared libraries])
  6615. test "$can_build_shared" = "no" && enable_shared=no
  6616. # On AIX, shared libraries and static libraries use the same namespace, and
  6617. # are all built from PIC.
  6618. case $host_os in
  6619. aix3*)
  6620. test "$enable_shared" = yes && enable_static=no
  6621. if test -n "$RANLIB"; then
  6622. archive_cmds="$archive_cmds~\$RANLIB \$lib"
  6623. postinstall_cmds='$RANLIB $lib'
  6624. fi
  6625. ;;
  6626. aix[[4-9]]*)
  6627. if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
  6628. test "$enable_shared" = yes && enable_static=no
  6629. fi
  6630. ;;
  6631. esac
  6632. AC_MSG_RESULT([$enable_shared])
  6633. AC_MSG_CHECKING([whether to build static libraries])
  6634. # Make sure either enable_shared or enable_static is yes.
  6635. test "$enable_shared" = yes || enable_static=yes
  6636. AC_MSG_RESULT([$enable_static])
  6637. _LT_TAGVAR(GCC, $1)="$G77"
  6638. _LT_TAGVAR(LD, $1)="$LD"
  6639. ## CAVEAT EMPTOR:
  6640. ## There is no encapsulation within the following macros, do not change
  6641. ## the running order or otherwise move them around unless you know exactly
  6642. ## what you are doing...
  6643. _LT_COMPILER_PIC($1)
  6644. _LT_COMPILER_C_O($1)
  6645. _LT_COMPILER_FILE_LOCKS($1)
  6646. _LT_LINKER_SHLIBS($1)
  6647. _LT_SYS_DYNAMIC_LINKER($1)
  6648. _LT_LINKER_HARDCODE_LIBPATH($1)
  6649. _LT_CONFIG($1)
  6650. fi # test -n "$compiler"
  6651. GCC=$lt_save_GCC
  6652. CC="$lt_save_CC"
  6653. CFLAGS="$lt_save_CFLAGS"
  6654. fi # test "$_lt_disable_F77" != yes
  6655. AC_LANG_POP
  6656. ])# _LT_LANG_F77_CONFIG
  6657. # _LT_LANG_FC_CONFIG([TAG])
  6658. # -------------------------
  6659. # Ensure that the configuration variables for a Fortran compiler are
  6660. # suitably defined. These variables are subsequently used by _LT_CONFIG
  6661. # to write the compiler configuration to `libtool'.
  6662. m4_defun([_LT_LANG_FC_CONFIG],
  6663. [AC_LANG_PUSH(Fortran)
  6664. if test -z "$FC" || test "X$FC" = "Xno"; then
  6665. _lt_disable_FC=yes
  6666. fi
  6667. _LT_TAGVAR(archive_cmds_need_lc, $1)=no
  6668. _LT_TAGVAR(allow_undefined_flag, $1)=
  6669. _LT_TAGVAR(always_export_symbols, $1)=no
  6670. _LT_TAGVAR(archive_expsym_cmds, $1)=
  6671. _LT_TAGVAR(export_dynamic_flag_spec, $1)=
  6672. _LT_TAGVAR(hardcode_direct, $1)=no
  6673. _LT_TAGVAR(hardcode_direct_absolute, $1)=no
  6674. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=
  6675. _LT_TAGVAR(hardcode_libdir_separator, $1)=
  6676. _LT_TAGVAR(hardcode_minus_L, $1)=no
  6677. _LT_TAGVAR(hardcode_automatic, $1)=no
  6678. _LT_TAGVAR(inherit_rpath, $1)=no
  6679. _LT_TAGVAR(module_cmds, $1)=
  6680. _LT_TAGVAR(module_expsym_cmds, $1)=
  6681. _LT_TAGVAR(link_all_deplibs, $1)=unknown
  6682. _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
  6683. _LT_TAGVAR(reload_flag, $1)=$reload_flag
  6684. _LT_TAGVAR(reload_cmds, $1)=$reload_cmds
  6685. _LT_TAGVAR(no_undefined_flag, $1)=
  6686. _LT_TAGVAR(whole_archive_flag_spec, $1)=
  6687. _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no
  6688. # Source file extension for fc test sources.
  6689. ac_ext=${ac_fc_srcext-f}
  6690. # Object file extension for compiled fc test sources.
  6691. objext=o
  6692. _LT_TAGVAR(objext, $1)=$objext
  6693. # No sense in running all these tests if we already determined that
  6694. # the FC compiler isn't working. Some variables (like enable_shared)
  6695. # are currently assumed to apply to all compilers on this platform,
  6696. # and will be corrupted by setting them based on a non-working compiler.
  6697. if test "$_lt_disable_FC" != yes; then
  6698. # Code to be used in simple compile tests
  6699. lt_simple_compile_test_code="\
  6700. subroutine t
  6701. return
  6702. end
  6703. "
  6704. # Code to be used in simple link tests
  6705. lt_simple_link_test_code="\
  6706. program t
  6707. end
  6708. "
  6709. # ltmain only uses $CC for tagged configurations so make sure $CC is set.
  6710. _LT_TAG_COMPILER
  6711. # save warnings/boilerplate of simple test code
  6712. _LT_COMPILER_BOILERPLATE
  6713. _LT_LINKER_BOILERPLATE
  6714. # Allow CC to be a program name with arguments.
  6715. lt_save_CC="$CC"
  6716. lt_save_GCC=$GCC
  6717. lt_save_CFLAGS=$CFLAGS
  6718. CC=${FC-"f95"}
  6719. CFLAGS=$FCFLAGS
  6720. compiler=$CC
  6721. GCC=$ac_cv_fc_compiler_gnu
  6722. _LT_TAGVAR(compiler, $1)=$CC
  6723. _LT_CC_BASENAME([$compiler])
  6724. if test -n "$compiler"; then
  6725. AC_MSG_CHECKING([if libtool supports shared libraries])
  6726. AC_MSG_RESULT([$can_build_shared])
  6727. AC_MSG_CHECKING([whether to build shared libraries])
  6728. test "$can_build_shared" = "no" && enable_shared=no
  6729. # On AIX, shared libraries and static libraries use the same namespace, and
  6730. # are all built from PIC.
  6731. case $host_os in
  6732. aix3*)
  6733. test "$enable_shared" = yes && enable_static=no
  6734. if test -n "$RANLIB"; then
  6735. archive_cmds="$archive_cmds~\$RANLIB \$lib"
  6736. postinstall_cmds='$RANLIB $lib'
  6737. fi
  6738. ;;
  6739. aix[[4-9]]*)
  6740. if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
  6741. test "$enable_shared" = yes && enable_static=no
  6742. fi
  6743. ;;
  6744. esac
  6745. AC_MSG_RESULT([$enable_shared])
  6746. AC_MSG_CHECKING([whether to build static libraries])
  6747. # Make sure either enable_shared or enable_static is yes.
  6748. test "$enable_shared" = yes || enable_static=yes
  6749. AC_MSG_RESULT([$enable_static])
  6750. _LT_TAGVAR(GCC, $1)="$ac_cv_fc_compiler_gnu"
  6751. _LT_TAGVAR(LD, $1)="$LD"
  6752. ## CAVEAT EMPTOR:
  6753. ## There is no encapsulation within the following macros, do not change
  6754. ## the running order or otherwise move them around unless you know exactly
  6755. ## what you are doing...
  6756. _LT_SYS_HIDDEN_LIBDEPS($1)
  6757. _LT_COMPILER_PIC($1)
  6758. _LT_COMPILER_C_O($1)
  6759. _LT_COMPILER_FILE_LOCKS($1)
  6760. _LT_LINKER_SHLIBS($1)
  6761. _LT_SYS_DYNAMIC_LINKER($1)
  6762. _LT_LINKER_HARDCODE_LIBPATH($1)
  6763. _LT_CONFIG($1)
  6764. fi # test -n "$compiler"
  6765. GCC=$lt_save_GCC
  6766. CC=$lt_save_CC
  6767. CFLAGS=$lt_save_CFLAGS
  6768. fi # test "$_lt_disable_FC" != yes
  6769. AC_LANG_POP
  6770. ])# _LT_LANG_FC_CONFIG
  6771. # _LT_LANG_GCJ_CONFIG([TAG])
  6772. # --------------------------
  6773. # Ensure that the configuration variables for the GNU Java Compiler compiler
  6774. # are suitably defined. These variables are subsequently used by _LT_CONFIG
  6775. # to write the compiler configuration to `libtool'.
  6776. m4_defun([_LT_LANG_GCJ_CONFIG],
  6777. [AC_REQUIRE([LT_PROG_GCJ])dnl
  6778. AC_LANG_SAVE
  6779. # Source file extension for Java test sources.
  6780. ac_ext=java
  6781. # Object file extension for compiled Java test sources.
  6782. objext=o
  6783. _LT_TAGVAR(objext, $1)=$objext
  6784. # Code to be used in simple compile tests
  6785. lt_simple_compile_test_code="class foo {}"
  6786. # Code to be used in simple link tests
  6787. lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }'
  6788. # ltmain only uses $CC for tagged configurations so make sure $CC is set.
  6789. _LT_TAG_COMPILER
  6790. # save warnings/boilerplate of simple test code
  6791. _LT_COMPILER_BOILERPLATE
  6792. _LT_LINKER_BOILERPLATE
  6793. # Allow CC to be a program name with arguments.
  6794. lt_save_CC=$CC
  6795. lt_save_CFLAGS=$CFLAGS
  6796. lt_save_GCC=$GCC
  6797. GCC=yes
  6798. CC=${GCJ-"gcj"}
  6799. CFLAGS=$GCJFLAGS
  6800. compiler=$CC
  6801. _LT_TAGVAR(compiler, $1)=$CC
  6802. _LT_TAGVAR(LD, $1)="$LD"
  6803. _LT_CC_BASENAME([$compiler])
  6804. # GCJ did not exist at the time GCC didn't implicitly link libc in.
  6805. _LT_TAGVAR(archive_cmds_need_lc, $1)=no
  6806. _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
  6807. _LT_TAGVAR(reload_flag, $1)=$reload_flag
  6808. _LT_TAGVAR(reload_cmds, $1)=$reload_cmds
  6809. if test -n "$compiler"; then
  6810. _LT_COMPILER_NO_RTTI($1)
  6811. _LT_COMPILER_PIC($1)
  6812. _LT_COMPILER_C_O($1)
  6813. _LT_COMPILER_FILE_LOCKS($1)
  6814. _LT_LINKER_SHLIBS($1)
  6815. _LT_LINKER_HARDCODE_LIBPATH($1)
  6816. _LT_CONFIG($1)
  6817. fi
  6818. AC_LANG_RESTORE
  6819. GCC=$lt_save_GCC
  6820. CC=$lt_save_CC
  6821. CFLAGS=$lt_save_CFLAGS
  6822. ])# _LT_LANG_GCJ_CONFIG
  6823. # _LT_LANG_GO_CONFIG([TAG])
  6824. # --------------------------
  6825. # Ensure that the configuration variables for the GNU Go compiler
  6826. # are suitably defined. These variables are subsequently used by _LT_CONFIG
  6827. # to write the compiler configuration to `libtool'.
  6828. m4_defun([_LT_LANG_GO_CONFIG],
  6829. [AC_REQUIRE([LT_PROG_GO])dnl
  6830. AC_LANG_SAVE
  6831. # Source file extension for Go test sources.
  6832. ac_ext=go
  6833. # Object file extension for compiled Go test sources.
  6834. objext=o
  6835. _LT_TAGVAR(objext, $1)=$objext
  6836. # Code to be used in simple compile tests
  6837. lt_simple_compile_test_code="package main; func main() { }"
  6838. # Code to be used in simple link tests
  6839. lt_simple_link_test_code='package main; func main() { }'
  6840. # ltmain only uses $CC for tagged configurations so make sure $CC is set.
  6841. _LT_TAG_COMPILER
  6842. # save warnings/boilerplate of simple test code
  6843. _LT_COMPILER_BOILERPLATE
  6844. _LT_LINKER_BOILERPLATE
  6845. # Allow CC to be a program name with arguments.
  6846. lt_save_CC=$CC
  6847. lt_save_CFLAGS=$CFLAGS
  6848. lt_save_GCC=$GCC
  6849. GCC=yes
  6850. CC=${GOC-"gccgo"}
  6851. CFLAGS=$GOFLAGS
  6852. compiler=$CC
  6853. _LT_TAGVAR(compiler, $1)=$CC
  6854. _LT_TAGVAR(LD, $1)="$LD"
  6855. _LT_CC_BASENAME([$compiler])
  6856. # Go did not exist at the time GCC didn't implicitly link libc in.
  6857. _LT_TAGVAR(archive_cmds_need_lc, $1)=no
  6858. _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
  6859. _LT_TAGVAR(reload_flag, $1)=$reload_flag
  6860. _LT_TAGVAR(reload_cmds, $1)=$reload_cmds
  6861. if test -n "$compiler"; then
  6862. _LT_COMPILER_NO_RTTI($1)
  6863. _LT_COMPILER_PIC($1)
  6864. _LT_COMPILER_C_O($1)
  6865. _LT_COMPILER_FILE_LOCKS($1)
  6866. _LT_LINKER_SHLIBS($1)
  6867. _LT_LINKER_HARDCODE_LIBPATH($1)
  6868. _LT_CONFIG($1)
  6869. fi
  6870. AC_LANG_RESTORE
  6871. GCC=$lt_save_GCC
  6872. CC=$lt_save_CC
  6873. CFLAGS=$lt_save_CFLAGS
  6874. ])# _LT_LANG_GO_CONFIG
  6875. # _LT_LANG_RC_CONFIG([TAG])
  6876. # -------------------------
  6877. # Ensure that the configuration variables for the Windows resource compiler
  6878. # are suitably defined. These variables are subsequently used by _LT_CONFIG
  6879. # to write the compiler configuration to `libtool'.
  6880. m4_defun([_LT_LANG_RC_CONFIG],
  6881. [AC_REQUIRE([LT_PROG_RC])dnl
  6882. AC_LANG_SAVE
  6883. # Source file extension for RC test sources.
  6884. ac_ext=rc
  6885. # Object file extension for compiled RC test sources.
  6886. objext=o
  6887. _LT_TAGVAR(objext, $1)=$objext
  6888. # Code to be used in simple compile tests
  6889. lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }'
  6890. # Code to be used in simple link tests
  6891. lt_simple_link_test_code="$lt_simple_compile_test_code"
  6892. # ltmain only uses $CC for tagged configurations so make sure $CC is set.
  6893. _LT_TAG_COMPILER
  6894. # save warnings/boilerplate of simple test code
  6895. _LT_COMPILER_BOILERPLATE
  6896. _LT_LINKER_BOILERPLATE
  6897. # Allow CC to be a program name with arguments.
  6898. lt_save_CC="$CC"
  6899. lt_save_CFLAGS=$CFLAGS
  6900. lt_save_GCC=$GCC
  6901. GCC=
  6902. CC=${RC-"windres"}
  6903. CFLAGS=
  6904. compiler=$CC
  6905. _LT_TAGVAR(compiler, $1)=$CC
  6906. _LT_CC_BASENAME([$compiler])
  6907. _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes
  6908. if test -n "$compiler"; then
  6909. :
  6910. _LT_CONFIG($1)
  6911. fi
  6912. GCC=$lt_save_GCC
  6913. AC_LANG_RESTORE
  6914. CC=$lt_save_CC
  6915. CFLAGS=$lt_save_CFLAGS
  6916. ])# _LT_LANG_RC_CONFIG
  6917. # LT_PROG_GCJ
  6918. # -----------
  6919. AC_DEFUN([LT_PROG_GCJ],
  6920. [m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ],
  6921. [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ],
  6922. [AC_CHECK_TOOL(GCJ, gcj,)
  6923. test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2"
  6924. AC_SUBST(GCJFLAGS)])])[]dnl
  6925. ])
  6926. # Old name:
  6927. AU_ALIAS([LT_AC_PROG_GCJ], [LT_PROG_GCJ])
  6928. dnl aclocal-1.4 backwards compatibility:
  6929. dnl AC_DEFUN([LT_AC_PROG_GCJ], [])
  6930. # LT_PROG_GO
  6931. # ----------
  6932. AC_DEFUN([LT_PROG_GO],
  6933. [AC_CHECK_TOOL(GOC, gccgo,)
  6934. ])
  6935. # LT_PROG_RC
  6936. # ----------
  6937. AC_DEFUN([LT_PROG_RC],
  6938. [AC_CHECK_TOOL(RC, windres,)
  6939. ])
  6940. # Old name:
  6941. AU_ALIAS([LT_AC_PROG_RC], [LT_PROG_RC])
  6942. dnl aclocal-1.4 backwards compatibility:
  6943. dnl AC_DEFUN([LT_AC_PROG_RC], [])
  6944. # _LT_DECL_EGREP
  6945. # --------------
  6946. # If we don't have a new enough Autoconf to choose the best grep
  6947. # available, choose the one first in the user's PATH.
  6948. m4_defun([_LT_DECL_EGREP],
  6949. [AC_REQUIRE([AC_PROG_EGREP])dnl
  6950. AC_REQUIRE([AC_PROG_FGREP])dnl
  6951. test -z "$GREP" && GREP=grep
  6952. _LT_DECL([], [GREP], [1], [A grep program that handles long lines])
  6953. _LT_DECL([], [EGREP], [1], [An ERE matcher])
  6954. _LT_DECL([], [FGREP], [1], [A literal string matcher])
  6955. dnl Non-bleeding-edge autoconf doesn't subst GREP, so do it here too
  6956. AC_SUBST([GREP])
  6957. ])
  6958. # _LT_DECL_OBJDUMP
  6959. # --------------
  6960. # If we don't have a new enough Autoconf to choose the best objdump
  6961. # available, choose the one first in the user's PATH.
  6962. m4_defun([_LT_DECL_OBJDUMP],
  6963. [AC_CHECK_TOOL(OBJDUMP, objdump, false)
  6964. test -z "$OBJDUMP" && OBJDUMP=objdump
  6965. _LT_DECL([], [OBJDUMP], [1], [An object symbol dumper])
  6966. AC_SUBST([OBJDUMP])
  6967. ])
  6968. # _LT_DECL_DLLTOOL
  6969. # ----------------
  6970. # Ensure DLLTOOL variable is set.
  6971. m4_defun([_LT_DECL_DLLTOOL],
  6972. [AC_CHECK_TOOL(DLLTOOL, dlltool, false)
  6973. test -z "$DLLTOOL" && DLLTOOL=dlltool
  6974. _LT_DECL([], [DLLTOOL], [1], [DLL creation program])
  6975. AC_SUBST([DLLTOOL])
  6976. ])
  6977. # _LT_DECL_SED
  6978. # ------------
  6979. # Check for a fully-functional sed program, that truncates
  6980. # as few characters as possible. Prefer GNU sed if found.
  6981. m4_defun([_LT_DECL_SED],
  6982. [AC_PROG_SED
  6983. test -z "$SED" && SED=sed
  6984. Xsed="$SED -e 1s/^X//"
  6985. _LT_DECL([], [SED], [1], [A sed program that does not truncate output])
  6986. _LT_DECL([], [Xsed], ["\$SED -e 1s/^X//"],
  6987. [Sed that helps us avoid accidentally triggering echo(1) options like -n])
  6988. ])# _LT_DECL_SED
  6989. m4_ifndef([AC_PROG_SED], [
  6990. # NOTE: This macro has been submitted for inclusion into #
  6991. # GNU Autoconf as AC_PROG_SED. When it is available in #
  6992. # a released version of Autoconf we should remove this #
  6993. # macro and use it instead. #
  6994. m4_defun([AC_PROG_SED],
  6995. [AC_MSG_CHECKING([for a sed that does not truncate output])
  6996. AC_CACHE_VAL(lt_cv_path_SED,
  6997. [# Loop through the user's path and test for sed and gsed.
  6998. # Then use that list of sed's as ones to test for truncation.
  6999. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
  7000. for as_dir in $PATH
  7001. do
  7002. IFS=$as_save_IFS
  7003. test -z "$as_dir" && as_dir=.
  7004. for lt_ac_prog in sed gsed; do
  7005. for ac_exec_ext in '' $ac_executable_extensions; do
  7006. if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then
  7007. lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext"
  7008. fi
  7009. done
  7010. done
  7011. done
  7012. IFS=$as_save_IFS
  7013. lt_ac_max=0
  7014. lt_ac_count=0
  7015. # Add /usr/xpg4/bin/sed as it is typically found on Solaris
  7016. # along with /bin/sed that truncates output.
  7017. for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do
  7018. test ! -f $lt_ac_sed && continue
  7019. cat /dev/null > conftest.in
  7020. lt_ac_count=0
  7021. echo $ECHO_N "0123456789$ECHO_C" >conftest.in
  7022. # Check for GNU sed and select it if it is found.
  7023. if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then
  7024. lt_cv_path_SED=$lt_ac_sed
  7025. break
  7026. fi
  7027. while true; do
  7028. cat conftest.in conftest.in >conftest.tmp
  7029. mv conftest.tmp conftest.in
  7030. cp conftest.in conftest.nl
  7031. echo >>conftest.nl
  7032. $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break
  7033. cmp -s conftest.out conftest.nl || break
  7034. # 10000 chars as input seems more than enough
  7035. test $lt_ac_count -gt 10 && break
  7036. lt_ac_count=`expr $lt_ac_count + 1`
  7037. if test $lt_ac_count -gt $lt_ac_max; then
  7038. lt_ac_max=$lt_ac_count
  7039. lt_cv_path_SED=$lt_ac_sed
  7040. fi
  7041. done
  7042. done
  7043. ])
  7044. SED=$lt_cv_path_SED
  7045. AC_SUBST([SED])
  7046. AC_MSG_RESULT([$SED])
  7047. ])#AC_PROG_SED
  7048. ])#m4_ifndef
  7049. # Old name:
  7050. AU_ALIAS([LT_AC_PROG_SED], [AC_PROG_SED])
  7051. dnl aclocal-1.4 backwards compatibility:
  7052. dnl AC_DEFUN([LT_AC_PROG_SED], [])
  7053. # _LT_CHECK_SHELL_FEATURES
  7054. # ------------------------
  7055. # Find out whether the shell is Bourne or XSI compatible,
  7056. # or has some other useful features.
  7057. m4_defun([_LT_CHECK_SHELL_FEATURES],
  7058. [AC_MSG_CHECKING([whether the shell understands some XSI constructs])
  7059. # Try some XSI features
  7060. xsi_shell=no
  7061. ( _lt_dummy="a/b/c"
  7062. test "${_lt_dummy##*/},${_lt_dummy%/*},${_lt_dummy#??}"${_lt_dummy%"$_lt_dummy"}, \
  7063. = c,a/b,b/c, \
  7064. && eval 'test $(( 1 + 1 )) -eq 2 \
  7065. && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \
  7066. && xsi_shell=yes
  7067. AC_MSG_RESULT([$xsi_shell])
  7068. _LT_CONFIG_LIBTOOL_INIT([xsi_shell='$xsi_shell'])
  7069. AC_MSG_CHECKING([whether the shell understands "+="])
  7070. lt_shell_append=no
  7071. ( foo=bar; set foo baz; eval "$[1]+=\$[2]" && test "$foo" = barbaz ) \
  7072. >/dev/null 2>&1 \
  7073. && lt_shell_append=yes
  7074. AC_MSG_RESULT([$lt_shell_append])
  7075. _LT_CONFIG_LIBTOOL_INIT([lt_shell_append='$lt_shell_append'])
  7076. if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
  7077. lt_unset=unset
  7078. else
  7079. lt_unset=false
  7080. fi
  7081. _LT_DECL([], [lt_unset], [0], [whether the shell understands "unset"])dnl
  7082. # test EBCDIC or ASCII
  7083. case `echo X|tr X '\101'` in
  7084. A) # ASCII based system
  7085. # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr
  7086. lt_SP2NL='tr \040 \012'
  7087. lt_NL2SP='tr \015\012 \040\040'
  7088. ;;
  7089. *) # EBCDIC based system
  7090. lt_SP2NL='tr \100 \n'
  7091. lt_NL2SP='tr \r\n \100\100'
  7092. ;;
  7093. esac
  7094. _LT_DECL([SP2NL], [lt_SP2NL], [1], [turn spaces into newlines])dnl
  7095. _LT_DECL([NL2SP], [lt_NL2SP], [1], [turn newlines into spaces])dnl
  7096. ])# _LT_CHECK_SHELL_FEATURES
  7097. # _LT_PROG_FUNCTION_REPLACE (FUNCNAME, REPLACEMENT-BODY)
  7098. # ------------------------------------------------------
  7099. # In `$cfgfile', look for function FUNCNAME delimited by `^FUNCNAME ()$' and
  7100. # '^} FUNCNAME ', and replace its body with REPLACEMENT-BODY.
  7101. m4_defun([_LT_PROG_FUNCTION_REPLACE],
  7102. [dnl {
  7103. sed -e '/^$1 ()$/,/^} # $1 /c\
  7104. $1 ()\
  7105. {\
  7106. m4_bpatsubsts([$2], [$], [\\], [^\([ ]\)], [\\\1])
  7107. } # Extended-shell $1 implementation' "$cfgfile" > $cfgfile.tmp \
  7108. && mv -f "$cfgfile.tmp" "$cfgfile" \
  7109. || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
  7110. test 0 -eq $? || _lt_function_replace_fail=:
  7111. ])
  7112. # _LT_PROG_REPLACE_SHELLFNS
  7113. # -------------------------
  7114. # Replace existing portable implementations of several shell functions with
  7115. # equivalent extended shell implementations where those features are available..
  7116. m4_defun([_LT_PROG_REPLACE_SHELLFNS],
  7117. [if test x"$xsi_shell" = xyes; then
  7118. _LT_PROG_FUNCTION_REPLACE([func_dirname], [dnl
  7119. case ${1} in
  7120. */*) func_dirname_result="${1%/*}${2}" ;;
  7121. * ) func_dirname_result="${3}" ;;
  7122. esac])
  7123. _LT_PROG_FUNCTION_REPLACE([func_basename], [dnl
  7124. func_basename_result="${1##*/}"])
  7125. _LT_PROG_FUNCTION_REPLACE([func_dirname_and_basename], [dnl
  7126. case ${1} in
  7127. */*) func_dirname_result="${1%/*}${2}" ;;
  7128. * ) func_dirname_result="${3}" ;;
  7129. esac
  7130. func_basename_result="${1##*/}"])
  7131. _LT_PROG_FUNCTION_REPLACE([func_stripname], [dnl
  7132. # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are
  7133. # positional parameters, so assign one to ordinary parameter first.
  7134. func_stripname_result=${3}
  7135. func_stripname_result=${func_stripname_result#"${1}"}
  7136. func_stripname_result=${func_stripname_result%"${2}"}])
  7137. _LT_PROG_FUNCTION_REPLACE([func_split_long_opt], [dnl
  7138. func_split_long_opt_name=${1%%=*}
  7139. func_split_long_opt_arg=${1#*=}])
  7140. _LT_PROG_FUNCTION_REPLACE([func_split_short_opt], [dnl
  7141. func_split_short_opt_arg=${1#??}
  7142. func_split_short_opt_name=${1%"$func_split_short_opt_arg"}])
  7143. _LT_PROG_FUNCTION_REPLACE([func_lo2o], [dnl
  7144. case ${1} in
  7145. *.lo) func_lo2o_result=${1%.lo}.${objext} ;;
  7146. *) func_lo2o_result=${1} ;;
  7147. esac])
  7148. _LT_PROG_FUNCTION_REPLACE([func_xform], [ func_xform_result=${1%.*}.lo])
  7149. _LT_PROG_FUNCTION_REPLACE([func_arith], [ func_arith_result=$(( $[*] ))])
  7150. _LT_PROG_FUNCTION_REPLACE([func_len], [ func_len_result=${#1}])
  7151. fi
  7152. if test x"$lt_shell_append" = xyes; then
  7153. _LT_PROG_FUNCTION_REPLACE([func_append], [ eval "${1}+=\\${2}"])
  7154. _LT_PROG_FUNCTION_REPLACE([func_append_quoted], [dnl
  7155. func_quote_for_eval "${2}"
  7156. dnl m4 expansion turns \\\\ into \\, and then the shell eval turns that into \
  7157. eval "${1}+=\\\\ \\$func_quote_for_eval_result"])
  7158. # Save a `func_append' function call where possible by direct use of '+='
  7159. sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \
  7160. && mv -f "$cfgfile.tmp" "$cfgfile" \
  7161. || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
  7162. test 0 -eq $? || _lt_function_replace_fail=:
  7163. else
  7164. # Save a `func_append' function call even when '+=' is not available
  7165. sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \
  7166. && mv -f "$cfgfile.tmp" "$cfgfile" \
  7167. || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp")
  7168. test 0 -eq $? || _lt_function_replace_fail=:
  7169. fi
  7170. if test x"$_lt_function_replace_fail" = x":"; then
  7171. AC_MSG_WARN([Unable to substitute extended shell functions in $ofile])
  7172. fi
  7173. ])
  7174. # _LT_PATH_CONVERSION_FUNCTIONS
  7175. # -----------------------------
  7176. # Determine which file name conversion functions should be used by
  7177. # func_to_host_file (and, implicitly, by func_to_host_path). These are needed
  7178. # for certain cross-compile configurations and native mingw.
  7179. m4_defun([_LT_PATH_CONVERSION_FUNCTIONS],
  7180. [AC_REQUIRE([AC_CANONICAL_HOST])dnl
  7181. AC_REQUIRE([AC_CANONICAL_BUILD])dnl
  7182. AC_MSG_CHECKING([how to convert $build file names to $host format])
  7183. AC_CACHE_VAL(lt_cv_to_host_file_cmd,
  7184. [case $host in
  7185. *-*-mingw* )
  7186. case $build in
  7187. *-*-mingw* ) # actually msys
  7188. lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32
  7189. ;;
  7190. *-*-cygwin* )
  7191. lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32
  7192. ;;
  7193. * ) # otherwise, assume *nix
  7194. lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32
  7195. ;;
  7196. esac
  7197. ;;
  7198. *-*-cygwin* )
  7199. case $build in
  7200. *-*-mingw* ) # actually msys
  7201. lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin
  7202. ;;
  7203. *-*-cygwin* )
  7204. lt_cv_to_host_file_cmd=func_convert_file_noop
  7205. ;;
  7206. * ) # otherwise, assume *nix
  7207. lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin
  7208. ;;
  7209. esac
  7210. ;;
  7211. * ) # unhandled hosts (and "normal" native builds)
  7212. lt_cv_to_host_file_cmd=func_convert_file_noop
  7213. ;;
  7214. esac
  7215. ])
  7216. to_host_file_cmd=$lt_cv_to_host_file_cmd
  7217. AC_MSG_RESULT([$lt_cv_to_host_file_cmd])
  7218. _LT_DECL([to_host_file_cmd], [lt_cv_to_host_file_cmd],
  7219. [0], [convert $build file names to $host format])dnl
  7220. AC_MSG_CHECKING([how to convert $build file names to toolchain format])
  7221. AC_CACHE_VAL(lt_cv_to_tool_file_cmd,
  7222. [#assume ordinary cross tools, or native build.
  7223. lt_cv_to_tool_file_cmd=func_convert_file_noop
  7224. case $host in
  7225. *-*-mingw* )
  7226. case $build in
  7227. *-*-mingw* ) # actually msys
  7228. lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32
  7229. ;;
  7230. esac
  7231. ;;
  7232. esac
  7233. ])
  7234. to_tool_file_cmd=$lt_cv_to_tool_file_cmd
  7235. AC_MSG_RESULT([$lt_cv_to_tool_file_cmd])
  7236. _LT_DECL([to_tool_file_cmd], [lt_cv_to_tool_file_cmd],
  7237. [0], [convert $build files to toolchain format])dnl
  7238. ])# _LT_PATH_CONVERSION_FUNCTIONS
  7239. # Helper functions for option handling. -*- Autoconf -*-
  7240. #
  7241. # Copyright (C) 2004, 2005, 2007, 2008, 2009 Free Software Foundation,
  7242. # Inc.
  7243. # Written by Gary V. Vaughan, 2004
  7244. #
  7245. # This file is free software; the Free Software Foundation gives
  7246. # unlimited permission to copy and/or distribute it, with or without
  7247. # modifications, as long as this notice is preserved.
  7248. # serial 7 ltoptions.m4
  7249. # This is to help aclocal find these macros, as it can't see m4_define.
  7250. AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])])
  7251. # _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME)
  7252. # ------------------------------------------
  7253. m4_define([_LT_MANGLE_OPTION],
  7254. [[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])])
  7255. # _LT_SET_OPTION(MACRO-NAME, OPTION-NAME)
  7256. # ---------------------------------------
  7257. # Set option OPTION-NAME for macro MACRO-NAME, and if there is a
  7258. # matching handler defined, dispatch to it. Other OPTION-NAMEs are
  7259. # saved as a flag.
  7260. m4_define([_LT_SET_OPTION],
  7261. [m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl
  7262. m4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]),
  7263. _LT_MANGLE_DEFUN([$1], [$2]),
  7264. [m4_warning([Unknown $1 option `$2'])])[]dnl
  7265. ])
  7266. # _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET])
  7267. # ------------------------------------------------------------
  7268. # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
  7269. m4_define([_LT_IF_OPTION],
  7270. [m4_ifdef(_LT_MANGLE_OPTION([$1], [$2]), [$3], [$4])])
  7271. # _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET)
  7272. # -------------------------------------------------------
  7273. # Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME
  7274. # are set.
  7275. m4_define([_LT_UNLESS_OPTIONS],
  7276. [m4_foreach([_LT_Option], m4_split(m4_normalize([$2])),
  7277. [m4_ifdef(_LT_MANGLE_OPTION([$1], _LT_Option),
  7278. [m4_define([$0_found])])])[]dnl
  7279. m4_ifdef([$0_found], [m4_undefine([$0_found])], [$3
  7280. ])[]dnl
  7281. ])
  7282. # _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST)
  7283. # ----------------------------------------
  7284. # OPTION-LIST is a space-separated list of Libtool options associated
  7285. # with MACRO-NAME. If any OPTION has a matching handler declared with
  7286. # LT_OPTION_DEFINE, dispatch to that macro; otherwise complain about
  7287. # the unknown option and exit.
  7288. m4_defun([_LT_SET_OPTIONS],
  7289. [# Set options
  7290. m4_foreach([_LT_Option], m4_split(m4_normalize([$2])),
  7291. [_LT_SET_OPTION([$1], _LT_Option)])
  7292. m4_if([$1],[LT_INIT],[
  7293. dnl
  7294. dnl Simply set some default values (i.e off) if boolean options were not
  7295. dnl specified:
  7296. _LT_UNLESS_OPTIONS([LT_INIT], [dlopen], [enable_dlopen=no
  7297. ])
  7298. _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no
  7299. ])
  7300. dnl
  7301. dnl If no reference was made to various pairs of opposing options, then
  7302. dnl we run the default mode handler for the pair. For example, if neither
  7303. dnl `shared' nor `disable-shared' was passed, we enable building of shared
  7304. dnl archives by default:
  7305. _LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED])
  7306. _LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC])
  7307. _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC])
  7308. _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install],
  7309. [_LT_ENABLE_FAST_INSTALL])
  7310. ])
  7311. ])# _LT_SET_OPTIONS
  7312. # _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME)
  7313. # -----------------------------------------
  7314. m4_define([_LT_MANGLE_DEFUN],
  7315. [[_LT_OPTION_DEFUN_]m4_bpatsubst(m4_toupper([$1__$2]), [[^A-Z0-9_]], [_])])
  7316. # LT_OPTION_DEFINE(MACRO-NAME, OPTION-NAME, CODE)
  7317. # -----------------------------------------------
  7318. m4_define([LT_OPTION_DEFINE],
  7319. [m4_define(_LT_MANGLE_DEFUN([$1], [$2]), [$3])[]dnl
  7320. ])# LT_OPTION_DEFINE
  7321. # dlopen
  7322. # ------
  7323. LT_OPTION_DEFINE([LT_INIT], [dlopen], [enable_dlopen=yes
  7324. ])
  7325. AU_DEFUN([AC_LIBTOOL_DLOPEN],
  7326. [_LT_SET_OPTION([LT_INIT], [dlopen])
  7327. AC_DIAGNOSE([obsolete],
  7328. [$0: Remove this warning and the call to _LT_SET_OPTION when you
  7329. put the `dlopen' option into LT_INIT's first parameter.])
  7330. ])
  7331. dnl aclocal-1.4 backwards compatibility:
  7332. dnl AC_DEFUN([AC_LIBTOOL_DLOPEN], [])
  7333. # win32-dll
  7334. # ---------
  7335. # Declare package support for building win32 dll's.
  7336. LT_OPTION_DEFINE([LT_INIT], [win32-dll],
  7337. [enable_win32_dll=yes
  7338. case $host in
  7339. *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-cegcc*)
  7340. AC_CHECK_TOOL(AS, as, false)
  7341. AC_CHECK_TOOL(DLLTOOL, dlltool, false)
  7342. AC_CHECK_TOOL(OBJDUMP, objdump, false)
  7343. ;;
  7344. esac
  7345. test -z "$AS" && AS=as
  7346. _LT_DECL([], [AS], [1], [Assembler program])dnl
  7347. test -z "$DLLTOOL" && DLLTOOL=dlltool
  7348. _LT_DECL([], [DLLTOOL], [1], [DLL creation program])dnl
  7349. test -z "$OBJDUMP" && OBJDUMP=objdump
  7350. _LT_DECL([], [OBJDUMP], [1], [Object dumper program])dnl
  7351. ])# win32-dll
  7352. AU_DEFUN([AC_LIBTOOL_WIN32_DLL],
  7353. [AC_REQUIRE([AC_CANONICAL_HOST])dnl
  7354. _LT_SET_OPTION([LT_INIT], [win32-dll])
  7355. AC_DIAGNOSE([obsolete],
  7356. [$0: Remove this warning and the call to _LT_SET_OPTION when you
  7357. put the `win32-dll' option into LT_INIT's first parameter.])
  7358. ])
  7359. dnl aclocal-1.4 backwards compatibility:
  7360. dnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [])
  7361. # _LT_ENABLE_SHARED([DEFAULT])
  7362. # ----------------------------
  7363. # implement the --enable-shared flag, and supports the `shared' and
  7364. # `disable-shared' LT_INIT options.
  7365. # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'.
  7366. m4_define([_LT_ENABLE_SHARED],
  7367. [m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl
  7368. AC_ARG_ENABLE([shared],
  7369. [AS_HELP_STRING([--enable-shared@<:@=PKGS@:>@],
  7370. [build shared libraries @<:@default=]_LT_ENABLE_SHARED_DEFAULT[@:>@])],
  7371. [p=${PACKAGE-default}
  7372. case $enableval in
  7373. yes) enable_shared=yes ;;
  7374. no) enable_shared=no ;;
  7375. *)
  7376. enable_shared=no
  7377. # Look at the argument we got. We use all the common list separators.
  7378. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
  7379. for pkg in $enableval; do
  7380. IFS="$lt_save_ifs"
  7381. if test "X$pkg" = "X$p"; then
  7382. enable_shared=yes
  7383. fi
  7384. done
  7385. IFS="$lt_save_ifs"
  7386. ;;
  7387. esac],
  7388. [enable_shared=]_LT_ENABLE_SHARED_DEFAULT)
  7389. _LT_DECL([build_libtool_libs], [enable_shared], [0],
  7390. [Whether or not to build shared libraries])
  7391. ])# _LT_ENABLE_SHARED
  7392. LT_OPTION_DEFINE([LT_INIT], [shared], [_LT_ENABLE_SHARED([yes])])
  7393. LT_OPTION_DEFINE([LT_INIT], [disable-shared], [_LT_ENABLE_SHARED([no])])
  7394. # Old names:
  7395. AC_DEFUN([AC_ENABLE_SHARED],
  7396. [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared])
  7397. ])
  7398. AC_DEFUN([AC_DISABLE_SHARED],
  7399. [_LT_SET_OPTION([LT_INIT], [disable-shared])
  7400. ])
  7401. AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)])
  7402. AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)])
  7403. dnl aclocal-1.4 backwards compatibility:
  7404. dnl AC_DEFUN([AM_ENABLE_SHARED], [])
  7405. dnl AC_DEFUN([AM_DISABLE_SHARED], [])
  7406. # _LT_ENABLE_STATIC([DEFAULT])
  7407. # ----------------------------
  7408. # implement the --enable-static flag, and support the `static' and
  7409. # `disable-static' LT_INIT options.
  7410. # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'.
  7411. m4_define([_LT_ENABLE_STATIC],
  7412. [m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl
  7413. AC_ARG_ENABLE([static],
  7414. [AS_HELP_STRING([--enable-static@<:@=PKGS@:>@],
  7415. [build static libraries @<:@default=]_LT_ENABLE_STATIC_DEFAULT[@:>@])],
  7416. [p=${PACKAGE-default}
  7417. case $enableval in
  7418. yes) enable_static=yes ;;
  7419. no) enable_static=no ;;
  7420. *)
  7421. enable_static=no
  7422. # Look at the argument we got. We use all the common list separators.
  7423. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
  7424. for pkg in $enableval; do
  7425. IFS="$lt_save_ifs"
  7426. if test "X$pkg" = "X$p"; then
  7427. enable_static=yes
  7428. fi
  7429. done
  7430. IFS="$lt_save_ifs"
  7431. ;;
  7432. esac],
  7433. [enable_static=]_LT_ENABLE_STATIC_DEFAULT)
  7434. _LT_DECL([build_old_libs], [enable_static], [0],
  7435. [Whether or not to build static libraries])
  7436. ])# _LT_ENABLE_STATIC
  7437. LT_OPTION_DEFINE([LT_INIT], [static], [_LT_ENABLE_STATIC([yes])])
  7438. LT_OPTION_DEFINE([LT_INIT], [disable-static], [_LT_ENABLE_STATIC([no])])
  7439. # Old names:
  7440. AC_DEFUN([AC_ENABLE_STATIC],
  7441. [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static])
  7442. ])
  7443. AC_DEFUN([AC_DISABLE_STATIC],
  7444. [_LT_SET_OPTION([LT_INIT], [disable-static])
  7445. ])
  7446. AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)])
  7447. AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)])
  7448. dnl aclocal-1.4 backwards compatibility:
  7449. dnl AC_DEFUN([AM_ENABLE_STATIC], [])
  7450. dnl AC_DEFUN([AM_DISABLE_STATIC], [])
  7451. # _LT_ENABLE_FAST_INSTALL([DEFAULT])
  7452. # ----------------------------------
  7453. # implement the --enable-fast-install flag, and support the `fast-install'
  7454. # and `disable-fast-install' LT_INIT options.
  7455. # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'.
  7456. m4_define([_LT_ENABLE_FAST_INSTALL],
  7457. [m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl
  7458. AC_ARG_ENABLE([fast-install],
  7459. [AS_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@],
  7460. [optimize for fast installation @<:@default=]_LT_ENABLE_FAST_INSTALL_DEFAULT[@:>@])],
  7461. [p=${PACKAGE-default}
  7462. case $enableval in
  7463. yes) enable_fast_install=yes ;;
  7464. no) enable_fast_install=no ;;
  7465. *)
  7466. enable_fast_install=no
  7467. # Look at the argument we got. We use all the common list separators.
  7468. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
  7469. for pkg in $enableval; do
  7470. IFS="$lt_save_ifs"
  7471. if test "X$pkg" = "X$p"; then
  7472. enable_fast_install=yes
  7473. fi
  7474. done
  7475. IFS="$lt_save_ifs"
  7476. ;;
  7477. esac],
  7478. [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT)
  7479. _LT_DECL([fast_install], [enable_fast_install], [0],
  7480. [Whether or not to optimize for fast installation])dnl
  7481. ])# _LT_ENABLE_FAST_INSTALL
  7482. LT_OPTION_DEFINE([LT_INIT], [fast-install], [_LT_ENABLE_FAST_INSTALL([yes])])
  7483. LT_OPTION_DEFINE([LT_INIT], [disable-fast-install], [_LT_ENABLE_FAST_INSTALL([no])])
  7484. # Old names:
  7485. AU_DEFUN([AC_ENABLE_FAST_INSTALL],
  7486. [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install])
  7487. AC_DIAGNOSE([obsolete],
  7488. [$0: Remove this warning and the call to _LT_SET_OPTION when you put
  7489. the `fast-install' option into LT_INIT's first parameter.])
  7490. ])
  7491. AU_DEFUN([AC_DISABLE_FAST_INSTALL],
  7492. [_LT_SET_OPTION([LT_INIT], [disable-fast-install])
  7493. AC_DIAGNOSE([obsolete],
  7494. [$0: Remove this warning and the call to _LT_SET_OPTION when you put
  7495. the `disable-fast-install' option into LT_INIT's first parameter.])
  7496. ])
  7497. dnl aclocal-1.4 backwards compatibility:
  7498. dnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], [])
  7499. dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], [])
  7500. # _LT_WITH_PIC([MODE])
  7501. # --------------------
  7502. # implement the --with-pic flag, and support the `pic-only' and `no-pic'
  7503. # LT_INIT options.
  7504. # MODE is either `yes' or `no'. If omitted, it defaults to `both'.
  7505. m4_define([_LT_WITH_PIC],
  7506. [AC_ARG_WITH([pic],
  7507. [AS_HELP_STRING([--with-pic@<:@=PKGS@:>@],
  7508. [try to use only PIC/non-PIC objects @<:@default=use both@:>@])],
  7509. [lt_p=${PACKAGE-default}
  7510. case $withval in
  7511. yes|no) pic_mode=$withval ;;
  7512. *)
  7513. pic_mode=default
  7514. # Look at the argument we got. We use all the common list separators.
  7515. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
  7516. for lt_pkg in $withval; do
  7517. IFS="$lt_save_ifs"
  7518. if test "X$lt_pkg" = "X$lt_p"; then
  7519. pic_mode=yes
  7520. fi
  7521. done
  7522. IFS="$lt_save_ifs"
  7523. ;;
  7524. esac],
  7525. [pic_mode=default])
  7526. test -z "$pic_mode" && pic_mode=m4_default([$1], [default])
  7527. _LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl
  7528. ])# _LT_WITH_PIC
  7529. LT_OPTION_DEFINE([LT_INIT], [pic-only], [_LT_WITH_PIC([yes])])
  7530. LT_OPTION_DEFINE([LT_INIT], [no-pic], [_LT_WITH_PIC([no])])
  7531. # Old name:
  7532. AU_DEFUN([AC_LIBTOOL_PICMODE],
  7533. [_LT_SET_OPTION([LT_INIT], [pic-only])
  7534. AC_DIAGNOSE([obsolete],
  7535. [$0: Remove this warning and the call to _LT_SET_OPTION when you
  7536. put the `pic-only' option into LT_INIT's first parameter.])
  7537. ])
  7538. dnl aclocal-1.4 backwards compatibility:
  7539. dnl AC_DEFUN([AC_LIBTOOL_PICMODE], [])
  7540. m4_define([_LTDL_MODE], [])
  7541. LT_OPTION_DEFINE([LTDL_INIT], [nonrecursive],
  7542. [m4_define([_LTDL_MODE], [nonrecursive])])
  7543. LT_OPTION_DEFINE([LTDL_INIT], [recursive],
  7544. [m4_define([_LTDL_MODE], [recursive])])
  7545. LT_OPTION_DEFINE([LTDL_INIT], [subproject],
  7546. [m4_define([_LTDL_MODE], [subproject])])
  7547. m4_define([_LTDL_TYPE], [])
  7548. LT_OPTION_DEFINE([LTDL_INIT], [installable],
  7549. [m4_define([_LTDL_TYPE], [installable])])
  7550. LT_OPTION_DEFINE([LTDL_INIT], [convenience],
  7551. [m4_define([_LTDL_TYPE], [convenience])])
  7552. # ltsugar.m4 -- libtool m4 base layer. -*-Autoconf-*-
  7553. #
  7554. # Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation, Inc.
  7555. # Written by Gary V. Vaughan, 2004
  7556. #
  7557. # This file is free software; the Free Software Foundation gives
  7558. # unlimited permission to copy and/or distribute it, with or without
  7559. # modifications, as long as this notice is preserved.
  7560. # serial 6 ltsugar.m4
  7561. # This is to help aclocal find these macros, as it can't see m4_define.
  7562. AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])])
  7563. # lt_join(SEP, ARG1, [ARG2...])
  7564. # -----------------------------
  7565. # Produce ARG1SEPARG2...SEPARGn, omitting [] arguments and their
  7566. # associated separator.
  7567. # Needed until we can rely on m4_join from Autoconf 2.62, since all earlier
  7568. # versions in m4sugar had bugs.
  7569. m4_define([lt_join],
  7570. [m4_if([$#], [1], [],
  7571. [$#], [2], [[$2]],
  7572. [m4_if([$2], [], [], [[$2]_])$0([$1], m4_shift(m4_shift($@)))])])
  7573. m4_define([_lt_join],
  7574. [m4_if([$#$2], [2], [],
  7575. [m4_if([$2], [], [], [[$1$2]])$0([$1], m4_shift(m4_shift($@)))])])
  7576. # lt_car(LIST)
  7577. # lt_cdr(LIST)
  7578. # ------------
  7579. # Manipulate m4 lists.
  7580. # These macros are necessary as long as will still need to support
  7581. # Autoconf-2.59 which quotes differently.
  7582. m4_define([lt_car], [[$1]])
  7583. m4_define([lt_cdr],
  7584. [m4_if([$#], 0, [m4_fatal([$0: cannot be called without arguments])],
  7585. [$#], 1, [],
  7586. [m4_dquote(m4_shift($@))])])
  7587. m4_define([lt_unquote], $1)
  7588. # lt_append(MACRO-NAME, STRING, [SEPARATOR])
  7589. # ------------------------------------------
  7590. # Redefine MACRO-NAME to hold its former content plus `SEPARATOR'`STRING'.
  7591. # Note that neither SEPARATOR nor STRING are expanded; they are appended
  7592. # to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked).
  7593. # No SEPARATOR is output if MACRO-NAME was previously undefined (different
  7594. # than defined and empty).
  7595. #
  7596. # This macro is needed until we can rely on Autoconf 2.62, since earlier
  7597. # versions of m4sugar mistakenly expanded SEPARATOR but not STRING.
  7598. m4_define([lt_append],
  7599. [m4_define([$1],
  7600. m4_ifdef([$1], [m4_defn([$1])[$3]])[$2])])
  7601. # lt_combine(SEP, PREFIX-LIST, INFIX, SUFFIX1, [SUFFIX2...])
  7602. # ----------------------------------------------------------
  7603. # Produce a SEP delimited list of all paired combinations of elements of
  7604. # PREFIX-LIST with SUFFIX1 through SUFFIXn. Each element of the list
  7605. # has the form PREFIXmINFIXSUFFIXn.
  7606. # Needed until we can rely on m4_combine added in Autoconf 2.62.
  7607. m4_define([lt_combine],
  7608. [m4_if(m4_eval([$# > 3]), [1],
  7609. [m4_pushdef([_Lt_sep], [m4_define([_Lt_sep], m4_defn([lt_car]))])]]dnl
  7610. [[m4_foreach([_Lt_prefix], [$2],
  7611. [m4_foreach([_Lt_suffix],
  7612. ]m4_dquote(m4_dquote(m4_shift(m4_shift(m4_shift($@)))))[,
  7613. [_Lt_sep([$1])[]m4_defn([_Lt_prefix])[$3]m4_defn([_Lt_suffix])])])])])
  7614. # lt_if_append_uniq(MACRO-NAME, VARNAME, [SEPARATOR], [UNIQ], [NOT-UNIQ])
  7615. # -----------------------------------------------------------------------
  7616. # Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited
  7617. # by SEPARATOR if supplied) and expand UNIQ, else NOT-UNIQ.
  7618. m4_define([lt_if_append_uniq],
  7619. [m4_ifdef([$1],
  7620. [m4_if(m4_index([$3]m4_defn([$1])[$3], [$3$2$3]), [-1],
  7621. [lt_append([$1], [$2], [$3])$4],
  7622. [$5])],
  7623. [lt_append([$1], [$2], [$3])$4])])
  7624. # lt_dict_add(DICT, KEY, VALUE)
  7625. # -----------------------------
  7626. m4_define([lt_dict_add],
  7627. [m4_define([$1($2)], [$3])])
  7628. # lt_dict_add_subkey(DICT, KEY, SUBKEY, VALUE)
  7629. # --------------------------------------------
  7630. m4_define([lt_dict_add_subkey],
  7631. [m4_define([$1($2:$3)], [$4])])
  7632. # lt_dict_fetch(DICT, KEY, [SUBKEY])
  7633. # ----------------------------------
  7634. m4_define([lt_dict_fetch],
  7635. [m4_ifval([$3],
  7636. m4_ifdef([$1($2:$3)], [m4_defn([$1($2:$3)])]),
  7637. m4_ifdef([$1($2)], [m4_defn([$1($2)])]))])
  7638. # lt_if_dict_fetch(DICT, KEY, [SUBKEY], VALUE, IF-TRUE, [IF-FALSE])
  7639. # -----------------------------------------------------------------
  7640. m4_define([lt_if_dict_fetch],
  7641. [m4_if(lt_dict_fetch([$1], [$2], [$3]), [$4],
  7642. [$5],
  7643. [$6])])
  7644. # lt_dict_filter(DICT, [SUBKEY], VALUE, [SEPARATOR], KEY, [...])
  7645. # --------------------------------------------------------------
  7646. m4_define([lt_dict_filter],
  7647. [m4_if([$5], [], [],
  7648. [lt_join(m4_quote(m4_default([$4], [[, ]])),
  7649. lt_unquote(m4_split(m4_normalize(m4_foreach(_Lt_key, lt_car([m4_shiftn(4, $@)]),
  7650. [lt_if_dict_fetch([$1], _Lt_key, [$2], [$3], [_Lt_key ])])))))])[]dnl
  7651. ])
  7652. # ltversion.m4 -- version numbers -*- Autoconf -*-
  7653. #
  7654. # Copyright (C) 2004 Free Software Foundation, Inc.
  7655. # Written by Scott James Remnant, 2004
  7656. #
  7657. # This file is free software; the Free Software Foundation gives
  7658. # unlimited permission to copy and/or distribute it, with or without
  7659. # modifications, as long as this notice is preserved.
  7660. # @configure_input@
  7661. # serial 3337 ltversion.m4
  7662. # This file is part of GNU Libtool
  7663. m4_define([LT_PACKAGE_VERSION], [2.4.2])
  7664. m4_define([LT_PACKAGE_REVISION], [1.3337])
  7665. AC_DEFUN([LTVERSION_VERSION],
  7666. [macro_version='2.4.2'
  7667. macro_revision='1.3337'
  7668. _LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?])
  7669. _LT_DECL(, macro_revision, 0)
  7670. ])
  7671. # lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*-
  7672. #
  7673. # Copyright (C) 2004, 2005, 2007, 2009 Free Software Foundation, Inc.
  7674. # Written by Scott James Remnant, 2004.
  7675. #
  7676. # This file is free software; the Free Software Foundation gives
  7677. # unlimited permission to copy and/or distribute it, with or without
  7678. # modifications, as long as this notice is preserved.
  7679. # serial 5 lt~obsolete.m4
  7680. # These exist entirely to fool aclocal when bootstrapping libtool.
  7681. #
  7682. # In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN)
  7683. # which have later been changed to m4_define as they aren't part of the
  7684. # exported API, or moved to Autoconf or Automake where they belong.
  7685. #
  7686. # The trouble is, aclocal is a bit thick. It'll see the old AC_DEFUN
  7687. # in /usr/share/aclocal/libtool.m4 and remember it, then when it sees us
  7688. # using a macro with the same name in our local m4/libtool.m4 it'll
  7689. # pull the old libtool.m4 in (it doesn't see our shiny new m4_define
  7690. # and doesn't know about Autoconf macros at all.)
  7691. #
  7692. # So we provide this file, which has a silly filename so it's always
  7693. # included after everything else. This provides aclocal with the
  7694. # AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything
  7695. # because those macros already exist, or will be overwritten later.
  7696. # We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6.
  7697. #
  7698. # Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here.
  7699. # Yes, that means every name once taken will need to remain here until
  7700. # we give up compatibility with versions before 1.7, at which point
  7701. # we need to keep only those names which we still refer to.
  7702. # This is to help aclocal find these macros, as it can't see m4_define.
  7703. AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])])
  7704. m4_ifndef([AC_LIBTOOL_LINKER_OPTION], [AC_DEFUN([AC_LIBTOOL_LINKER_OPTION])])
  7705. m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP])])
  7706. m4_ifndef([_LT_AC_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])])
  7707. m4_ifndef([_LT_AC_SHELL_INIT], [AC_DEFUN([_LT_AC_SHELL_INIT])])
  7708. m4_ifndef([_LT_AC_SYS_LIBPATH_AIX], [AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])])
  7709. m4_ifndef([_LT_PROG_LTMAIN], [AC_DEFUN([_LT_PROG_LTMAIN])])
  7710. m4_ifndef([_LT_AC_TAGVAR], [AC_DEFUN([_LT_AC_TAGVAR])])
  7711. m4_ifndef([AC_LTDL_ENABLE_INSTALL], [AC_DEFUN([AC_LTDL_ENABLE_INSTALL])])
  7712. m4_ifndef([AC_LTDL_PREOPEN], [AC_DEFUN([AC_LTDL_PREOPEN])])
  7713. m4_ifndef([_LT_AC_SYS_COMPILER], [AC_DEFUN([_LT_AC_SYS_COMPILER])])
  7714. m4_ifndef([_LT_AC_LOCK], [AC_DEFUN([_LT_AC_LOCK])])
  7715. m4_ifndef([AC_LIBTOOL_SYS_OLD_ARCHIVE], [AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])])
  7716. m4_ifndef([_LT_AC_TRY_DLOPEN_SELF], [AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])])
  7717. m4_ifndef([AC_LIBTOOL_PROG_CC_C_O], [AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])])
  7718. m4_ifndef([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])])
  7719. m4_ifndef([AC_LIBTOOL_OBJDIR], [AC_DEFUN([AC_LIBTOOL_OBJDIR])])
  7720. m4_ifndef([AC_LTDL_OBJDIR], [AC_DEFUN([AC_LTDL_OBJDIR])])
  7721. m4_ifndef([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])])
  7722. m4_ifndef([AC_LIBTOOL_SYS_LIB_STRIP], [AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])])
  7723. m4_ifndef([AC_PATH_MAGIC], [AC_DEFUN([AC_PATH_MAGIC])])
  7724. m4_ifndef([AC_PROG_LD_GNU], [AC_DEFUN([AC_PROG_LD_GNU])])
  7725. m4_ifndef([AC_PROG_LD_RELOAD_FLAG], [AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])])
  7726. m4_ifndef([AC_DEPLIBS_CHECK_METHOD], [AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])])
  7727. m4_ifndef([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])])
  7728. m4_ifndef([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])])
  7729. m4_ifndef([AC_LIBTOOL_PROG_COMPILER_PIC], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])])
  7730. m4_ifndef([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])])
  7731. m4_ifndef([AC_LIBTOOL_POSTDEP_PREDEP], [AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])])
  7732. m4_ifndef([LT_AC_PROG_EGREP], [AC_DEFUN([LT_AC_PROG_EGREP])])
  7733. m4_ifndef([LT_AC_PROG_SED], [AC_DEFUN([LT_AC_PROG_SED])])
  7734. m4_ifndef([_LT_CC_BASENAME], [AC_DEFUN([_LT_CC_BASENAME])])
  7735. m4_ifndef([_LT_COMPILER_BOILERPLATE], [AC_DEFUN([_LT_COMPILER_BOILERPLATE])])
  7736. m4_ifndef([_LT_LINKER_BOILERPLATE], [AC_DEFUN([_LT_LINKER_BOILERPLATE])])
  7737. m4_ifndef([_AC_PROG_LIBTOOL], [AC_DEFUN([_AC_PROG_LIBTOOL])])
  7738. m4_ifndef([AC_LIBTOOL_SETUP], [AC_DEFUN([AC_LIBTOOL_SETUP])])
  7739. m4_ifndef([_LT_AC_CHECK_DLFCN], [AC_DEFUN([_LT_AC_CHECK_DLFCN])])
  7740. m4_ifndef([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])])
  7741. m4_ifndef([_LT_AC_TAGCONFIG], [AC_DEFUN([_LT_AC_TAGCONFIG])])
  7742. m4_ifndef([AC_DISABLE_FAST_INSTALL], [AC_DEFUN([AC_DISABLE_FAST_INSTALL])])
  7743. m4_ifndef([_LT_AC_LANG_CXX], [AC_DEFUN([_LT_AC_LANG_CXX])])
  7744. m4_ifndef([_LT_AC_LANG_F77], [AC_DEFUN([_LT_AC_LANG_F77])])
  7745. m4_ifndef([_LT_AC_LANG_GCJ], [AC_DEFUN([_LT_AC_LANG_GCJ])])
  7746. m4_ifndef([AC_LIBTOOL_LANG_C_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])])
  7747. m4_ifndef([_LT_AC_LANG_C_CONFIG], [AC_DEFUN([_LT_AC_LANG_C_CONFIG])])
  7748. m4_ifndef([AC_LIBTOOL_LANG_CXX_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])])
  7749. m4_ifndef([_LT_AC_LANG_CXX_CONFIG], [AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])])
  7750. m4_ifndef([AC_LIBTOOL_LANG_F77_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])])
  7751. m4_ifndef([_LT_AC_LANG_F77_CONFIG], [AC_DEFUN([_LT_AC_LANG_F77_CONFIG])])
  7752. m4_ifndef([AC_LIBTOOL_LANG_GCJ_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])])
  7753. m4_ifndef([_LT_AC_LANG_GCJ_CONFIG], [AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])])
  7754. m4_ifndef([AC_LIBTOOL_LANG_RC_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])])
  7755. m4_ifndef([_LT_AC_LANG_RC_CONFIG], [AC_DEFUN([_LT_AC_LANG_RC_CONFIG])])
  7756. m4_ifndef([AC_LIBTOOL_CONFIG], [AC_DEFUN([AC_LIBTOOL_CONFIG])])
  7757. m4_ifndef([_LT_AC_FILE_LTDLL_C], [AC_DEFUN([_LT_AC_FILE_LTDLL_C])])
  7758. m4_ifndef([_LT_REQUIRED_DARWIN_CHECKS], [AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS])])
  7759. m4_ifndef([_LT_AC_PROG_CXXCPP], [AC_DEFUN([_LT_AC_PROG_CXXCPP])])
  7760. m4_ifndef([_LT_PREPARE_SED_QUOTE_VARS], [AC_DEFUN([_LT_PREPARE_SED_QUOTE_VARS])])
  7761. m4_ifndef([_LT_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_PROG_ECHO_BACKSLASH])])
  7762. m4_ifndef([_LT_PROG_F77], [AC_DEFUN([_LT_PROG_F77])])
  7763. m4_ifndef([_LT_PROG_FC], [AC_DEFUN([_LT_PROG_FC])])
  7764. m4_ifndef([_LT_PROG_CXX], [AC_DEFUN([_LT_PROG_CXX])])
  7765. # Copyright (C) 2002-2012 Free Software Foundation, Inc.
  7766. #
  7767. # This file is free software; the Free Software Foundation
  7768. # gives unlimited permission to copy and/or distribute it,
  7769. # with or without modifications, as long as this notice is preserved.
  7770. # serial 8
  7771. # AM_AUTOMAKE_VERSION(VERSION)
  7772. # ----------------------------
  7773. # Automake X.Y traces this macro to ensure aclocal.m4 has been
  7774. # generated from the m4 files accompanying Automake X.Y.
  7775. # (This private macro should not be called outside this file.)
  7776. AC_DEFUN([AM_AUTOMAKE_VERSION],
  7777. [am__api_version='1.12'
  7778. dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
  7779. dnl require some minimum version. Point them to the right macro.
  7780. m4_if([$1], [1.12], [],
  7781. [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
  7782. ])
  7783. # _AM_AUTOCONF_VERSION(VERSION)
  7784. # -----------------------------
  7785. # aclocal traces this macro to find the Autoconf version.
  7786. # This is a private macro too. Using m4_define simplifies
  7787. # the logic in aclocal, which can simply ignore this definition.
  7788. m4_define([_AM_AUTOCONF_VERSION], [])
  7789. # AM_SET_CURRENT_AUTOMAKE_VERSION
  7790. # -------------------------------
  7791. # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
  7792. # This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
  7793. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
  7794. [AM_AUTOMAKE_VERSION([1.12])dnl
  7795. m4_ifndef([AC_AUTOCONF_VERSION],
  7796. [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
  7797. _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
  7798. # AM_AUX_DIR_EXPAND -*- Autoconf -*-
  7799. # Copyright (C) 2001-2012 Free Software Foundation, Inc.
  7800. #
  7801. # This file is free software; the Free Software Foundation
  7802. # gives unlimited permission to copy and/or distribute it,
  7803. # with or without modifications, as long as this notice is preserved.
  7804. # serial 2
  7805. # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
  7806. # $ac_aux_dir to '$srcdir/foo'. In other projects, it is set to
  7807. # '$srcdir', '$srcdir/..', or '$srcdir/../..'.
  7808. #
  7809. # Of course, Automake must honor this variable whenever it calls a
  7810. # tool from the auxiliary directory. The problem is that $srcdir (and
  7811. # therefore $ac_aux_dir as well) can be either absolute or relative,
  7812. # depending on how configure is run. This is pretty annoying, since
  7813. # it makes $ac_aux_dir quite unusable in subdirectories: in the top
  7814. # source directory, any form will work fine, but in subdirectories a
  7815. # relative path needs to be adjusted first.
  7816. #
  7817. # $ac_aux_dir/missing
  7818. # fails when called from a subdirectory if $ac_aux_dir is relative
  7819. # $top_srcdir/$ac_aux_dir/missing
  7820. # fails if $ac_aux_dir is absolute,
  7821. # fails when called from a subdirectory in a VPATH build with
  7822. # a relative $ac_aux_dir
  7823. #
  7824. # The reason of the latter failure is that $top_srcdir and $ac_aux_dir
  7825. # are both prefixed by $srcdir. In an in-source build this is usually
  7826. # harmless because $srcdir is '.', but things will broke when you
  7827. # start a VPATH build or use an absolute $srcdir.
  7828. #
  7829. # So we could use something similar to $top_srcdir/$ac_aux_dir/missing,
  7830. # iff we strip the leading $srcdir from $ac_aux_dir. That would be:
  7831. # am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"`
  7832. # and then we would define $MISSING as
  7833. # MISSING="\${SHELL} $am_aux_dir/missing"
  7834. # This will work as long as MISSING is not called from configure, because
  7835. # unfortunately $(top_srcdir) has no meaning in configure.
  7836. # However there are other variables, like CC, which are often used in
  7837. # configure, and could therefore not use this "fixed" $ac_aux_dir.
  7838. #
  7839. # Another solution, used here, is to always expand $ac_aux_dir to an
  7840. # absolute PATH. The drawback is that using absolute paths prevent a
  7841. # configured tree to be moved without reconfiguration.
  7842. AC_DEFUN([AM_AUX_DIR_EXPAND],
  7843. [dnl Rely on autoconf to set up CDPATH properly.
  7844. AC_PREREQ([2.50])dnl
  7845. # expand $ac_aux_dir to an absolute path
  7846. am_aux_dir=`cd $ac_aux_dir && pwd`
  7847. ])
  7848. # AM_CONDITIONAL -*- Autoconf -*-
  7849. # Copyright (C) 1997-2012 Free Software Foundation, Inc.
  7850. #
  7851. # This file is free software; the Free Software Foundation
  7852. # gives unlimited permission to copy and/or distribute it,
  7853. # with or without modifications, as long as this notice is preserved.
  7854. # serial 10
  7855. # AM_CONDITIONAL(NAME, SHELL-CONDITION)
  7856. # -------------------------------------
  7857. # Define a conditional.
  7858. AC_DEFUN([AM_CONDITIONAL],
  7859. [AC_PREREQ([2.52])dnl
  7860. m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])],
  7861. [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
  7862. AC_SUBST([$1_TRUE])dnl
  7863. AC_SUBST([$1_FALSE])dnl
  7864. _AM_SUBST_NOTMAKE([$1_TRUE])dnl
  7865. _AM_SUBST_NOTMAKE([$1_FALSE])dnl
  7866. m4_define([_AM_COND_VALUE_$1], [$2])dnl
  7867. if $2; then
  7868. $1_TRUE=
  7869. $1_FALSE='#'
  7870. else
  7871. $1_TRUE='#'
  7872. $1_FALSE=
  7873. fi
  7874. AC_CONFIG_COMMANDS_PRE(
  7875. [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
  7876. AC_MSG_ERROR([[conditional "$1" was never defined.
  7877. Usually this means the macro was only invoked conditionally.]])
  7878. fi])])
  7879. # Copyright (C) 1999-2012 Free Software Foundation, Inc.
  7880. #
  7881. # This file is free software; the Free Software Foundation
  7882. # gives unlimited permission to copy and/or distribute it,
  7883. # with or without modifications, as long as this notice is preserved.
  7884. # serial 16
  7885. # There are a few dirty hacks below to avoid letting 'AC_PROG_CC' be
  7886. # written in clear, in which case automake, when reading aclocal.m4,
  7887. # will think it sees a *use*, and therefore will trigger all it's
  7888. # C support machinery. Also note that it means that autoscan, seeing
  7889. # CC etc. in the Makefile, will ask for an AC_PROG_CC use...
  7890. # _AM_DEPENDENCIES(NAME)
  7891. # ----------------------
  7892. # See how the compiler implements dependency checking.
  7893. # NAME is "CC", "CXX", "GCJ", or "OBJC".
  7894. # We try a few techniques and use that to set a single cache variable.
  7895. #
  7896. # We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was
  7897. # modified to invoke _AM_DEPENDENCIES(CC); we would have a circular
  7898. # dependency, and given that the user is not expected to run this macro,
  7899. # just rely on AC_PROG_CC.
  7900. AC_DEFUN([_AM_DEPENDENCIES],
  7901. [AC_REQUIRE([AM_SET_DEPDIR])dnl
  7902. AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
  7903. AC_REQUIRE([AM_MAKE_INCLUDE])dnl
  7904. AC_REQUIRE([AM_DEP_TRACK])dnl
  7905. m4_if([$1], [CC], [depcc="$CC" am_compiler_list=],
  7906. [$1], [CXX], [depcc="$CXX" am_compiler_list=],
  7907. [$1], [OBJC], [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
  7908. [$1], [UPC], [depcc="$UPC" am_compiler_list=],
  7909. [$1], [GCJ], [depcc="$GCJ" am_compiler_list='gcc3 gcc'],
  7910. [depcc="$$1" am_compiler_list=])
  7911. AC_CACHE_CHECK([dependency style of $depcc],
  7912. [am_cv_$1_dependencies_compiler_type],
  7913. [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
  7914. # We make a subdir and do the tests there. Otherwise we can end up
  7915. # making bogus files that we don't know about and never remove. For
  7916. # instance it was reported that on HP-UX the gcc test will end up
  7917. # making a dummy file named 'D' -- because '-MD' means "put the output
  7918. # in D".
  7919. rm -rf conftest.dir
  7920. mkdir conftest.dir
  7921. # Copy depcomp to subdir because otherwise we won't find it if we're
  7922. # using a relative directory.
  7923. cp "$am_depcomp" conftest.dir
  7924. cd conftest.dir
  7925. # We will build objects and dependencies in a subdirectory because
  7926. # it helps to detect inapplicable dependency modes. For instance
  7927. # both Tru64's cc and ICC support -MD to output dependencies as a
  7928. # side effect of compilation, but ICC will put the dependencies in
  7929. # the current directory while Tru64 will put them in the object
  7930. # directory.
  7931. mkdir sub
  7932. am_cv_$1_dependencies_compiler_type=none
  7933. if test "$am_compiler_list" = ""; then
  7934. am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
  7935. fi
  7936. am__universal=false
  7937. m4_case([$1], [CC],
  7938. [case " $depcc " in #(
  7939. *\ -arch\ *\ -arch\ *) am__universal=true ;;
  7940. esac],
  7941. [CXX],
  7942. [case " $depcc " in #(
  7943. *\ -arch\ *\ -arch\ *) am__universal=true ;;
  7944. esac])
  7945. for depmode in $am_compiler_list; do
  7946. # Setup a source with many dependencies, because some compilers
  7947. # like to wrap large dependency lists on column 80 (with \), and
  7948. # we should not choose a depcomp mode which is confused by this.
  7949. #
  7950. # We need to recreate these files for each test, as the compiler may
  7951. # overwrite some of them when testing with obscure command lines.
  7952. # This happens at least with the AIX C compiler.
  7953. : > sub/conftest.c
  7954. for i in 1 2 3 4 5 6; do
  7955. echo '#include "conftst'$i'.h"' >> sub/conftest.c
  7956. # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with
  7957. # Solaris 10 /bin/sh.
  7958. echo '/* dummy */' > sub/conftst$i.h
  7959. done
  7960. echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
  7961. # We check with '-c' and '-o' for the sake of the "dashmstdout"
  7962. # mode. It turns out that the SunPro C++ compiler does not properly
  7963. # handle '-M -o', and we need to detect this. Also, some Intel
  7964. # versions had trouble with output in subdirs.
  7965. am__obj=sub/conftest.${OBJEXT-o}
  7966. am__minus_obj="-o $am__obj"
  7967. case $depmode in
  7968. gcc)
  7969. # This depmode causes a compiler race in universal mode.
  7970. test "$am__universal" = false || continue
  7971. ;;
  7972. nosideeffect)
  7973. # After this tag, mechanisms are not by side-effect, so they'll
  7974. # only be used when explicitly requested.
  7975. if test "x$enable_dependency_tracking" = xyes; then
  7976. continue
  7977. else
  7978. break
  7979. fi
  7980. ;;
  7981. msvc7 | msvc7msys | msvisualcpp | msvcmsys)
  7982. # This compiler won't grok '-c -o', but also, the minuso test has
  7983. # not run yet. These depmodes are late enough in the game, and
  7984. # so weak that their functioning should not be impacted.
  7985. am__obj=conftest.${OBJEXT-o}
  7986. am__minus_obj=
  7987. ;;
  7988. none) break ;;
  7989. esac
  7990. if depmode=$depmode \
  7991. source=sub/conftest.c object=$am__obj \
  7992. depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
  7993. $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
  7994. >/dev/null 2>conftest.err &&
  7995. grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
  7996. grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
  7997. grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
  7998. ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
  7999. # icc doesn't choke on unknown options, it will just issue warnings
  8000. # or remarks (even with -Werror). So we grep stderr for any message
  8001. # that says an option was ignored or not supported.
  8002. # When given -MP, icc 7.0 and 7.1 complain thusly:
  8003. # icc: Command line warning: ignoring option '-M'; no argument required
  8004. # The diagnosis changed in icc 8.0:
  8005. # icc: Command line remark: option '-MP' not supported
  8006. if (grep 'ignoring option' conftest.err ||
  8007. grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
  8008. am_cv_$1_dependencies_compiler_type=$depmode
  8009. break
  8010. fi
  8011. fi
  8012. done
  8013. cd ..
  8014. rm -rf conftest.dir
  8015. else
  8016. am_cv_$1_dependencies_compiler_type=none
  8017. fi
  8018. ])
  8019. AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])
  8020. AM_CONDITIONAL([am__fastdep$1], [
  8021. test "x$enable_dependency_tracking" != xno \
  8022. && test "$am_cv_$1_dependencies_compiler_type" = gcc3])
  8023. ])
  8024. # AM_SET_DEPDIR
  8025. # -------------
  8026. # Choose a directory name for dependency files.
  8027. # This macro is AC_REQUIREd in _AM_DEPENDENCIES.
  8028. AC_DEFUN([AM_SET_DEPDIR],
  8029. [AC_REQUIRE([AM_SET_LEADING_DOT])dnl
  8030. AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
  8031. ])
  8032. # AM_DEP_TRACK
  8033. # ------------
  8034. AC_DEFUN([AM_DEP_TRACK],
  8035. [AC_ARG_ENABLE([dependency-tracking], [dnl
  8036. AS_HELP_STRING(
  8037. [--enable-dependency-tracking],
  8038. [do not reject slow dependency extractors])
  8039. AS_HELP_STRING(
  8040. [--disable-dependency-tracking],
  8041. [speeds up one-time build])])
  8042. if test "x$enable_dependency_tracking" != xno; then
  8043. am_depcomp="$ac_aux_dir/depcomp"
  8044. AMDEPBACKSLASH='\'
  8045. am__nodep='_no'
  8046. fi
  8047. AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
  8048. AC_SUBST([AMDEPBACKSLASH])dnl
  8049. _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
  8050. AC_SUBST([am__nodep])dnl
  8051. _AM_SUBST_NOTMAKE([am__nodep])dnl
  8052. ])
  8053. # Generate code to set up dependency tracking. -*- Autoconf -*-
  8054. # Copyright (C) 1999-2012 Free Software Foundation, Inc.
  8055. #
  8056. # This file is free software; the Free Software Foundation
  8057. # gives unlimited permission to copy and/or distribute it,
  8058. # with or without modifications, as long as this notice is preserved.
  8059. # serial 6
  8060. # _AM_OUTPUT_DEPENDENCY_COMMANDS
  8061. # ------------------------------
  8062. AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
  8063. [{
  8064. # Autoconf 2.62 quotes --file arguments for eval, but not when files
  8065. # are listed without --file. Let's play safe and only enable the eval
  8066. # if we detect the quoting.
  8067. case $CONFIG_FILES in
  8068. *\'*) eval set x "$CONFIG_FILES" ;;
  8069. *) set x $CONFIG_FILES ;;
  8070. esac
  8071. shift
  8072. for mf
  8073. do
  8074. # Strip MF so we end up with the name of the file.
  8075. mf=`echo "$mf" | sed -e 's/:.*$//'`
  8076. # Check whether this is an Automake generated Makefile or not.
  8077. # We used to match only the files named 'Makefile.in', but
  8078. # some people rename them; so instead we look at the file content.
  8079. # Grep'ing the first line is not enough: some people post-process
  8080. # each Makefile.in and add a new line on top of each file to say so.
  8081. # Grep'ing the whole file is not good either: AIX grep has a line
  8082. # limit of 2048, but all sed's we know have understand at least 4000.
  8083. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
  8084. dirpart=`AS_DIRNAME("$mf")`
  8085. else
  8086. continue
  8087. fi
  8088. # Extract the definition of DEPDIR, am__include, and am__quote
  8089. # from the Makefile without running 'make'.
  8090. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
  8091. test -z "$DEPDIR" && continue
  8092. am__include=`sed -n 's/^am__include = //p' < "$mf"`
  8093. test -z "am__include" && continue
  8094. am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
  8095. # Find all dependency output files, they are included files with
  8096. # $(DEPDIR) in their names. We invoke sed twice because it is the
  8097. # simplest approach to changing $(DEPDIR) to its actual value in the
  8098. # expansion.
  8099. for file in `sed -n "
  8100. s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
  8101. sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do
  8102. # Make sure the directory exists.
  8103. test -f "$dirpart/$file" && continue
  8104. fdir=`AS_DIRNAME(["$file"])`
  8105. AS_MKDIR_P([$dirpart/$fdir])
  8106. # echo "creating $dirpart/$file"
  8107. echo '# dummy' > "$dirpart/$file"
  8108. done
  8109. done
  8110. }
  8111. ])# _AM_OUTPUT_DEPENDENCY_COMMANDS
  8112. # AM_OUTPUT_DEPENDENCY_COMMANDS
  8113. # -----------------------------
  8114. # This macro should only be invoked once -- use via AC_REQUIRE.
  8115. #
  8116. # This code is only required when automatic dependency tracking
  8117. # is enabled. FIXME. This creates each '.P' file that we will
  8118. # need in order to bootstrap the dependency handling code.
  8119. AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],
  8120. [AC_CONFIG_COMMANDS([depfiles],
  8121. [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
  8122. [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
  8123. ])
  8124. # Do all the work for Automake. -*- Autoconf -*-
  8125. # Copyright (C) 1996-2012 Free Software Foundation, Inc.
  8126. #
  8127. # This file is free software; the Free Software Foundation
  8128. # gives unlimited permission to copy and/or distribute it,
  8129. # with or without modifications, as long as this notice is preserved.
  8130. # serial 18
  8131. # This macro actually does too much. Some checks are only needed if
  8132. # your package does certain things. But this isn't really a big deal.
  8133. # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
  8134. # AM_INIT_AUTOMAKE([OPTIONS])
  8135. # -----------------------------------------------
  8136. # The call with PACKAGE and VERSION arguments is the old style
  8137. # call (pre autoconf-2.50), which is being phased out. PACKAGE
  8138. # and VERSION should now be passed to AC_INIT and removed from
  8139. # the call to AM_INIT_AUTOMAKE.
  8140. # We support both call styles for the transition. After
  8141. # the next Automake release, Autoconf can make the AC_INIT
  8142. # arguments mandatory, and then we can depend on a new Autoconf
  8143. # release and drop the old call support.
  8144. AC_DEFUN([AM_INIT_AUTOMAKE],
  8145. [AC_PREREQ([2.62])dnl
  8146. dnl Autoconf wants to disallow AM_ names. We explicitly allow
  8147. dnl the ones we care about.
  8148. m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
  8149. AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
  8150. AC_REQUIRE([AC_PROG_INSTALL])dnl
  8151. if test "`cd $srcdir && pwd`" != "`pwd`"; then
  8152. # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
  8153. # is not polluted with repeated "-I."
  8154. AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl
  8155. # test to see if srcdir already configured
  8156. if test -f $srcdir/config.status; then
  8157. AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
  8158. fi
  8159. fi
  8160. # test whether we have cygpath
  8161. if test -z "$CYGPATH_W"; then
  8162. if (cygpath --version) >/dev/null 2>/dev/null; then
  8163. CYGPATH_W='cygpath -w'
  8164. else
  8165. CYGPATH_W=echo
  8166. fi
  8167. fi
  8168. AC_SUBST([CYGPATH_W])
  8169. # Define the identity of the package.
  8170. dnl Distinguish between old-style and new-style calls.
  8171. m4_ifval([$2],
  8172. [m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
  8173. AC_SUBST([PACKAGE], [$1])dnl
  8174. AC_SUBST([VERSION], [$2])],
  8175. [_AM_SET_OPTIONS([$1])dnl
  8176. dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
  8177. m4_if(
  8178. m4_ifdef([AC_PACKAGE_NAME], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]),
  8179. [ok:ok],,
  8180. [m4_fatal([AC_INIT should be called with package and version arguments])])dnl
  8181. AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
  8182. AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
  8183. _AM_IF_OPTION([no-define],,
  8184. [AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package])
  8185. AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl
  8186. # Some tools Automake needs.
  8187. AC_REQUIRE([AM_SANITY_CHECK])dnl
  8188. AC_REQUIRE([AC_ARG_PROGRAM])dnl
  8189. AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])
  8190. AM_MISSING_PROG([AUTOCONF], [autoconf])
  8191. AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])
  8192. AM_MISSING_PROG([AUTOHEADER], [autoheader])
  8193. AM_MISSING_PROG([MAKEINFO], [makeinfo])
  8194. AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
  8195. AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
  8196. AC_REQUIRE([AM_PROG_MKDIR_P])dnl
  8197. # We need awk for the "check" target. The system "awk" is bad on
  8198. # some platforms.
  8199. AC_REQUIRE([AC_PROG_AWK])dnl
  8200. AC_REQUIRE([AC_PROG_MAKE_SET])dnl
  8201. AC_REQUIRE([AM_SET_LEADING_DOT])dnl
  8202. _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
  8203. [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
  8204. [_AM_PROG_TAR([v7])])])
  8205. _AM_IF_OPTION([no-dependencies],,
  8206. [AC_PROVIDE_IFELSE([AC_PROG_CC],
  8207. [_AM_DEPENDENCIES([CC])],
  8208. [define([AC_PROG_CC],
  8209. defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl
  8210. AC_PROVIDE_IFELSE([AC_PROG_CXX],
  8211. [_AM_DEPENDENCIES([CXX])],
  8212. [define([AC_PROG_CXX],
  8213. defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl
  8214. AC_PROVIDE_IFELSE([AC_PROG_OBJC],
  8215. [_AM_DEPENDENCIES([OBJC])],
  8216. [define([AC_PROG_OBJC],
  8217. defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl
  8218. ])
  8219. _AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl
  8220. dnl The 'parallel-tests' driver may need to know about EXEEXT, so add the
  8221. dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This macro
  8222. dnl is hooked onto _AC_COMPILER_EXEEXT early, see below.
  8223. AC_CONFIG_COMMANDS_PRE(dnl
  8224. [m4_provide_if([_AM_COMPILER_EXEEXT],
  8225. [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
  8226. ])
  8227. dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion. Do not
  8228. dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further
  8229. dnl mangled by Autoconf and run in a shell conditional statement.
  8230. m4_define([_AC_COMPILER_EXEEXT],
  8231. m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])])
  8232. # When config.status generates a header, we must update the stamp-h file.
  8233. # This file resides in the same directory as the config header
  8234. # that is generated. The stamp files are numbered to have different names.
  8235. # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the
  8236. # loop where config.status creates the headers, so we can generate
  8237. # our stamp files there.
  8238. AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],
  8239. [# Compute $1's index in $config_headers.
  8240. _am_arg=$1
  8241. _am_stamp_count=1
  8242. for _am_header in $config_headers :; do
  8243. case $_am_header in
  8244. $_am_arg | $_am_arg:* )
  8245. break ;;
  8246. * )
  8247. _am_stamp_count=`expr $_am_stamp_count + 1` ;;
  8248. esac
  8249. done
  8250. echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
  8251. # Copyright (C) 2001-2012 Free Software Foundation, Inc.
  8252. #
  8253. # This file is free software; the Free Software Foundation
  8254. # gives unlimited permission to copy and/or distribute it,
  8255. # with or without modifications, as long as this notice is preserved.
  8256. # serial 8
  8257. # AM_PROG_INSTALL_SH
  8258. # ------------------
  8259. # Define $install_sh.
  8260. AC_DEFUN([AM_PROG_INSTALL_SH],
  8261. [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
  8262. if test x"${install_sh}" != xset; then
  8263. case $am_aux_dir in
  8264. *\ * | *\ *)
  8265. install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
  8266. *)
  8267. install_sh="\${SHELL} $am_aux_dir/install-sh"
  8268. esac
  8269. fi
  8270. AC_SUBST([install_sh])])
  8271. # Copyright (C) 2003-2012 Free Software Foundation, Inc.
  8272. #
  8273. # This file is free software; the Free Software Foundation
  8274. # gives unlimited permission to copy and/or distribute it,
  8275. # with or without modifications, as long as this notice is preserved.
  8276. # serial 2
  8277. # Check whether the underlying file-system supports filenames
  8278. # with a leading dot. For instance MS-DOS doesn't.
  8279. AC_DEFUN([AM_SET_LEADING_DOT],
  8280. [rm -rf .tst 2>/dev/null
  8281. mkdir .tst 2>/dev/null
  8282. if test -d .tst; then
  8283. am__leading_dot=.
  8284. else
  8285. am__leading_dot=_
  8286. fi
  8287. rmdir .tst 2>/dev/null
  8288. AC_SUBST([am__leading_dot])])
  8289. # Check to see how 'make' treats includes. -*- Autoconf -*-
  8290. # Copyright (C) 2001-2012 Free Software Foundation, Inc.
  8291. #
  8292. # This file is free software; the Free Software Foundation
  8293. # gives unlimited permission to copy and/or distribute it,
  8294. # with or without modifications, as long as this notice is preserved.
  8295. # serial 5
  8296. # AM_MAKE_INCLUDE()
  8297. # -----------------
  8298. # Check to see how make treats includes.
  8299. AC_DEFUN([AM_MAKE_INCLUDE],
  8300. [am_make=${MAKE-make}
  8301. cat > confinc << 'END'
  8302. am__doit:
  8303. @echo this is the am__doit target
  8304. .PHONY: am__doit
  8305. END
  8306. # If we don't find an include directive, just comment out the code.
  8307. AC_MSG_CHECKING([for style of include used by $am_make])
  8308. am__include="#"
  8309. am__quote=
  8310. _am_result=none
  8311. # First try GNU make style include.
  8312. echo "include confinc" > confmf
  8313. # Ignore all kinds of additional output from 'make'.
  8314. case `$am_make -s -f confmf 2> /dev/null` in #(
  8315. *the\ am__doit\ target*)
  8316. am__include=include
  8317. am__quote=
  8318. _am_result=GNU
  8319. ;;
  8320. esac
  8321. # Now try BSD make style include.
  8322. if test "$am__include" = "#"; then
  8323. echo '.include "confinc"' > confmf
  8324. case `$am_make -s -f confmf 2> /dev/null` in #(
  8325. *the\ am__doit\ target*)
  8326. am__include=.include
  8327. am__quote="\""
  8328. _am_result=BSD
  8329. ;;
  8330. esac
  8331. fi
  8332. AC_SUBST([am__include])
  8333. AC_SUBST([am__quote])
  8334. AC_MSG_RESULT([$_am_result])
  8335. rm -f confinc confmf
  8336. ])
  8337. # Copyright (C) 1999-2012 Free Software Foundation, Inc.
  8338. #
  8339. # This file is free software; the Free Software Foundation
  8340. # gives unlimited permission to copy and/or distribute it,
  8341. # with or without modifications, as long as this notice is preserved.
  8342. # serial 6
  8343. # AM_PROG_CC_C_O
  8344. # --------------
  8345. # Like AC_PROG_CC_C_O, but changed for automake.
  8346. AC_DEFUN([AM_PROG_CC_C_O],
  8347. [AC_REQUIRE([AC_PROG_CC_C_O])dnl
  8348. AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
  8349. AC_REQUIRE_AUX_FILE([compile])dnl
  8350. # FIXME: we rely on the cache variable name because
  8351. # there is no other way.
  8352. set dummy $CC
  8353. am_cc=`echo $[2] | sed ['s/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/']`
  8354. eval am_t=\$ac_cv_prog_cc_${am_cc}_c_o
  8355. if test "$am_t" != yes; then
  8356. # Losing compiler, so override with the script.
  8357. # FIXME: It is wrong to rewrite CC.
  8358. # But if we don't then we get into trouble of one sort or another.
  8359. # A longer-term fix would be to have automake use am__CC in this case,
  8360. # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
  8361. CC="$am_aux_dir/compile $CC"
  8362. fi
  8363. dnl Make sure AC_PROG_CC is never called again, or it will override our
  8364. dnl setting of CC.
  8365. m4_define([AC_PROG_CC],
  8366. [m4_fatal([AC_PROG_CC cannot be called after AM_PROG_CC_C_O])])
  8367. ])
  8368. # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*-
  8369. # Copyright (C) 1997-2012 Free Software Foundation, Inc.
  8370. #
  8371. # This file is free software; the Free Software Foundation
  8372. # gives unlimited permission to copy and/or distribute it,
  8373. # with or without modifications, as long as this notice is preserved.
  8374. # serial 7
  8375. # AM_MISSING_PROG(NAME, PROGRAM)
  8376. # ------------------------------
  8377. AC_DEFUN([AM_MISSING_PROG],
  8378. [AC_REQUIRE([AM_MISSING_HAS_RUN])
  8379. $1=${$1-"${am_missing_run}$2"}
  8380. AC_SUBST($1)])
  8381. # AM_MISSING_HAS_RUN
  8382. # ------------------
  8383. # Define MISSING if not defined so far and test if it supports --run.
  8384. # If it does, set am_missing_run to use it, otherwise, to nothing.
  8385. AC_DEFUN([AM_MISSING_HAS_RUN],
  8386. [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
  8387. AC_REQUIRE_AUX_FILE([missing])dnl
  8388. if test x"${MISSING+set}" != xset; then
  8389. case $am_aux_dir in
  8390. *\ * | *\ *)
  8391. MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
  8392. *)
  8393. MISSING="\${SHELL} $am_aux_dir/missing" ;;
  8394. esac
  8395. fi
  8396. # Use eval to expand $SHELL
  8397. if eval "$MISSING --run true"; then
  8398. am_missing_run="$MISSING --run "
  8399. else
  8400. am_missing_run=
  8401. AC_MSG_WARN(['missing' script is too old or missing])
  8402. fi
  8403. ])
  8404. # Copyright (C) 2003-2012 Free Software Foundation, Inc.
  8405. #
  8406. # This file is free software; the Free Software Foundation
  8407. # gives unlimited permission to copy and/or distribute it,
  8408. # with or without modifications, as long as this notice is preserved.
  8409. # serial 2
  8410. # AM_PROG_MKDIR_P
  8411. # ---------------
  8412. # Check for 'mkdir -p'.
  8413. AC_DEFUN([AM_PROG_MKDIR_P],
  8414. [AC_PREREQ([2.60])dnl
  8415. AC_REQUIRE([AC_PROG_MKDIR_P])dnl
  8416. dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P,
  8417. dnl while keeping a definition of mkdir_p for backward compatibility.
  8418. dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile.
  8419. dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of
  8420. dnl Makefile.ins that do not define MKDIR_P, so we do our own
  8421. dnl adjustment using top_builddir (which is defined more often than
  8422. dnl MKDIR_P).
  8423. AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl
  8424. case $mkdir_p in
  8425. [[\\/$]]* | ?:[[\\/]]*) ;;
  8426. */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
  8427. esac
  8428. ])
  8429. # Helper functions for option handling. -*- Autoconf -*-
  8430. # Copyright (C) 2001-2012 Free Software Foundation, Inc.
  8431. #
  8432. # This file is free software; the Free Software Foundation
  8433. # gives unlimited permission to copy and/or distribute it,
  8434. # with or without modifications, as long as this notice is preserved.
  8435. # serial 6
  8436. # _AM_MANGLE_OPTION(NAME)
  8437. # -----------------------
  8438. AC_DEFUN([_AM_MANGLE_OPTION],
  8439. [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
  8440. # _AM_SET_OPTION(NAME)
  8441. # --------------------
  8442. # Set option NAME. Presently that only means defining a flag for this option.
  8443. AC_DEFUN([_AM_SET_OPTION],
  8444. [m4_define(_AM_MANGLE_OPTION([$1]), [1])])
  8445. # _AM_SET_OPTIONS(OPTIONS)
  8446. # ------------------------
  8447. # OPTIONS is a space-separated list of Automake options.
  8448. AC_DEFUN([_AM_SET_OPTIONS],
  8449. [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
  8450. # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET])
  8451. # -------------------------------------------
  8452. # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
  8453. AC_DEFUN([_AM_IF_OPTION],
  8454. [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
  8455. # Check to make sure that the build environment is sane. -*- Autoconf -*-
  8456. # Copyright (C) 1996-2012 Free Software Foundation, Inc.
  8457. #
  8458. # This file is free software; the Free Software Foundation
  8459. # gives unlimited permission to copy and/or distribute it,
  8460. # with or without modifications, as long as this notice is preserved.
  8461. # serial 9
  8462. # AM_SANITY_CHECK
  8463. # ---------------
  8464. AC_DEFUN([AM_SANITY_CHECK],
  8465. [AC_MSG_CHECKING([whether build environment is sane])
  8466. # Reject unsafe characters in $srcdir or the absolute working directory
  8467. # name. Accept space and tab only in the latter.
  8468. am_lf='
  8469. '
  8470. case `pwd` in
  8471. *[[\\\"\#\$\&\'\`$am_lf]]*)
  8472. AC_MSG_ERROR([unsafe absolute working directory name]);;
  8473. esac
  8474. case $srcdir in
  8475. *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*)
  8476. AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);;
  8477. esac
  8478. # Do 'set' in a subshell so we don't clobber the current shell's
  8479. # arguments. Must try -L first in case configure is actually a
  8480. # symlink; some systems play weird games with the mod time of symlinks
  8481. # (eg FreeBSD returns the mod time of the symlink's containing
  8482. # directory).
  8483. if (
  8484. am_has_slept=no
  8485. for am_try in 1 2; do
  8486. echo "timestamp, slept: $am_has_slept" > conftest.file
  8487. set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
  8488. if test "$[*]" = "X"; then
  8489. # -L didn't work.
  8490. set X `ls -t "$srcdir/configure" conftest.file`
  8491. fi
  8492. if test "$[*]" != "X $srcdir/configure conftest.file" \
  8493. && test "$[*]" != "X conftest.file $srcdir/configure"; then
  8494. # If neither matched, then we have a broken ls. This can happen
  8495. # if, for instance, CONFIG_SHELL is bash and it inherits a
  8496. # broken ls alias from the environment. This has actually
  8497. # happened. Such a system could not be considered "sane".
  8498. AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken
  8499. alias in your environment])
  8500. fi
  8501. if test "$[2]" = conftest.file || test $am_try -eq 2; then
  8502. break
  8503. fi
  8504. # Just in case.
  8505. sleep 1
  8506. am_has_slept=yes
  8507. done
  8508. test "$[2]" = conftest.file
  8509. )
  8510. then
  8511. # Ok.
  8512. :
  8513. else
  8514. AC_MSG_ERROR([newly created file is older than distributed files!
  8515. Check your system clock])
  8516. fi
  8517. AC_MSG_RESULT([yes])
  8518. # If we didn't sleep, we still need to ensure time stamps of config.status and
  8519. # generated files are strictly newer.
  8520. am_sleep_pid=
  8521. if grep 'slept: no' conftest.file >/dev/null 2>&1; then
  8522. ( sleep 1 ) &
  8523. am_sleep_pid=$!
  8524. fi
  8525. AC_CONFIG_COMMANDS_PRE(
  8526. [AC_MSG_CHECKING([that generated files are newer than configure])
  8527. if test -n "$am_sleep_pid"; then
  8528. # Hide warnings about reused PIDs.
  8529. wait $am_sleep_pid 2>/dev/null
  8530. fi
  8531. AC_MSG_RESULT([done])])
  8532. rm -f conftest.file
  8533. ])
  8534. # Copyright (C) 2001-2012 Free Software Foundation, Inc.
  8535. #
  8536. # This file is free software; the Free Software Foundation
  8537. # gives unlimited permission to copy and/or distribute it,
  8538. # with or without modifications, as long as this notice is preserved.
  8539. # serial 2
  8540. # AM_PROG_INSTALL_STRIP
  8541. # ---------------------
  8542. # One issue with vendor 'install' (even GNU) is that you can't
  8543. # specify the program used to strip binaries. This is especially
  8544. # annoying in cross-compiling environments, where the build's strip
  8545. # is unlikely to handle the host's binaries.
  8546. # Fortunately install-sh will honor a STRIPPROG variable, so we
  8547. # always use install-sh in "make install-strip", and initialize
  8548. # STRIPPROG with the value of the STRIP variable (set by the user).
  8549. AC_DEFUN([AM_PROG_INSTALL_STRIP],
  8550. [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
  8551. # Installed binaries are usually stripped using 'strip' when the user
  8552. # run "make install-strip". However 'strip' might not be the right
  8553. # tool to use in cross-compilation environments, therefore Automake
  8554. # will honor the 'STRIP' environment variable to overrule this program.
  8555. dnl Don't test for $cross_compiling = yes, because it might be 'maybe'.
  8556. if test "$cross_compiling" != no; then
  8557. AC_CHECK_TOOL([STRIP], [strip], :)
  8558. fi
  8559. INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
  8560. AC_SUBST([INSTALL_STRIP_PROGRAM])])
  8561. # Copyright (C) 2006-2012 Free Software Foundation, Inc.
  8562. #
  8563. # This file is free software; the Free Software Foundation
  8564. # gives unlimited permission to copy and/or distribute it,
  8565. # with or without modifications, as long as this notice is preserved.
  8566. # serial 3
  8567. # _AM_SUBST_NOTMAKE(VARIABLE)
  8568. # ---------------------------
  8569. # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in.
  8570. # This macro is traced by Automake.
  8571. AC_DEFUN([_AM_SUBST_NOTMAKE])
  8572. # AM_SUBST_NOTMAKE(VARIABLE)
  8573. # --------------------------
  8574. # Public sister of _AM_SUBST_NOTMAKE.
  8575. AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
  8576. # Check how to create a tarball. -*- Autoconf -*-
  8577. # Copyright (C) 2004-2012 Free Software Foundation, Inc.
  8578. #
  8579. # This file is free software; the Free Software Foundation
  8580. # gives unlimited permission to copy and/or distribute it,
  8581. # with or without modifications, as long as this notice is preserved.
  8582. # serial 3
  8583. # _AM_PROG_TAR(FORMAT)
  8584. # --------------------
  8585. # Check how to create a tarball in format FORMAT.
  8586. # FORMAT should be one of 'v7', 'ustar', or 'pax'.
  8587. #
  8588. # Substitute a variable $(am__tar) that is a command
  8589. # writing to stdout a FORMAT-tarball containing the directory
  8590. # $tardir.
  8591. # tardir=directory && $(am__tar) > result.tar
  8592. #
  8593. # Substitute a variable $(am__untar) that extract such
  8594. # a tarball read from stdin.
  8595. # $(am__untar) < result.tar
  8596. AC_DEFUN([_AM_PROG_TAR],
  8597. [# Always define AMTAR for backward compatibility. Yes, it's still used
  8598. # in the wild :-( We should find a proper way to deprecate it ...
  8599. AC_SUBST([AMTAR], ['$${TAR-tar}'])
  8600. m4_if([$1], [v7],
  8601. [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'],
  8602. [m4_case([$1], [ustar],, [pax],,
  8603. [m4_fatal([Unknown tar format])])
  8604. AC_MSG_CHECKING([how to create a $1 tar archive])
  8605. # Loop over all known methods to create a tar archive until one works.
  8606. _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
  8607. _am_tools=${am_cv_prog_tar_$1-$_am_tools}
  8608. # Do not fold the above two line into one, because Tru64 sh and
  8609. # Solaris sh will not grok spaces in the rhs of '-'.
  8610. for _am_tool in $_am_tools
  8611. do
  8612. case $_am_tool in
  8613. gnutar)
  8614. for _am_tar in tar gnutar gtar;
  8615. do
  8616. AM_RUN_LOG([$_am_tar --version]) && break
  8617. done
  8618. am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
  8619. am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
  8620. am__untar="$_am_tar -xf -"
  8621. ;;
  8622. plaintar)
  8623. # Must skip GNU tar: if it does not support --format= it doesn't create
  8624. # ustar tarball either.
  8625. (tar --version) >/dev/null 2>&1 && continue
  8626. am__tar='tar chf - "$$tardir"'
  8627. am__tar_='tar chf - "$tardir"'
  8628. am__untar='tar xf -'
  8629. ;;
  8630. pax)
  8631. am__tar='pax -L -x $1 -w "$$tardir"'
  8632. am__tar_='pax -L -x $1 -w "$tardir"'
  8633. am__untar='pax -r'
  8634. ;;
  8635. cpio)
  8636. am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
  8637. am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
  8638. am__untar='cpio -i -H $1 -d'
  8639. ;;
  8640. none)
  8641. am__tar=false
  8642. am__tar_=false
  8643. am__untar=false
  8644. ;;
  8645. esac
  8646. # If the value was cached, stop now. We just wanted to have am__tar
  8647. # and am__untar set.
  8648. test -n "${am_cv_prog_tar_$1}" && break
  8649. # tar/untar a dummy directory, and stop if the command works
  8650. rm -rf conftest.dir
  8651. mkdir conftest.dir
  8652. echo GrepMe > conftest.dir/file
  8653. AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
  8654. rm -rf conftest.dir
  8655. if test -s conftest.tar; then
  8656. AM_RUN_LOG([$am__untar <conftest.tar])
  8657. grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
  8658. fi
  8659. done
  8660. rm -rf conftest.dir
  8661. AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
  8662. AC_MSG_RESULT([$am_cv_prog_tar_$1])])
  8663. AC_SUBST([am__tar])
  8664. AC_SUBST([am__untar])
  8665. ]) # _AM_PROG_TAR