libtool.m4 299 KB

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