libtool.m4 299 KB

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