configure.ac 184 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025
  1. dnl Process this file with autoconf to produce a configure script.
  2. AC_PREREQ([2.65])
  3. AC_INIT
  4. AC_CONFIG_SRCDIR([src/SDL.c])
  5. AC_CONFIG_HEADERS([include/SDL_config.h])
  6. AC_CONFIG_AUX_DIR([build-scripts])
  7. AC_CONFIG_MACRO_DIR([acinclude])
  8. dnl Save the CFLAGS to see whether they were passed in or generated
  9. orig_CFLAGS="$CFLAGS"
  10. dnl Set various version strings - taken gratefully from the GTk sources
  11. # See docs/release_checklist.md
  12. SDL_MAJOR_VERSION=2
  13. SDL_MINOR_VERSION=30
  14. SDL_MICRO_VERSION=0
  15. SDL_VERSION=$SDL_MAJOR_VERSION.$SDL_MINOR_VERSION.$SDL_MICRO_VERSION
  16. SDL_BINARY_AGE=`expr $SDL_MINOR_VERSION \* 100 + $SDL_MICRO_VERSION`
  17. AS_CASE(["$SDL_MINOR_VERSION"],
  18. [*@<:@02468@:>@],
  19. dnl Stable branch, 2.24.1 -> libSDL2-2.0.so.0.2400.1
  20. [SDL_INTERFACE_AGE="$SDL_MICRO_VERSION"],
  21. [*],
  22. dnl Development branch, 2.23.1 -> libSDL2-2.0.so.0.2301.0
  23. [SDL_INTERFACE_AGE=0])
  24. AC_SUBST(SDL_MAJOR_VERSION)
  25. AC_SUBST(SDL_MINOR_VERSION)
  26. AC_SUBST(SDL_MICRO_VERSION)
  27. AC_SUBST(SDL_INTERFACE_AGE)
  28. AC_SUBST(SDL_BINARY_AGE)
  29. AC_SUBST(SDL_VERSION)
  30. # libtool versioning
  31. LT_INIT([win32-dll])
  32. LT_LANG([Windows Resource])
  33. # For historical reasons, the library name redundantly includes the major
  34. # version twice: libSDL2-2.0.so.0.
  35. # TODO: in SDL 3, stop using -release, which will simplify it to libSDL3.so.0
  36. LT_RELEASE=2.0
  37. # Increment this if there is an incompatible change - but if that happens,
  38. # we should rename the library from SDL2 to SDL3, at which point this would
  39. # reset to 0 anyway.
  40. LT_MAJOR=0
  41. LT_AGE=`expr $SDL_BINARY_AGE - $SDL_INTERFACE_AGE`
  42. LT_CURRENT=`expr $LT_MAJOR + $LT_AGE`
  43. LT_REVISION=$SDL_INTERFACE_AGE
  44. m4_pattern_allow([^LT_])
  45. AC_SUBST(LT_RELEASE)
  46. AC_SUBST(LT_CURRENT)
  47. AC_SUBST(LT_REVISION)
  48. AC_SUBST(LT_AGE)
  49. dnl Detect the canonical build and host environments
  50. dnl AC_CANONICAL_HOST
  51. dnl Check for tools
  52. AC_PROG_AWK
  53. AC_PROG_CC
  54. AC_PROG_CXX
  55. AC_PROG_EGREP
  56. AC_PROG_FGREP
  57. AC_PROG_INSTALL
  58. AC_PROG_MAKE_SET
  59. PKG_PROG_PKG_CONFIG
  60. if [ test -z "$AWK" ]; then
  61. AC_MSG_ERROR([*** awk not found, aborting])
  62. fi
  63. AC_CHECK_PROGS([SORT], [gsort sort], [false])
  64. AS_IF([! "$SORT" -V </dev/null >/dev/null], [AC_MSG_WARN([sort(1) that supports the -V option is required to find dynamic libraries])])
  65. dnl 64-bit file offsets if possible unless --disable-largefile is specified
  66. AC_SYS_LARGEFILE
  67. dnl Make sure that srcdir is a full pathname
  68. case "$host" in
  69. *-*-mingw*)
  70. # Except on msys, where make can't handle full pathnames (bug 1972)
  71. ;;
  72. *)
  73. srcdir=`cd $srcdir && pwd`
  74. ;;
  75. esac
  76. dnl Set up the compiler and linker flags
  77. INCLUDE="-I$srcdir/include"
  78. dnl Don't use our khronos headers on QNX.
  79. case "$host" in
  80. *-*-nto-qnx*)
  81. ;;
  82. *)
  83. INCLUDE="$INCLUDE -idirafter $srcdir/src/video/khronos"
  84. ;;
  85. esac
  86. dnl use CXX for linker on Haiku
  87. case "$host" in
  88. *-*-haiku*)
  89. LINKER='$(CXX)'
  90. LIBTOOLLINKERTAG='CXX'
  91. ;;
  92. *)
  93. LINKER='$(CC)'
  94. LIBTOOLLINKERTAG='CC'
  95. ;;
  96. esac
  97. AC_SUBST(LINKER)
  98. AC_SUBST(LIBTOOLLINKERTAG)
  99. if test x$srcdir != x.; then
  100. INCLUDE="-Iinclude $INCLUDE"
  101. elif test -d .git; then
  102. AC_MSG_ERROR([
  103. *** When building from a git clone you should configure and build in a
  104. separate directory so you don't clobber SDL_config.h, SDL_revision.h
  105. ])
  106. fi
  107. BASE_CFLAGS=""
  108. BASE_LDFLAGS=""
  109. case "$host" in
  110. *-*-cygwin*)
  111. # We build SDL on cygwin without the UNIX emulation layer
  112. save_CFLAGS="$CFLAGS"
  113. have_no_cygwin=no
  114. AC_MSG_CHECKING(for GCC -mno-cygwin option)
  115. CFLAGS="$save_CFLAGS -mno-cygwin"
  116. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],[])], [have_no_cygwin=yes],[])
  117. AC_MSG_RESULT($have_no_cygwin)
  118. CFLAGS="$save_CFLAGS"
  119. if test x$have_no_cygwin = xyes; then
  120. BASE_CFLAGS="-mno-cygwin"
  121. BASE_LDFLAGS="-mno-cygwin"
  122. fi
  123. BASE_CFLAGS="$BASE_CFLAGS -I/usr/include/mingw"
  124. ;;
  125. esac
  126. # Uncomment the following line if you want to force SDL and applications
  127. # built with it to be compiled for a particular architecture.
  128. #AX_GCC_ARCHFLAG([no], [BASE_CFLAGS="$BASE_CFLAGS $ax_cv_gcc_archflag]")
  129. BUILD_CFLAGS="$CFLAGS $CPPFLAGS -DUSING_GENERATED_CONFIG_H"
  130. # The default optimization for SDL is -O3 (Bug #31)
  131. if test "x$orig_CFLAGS" = x; then
  132. BUILD_CFLAGS=`echo $BUILD_CFLAGS | sed 's/-O2/-O3/'`
  133. fi
  134. EXTRA_CFLAGS="$INCLUDE $BASE_CFLAGS"
  135. BUILD_LDFLAGS="$LDFLAGS"
  136. EXTRA_LDFLAGS="$BASE_LDFLAGS"
  137. ## These are common directories to find software packages
  138. #for path in /usr/freeware /usr/pkg /usr/X11R6 /usr/local; do
  139. # if test -d $path/include; then
  140. # EXTRA_CFLAGS="$EXTRA_CFLAGS -I$path/include"
  141. # fi
  142. # if test -d $path/lib; then
  143. # EXTRA_LDFLAGS="$EXTRA_LDFLAGS -L$path/lib"
  144. # fi
  145. #done
  146. SDL_CFLAGS="$BASE_CFLAGS"
  147. SDL_LIBS="-lSDL2"
  148. if test "x$BASE_LDFLAGS" != x; then
  149. SDL_LIBS="$SDL_LIBS $BASE_LDFLAGS"
  150. fi
  151. if test "x$EXTRA_CFLAGS" != x; then
  152. CPPFLAGS="$CPPFLAGS $EXTRA_CFLAGS"
  153. CFLAGS="$CFLAGS $EXTRA_CFLAGS"
  154. fi
  155. if test "x$EXTRA_LDFLAGS" != x; then
  156. LDFLAGS="$LDFLAGS $EXTRA_LDFLAGS"
  157. fi
  158. dnl set this to use on systems that use lib64 instead of lib
  159. base_libdir=`echo \${libdir} | sed 's/.*\/\(.*\)/\1/; q'`
  160. dnl Function to find a library in the compiler search path
  161. find_lib()
  162. {
  163. gcc_bin_path=[`$CC -print-search-dirs 2>/dev/null | $FGREP programs: | sed 's/[^=]*=\(.*\)/\1/' | sed 's/:/ /g'`]
  164. gcc_lib_path=[`$CC -print-search-dirs 2>/dev/null | $FGREP libraries: | sed 's/[^=]*=\(.*\)/\1/' | sed 's/:/ /g'`]
  165. env_lib_path=[`echo $LIBS $LDFLAGS $* | sed 's/-L[ ]*//g'`]
  166. if test "$cross_compiling" = yes; then
  167. host_lib_path=""
  168. else
  169. host_lib_path="/usr/$base_libdir /usr/local/$base_libdir"
  170. fi
  171. for path in $env_lib_path $gcc_bin_path $gcc_lib_path $host_lib_path; do
  172. lib=[`ls -- $path/$1 2>/dev/null | sed 's,.*/,,' | "$SORT" -V -r | $AWK 'BEGIN{FS="."}{ print NF, $0 }' | "$SORT" -n -s | sed 's,[0-9]* ,,' | head -1`]
  173. if test x$lib != x; then
  174. echo $lib
  175. return
  176. fi
  177. done
  178. }
  179. dnl Check for compiler characteristics
  180. AC_C_CONST
  181. AC_C_INLINE
  182. AC_C_VOLATILE
  183. dnl See whether we want assertions for debugging/sanity checking SDL itself.
  184. AC_ARG_ENABLE(assertions,
  185. [AS_HELP_STRING([--enable-assertions],
  186. [Enable internal sanity checks (auto/disabled/release/enabled/paranoid) [default=auto]])],
  187. , enable_assertions=auto)
  188. case "$enable_assertions" in
  189. auto) # Use optimization settings to determine assertion level
  190. ;;
  191. disabled)
  192. AC_DEFINE(SDL_DEFAULT_ASSERT_LEVEL, 0, [ ])
  193. ;;
  194. release)
  195. AC_DEFINE(SDL_DEFAULT_ASSERT_LEVEL, 1, [ ])
  196. ;;
  197. enabled)
  198. AC_DEFINE(SDL_DEFAULT_ASSERT_LEVEL, 2, [ ])
  199. ;;
  200. paranoid)
  201. AC_DEFINE(SDL_DEFAULT_ASSERT_LEVEL, 3, [ ])
  202. ;;
  203. *)
  204. AC_MSG_ERROR([*** unknown assertion level. stop.])
  205. ;;
  206. esac
  207. dnl For use in static assertions
  208. EXTRA_CFLAGS="$EXTRA_CFLAGS -DSDL_BUILD_MAJOR_VERSION=$SDL_MAJOR_VERSION -DSDL_BUILD_MINOR_VERSION=$SDL_MINOR_VERSION -DSDL_BUILD_MICRO_VERSION=$SDL_MICRO_VERSION"
  209. dnl See whether we can use gcc style dependency tracking
  210. AC_ARG_ENABLE(dependency-tracking,
  211. [AS_HELP_STRING([--enable-dependency-tracking],
  212. [Use gcc -MMD -MT dependency tracking [default=yes]])],
  213. , enable_dependency_tracking=yes)
  214. if test x$enable_dependency_tracking = xyes; then
  215. have_gcc_mmd_mt=no
  216. AC_MSG_CHECKING(for GCC -MMD -MT option)
  217. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  218. #if !defined(__GNUC__) || __GNUC__ < 3
  219. #error Dependency tracking requires GCC 3.0 or newer
  220. #endif
  221. ]],[])], [have_gcc_mmd_mt=yes],[])
  222. AC_MSG_RESULT($have_gcc_mmd_mt)
  223. if test x$have_gcc_mmd_mt = xyes; then
  224. DEPENDENCY_TRACKING_OPTIONS="-MMD -MT \$@"
  225. fi
  226. fi
  227. AC_MSG_CHECKING(for linker option --no-undefined)
  228. have_no_undefined=no
  229. case "$host" in
  230. dnl Skip this on platforms where it is just simply busted.
  231. *-*-openbsd*)
  232. ;;
  233. *)
  234. save_LDFLAGS="$LDFLAGS"
  235. LDFLAGS="$LDFLAGS -Wl,--no-undefined"
  236. AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], [
  237. have_no_undefined=yes
  238. BUILD_LDFLAGS="$BUILD_LDFLAGS -Wl,--no-undefined"
  239. ],[])
  240. LDFLAGS="$save_LDFLAGS"
  241. ;;
  242. esac
  243. AC_MSG_RESULT($have_no_undefined)
  244. AC_MSG_CHECKING(for linker option --dynamicbase)
  245. have_dynamicbase=no
  246. case "$host" in
  247. *)
  248. save_LDFLAGS="$LDFLAGS"
  249. LDFLAGS="$LDFLAGS -Wl,--dynamicbase"
  250. AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], [
  251. have_dynamicbase=yes
  252. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,--dynamicbase"
  253. ],[])
  254. LDFLAGS="$save_LDFLAGS"
  255. ;;
  256. esac
  257. AC_MSG_RESULT($have_dynamicbase)
  258. AC_MSG_CHECKING(for linker option --nxcompat)
  259. have_nxcompat=no
  260. case "$host" in
  261. *)
  262. save_LDFLAGS="$LDFLAGS"
  263. LDFLAGS="$LDFLAGS -Wl,--nxcompat"
  264. AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], [
  265. have_nxcompat=yes
  266. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,--nxcompat"
  267. ],[])
  268. LDFLAGS="$save_LDFLAGS"
  269. ;;
  270. esac
  271. AC_MSG_RESULT($have_nxcompat)
  272. AC_MSG_CHECKING(for linker option --high-entropy-va)
  273. have_high_entropy_va=no
  274. case "$host" in
  275. *)
  276. save_LDFLAGS="$LDFLAGS"
  277. LDFLAGS="$LDFLAGS -Wl,--high-entropy-va"
  278. AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], [
  279. have_high_entropy_va=yes
  280. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,--high-entropy-va"
  281. ],[])
  282. LDFLAGS="$save_LDFLAGS"
  283. ;;
  284. esac
  285. AC_MSG_RESULT($have_high_entropy_va)
  286. dnl See whether we are allowed to use the system C library
  287. AC_ARG_ENABLE(libc,
  288. [AS_HELP_STRING([--enable-libc], [Use the system C library [default=yes]])],
  289. , enable_libc=yes)
  290. dnl See whether we are allowed to use system iconv
  291. enable_system_iconv_default=yes
  292. case "$host" in
  293. *-*-cygwin*|*-*-mingw*)
  294. enable_system_iconv_default=no
  295. ;;
  296. esac
  297. AC_ARG_ENABLE(system-iconv,
  298. [AS_HELP_STRING([--enable-system-iconv], [Use iconv() from system-installed libraries [default=no for windows, yes for others]])],
  299. , enable_system_iconv=$enable_system_iconv_default)
  300. dnl See whether we prefer libiconv over libc
  301. AC_ARG_ENABLE(libiconv,
  302. [AS_HELP_STRING([--enable-libiconv], [Prefer iconv() from libiconv, if available, over libc version [default=no]])],
  303. , enable_libiconv=no)
  304. if test x$enable_libc = xyes; then
  305. AC_DEFINE(HAVE_LIBC, 1, [ ])
  306. dnl Check for C library headers
  307. dnl AC_CHECK_INCLUDES_DEFAULT is an autoconf-2.7x thing where AC_HEADER_STDC is deprecated.
  308. m4_ifdef([AC_CHECK_INCLUDES_DEFAULT], [AC_CHECK_INCLUDES_DEFAULT], [AC_HEADER_STDC])
  309. AC_CHECK_HEADERS(sys/types.h stdio.h stdlib.h stddef.h stdarg.h malloc.h memory.h string.h strings.h wchar.h inttypes.h stdint.h limits.h ctype.h math.h float.h iconv.h signal.h)
  310. dnl Check for typedefs, structures, etc.
  311. AC_TYPE_SIZE_T
  312. dnl Check for defines
  313. AC_CHECK_DEFINE(M_PI, math.h)
  314. AC_FUNC_ALLOCA
  315. dnl Checks for library functions.
  316. AC_CHECK_FUNC(mprotect,
  317. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  318. #include <sys/types.h>
  319. #include <sys/mman.h>
  320. ]],[])], [
  321. AC_DEFINE(HAVE_MPROTECT, 1, [ ])
  322. ],[]),
  323. )
  324. AC_CHECK_FUNCS(malloc calloc realloc free getenv setenv putenv unsetenv bsearch qsort abs bcopy memset memcmp memcpy memmove wcslen wcslcpy wcslcat _wcsdup wcsdup wcsstr wcscmp wcsncmp wcscasecmp _wcsicmp wcsncasecmp _wcsnicmp strlen strlcpy strlcat _strrev _strupr _strlwr index rindex strchr strrchr strstr strtok_r itoa _ltoa _uitoa _ultoa strtod strtol strtoul _i64toa _ui64toa strtoll strtoull atoi atof strcmp strncmp _stricmp strcasecmp _strnicmp strncasecmp strcasestr vsscanf vsnprintf fopen64 fseeko fseeko64 sigaction setjmp nanosleep sysconf sysctlbyname getauxval elf_aux_info poll _Exit)
  325. AC_CHECK_LIB(m, pow, [LIBS="$LIBS -lm"; EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lm"])
  326. AC_CHECK_FUNCS(acos acosf asin asinf atan atanf atan2 atan2f ceil ceilf copysign copysignf cos cosf exp expf fabs fabsf floor floorf trunc truncf fmod fmodf log logf log10 log10f lround lroundf pow powf round roundf scalbn scalbnf sin sinf sqrt sqrtf tan tanf)
  327. if test x$enable_system_iconv = xyes; then
  328. AC_MSG_CHECKING(for iconv in libc)
  329. AC_LINK_IFELSE([AC_LANG_PROGRAM([[
  330. #define LIBICONV_PLUG 1 /* in case libiconv header is in include path */
  331. #include <stddef.h>
  332. #include <iconv.h>
  333. ]],[[
  334. iconv_open(NULL,NULL);
  335. ]])], [have_libc_iconv=yes],[have_libc_iconv=no])
  336. AC_MSG_RESULT($have_libc_iconv)
  337. AC_MSG_CHECKING(for iconv in libiconv)
  338. save_LIBS="$LIBS"
  339. LIBS="$LIBS -liconv"
  340. AC_LINK_IFELSE([AC_LANG_PROGRAM([[
  341. #include <stddef.h>
  342. #include <iconv.h>
  343. ]],[[
  344. iconv_open(NULL,NULL);
  345. ]])], [have_libiconv=yes],[have_libiconv=no])
  346. LIBS="$save_LIBS"
  347. AC_MSG_RESULT($have_libiconv)
  348. if test x$have_libc_iconv = xyes || test x$have_libiconv = xyes; then
  349. AC_DEFINE(HAVE_ICONV,1,[ ])
  350. if test x$have_libiconv = xyes; then
  351. if test x$have_libc_iconv != xyes; then
  352. use_libiconv=yes
  353. elif test x$enable_libiconv = xyes; then
  354. use_libiconv=yes
  355. fi
  356. fi
  357. if test x$use_libiconv = xyes; then
  358. AC_DEFINE(SDL_USE_LIBICONV,1,[ ])
  359. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -liconv"
  360. echo "-- Using iconv from libiconv"
  361. else
  362. echo "-- Using iconv from libc"
  363. fi
  364. fi
  365. fi
  366. AC_CHECK_MEMBER(struct sigaction.sa_sigaction,[AC_DEFINE([HAVE_SA_SIGACTION], 1, [ ])], ,[#include <signal.h>])
  367. dnl Check for additional non-standard headers
  368. AC_CHECK_HEADERS(libunwind.h)
  369. fi
  370. dnl AC_CHECK_SIZEOF(void*)
  371. dnl See whether we can use gcc atomic operations on this architecture
  372. AC_ARG_ENABLE(gcc-atomics,
  373. [AS_HELP_STRING([--enable-gcc-atomics],
  374. [Use gcc builtin atomics [default=yes]])],
  375. , enable_gcc_atomics=yes)
  376. if test x$enable_gcc_atomics = xyes; then
  377. have_gcc_atomics=no
  378. AC_MSG_CHECKING(for GCC builtin atomic operations)
  379. AC_LINK_IFELSE([AC_LANG_PROGRAM([],[[
  380. int a;
  381. void *x, *y, *z;
  382. __sync_lock_test_and_set(&a, 4);
  383. __sync_lock_test_and_set(&x, y);
  384. __sync_fetch_and_add(&a, 1);
  385. __sync_bool_compare_and_swap(&a, 5, 10);
  386. __sync_bool_compare_and_swap(&x, y, z);
  387. ]])],
  388. [have_gcc_atomics=yes],[])
  389. AC_MSG_RESULT($have_gcc_atomics)
  390. if test x$have_gcc_atomics = xyes; then
  391. AC_DEFINE(HAVE_GCC_ATOMICS, 1, [ ])
  392. else
  393. # See if we have the minimum operation needed for GCC atomics
  394. AC_LINK_IFELSE([AC_LANG_PROGRAM([],[[
  395. int a;
  396. __sync_lock_test_and_set(&a, 1);
  397. __sync_lock_release(&a);
  398. ]])], [have_gcc_sync_lock_test_and_set=yes],[])
  399. if test x$have_gcc_sync_lock_test_and_set = xyes; then
  400. AC_DEFINE(HAVE_GCC_SYNC_LOCK_TEST_AND_SET, 1, [ ])
  401. fi
  402. fi
  403. fi
  404. # Standard C sources
  405. SOURCES="$SOURCES $srcdir/src/*.c"
  406. SOURCES="$SOURCES $srcdir/src/atomic/*.c"
  407. SOURCES="$SOURCES $srcdir/src/audio/*.c"
  408. SOURCES="$SOURCES $srcdir/src/cpuinfo/*.c"
  409. SOURCES="$SOURCES $srcdir/src/dynapi/*.c"
  410. SOURCES="$SOURCES $srcdir/src/events/*.c"
  411. SOURCES="$SOURCES $srcdir/src/file/*.c"
  412. SOURCES="$SOURCES $srcdir/src/haptic/*.c"
  413. SOURCES="$SOURCES $srcdir/src/hidapi/*.c"
  414. SOURCES="$SOURCES $srcdir/src/joystick/*.c"
  415. SOURCES="$SOURCES $srcdir/src/libm/*.c"
  416. SOURCES="$SOURCES $srcdir/src/misc/*.c"
  417. SOURCES="$SOURCES $srcdir/src/power/*.c"
  418. #SOURCES="$SOURCES $srcdir/src/filesystem/*.c"
  419. SOURCES="$SOURCES $srcdir/src/render/*.c"
  420. SOURCES="$SOURCES $srcdir/src/render/*/*.c"
  421. SOURCES="$SOURCES $srcdir/src/sensor/*.c"
  422. SOURCES="$SOURCES $srcdir/src/stdlib/*.c"
  423. SOURCES="$SOURCES $srcdir/src/thread/*.c"
  424. SOURCES="$SOURCES $srcdir/src/timer/*.c"
  425. SOURCES="$SOURCES $srcdir/src/video/*.c"
  426. SOURCES="$SOURCES $srcdir/src/video/yuv2rgb/*.c"
  427. SOURCES="$SOURCES $srcdir/src/locale/*.c"
  428. dnl Enable/disable various subsystems of the SDL library
  429. case "$host" in
  430. *-*-emscripten*)
  431. default_atomic=no
  432. ;;
  433. *)
  434. default_atomic=yes
  435. ;;
  436. esac
  437. AC_ARG_ENABLE(atomic,
  438. [AS_HELP_STRING([--enable-atomic], [Enable the atomic operations subsystem [default=yes]])],
  439. , enable_atomic=$default_atomic)
  440. if test x$enable_atomic != xyes; then
  441. AC_DEFINE(SDL_ATOMIC_DISABLED, 1, [ ])
  442. else
  443. SUMMARY_modules="${SUMMARY_modules} atomic"
  444. fi
  445. AC_ARG_ENABLE(audio,
  446. [AS_HELP_STRING([--enable-audio], [Enable the audio subsystem [default=yes]])],
  447. , enable_audio=yes)
  448. if test x$enable_audio != xyes; then
  449. AC_DEFINE(SDL_AUDIO_DISABLED, 1, [ ])
  450. else
  451. SUMMARY_modules="${SUMMARY_modules} audio"
  452. fi
  453. AC_ARG_ENABLE(video,
  454. [AS_HELP_STRING([--enable-video], [Enable the video subsystem [default=yes]])],
  455. , enable_video=yes)
  456. if test x$enable_video != xyes; then
  457. AC_DEFINE(SDL_VIDEO_DISABLED, 1, [ ])
  458. else
  459. SUMMARY_modules="${SUMMARY_modules} video"
  460. fi
  461. AC_ARG_ENABLE(render,
  462. [AS_HELP_STRING([--enable-render], [Enable the render subsystem [default=yes]])],
  463. , enable_render=yes)
  464. if test x$enable_render != xyes; then
  465. AC_DEFINE(SDL_RENDER_DISABLED, 1, [ ])
  466. else
  467. SUMMARY_modules="${SUMMARY_modules} render"
  468. fi
  469. AC_ARG_ENABLE(events,
  470. [AS_HELP_STRING([--enable-events], [Enable the events subsystem [default=yes]])],
  471. , enable_events=yes)
  472. if test x$enable_events != xyes; then
  473. AC_DEFINE(SDL_EVENTS_DISABLED, 1, [ ])
  474. else
  475. SUMMARY_modules="${SUMMARY_modules} events"
  476. fi
  477. AC_ARG_ENABLE(joystick,
  478. [AS_HELP_STRING([--enable-joystick], [Enable the joystick subsystem [default=yes]])],
  479. , enable_joystick=yes)
  480. if test x$enable_joystick != xyes; then
  481. AC_DEFINE(SDL_JOYSTICK_DISABLED, 1, [ ])
  482. else
  483. SUMMARY_modules="${SUMMARY_modules} joystick"
  484. fi
  485. AC_ARG_ENABLE(haptic,
  486. [AS_HELP_STRING([--enable-haptic], [Enable the haptic (force feedback) subsystem [default=yes]])],
  487. , enable_haptic=yes)
  488. if test x$enable_haptic != xyes; then
  489. AC_DEFINE(SDL_HAPTIC_DISABLED, 1, [ ])
  490. else
  491. SUMMARY_modules="${SUMMARY_modules} haptic"
  492. fi
  493. AC_ARG_ENABLE(hidapi,
  494. [AS_HELP_STRING([--enable-hidapi], [Enable the HIDAPI subsystem [default=yes]])],
  495. , enable_hidapi=yes)
  496. if test x$enable_hidapi != xyes; then
  497. AC_DEFINE(SDL_HIDAPI_DISABLED, 1, [ ])
  498. else
  499. SUMMARY_modules="${SUMMARY_modules} hidapi"
  500. fi
  501. AC_ARG_ENABLE(sensor,
  502. [AS_HELP_STRING([--enable-sensor], [Enable the sensor subsystem [default=yes]])],
  503. , enable_sensor=yes)
  504. if test x$enable_sensor != xyes; then
  505. AC_DEFINE(SDL_SENSOR_DISABLED, 1, [ ])
  506. else
  507. SUMMARY_modules="${SUMMARY_modules} sensor"
  508. fi
  509. AC_ARG_ENABLE(power,
  510. [AS_HELP_STRING([--enable-power], [Enable the power subsystem [default=yes]])],
  511. , enable_power=yes)
  512. if test x$enable_power != xyes; then
  513. AC_DEFINE(SDL_POWER_DISABLED, 1, [ ])
  514. else
  515. SUMMARY_modules="${SUMMARY_modules} power"
  516. fi
  517. AC_ARG_ENABLE(filesystem,
  518. [AS_HELP_STRING([--enable-filesystem], [Enable the filesystem subsystem [default=yes]])],
  519. , enable_filesystem=yes)
  520. if test x$enable_filesystem != xyes; then
  521. AC_DEFINE(SDL_FILESYSTEM_DISABLED, 1, [ ])
  522. else
  523. SUMMARY_modules="${SUMMARY_modules} filesystem"
  524. fi
  525. # Many subsystems depend on threads, so leave them enabled by default
  526. #AC_ARG_ENABLE(threads,
  527. #[AS_HELP_STRING([--enable-threads], [Enable the threading subsystem [default=yes]])],
  528. # , enable_threads=yes)
  529. enable_threads=yes
  530. if test x$enable_threads != xyes; then
  531. AC_DEFINE(SDL_THREADS_DISABLED, 1, [ ])
  532. else
  533. SUMMARY_modules="${SUMMARY_modules} threads"
  534. fi
  535. AC_ARG_ENABLE(timers,
  536. [AS_HELP_STRING([--enable-timers], [Enable the timer subsystem [default=yes]])],
  537. , enable_timers=yes)
  538. if test x$enable_timers != xyes; then
  539. AC_DEFINE(SDL_TIMERS_DISABLED, 1, [ ])
  540. else
  541. SUMMARY_modules="${SUMMARY_modules} timers"
  542. fi
  543. AC_ARG_ENABLE(file,
  544. [AS_HELP_STRING([--enable-file], [Enable the file subsystem [default=yes]])],
  545. , enable_file=yes)
  546. if test x$enable_file != xyes; then
  547. AC_DEFINE(SDL_FILE_DISABLED, 1, [ ])
  548. else
  549. SUMMARY_modules="${SUMMARY_modules} file"
  550. fi
  551. AC_ARG_ENABLE(misc,
  552. [AS_HELP_STRING([--enable-misc], [Enable the misc subsystem [default=yes]])],
  553. , enable_misc=yes)
  554. if test x$enable_misc != xyes; then
  555. AC_DEFINE(SDL_MISC_DISABLED, 1, [ ])
  556. else
  557. SUMMARY_modules="${SUMMARY_modules} misc"
  558. fi
  559. AC_ARG_ENABLE(locale,
  560. [AS_HELP_STRING([--enable-locale], [Enable the locale subsystem [default=yes]])],
  561. , enable_locale=yes)
  562. if test x$enable_locale != xyes; then
  563. AC_DEFINE(SDL_LOCALE_DISABLED, 1, [ ])
  564. else
  565. SUMMARY_modules="${SUMMARY_modules} locale"
  566. fi
  567. AC_ARG_ENABLE(loadso,
  568. [AS_HELP_STRING([--enable-loadso], [Enable the shared object loading subsystem [default=yes]])],
  569. , enable_loadso=yes)
  570. if test x$enable_loadso != xyes; then
  571. AC_DEFINE(SDL_LOADSO_DISABLED, 1, [ ])
  572. else
  573. SUMMARY_modules="${SUMMARY_modules} loadso"
  574. fi
  575. AC_ARG_ENABLE(cpuinfo,
  576. [AS_HELP_STRING([--enable-cpuinfo], [Enable the cpuinfo subsystem [default=yes]])],
  577. , enable_cpuinfo=yes)
  578. if test x$enable_cpuinfo != xyes; then
  579. AC_DEFINE(SDL_CPUINFO_DISABLED, 1, [ ])
  580. else
  581. SUMMARY_modules="${SUMMARY_modules} cpuinfo"
  582. fi
  583. AC_ARG_ENABLE(assembly,
  584. [AS_HELP_STRING([--enable-assembly], [Enable assembly routines [default=yes]])],
  585. , enable_assembly=yes)
  586. if test x$enable_assembly = xyes; then
  587. SUMMARY_modules="${SUMMARY_modules} assembly"
  588. # Make sure that we don't generate floating point code that would
  589. # cause illegal instruction exceptions on older processors
  590. case "$host" in
  591. *-*-darwin*)
  592. # Don't need to worry about Apple hardware, it's all SSE capable
  593. default_ssemath=yes
  594. ;;
  595. *64-*-*)
  596. # x86 64-bit architectures all have SSE instructions
  597. default_ssemath=yes
  598. ;;
  599. *)
  600. default_ssemath=no
  601. ;;
  602. esac
  603. AC_ARG_ENABLE(ssemath,
  604. [AS_HELP_STRING([--enable-ssemath], [Allow GCC to use SSE floating point math [default=maybe]])],
  605. , enable_ssemath=$default_ssemath)
  606. if test x$enable_ssemath = xno; then
  607. if test x$have_gcc_sse = xyes -o x$have_gcc_sse2 = xyes -o x$have_gcc_sse3 = xyes; then
  608. EXTRA_CFLAGS="$EXTRA_CFLAGS -mfpmath=387"
  609. fi
  610. fi
  611. dnl Check for various instruction support
  612. AC_ARG_ENABLE(mmx,
  613. [AS_HELP_STRING([--enable-mmx], [use MMX assembly routines [default=yes]])],
  614. , enable_mmx=yes)
  615. if test x$enable_mmx = xyes; then
  616. save_CFLAGS="$CFLAGS"
  617. have_gcc_mmx=no
  618. AC_MSG_CHECKING(for GCC -mmmx option)
  619. mmx_CFLAGS="-mmmx"
  620. CFLAGS="$save_CFLAGS $mmx_CFLAGS"
  621. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  622. #ifdef __MINGW32__
  623. #include <_mingw.h>
  624. #ifdef __MINGW64_VERSION_MAJOR
  625. #include <intrin.h>
  626. #else
  627. #include <mmintrin.h>
  628. #endif
  629. #else
  630. #include <mmintrin.h>
  631. #endif
  632. #ifndef __MMX__
  633. #error Assembler CPP flag not enabled
  634. #endif
  635. ]],[])], [have_gcc_mmx=yes],[])
  636. AC_MSG_RESULT($have_gcc_mmx)
  637. CFLAGS="$save_CFLAGS"
  638. if test x$have_gcc_mmx = xyes; then
  639. EXTRA_CFLAGS="$EXTRA_CFLAGS $mmx_CFLAGS"
  640. SUMMARY_math="${SUMMARY_math} mmx"
  641. fi
  642. fi
  643. AC_ARG_ENABLE(3dnow,
  644. [AS_HELP_STRING([--enable-3dnow], [use 3DNow! assembly routines [default=yes]])],
  645. , enable_3dnow=yes)
  646. if test x$enable_3dnow = xyes; then
  647. save_CFLAGS="$CFLAGS"
  648. have_gcc_3dnow=no
  649. AC_MSG_CHECKING(for GCC -m3dnow option)
  650. amd3dnow_CFLAGS="-m3dnow"
  651. CFLAGS="$save_CFLAGS $amd3dnow_CFLAGS"
  652. AC_LINK_IFELSE([AC_LANG_PROGRAM([[
  653. #include <mm3dnow.h>
  654. #ifndef __3dNOW__
  655. #error Assembler CPP flag not enabled
  656. #endif
  657. ]], [[
  658. void *p = 0;
  659. _m_prefetch(p);
  660. ]])],
  661. [have_gcc_3dnow=yes],[])
  662. AC_MSG_RESULT($have_gcc_3dnow)
  663. CFLAGS="$save_CFLAGS"
  664. if test x$have_gcc_3dnow = xyes; then
  665. EXTRA_CFLAGS="$EXTRA_CFLAGS $amd3dnow_CFLAGS"
  666. SUMMARY_math="${SUMMARY_math} 3dnow"
  667. fi
  668. fi
  669. AC_ARG_ENABLE(sse,
  670. [AS_HELP_STRING([--enable-sse], [use SSE assembly routines [default=yes]])],
  671. , enable_sse=yes)
  672. if test x$enable_sse = xyes; then
  673. save_CFLAGS="$CFLAGS"
  674. have_gcc_sse=no
  675. AC_MSG_CHECKING(for GCC -msse option)
  676. sse_CFLAGS="-msse"
  677. CFLAGS="$save_CFLAGS $sse_CFLAGS"
  678. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  679. #ifdef __MINGW32__
  680. #include <_mingw.h>
  681. #ifdef __MINGW64_VERSION_MAJOR
  682. #include <intrin.h>
  683. #else
  684. #include <xmmintrin.h>
  685. #endif
  686. #else
  687. #include <xmmintrin.h>
  688. #endif
  689. #ifndef __SSE__
  690. #error Assembler CPP flag not enabled
  691. #endif
  692. ]],[])], [have_gcc_sse=yes],[])
  693. AC_MSG_RESULT($have_gcc_sse)
  694. CFLAGS="$save_CFLAGS"
  695. if test x$have_gcc_sse = xyes; then
  696. EXTRA_CFLAGS="$EXTRA_CFLAGS $sse_CFLAGS"
  697. SUMMARY_math="${SUMMARY_math} sse"
  698. fi
  699. fi
  700. AC_ARG_ENABLE(sse2,
  701. [AS_HELP_STRING([--enable-sse2], [use SSE2 assembly routines [default=maybe]])],
  702. , enable_sse2=$default_ssemath)
  703. if test x$enable_sse2 = xyes; then
  704. save_CFLAGS="$CFLAGS"
  705. have_gcc_sse2=no
  706. AC_MSG_CHECKING(for GCC -msse2 option)
  707. sse2_CFLAGS="-msse2"
  708. CFLAGS="$save_CFLAGS $sse2_CFLAGS"
  709. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  710. #ifdef __MINGW32__
  711. #include <_mingw.h>
  712. #ifdef __MINGW64_VERSION_MAJOR
  713. #include <intrin.h>
  714. #else
  715. #include <emmintrin.h>
  716. #endif
  717. #else
  718. #include <emmintrin.h>
  719. #endif
  720. #ifndef __SSE2__
  721. #error Assembler CPP flag not enabled
  722. #endif
  723. ]],[])], [have_gcc_sse2=yes],[])
  724. AC_MSG_RESULT($have_gcc_sse2)
  725. CFLAGS="$save_CFLAGS"
  726. if test x$have_gcc_sse2 = xyes; then
  727. EXTRA_CFLAGS="$EXTRA_CFLAGS $sse2_CFLAGS"
  728. SUMMARY_math="${SUMMARY_math} sse2"
  729. fi
  730. fi
  731. AC_ARG_ENABLE(sse3,
  732. [AS_HELP_STRING([--enable-sse3], [use SSE3 assembly routines [default=maybe]])],
  733. , enable_sse3=$default_ssemath)
  734. if test x$enable_sse3 = xyes; then
  735. save_CFLAGS="$CFLAGS"
  736. have_gcc_sse3=no
  737. AC_MSG_CHECKING(for GCC -msse3 option)
  738. sse3_CFLAGS="-msse3"
  739. CFLAGS="$save_CFLAGS $sse3_CFLAGS"
  740. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  741. #ifdef __MINGW32__
  742. #include <_mingw.h>
  743. #ifdef __MINGW64_VERSION_MAJOR
  744. #include <intrin.h>
  745. #else
  746. #include <pmmintrin.h>
  747. #endif
  748. #else
  749. #include <pmmintrin.h>
  750. #endif
  751. #ifndef __SSE2__
  752. #error Assembler CPP flag not enabled
  753. #endif
  754. ]],[])], [have_gcc_sse3=yes],[])
  755. AC_MSG_RESULT($have_gcc_sse3)
  756. CFLAGS="$save_CFLAGS"
  757. if test x$have_gcc_sse3 = xyes; then
  758. EXTRA_CFLAGS="$EXTRA_CFLAGS $sse3_CFLAGS"
  759. SUMMARY_math="${SUMMARY_math} sse3"
  760. fi
  761. fi
  762. AC_MSG_CHECKING(for immintrin.h)
  763. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <immintrin.h>]])],
  764. [have_immintrin_h_hdr=yes],[have_immintrin_h_hdr=no])
  765. AC_MSG_RESULT($have_immintrin_h_hdr)
  766. if test x$have_immintrin_h_hdr = xyes; then
  767. AC_DEFINE(HAVE_IMMINTRIN_H, 1, [ ])
  768. fi
  769. AC_ARG_ENABLE(altivec,
  770. [AS_HELP_STRING([--enable-altivec], [use Altivec assembly routines [default=yes]])],
  771. , enable_altivec=yes)
  772. if test x$enable_altivec = xyes; then
  773. save_CFLAGS="$CFLAGS"
  774. have_gcc_altivec=no
  775. have_altivec_h_hdr=no
  776. altivec_CFLAGS="-maltivec"
  777. CFLAGS="$save_CFLAGS $altivec_CFLAGS"
  778. AC_MSG_CHECKING(for Altivec with GCC altivec.h and -maltivec option)
  779. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  780. #include <altivec.h>
  781. vector unsigned int vzero() {
  782. return vec_splat_u32(0);
  783. }
  784. ]],[])], [
  785. have_gcc_altivec=yes
  786. have_altivec_h_hdr=yes
  787. ],[])
  788. AC_MSG_RESULT($have_gcc_altivec)
  789. if test x$have_gcc_altivec = xno; then
  790. AC_MSG_CHECKING(for Altivec with GCC -maltivec option)
  791. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  792. vector unsigned int vzero() {
  793. return vec_splat_u32(0);
  794. }
  795. ]],[])], [have_gcc_altivec=yes],[])
  796. AC_MSG_RESULT($have_gcc_altivec)
  797. fi
  798. if test x$have_gcc_altivec = xno; then
  799. AC_MSG_CHECKING(for Altivec with GCC altivec.h and -faltivec option)
  800. altivec_CFLAGS="-faltivec"
  801. CFLAGS="$save_CFLAGS $altivec_CFLAGS"
  802. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  803. #include <altivec.h>
  804. vector unsigned int vzero() {
  805. return vec_splat_u32(0);
  806. }
  807. ]],[])], [
  808. have_gcc_altivec=yes
  809. have_altivec_h_hdr=yes
  810. ],[])
  811. AC_MSG_RESULT($have_gcc_altivec)
  812. fi
  813. if test x$have_gcc_altivec = xno; then
  814. AC_MSG_CHECKING(for Altivec with GCC -faltivec option)
  815. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  816. vector unsigned int vzero() {
  817. return vec_splat_u32(0);
  818. }
  819. ]],[])], [have_gcc_altivec=yes],[])
  820. AC_MSG_RESULT($have_gcc_altivec)
  821. fi
  822. CFLAGS="$save_CFLAGS"
  823. if test x$have_gcc_altivec = xyes; then
  824. AC_DEFINE(SDL_ALTIVEC_BLITTERS, 1, [ ])
  825. if test x$have_altivec_h_hdr = xyes; then
  826. AC_DEFINE(HAVE_ALTIVEC_H, 1, [ ])
  827. fi
  828. EXTRA_CFLAGS="$EXTRA_CFLAGS $altivec_CFLAGS"
  829. SUMMARY_math="${SUMMARY_math} altivec"
  830. fi
  831. fi
  832. fi
  833. AC_ARG_ENABLE(lsx,
  834. [AS_HELP_STRING([--enable-lsx], [use LSX assembly routines [default=yes]])],
  835. , enable_lsx=yes)
  836. if test x$enable_lsx = xyes; then
  837. save_CFLAGS="$CFLAGS"
  838. have_gcc_lsx=no
  839. AC_MSG_CHECKING(for GCC -mlsx option)
  840. lsx_CFLAGS="-mlsx"
  841. CFLAGS="$save_CFLAGS $lsx_CFLAGS"
  842. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  843. #ifndef __loongarch_sx
  844. #error Assembler CPP flag not enabled
  845. #endif
  846. ]], [])], [have_gcc_lsx=yes], [])
  847. AC_MSG_RESULT($have_gcc_lsx)
  848. CFLAGS="$save_CFLAGS"
  849. if test x$have_gcc_lsx = xyes; then
  850. EXTRA_CFLAGS="$EXTRA_CFLAGS $lsx_CFLAGS"
  851. SUMMARY_math="${SUMMARY_math} lsx"
  852. fi
  853. fi
  854. AC_MSG_CHECKING(for lsxintrin.h)
  855. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <lsxintrin.h>]])],
  856. [have_lsxintrin_h_hdr=yes],[have_lsxintrin_h_hdr=no])
  857. AC_MSG_RESULT($have_lsxintrin_h_hdr)
  858. if test x$have_lsxintrin_h_hdr = xyes; then
  859. AC_DEFINE(HAVE_LSXINTRIN_H, 1, [ ])
  860. fi
  861. AC_ARG_ENABLE(lasx,
  862. [AS_HELP_STRING([--enable-lasx], [use LASX assembly routines [default=yes]])],
  863. , enable_LASX=yes)
  864. if test x$enable_LASX = xyes; then
  865. save_CFLAGS="$CFLAGS"
  866. have_gcc_lasx=no
  867. AC_MSG_CHECKING(for GCC -mlasx option)
  868. lasx_CFLAGS="-mlasx"
  869. CFLAGS="$save_CFLAGS $lasx_CFLAGS"
  870. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  871. #ifndef __loongarch_asx
  872. #error Assembler CPP flag not enabled
  873. #endif
  874. ]], [])], [have_gcc_lasx=yes], [])
  875. AC_MSG_RESULT($have_gcc_lasx)
  876. CFLAGS="$save_CFLAGS"
  877. if test x$have_gcc_lasx = xyes; then
  878. EXTRA_CFLAGS="$EXTRA_CFLAGS $lasx_CFLAGS"
  879. SUMMARY_math="${SUMMARY_math} lasx"
  880. fi
  881. fi
  882. AC_MSG_CHECKING(for lasxintrin.h)
  883. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <lasxintrin.h>]])],
  884. [have_lasxintrin_h_hdr=yes],[have_lasxintrin_h_hdr=no])
  885. AC_MSG_RESULT($have_lasxintrin_h_hdr)
  886. if test x$have_lasxintrin_h_hdr = xyes; then
  887. AC_DEFINE(HAVE_LASXINTRIN_H, 1, [ ])
  888. fi
  889. dnl See if the OSS audio interface is supported
  890. CheckOSS()
  891. {
  892. AC_ARG_ENABLE(oss,
  893. [AS_HELP_STRING([--enable-oss], [support the OSS audio API [default=maybe]])],
  894. , enable_oss=maybe)
  895. if test x$enable_oss = xmaybe; then
  896. enable_oss=yes
  897. fi
  898. if test x$enable_audio = xyes -a x$enable_oss = xyes; then
  899. AC_MSG_CHECKING(for OSS audio support)
  900. have_oss=no
  901. if test x$have_oss != xyes; then
  902. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  903. #include <sys/soundcard.h>
  904. ]], [[
  905. int arg = SNDCTL_DSP_SETFRAGMENT;
  906. ]])], [have_oss=yes],[])
  907. fi
  908. AC_MSG_RESULT($have_oss)
  909. if test x$have_oss = xyes; then
  910. SUMMARY_audio="${SUMMARY_audio} oss"
  911. AC_DEFINE(SDL_AUDIO_DRIVER_OSS, 1, [ ])
  912. SOURCES="$SOURCES $srcdir/src/audio/dsp/*.c"
  913. have_audio=yes
  914. # We may need to link with ossaudio emulation library
  915. case "$host" in
  916. *-*-netbsd*)
  917. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lossaudio";;
  918. esac
  919. fi
  920. fi
  921. }
  922. dnl See if the ALSA audio interface is supported
  923. CheckALSA()
  924. {
  925. AC_ARG_ENABLE(alsa,
  926. [AS_HELP_STRING([--enable-alsa], [support the ALSA audio API [default=yes]])],
  927. , enable_alsa=yes)
  928. if test x$enable_audio = xyes -a x$enable_alsa = xyes; then
  929. AM_PATH_ALSA(1.0.11, have_alsa=yes, have_alsa=no)
  930. # Restore all flags from before the ALSA detection runs
  931. CFLAGS="$alsa_save_CFLAGS"
  932. LDFLAGS="$alsa_save_LDFLAGS"
  933. LIBS="$alsa_save_LIBS"
  934. if test x$have_alsa = xyes; then
  935. AC_ARG_ENABLE(alsa-shared,
  936. [AS_HELP_STRING([--enable-alsa-shared], [dynamically load ALSA audio support [default=yes]])],
  937. , enable_alsa_shared=yes)
  938. alsa_lib=[`find_lib "libasound.so.*" "$ALSA_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
  939. AC_DEFINE(SDL_AUDIO_DRIVER_ALSA, 1, [ ])
  940. SOURCES="$SOURCES $srcdir/src/audio/alsa/*.c"
  941. EXTRA_CFLAGS="$EXTRA_CFLAGS $ALSA_CFLAGS"
  942. if test x$have_loadso != xyes && \
  943. test x$enable_alsa_shared = xyes; then
  944. AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic ALSA loading])
  945. fi
  946. if test x$have_loadso = xyes && \
  947. test x$enable_alsa_shared = xyes && test x$alsa_lib != x; then
  948. echo "-- dynamic libasound -> $alsa_lib"
  949. AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_ALSA_DYNAMIC, "$alsa_lib", [ ])
  950. SUMMARY_audio="${SUMMARY_audio} alsa(dynamic)"
  951. else
  952. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $ALSA_LIBS"
  953. SUMMARY_audio="${SUMMARY_audio} alsa"
  954. fi
  955. have_audio=yes
  956. fi
  957. fi
  958. }
  959. dnl Find JACK Audio
  960. CheckJACK()
  961. {
  962. AC_ARG_ENABLE(jack,
  963. [AS_HELP_STRING([--enable-jack], [use JACK audio [default=yes]])],
  964. , enable_jack=yes)
  965. if test x$enable_audio = xyes -a x$enable_jack = xyes; then
  966. PKG_CHECK_MODULES([JACK], [jack >= 0.125], audio_jack=yes, audio_jack=no)
  967. if test x$audio_jack = xyes; then
  968. AC_ARG_ENABLE(jack-shared,
  969. [AS_HELP_STRING([--enable-jack-shared], [dynamically load JACK audio support [default=yes]])],
  970. , enable_jack_shared=yes)
  971. jack_lib=[`find_lib "libjack.so.*" "$JACK_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
  972. AC_DEFINE(SDL_AUDIO_DRIVER_JACK, 1, [ ])
  973. SOURCES="$SOURCES $srcdir/src/audio/jack/*.c"
  974. EXTRA_CFLAGS="$EXTRA_CFLAGS $JACK_CFLAGS"
  975. if test x$have_loadso != xyes && \
  976. test x$enable_jack_shared = xyes; then
  977. AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic JACK audio loading])
  978. fi
  979. if test x$have_loadso = xyes && \
  980. test x$enable_jack_shared = xyes && test x$jack_lib != x; then
  981. echo "-- dynamic libjack -> $jack_lib"
  982. AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_JACK_DYNAMIC, "$jack_lib", [ ])
  983. SUMMARY_audio="${SUMMARY_audio} jack(dynamic)"
  984. case "$host" in
  985. # On Solaris, jack must be linked deferred explicitly
  986. # to prevent undefined symbol failures.
  987. *-*-solaris*)
  988. JACK_LIBS=`echo $JACK_LIBS | sed 's/\-l/-Wl,-l/g'`
  989. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-zdeferred $JACK_LIBS -Wl,-znodeferred"
  990. esac
  991. else
  992. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $JACK_LIBS"
  993. SUMMARY_audio="${SUMMARY_audio} jack"
  994. fi
  995. have_audio=yes
  996. fi
  997. fi
  998. }
  999. dnl Find the ESD includes and libraries
  1000. CheckESD()
  1001. {
  1002. AC_ARG_ENABLE(esd,
  1003. [AS_HELP_STRING([--enable-esd], [support the Enlightened Sound Daemon [default=yes]])],
  1004. , enable_esd=yes)
  1005. if test x$enable_audio = xyes -a x$enable_esd = xyes; then
  1006. PKG_CHECK_MODULES([ESD], [esound >= 0.2.8], have_esd=yes, have_esd=no)
  1007. if test x$have_esd = xno; then
  1008. AM_PATH_ESD(0.2.8, have_esd=yes, have_esd=no)
  1009. fi
  1010. if test x$have_esd = xyes; then
  1011. AC_ARG_ENABLE(esd-shared,
  1012. [AS_HELP_STRING([--enable-esd-shared], [dynamically load ESD audio support [default=yes]])],
  1013. , enable_esd_shared=yes)
  1014. esd_lib=[`find_lib "libesd.so.*" "$ESD_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
  1015. AC_DEFINE(SDL_AUDIO_DRIVER_ESD, 1, [ ])
  1016. SOURCES="$SOURCES $srcdir/src/audio/esd/*.c"
  1017. EXTRA_CFLAGS="$EXTRA_CFLAGS $ESD_CFLAGS"
  1018. if test x$have_loadso != xyes && \
  1019. test x$enable_esd_shared = xyes; then
  1020. AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic ESD loading])
  1021. fi
  1022. if test x$have_loadso = xyes && \
  1023. test x$enable_esd_shared = xyes && test x$esd_lib != x; then
  1024. echo "-- dynamic libesd -> $esd_lib"
  1025. AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_ESD_DYNAMIC, "$esd_lib", [ ])
  1026. SUMMARY_audio="${SUMMARY_audio} esd(dynamic)"
  1027. else
  1028. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $ESD_LIBS"
  1029. SUMMARY_audio="${SUMMARY_audio} esd"
  1030. fi
  1031. have_audio=yes
  1032. fi
  1033. fi
  1034. }
  1035. dnl Find Pipewire
  1036. CheckPipewire()
  1037. {
  1038. AC_ARG_ENABLE(pipewire,
  1039. [AS_HELP_STRING([--enable-pipewire], [use Pipewire audio [default=yes]])],
  1040. , enable_pipewire=yes)
  1041. if test x$enable_audio = xyes -a x$enable_pipewire = xyes; then
  1042. PKG_CHECK_MODULES([PIPEWIRE], [libpipewire-0.3 >= 0.3.20], audio_pipewire=yes, audio_pipewire=no)
  1043. if test x$audio_pipewire = xyes; then
  1044. AC_ARG_ENABLE(pipewire-shared,
  1045. [AS_HELP_STRING([--enable-pipewire-shared], [dynamically load Pipewire support [default=yes]])],
  1046. , enable_pipewire_shared=yes)
  1047. pipewire_lib=[`find_lib "libpipewire-0.3.so.*" "$PIPEWIRE_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
  1048. AC_DEFINE(SDL_AUDIO_DRIVER_PIPEWIRE, 1, [ ])
  1049. SOURCES="$SOURCES $srcdir/src/audio/pipewire/*.c"
  1050. EXTRA_CFLAGS="$EXTRA_CFLAGS $PIPEWIRE_CFLAGS"
  1051. if test x$have_loadso != xyes && \
  1052. test x$enable_pipewire_shared = xyes; then
  1053. AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic Pipewire loading])
  1054. fi
  1055. if test x$have_loadso = xyes && \
  1056. test x$enable_pipewire_shared = xyes && test x$pipewire_lib != x; then
  1057. echo "-- dynamic libpipewire-0.3 -> $pipewire_lib"
  1058. AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_PIPEWIRE_DYNAMIC, "$pipewire_lib", [ ])
  1059. SUMMARY_audio="${SUMMARY_audio} pipewire(dynamic)"
  1060. else
  1061. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $PIPEWIRE_LIBS"
  1062. SUMMARY_audio="${SUMMARY_audio} pipewire"
  1063. fi
  1064. have_audio=yes
  1065. fi
  1066. fi
  1067. }
  1068. dnl Find PulseAudio
  1069. CheckPulseAudio()
  1070. {
  1071. AC_ARG_ENABLE(pulseaudio,
  1072. [AS_HELP_STRING([--enable-pulseaudio], [use PulseAudio [default=yes]])],
  1073. , enable_pulseaudio=yes)
  1074. if test x$enable_audio = xyes -a x$enable_pulseaudio = xyes; then
  1075. PKG_CHECK_MODULES([PULSEAUDIO], [libpulse >= 0.9.15], audio_pulseaudio=yes, audio_pulseaudio=no)
  1076. if test x$audio_pulseaudio = xyes; then
  1077. AC_ARG_ENABLE(pulseaudio-shared,
  1078. [AS_HELP_STRING([--enable-pulseaudio-shared], [dynamically load PulseAudio support [default=yes]])],
  1079. , enable_pulseaudio_shared=yes)
  1080. pulseaudio_lib=[`find_lib "libpulse.so.*" "$PULSEAUDIO_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
  1081. AC_DEFINE(SDL_AUDIO_DRIVER_PULSEAUDIO, 1, [ ])
  1082. SOURCES="$SOURCES $srcdir/src/audio/pulseaudio/*.c"
  1083. EXTRA_CFLAGS="$EXTRA_CFLAGS $PULSEAUDIO_CFLAGS"
  1084. if test x$have_loadso != xyes && \
  1085. test x$enable_pulseaudio_shared = xyes; then
  1086. AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic PulseAudio loading])
  1087. fi
  1088. if test x$have_loadso = xyes && \
  1089. test x$enable_pulseaudio_shared = xyes && test x$pulseaudio_lib != x; then
  1090. echo "-- dynamic libpulse -> $pulseaudio_lib"
  1091. AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_PULSEAUDIO_DYNAMIC, "$pulseaudio_lib", [ ])
  1092. SUMMARY_audio="${SUMMARY_audio} pulse(dynamic)"
  1093. case "$host" in
  1094. # On Solaris, pulseaudio must be linked deferred explicitly
  1095. # to prevent undefined symbol failures.
  1096. *-*-solaris*)
  1097. PULSEAUDIO_LIBS=`echo $PULSEAUDIO_LIBS | sed 's/\-l/-Wl,-l/g'`
  1098. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-zdeferred $PULSEAUDIO_LIBS -Wl,-znodeferred"
  1099. esac
  1100. else
  1101. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $PULSEAUDIO_LIBS"
  1102. SUMMARY_audio="${SUMMARY_audio} pulse"
  1103. fi
  1104. have_audio=yes
  1105. fi
  1106. fi
  1107. }
  1108. CheckARTSC()
  1109. {
  1110. AC_ARG_ENABLE(arts,
  1111. [AS_HELP_STRING([--enable-arts], [support the Analog Real Time Synthesizer [default=yes]])],
  1112. , enable_arts=yes)
  1113. if test x$enable_audio = xyes -a x$enable_arts = xyes; then
  1114. AC_PATH_PROG(ARTSCONFIG, artsc-config)
  1115. if test x$ARTSCONFIG = x -o x$ARTSCONFIG = x'"$ARTSCONFIG"'; then
  1116. : # arts isn't installed
  1117. else
  1118. ARTS_CFLAGS=`$ARTSCONFIG --cflags`
  1119. ARTS_LIBS=`$ARTSCONFIG --libs`
  1120. AC_MSG_CHECKING(for aRts development environment)
  1121. audio_arts=no
  1122. save_CFLAGS="$CFLAGS"
  1123. CFLAGS="$CFLAGS $ARTS_CFLAGS"
  1124. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  1125. #include <artsc.h>
  1126. ]], [[
  1127. arts_stream_t stream;
  1128. ]])], [audio_arts=yes],[])
  1129. CFLAGS="$save_CFLAGS"
  1130. AC_MSG_RESULT($audio_arts)
  1131. if test x$audio_arts = xyes; then
  1132. AC_ARG_ENABLE(arts-shared,
  1133. [AS_HELP_STRING([--enable-arts-shared], [dynamically load aRts audio support [default=yes]])],
  1134. , enable_arts_shared=yes)
  1135. arts_lib=[`find_lib "libartsc.so.*" "$ARTS_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
  1136. AC_DEFINE(SDL_AUDIO_DRIVER_ARTS, 1, [ ])
  1137. SOURCES="$SOURCES $srcdir/src/audio/arts/*.c"
  1138. EXTRA_CFLAGS="$EXTRA_CFLAGS $ARTS_CFLAGS"
  1139. if test x$have_loadso != xyes && \
  1140. test x$enable_arts_shared = xyes; then
  1141. AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic ARTS loading])
  1142. fi
  1143. if test x$have_loadso = xyes && \
  1144. test x$enable_arts_shared = xyes && test x$arts_lib != x; then
  1145. echo "-- dynamic libartsc -> $arts_lib"
  1146. AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_ARTS_DYNAMIC, "$arts_lib", [ ])
  1147. SUMMARY_audio="${SUMMARY_audio} arts(dynamic)"
  1148. else
  1149. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $ARTS_LIBS"
  1150. SUMMARY_audio="${SUMMARY_audio} arts"
  1151. fi
  1152. have_audio=yes
  1153. fi
  1154. fi
  1155. fi
  1156. }
  1157. dnl See if the NAS audio interface is supported
  1158. CheckNAS()
  1159. {
  1160. AC_ARG_ENABLE(nas,
  1161. [AS_HELP_STRING([--enable-nas], [support the NAS audio API [default=yes]])],
  1162. , enable_nas=yes)
  1163. if test x$enable_audio = xyes -a x$enable_nas = xyes; then
  1164. AC_CHECK_HEADER(audio/audiolib.h, have_nas_hdr=yes)
  1165. AC_CHECK_LIB(audio, AuOpenServer, have_nas_lib=yes)
  1166. AC_MSG_CHECKING(for NAS audio support)
  1167. have_nas=no
  1168. if test x$have_nas_hdr = xyes -a x$have_nas_lib = xyes; then
  1169. have_nas=yes
  1170. NAS_LIBS="-laudio"
  1171. elif test -r /usr/X11R6/include/audio/audiolib.h; then
  1172. have_nas=yes
  1173. NAS_CFLAGS="-I/usr/X11R6/include/"
  1174. NAS_LIBS="-L/usr/X11R6/lib -laudio -lXt"
  1175. fi
  1176. AC_MSG_RESULT($have_nas)
  1177. if test x$have_nas = xyes; then
  1178. AC_ARG_ENABLE(nas-shared,
  1179. [AS_HELP_STRING([--enable-nas-shared], [dynamically load NAS audio support [default=yes]])],
  1180. , enable_nas_shared=yes)
  1181. nas_lib=[`find_lib "libaudio.so.*" "$NAS_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
  1182. if test x$have_loadso != xyes && \
  1183. test x$enable_nas_shared = xyes; then
  1184. AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic NAS loading])
  1185. fi
  1186. if test x$have_loadso = xyes && \
  1187. test x$enable_nas_shared = xyes && test x$nas_lib != x; then
  1188. echo "-- dynamic libaudio -> $nas_lib"
  1189. AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_NAS_DYNAMIC, "$nas_lib", [ ])
  1190. SUMMARY_audio="${SUMMARY_audio} nas(dynamic)"
  1191. else
  1192. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $NAS_LIBS"
  1193. SUMMARY_audio="${SUMMARY_audio} nas"
  1194. fi
  1195. AC_DEFINE(SDL_AUDIO_DRIVER_NAS, 1, [ ])
  1196. SOURCES="$SOURCES $srcdir/src/audio/nas/*.c"
  1197. EXTRA_CFLAGS="$EXTRA_CFLAGS $NAS_CFLAGS"
  1198. have_audio=yes
  1199. fi
  1200. fi
  1201. }
  1202. dnl See if the sndio audio interface is supported
  1203. CheckSNDIO()
  1204. {
  1205. AC_ARG_ENABLE(sndio,
  1206. [AS_HELP_STRING([--enable-sndio], [support the sndio audio API [default=yes]])],
  1207. , enable_sndio=yes)
  1208. if test x$enable_audio = xyes -a x$enable_sndio = xyes; then
  1209. PKG_CHECK_MODULES([SNDIO], [sndio], audio_sndio=yes, audio_sndio=no)
  1210. if test x$audio_sndio = xyes; then
  1211. AC_ARG_ENABLE(sndio-shared,
  1212. [AS_HELP_STRING([--enable-sndio-shared], [dynamically load sndio audio support [default=yes]])],
  1213. , enable_sndio_shared=yes)
  1214. sndio_lib=[`find_lib "libsndio.so.*" "$SNDIO_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
  1215. if test x$have_loadso != xyes && \
  1216. test x$enable_sndio_shared = xyes; then
  1217. AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic sndio loading])
  1218. fi
  1219. if test x$have_loadso = xyes && \
  1220. test x$enable_sndio_shared = xyes && test x$sndio_lib != x; then
  1221. echo "-- dynamic libsndio -> $sndio_lib"
  1222. AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_SNDIO_DYNAMIC, "$sndio_lib", [ ])
  1223. SUMMARY_audio="${SUMMARY_audio} sndio(dynamic)"
  1224. else
  1225. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $SNDIO_LIBS"
  1226. SUMMARY_audio="${SUMMARY_audio} sndio"
  1227. fi
  1228. AC_DEFINE(SDL_AUDIO_DRIVER_SNDIO, 1, [ ])
  1229. SOURCES="$SOURCES $srcdir/src/audio/sndio/*.c"
  1230. EXTRA_CFLAGS="$EXTRA_CFLAGS $SNDIO_CFLAGS"
  1231. have_audio=yes
  1232. fi
  1233. fi
  1234. }
  1235. dnl Find FusionSound
  1236. CheckFusionSound()
  1237. {
  1238. AC_ARG_ENABLE(fusionsound,
  1239. [AS_HELP_STRING([--enable-fusionsound], [use FusionSound audio driver [default=no]])],
  1240. , enable_fusionsound=no)
  1241. if test x$enable_audio = xyes -a x$enable_fusionsound = xyes; then
  1242. PKG_CHECK_MODULES([FUSIONSOUND], [fusionsound >= 1.1.1], fusionsound=yes, fusionsound=no)
  1243. if test x$fusionsound = xyes; then
  1244. AC_DEFINE(SDL_AUDIO_DRIVER_FUSIONSOUND, 1, [ ])
  1245. SOURCES="$SOURCES $srcdir/src/audio/fusionsound/*.c"
  1246. EXTRA_CFLAGS="$EXTRA_CFLAGS $FUSIONSOUND_CFLAGS"
  1247. AC_ARG_ENABLE(fusionsound-shared,
  1248. [AS_HELP_STRING([--enable-fusionsound-shared], [dynamically load fusionsound audio support [default=yes]])],
  1249. , enable_fusionsound_shared=yes)
  1250. fusionsound_shared=no
  1251. AC_MSG_CHECKING(for FusionSound dynamic loading support)
  1252. if test x$have_loadso != xyes && \
  1253. test x$enable_fusionsound_shared = xyes; then
  1254. AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic fusionsound loading])
  1255. fi
  1256. if test x$have_loadso = xyes && \
  1257. test x$enable_fusionsound_shared = xyes; then
  1258. AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_FUSIONSOUND_DYNAMIC, "libfusionsound.so", [ ])
  1259. fusionsound_shared=yes
  1260. SUMMARY_audio="${SUMMARY_audio} fusionsound(dynamic)"
  1261. else
  1262. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $FUSIONSOUND_LIBS"
  1263. SUMMARY_audio="${SUMMARY_audio} fusionsound"
  1264. fi
  1265. AC_MSG_RESULT($fusionsound_shared)
  1266. have_audio=yes
  1267. fi
  1268. fi
  1269. }
  1270. dnl rcg07142001 See if the user wants the disk writer audio driver...
  1271. CheckDiskAudio()
  1272. {
  1273. AC_ARG_ENABLE(diskaudio,
  1274. [AS_HELP_STRING([--enable-diskaudio], [support the disk writer audio driver [default=yes]])],
  1275. , enable_diskaudio=yes)
  1276. if test x$enable_audio = xyes -a x$enable_diskaudio = xyes; then
  1277. AC_DEFINE(SDL_AUDIO_DRIVER_DISK, 1, [ ])
  1278. SOURCES="$SOURCES $srcdir/src/audio/disk/*.c"
  1279. SUMMARY_audio="${SUMMARY_audio} disk"
  1280. have_audio=yes
  1281. fi
  1282. }
  1283. dnl rcg03142006 See if the user wants the dummy audio driver...
  1284. CheckDummyAudio()
  1285. {
  1286. AC_ARG_ENABLE(dummyaudio,
  1287. [AS_HELP_STRING([--enable-dummyaudio], [support the dummy audio driver [default=yes]])],
  1288. , enable_dummyaudio=yes)
  1289. if test x$enable_audio = xyes -a x$enable_dummyaudio = xyes; then
  1290. AC_DEFINE(SDL_AUDIO_DRIVER_DUMMY, 1, [ ])
  1291. SOURCES="$SOURCES $srcdir/src/audio/dummy/*.c"
  1292. SUMMARY_audio="${SUMMARY_audio} dummy"
  1293. have_audio=yes
  1294. fi
  1295. }
  1296. dnl See if libsamplerate is available
  1297. CheckLibSampleRate()
  1298. {
  1299. AC_ARG_ENABLE(libsamplerate,
  1300. [AS_HELP_STRING([--enable-libsamplerate], [use libsamplerate for audio rate conversion [default=yes]])],
  1301. , enable_libsamplerate=yes)
  1302. if test x$enable_libsamplerate = xyes; then
  1303. AC_CHECK_HEADER(samplerate.h,
  1304. have_samplerate_h_hdr=yes,
  1305. have_samplerate_h_hdr=no)
  1306. if test x$have_samplerate_h_hdr = xyes; then
  1307. AC_DEFINE(HAVE_LIBSAMPLERATE_H, 1, [ ])
  1308. AC_ARG_ENABLE(libsamplerate-shared,
  1309. [AS_HELP_STRING([--enable-libsamplerate-shared], [dynamically load libsamplerate [default=yes]])],
  1310. , enable_libsamplerate_shared=yes)
  1311. samplerate_lib=[`find_lib "libsamplerate.so.*" "" | sed 's/.*\/\(.*\)/\1/; q'`]
  1312. if test x$have_loadso != xyes && \
  1313. test x$enable_libsamplerate_shared = xyes; then
  1314. AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic libsamplerate loading])
  1315. fi
  1316. if test x$have_loadso = xyes && \
  1317. test x$enable_libsamplerate_shared = xyes && test x$samplerate_lib != x; then
  1318. echo "-- dynamic libsamplerate -> $samplerate_lib"
  1319. AC_DEFINE_UNQUOTED(SDL_LIBSAMPLERATE_DYNAMIC, "$samplerate_lib", [ ])
  1320. else
  1321. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lsamplerate"
  1322. fi
  1323. fi
  1324. fi
  1325. }
  1326. dnl Check for ARM instruction support using gas syntax
  1327. CheckARM()
  1328. {
  1329. AC_ARG_ENABLE(arm-simd,
  1330. [AS_HELP_STRING([--enable-arm-simd], [use SIMD assembly blitters on ARM [default=no]])],
  1331. enable_arm_simd=$enableval, enable_arm_simd=no)
  1332. if test x$enable_video = xyes -a x$enable_assembly = xyes -a x$enable_arm_simd = xyes; then
  1333. save_CFLAGS="$CFLAGS"
  1334. have_arm_simd=no
  1335. CFLAGS="-x assembler-with-cpp $CFLAGS"
  1336. AC_MSG_CHECKING(for ARM SIMD)
  1337. AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
  1338. .text
  1339. .arch armv6
  1340. .object_arch armv4
  1341. .arm
  1342. .altmacro
  1343. #ifndef __ARM_EABI__
  1344. #error EABI is required (to be sure that calling conventions are compatible)
  1345. #endif
  1346. pld [r0]
  1347. uqadd8 r0, r0, r0
  1348. ]])], have_arm_simd=yes)
  1349. AC_MSG_RESULT($have_arm_simd)
  1350. CFLAGS="$save_CFLAGS"
  1351. if test x$have_arm_simd = xyes; then
  1352. AC_DEFINE(SDL_ARM_SIMD_BLITTERS, 1, [ ])
  1353. SOURCES="$SOURCES $srcdir/src/video/arm/pixman-arm-simd*.S"
  1354. WARN_ABOUT_ARM_SIMD_ASM_MIT="yes"
  1355. fi
  1356. fi
  1357. }
  1358. dnl Check for ARM NEON instruction support using gas syntax
  1359. CheckNEON()
  1360. {
  1361. AC_ARG_ENABLE(arm-neon,
  1362. [AS_HELP_STRING([--enable-arm-neon], [use NEON assembly blitters on ARM [default=no]])],
  1363. enable_arm_neon=$enableval, enable_arm_neon=no)
  1364. if test x$enable_video = xyes -a x$enable_assembly = xyes -a x$enable_arm_neon = xyes; then
  1365. save_CFLAGS="$CFLAGS"
  1366. have_arm_neon=no
  1367. CFLAGS="-x assembler-with-cpp $CFLAGS"
  1368. AC_MSG_CHECKING(for ARM NEON)
  1369. AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
  1370. .text
  1371. .fpu neon
  1372. .arch armv7a
  1373. .object_arch armv4
  1374. .eabi_attribute 10, 0
  1375. .arm
  1376. .altmacro
  1377. #ifndef __ARM_EABI__
  1378. #error EABI is required (to be sure that calling conventions are compatible)
  1379. #endif
  1380. pld [r0]
  1381. vmovn.u16 d0, q0
  1382. ]])], have_arm_neon=yes)
  1383. AC_MSG_RESULT($have_arm_neon)
  1384. CFLAGS="$save_CFLAGS"
  1385. if test x$have_arm_neon = xyes; then
  1386. AC_DEFINE(SDL_ARM_NEON_BLITTERS, 1, [ ])
  1387. SOURCES="$SOURCES $srcdir/src/video/arm/pixman-arm-neon*.S"
  1388. WARN_ABOUT_ARM_NEON_ASM_MIT="yes"
  1389. fi
  1390. fi
  1391. }
  1392. dnl See if clang's -fobjc-arc supported.
  1393. dnl Reference: https://github.com/libsdl-org/SDL/pull/5632
  1394. CheckObjectiveCARC()
  1395. {
  1396. AC_MSG_CHECKING(for clang -fobjc-arc option)
  1397. have_clang_objc_arc=no
  1398. save_CFLAGS="$CFLAGS"
  1399. CFLAGS="$save_CFLAGS -fobjc-arc"
  1400. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  1401. int x = 0;
  1402. ]],[])], [have_clang_objc_arc=yes],[])
  1403. AC_MSG_RESULT($have_clang_objc_arc)
  1404. CFLAGS="$save_CFLAGS"
  1405. if test x$have_clang_objc_arc = xyes; then
  1406. EXTRA_CFLAGS="$EXTRA_CFLAGS -fobjc-arc"
  1407. fi
  1408. }
  1409. dnl See if GCC's -gdwarf-4 is supported
  1410. dnl See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101377 for why this is needed on Windows
  1411. CheckGDwarf4()
  1412. {
  1413. AC_MSG_CHECKING(for GCC -gdwarf-4 option)
  1414. have_gcc_gdwarf4=no
  1415. save_CFLAGS="$CFLAGS"
  1416. CFLAGS="$save_CFLAGS -gdwarf-4"
  1417. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  1418. int x = 0;
  1419. ]],[])], [have_gcc_gdwarf4=yes],[])
  1420. AC_MSG_RESULT($have_gcc_gdwarf4)
  1421. CFLAGS="$save_CFLAGS"
  1422. if test x$have_gcc_gdwarf4 = xyes; then
  1423. EXTRA_CFLAGS="$EXTRA_CFLAGS -gdwarf-4"
  1424. fi
  1425. }
  1426. dnl See if GCC's -fvisibility=hidden is supported (gcc4 and later, usually).
  1427. dnl Details of this flag are here: http://gcc.gnu.org/wiki/Visibility
  1428. CheckVisibilityHidden()
  1429. {
  1430. AC_MSG_CHECKING(for GCC -fvisibility=hidden option)
  1431. have_gcc_fvisibility=no
  1432. visibility_CFLAGS="-fvisibility=hidden"
  1433. save_CFLAGS="$CFLAGS"
  1434. CFLAGS="$save_CFLAGS $visibility_CFLAGS -Werror"
  1435. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  1436. #if !defined(__GNUC__) || __GNUC__ < 4
  1437. #error SDL only uses visibility attributes in GCC 4 or newer
  1438. #endif
  1439. ]],[])], [have_gcc_fvisibility=yes],[])
  1440. AC_MSG_RESULT($have_gcc_fvisibility)
  1441. CFLAGS="$save_CFLAGS"
  1442. if test x$have_gcc_fvisibility = xyes; then
  1443. EXTRA_CFLAGS="$EXTRA_CFLAGS $visibility_CFLAGS"
  1444. fi
  1445. }
  1446. dnl See if GCC's -fno-strict-aliasingis supported.
  1447. dnl Reference: https://bugzilla.libsdl.org/show_bug.cgi?id=4254
  1448. CheckNoStrictAliasing()
  1449. {
  1450. AC_MSG_CHECKING(for GCC -fno-strict-aliasing option)
  1451. have_gcc_no_strict_aliasing=no
  1452. save_CFLAGS="$CFLAGS"
  1453. CFLAGS="$save_CFLAGS -fno-strict-aliasing"
  1454. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  1455. int x = 0;
  1456. ]],[])], [have_gcc_no_strict_aliasing=yes],[])
  1457. AC_MSG_RESULT($have_gcc_no_strict_aliasing)
  1458. CFLAGS="$save_CFLAGS"
  1459. if test x$have_gcc_no_strict_aliasing = xyes; then
  1460. EXTRA_CFLAGS="$EXTRA_CFLAGS -fno-strict-aliasing"
  1461. fi
  1462. }
  1463. dnl See if GCC's -Werror is supported.
  1464. CheckWerror()
  1465. {
  1466. AC_ARG_ENABLE(werror,
  1467. [AS_HELP_STRING([--enable-werror], [treat warnings as errors [default=no]])],
  1468. enable_werror=$enableval, enable_werror=no)
  1469. if test x$enable_werror = xyes; then
  1470. AC_MSG_CHECKING(for GCC -Werror option)
  1471. have_gcc_werror=no
  1472. save_CFLAGS="$CFLAGS"
  1473. CFLAGS="$save_CFLAGS -Werror"
  1474. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  1475. int x = 0;
  1476. ]],[])], [have_gcc_werror=yes],[])
  1477. AC_MSG_RESULT($have_gcc_werror)
  1478. CFLAGS="$save_CFLAGS"
  1479. if test x$have_gcc_werror = xyes; then
  1480. EXTRA_CFLAGS="$EXTRA_CFLAGS -Werror"
  1481. fi
  1482. fi
  1483. }
  1484. dnl See if GCC's -Wno-error=deprecated-declarations is supported.
  1485. CheckNoErrorDeprecatedDeclarationsWerror()
  1486. {
  1487. AC_MSG_CHECKING(for GCC -Wno-error=deprecated-declarations option)
  1488. have_gcc_no_werror_deprecated_declarations=no
  1489. save_CFLAGS="$CFLAGS"
  1490. CFLAGS="$save_CFLAGS -Wno-error=deprecated-declarations"
  1491. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  1492. int x = 0;
  1493. ]],[])], [have_gcc_no_werror_deprecated_declarations=yes],[])
  1494. AC_MSG_RESULT($have_gcc_werror)
  1495. CFLAGS="$save_CFLAGS"
  1496. if test x$have_gcc_no_werror_deprecated_declarations = xyes; then
  1497. EXTRA_CFLAGS="$EXTRA_CFLAGS -Wno-error=deprecated-declarations"
  1498. fi
  1499. }
  1500. dnl See if GCC's -Wdeclaration-after-statement is supported.
  1501. dnl This lets us catch things that would fail on a C89 compiler when using
  1502. dnl a modern GCC.
  1503. CheckDeclarationAfterStatement()
  1504. {
  1505. AC_MSG_CHECKING(for GCC -Wdeclaration-after-statement option)
  1506. have_gcc_declaration_after_statement=no
  1507. save_CFLAGS="$CFLAGS"
  1508. CFLAGS="$save_CFLAGS -Wdeclaration-after-statement -Werror=declaration-after-statement"
  1509. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  1510. int x = 0;
  1511. ]],[])], [have_gcc_declaration_after_statement=yes],[])
  1512. AC_MSG_RESULT($have_gcc_declaration_after_statement)
  1513. CFLAGS="$save_CFLAGS"
  1514. if test x$have_gcc_declaration_after_statement = xyes; then
  1515. EXTRA_CFLAGS="$EXTRA_CFLAGS -Wdeclaration-after-statement -Werror=declaration-after-statement"
  1516. fi
  1517. }
  1518. dnl See if GCC's -Wall is supported.
  1519. CheckWarnAll()
  1520. {
  1521. AC_MSG_CHECKING(for GCC -Wall option)
  1522. have_gcc_Wall=no
  1523. save_CFLAGS="$CFLAGS"
  1524. CFLAGS="$save_CFLAGS -Wall"
  1525. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  1526. int x = 0;
  1527. ]],[])], [have_gcc_Wall=yes],[])
  1528. AC_MSG_RESULT($have_gcc_Wall)
  1529. CFLAGS="$save_CFLAGS"
  1530. if test x$have_gcc_Wall = xyes; then
  1531. EXTRA_CFLAGS="$EXTRA_CFLAGS -Wall"
  1532. dnl Haiku headers use multicharacter constants all over the place. Ignore these warnings when using -Wall.
  1533. AC_MSG_CHECKING(for necessary GCC -Wno-multichar option)
  1534. need_gcc_Wno_multichar=no
  1535. case "$host" in
  1536. *-*-haiku*)
  1537. need_gcc_Wno_multichar=yes
  1538. ;;
  1539. esac
  1540. AC_MSG_RESULT($need_gcc_Wno_multichar)
  1541. if test x$need_gcc_Wno_multichar = xyes; then
  1542. EXTRA_CFLAGS="$EXTRA_CFLAGS -Wno-multichar"
  1543. fi
  1544. fi
  1545. }
  1546. dnl See if GCC's -Wunused-local-typedefs is supported and disable it
  1547. dnl because it triggers on gcc 4.8.4 for compile time asserts inside
  1548. dnl of functions.
  1549. CheckUnusedLocalTypedefs()
  1550. {
  1551. AC_MSG_CHECKING(for GCC -Wunused-local-typedefs option)
  1552. have_gcc_unused_local_typedefs=no
  1553. save_CFLAGS="$CFLAGS"
  1554. CFLAGS="$save_CFLAGS -Wunused-local-typedefs"
  1555. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  1556. int x = 0;
  1557. ]],[])], [have_gcc_unused_local_typedefs=yes],[])
  1558. AC_MSG_RESULT($have_gcc_unused_local_typedefs)
  1559. CFLAGS="$save_CFLAGS"
  1560. if test x$have_gcc_unused_local_typedefs = xyes; then
  1561. EXTRA_CFLAGS="$EXTRA_CFLAGS -Wno-unused-local-typedefs"
  1562. fi
  1563. }
  1564. dnl Check for Wayland
  1565. CheckWayland()
  1566. {
  1567. AC_ARG_ENABLE(video-wayland,
  1568. [AS_HELP_STRING([--enable-video-wayland], [use Wayland video driver [default=yes]])],
  1569. ,enable_video_wayland=yes)
  1570. AC_ARG_ENABLE(video-wayland-qt-touch,
  1571. [AS_HELP_STRING([--enable-video-wayland-qt-touch], [QtWayland server support for Wayland video driver [default=yes]])],
  1572. ,enable_video_wayland_qt_touch=yes)
  1573. if test x$enable_video = xyes -a x$enable_video_wayland = xyes; then
  1574. AC_MSG_CHECKING(for Wayland support)
  1575. video_wayland=no
  1576. if test x$video_opengl_egl = xyes && \
  1577. test x$video_opengles_v2 = xyes; then
  1578. if $PKG_CONFIG --exists 'wayland-client >= 1.18' wayland-scanner wayland-egl wayland-cursor egl 'xkbcommon >= 0.5.0'; then
  1579. WAYLAND_CFLAGS=`$PKG_CONFIG --cflags wayland-client wayland-egl wayland-cursor xkbcommon`
  1580. WAYLAND_LIBS=`$PKG_CONFIG --libs wayland-client wayland-egl wayland-cursor xkbcommon`
  1581. WAYLAND_SCANNER=`$PKG_CONFIG --variable=wayland_scanner wayland-scanner`
  1582. AS_IF([$PKG_CONFIG --exists 'wayland-scanner >= 1.15'],
  1583. [WAYLAND_SCANNER_CODE_MODE=private-code],
  1584. [WAYLAND_SCANNER_CODE_MODE=code])
  1585. video_wayland=yes
  1586. fi
  1587. fi
  1588. AC_MSG_RESULT($video_wayland)
  1589. if test x$video_wayland = xyes; then
  1590. AC_DEFINE(SDL_VIDEO_DRIVER_WAYLAND, 1, [ ])
  1591. if test x$enable_video_wayland_qt_touch = xyes; then
  1592. AC_DEFINE(SDL_VIDEO_DRIVER_WAYLAND_QT_TOUCH, 1, [ ])
  1593. fi
  1594. WAYLAND_SOURCES="$srcdir/src/video/wayland/*.c"
  1595. SOURCES="$SOURCES $WAYLAND_SOURCES"
  1596. EXTRA_CFLAGS="$EXTRA_CFLAGS $WAYLAND_CFLAGS -I\$(gen)"
  1597. AC_ARG_ENABLE(wayland-shared,
  1598. [AS_HELP_STRING([--enable-wayland-shared], [dynamically load Wayland support [default=maybe]])],
  1599. , enable_wayland_shared=maybe)
  1600. dnl FIXME: Do BSD and OS X need special cases?
  1601. case "$host" in
  1602. *)
  1603. wayland_client_lib=[`find_lib "libwayland-client.so.*" "$WAYLAND_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
  1604. wayland_egl_lib=[`find_lib "libwayland-egl.so.*" "$WAYLAND_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
  1605. if test x$wayland_egl_lib = x; then
  1606. # This works in Ubuntu 13.10, maybe others
  1607. wayland_egl_lib=[`find_lib "mesa-egl/libwayland-egl.so.*" "$WAYLAND_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
  1608. fi
  1609. wayland_cursor_lib=[`find_lib "libwayland-cursor.so.*" "$WAYLAND_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
  1610. xkbcommon_lib=[`find_lib "libxkbcommon.so.*" "$WAYLAND_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
  1611. ;;
  1612. esac
  1613. if test x$enable_wayland_shared = xmaybe; then
  1614. enable_wayland_shared=yes
  1615. fi
  1616. if test x$have_loadso != xyes && \
  1617. test x$enable_wayland_shared = xyes; then
  1618. AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic Wayland loading])
  1619. enable_wayland_shared=no
  1620. fi
  1621. if test x$have_loadso = xyes && \
  1622. test x$enable_wayland_shared = xyes && \
  1623. test x$wayland_client_lib != x && \
  1624. test x$wayland_egl_lib != x && \
  1625. test x$wayland_cursor_lib != x && \
  1626. test x$xkbcommon_lib != x; then
  1627. echo "-- dynamic libwayland-client -> $wayland_client_lib"
  1628. echo "-- dynamic libwayland-egl -> $wayland_egl_lib"
  1629. echo "-- dynamic libwayland-cursor -> $wayland_cursor_lib"
  1630. echo "-- dynamic libxkbcommon -> $xkbcommon_lib"
  1631. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_WAYLAND_DYNAMIC, "$wayland_client_lib", [ ])
  1632. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_WAYLAND_DYNAMIC_EGL, "$wayland_egl_lib", [ ])
  1633. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_WAYLAND_DYNAMIC_CURSOR, "$wayland_cursor_lib", [ ])
  1634. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_WAYLAND_DYNAMIC_XKBCOMMON, "$xkbcommon_lib", [ ])
  1635. SUMMARY_video="${SUMMARY_video} wayland(dynamic)"
  1636. else
  1637. enable_wayland_shared=no
  1638. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $WAYLAND_LIBS"
  1639. SUMMARY_video="${SUMMARY_video} wayland"
  1640. fi
  1641. have_video=yes
  1642. dnl See if libdecor is available
  1643. AC_ARG_ENABLE(libdecor,
  1644. [AS_HELP_STRING([--enable-libdecor], [use libdecor for Wayland client-side decorations [default=yes]])],, enable_libdecor=yes)
  1645. if test x$enable_libdecor = xyes; then
  1646. PKG_CHECK_MODULES([DECOR], [libdecor-0], video_libdecor=yes, video_libdecor=no)
  1647. if test x$video_libdecor = xyes; then
  1648. EXTRA_CFLAGS="$EXTRA_CFLAGS $DECOR_CFLAGS"
  1649. AC_DEFINE(HAVE_LIBDECOR_H, 1, [ ])
  1650. AC_ARG_ENABLE(libdecor-shared,
  1651. [AS_HELP_STRING([--enable-libdecor-shared], [dynamically load libdecor [default=yes]])],, enable_libdecor_shared=yes)
  1652. decor_lib=[`find_lib "libdecor-0.so.*" "$DECOR_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
  1653. if test x$enable_wayland_shared != xyes; then
  1654. enable_libdecor_shared=no
  1655. fi
  1656. if test x$have_loadso != xyes && \
  1657. test x$enable_libdecor_shared = xyes; then
  1658. AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic libdecor loading])
  1659. fi
  1660. if test x$have_loadso = xyes && \
  1661. test x$enable_libdecor_shared = xyes && test x$decor_lib != x; then
  1662. echo "-- dynamic libdecor -> $decor_lib"
  1663. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_WAYLAND_DYNAMIC_LIBDECOR, "$decor_lib", [ ])
  1664. else
  1665. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $DECOR_LIBS"
  1666. fi
  1667. saved_cflags=$CFLAGS
  1668. CFLAGS="$CFLAGS $DECOR_CFLAGS"
  1669. AC_CHECK_DECLS([libdecor_frame_get_min_content_size, libdecor_frame_get_max_content_size], [libdecor_get_min_max=yes], [ ], [[#include <libdecor.h>]])
  1670. if test x$libdecor_get_min_max = xyes; then
  1671. AC_DEFINE(SDL_HAVE_LIBDECOR_GET_MIN_MAX, 1, [ ])
  1672. fi
  1673. CFLAGS="$saved_cflags"
  1674. fi
  1675. fi
  1676. fi
  1677. fi
  1678. }
  1679. dnl Check for Native Client stuff
  1680. CheckNativeClient()
  1681. {
  1682. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  1683. #if !defined(__native_client__)
  1684. #error "NO NACL"
  1685. #endif
  1686. ]],[])], [
  1687. AC_DEFINE(SDL_VIDEO_DRIVER_NACL, 1, [ ])
  1688. AC_DEFINE(SDL_AUDIO_DRIVER_NACL, 1, [ ])
  1689. AC_DEFINE(HAVE_POW, 1, [ ])
  1690. AC_DEFINE(HAVE_OPENGLES2, 1, [ ])
  1691. AC_DEFINE(SDL_VIDEO_OPENGL_ES2, 1, [ ])
  1692. AC_DEFINE(SDL_VIDEO_RENDER_OGL_ES2, 1, [ ])
  1693. SDL_LIBS="-lppapi_simple -lppapi_gles2 $SDL_LIBS"
  1694. SDLMAIN_SOURCES="$srcdir/src/main/nacl/*.c"
  1695. SOURCES="$SOURCES $srcdir/src/audio/nacl/*.c"
  1696. SUMMARY_audio="${SUMMARY_audio} nacl"
  1697. have_audio=yes
  1698. SOURCES="$SOURCES $srcdir/src/video/nacl/*.c"
  1699. SUMMARY_video="${SUMMARY_video} nacl opengles2"
  1700. have_video=yes
  1701. ],[])
  1702. }
  1703. CheckRPI()
  1704. {
  1705. AC_ARG_ENABLE(video-rpi,
  1706. [AS_HELP_STRING([--enable-video-rpi], [use Raspberry Pi 2/3 video driver [default=yes]])],
  1707. , enable_video_rpi=yes)
  1708. if test x$enable_video = xyes -a x$enable_video_rpi = xyes; then
  1709. PKG_CHECK_MODULES([RPI], [bcm_host brcmegl], video_rpi=yes, video_rpi=no)
  1710. if test x$video_rpi = xno; then
  1711. if test x$ARCH = xnetbsd; then
  1712. RPI_CFLAGS="-I/usr/pkg/include -I/usr/pkg/include/interface/vcos/pthreads -I/usr/pkg/include/interface/vmcs_host/linux"
  1713. RPI_LIBS="-Wl,-R/usr/pkg/lib -L/usr/pkg/lib -lbcm_host"
  1714. else
  1715. RPI_CFLAGS="-I/opt/vc/include -I/opt/vc/include/interface/vcos/pthreads -I/opt/vc/include/interface/vmcs_host/linux"
  1716. RPI_LIBS="-Wl,-rpath,/opt/vc/lib -L/opt/vc/lib -lbcm_host"
  1717. fi
  1718. fi
  1719. # Save the original compiler flags and libraries
  1720. ac_save_cflags="$CFLAGS"; ac_save_libs="$LIBS"
  1721. # Add the Raspberry Pi compiler flags and libraries
  1722. CFLAGS="$CFLAGS $RPI_CFLAGS"; LIBS="$LIBS $RPI_LIBS"
  1723. AC_MSG_CHECKING(for Raspberry Pi 2/3)
  1724. have_video_rpi=no
  1725. AC_LINK_IFELSE([AC_LANG_PROGRAM([[
  1726. #include <bcm_host.h>
  1727. #include <EGL/eglplatform.h>
  1728. ]], [[
  1729. EGL_DISPMANX_WINDOW_T window;
  1730. bcm_host_init();
  1731. ]])], [have_video_rpi=yes],[])
  1732. AC_MSG_RESULT($have_video_rpi)
  1733. # Restore the compiler flags and libraries
  1734. CFLAGS="$ac_save_cflags"; LIBS="$ac_save_libs"
  1735. if test x$have_video_rpi = xyes; then
  1736. CFLAGS="$CFLAGS $RPI_CFLAGS"
  1737. SDL_CFLAGS="$SDL_CFLAGS $RPI_CFLAGS"
  1738. EXTRA_CFLAGS="$EXTRA_CFLAGS $RPI_CFLAGS"
  1739. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $RPI_LIBS"
  1740. SOURCES="$SOURCES $srcdir/src/video/raspberry/*.c"
  1741. AC_DEFINE(SDL_VIDEO_DRIVER_RPI, 1, [ ])
  1742. SUMMARY_video="${SUMMARY_video} rpi"
  1743. have_video=yes
  1744. fi
  1745. fi
  1746. }
  1747. dnl Find the X11 include and library directories
  1748. CheckX11()
  1749. {
  1750. AC_ARG_ENABLE(video-x11,
  1751. [AS_HELP_STRING([--enable-video-x11], [use X11 video driver [default=maybe]])],
  1752. ,[
  1753. enable_video_x11=yes
  1754. case "$host" in
  1755. *-*-darwin*|*-ios-*)
  1756. enable_video_x11=no
  1757. ;;
  1758. esac])
  1759. if test x$enable_video = xyes -a x$enable_video_x11 = xyes; then
  1760. case "$host" in
  1761. *-*-darwin*)
  1762. # This isn't necessary for X11, but fixes GLX detection
  1763. if test "x$x_includes" = xNONE && \
  1764. test "x$x_libraries" = xNONE && \
  1765. test -d /opt/X11/include && \
  1766. test -d /opt/X11/lib; then
  1767. x_includes="/opt/X11/include"
  1768. x_libraries="/opt/X11/lib"
  1769. fi
  1770. ;;
  1771. esac
  1772. AC_PATH_X
  1773. AC_PATH_XTRA
  1774. if test x$have_x = xyes; then
  1775. AC_ARG_ENABLE(x11-shared,
  1776. [AS_HELP_STRING([--enable-x11-shared], [dynamically load X11 support [default=maybe]])],
  1777. , enable_x11_shared=maybe)
  1778. case "$host" in
  1779. *-*-darwin*)
  1780. # Apple now puts this in /opt/X11
  1781. x11_lib='/opt/X11/lib/libX11.6.dylib'
  1782. x11ext_lib='/opt/X11/lib/libXext.6.dylib'
  1783. xcursor_lib='/opt/X11/lib/libXcursor.1.dylib'
  1784. xinput_lib='/opt/X11/lib/libXi.6.dylib'
  1785. xfixes_lib='/opt/X11/lib/libXfixes.3.dylib'
  1786. xrandr_lib='/opt/X11/lib/libXrandr.2.dylib'
  1787. xrender_lib='/opt/X11/lib/libXrender.1.dylib'
  1788. xss_lib='/opt/X11/lib/libXss.1.dylib'
  1789. ;;
  1790. *-*-openbsd*)
  1791. x11_lib='libX11.so'
  1792. x11ext_lib='libXext.so'
  1793. xcursor_lib='libXcursor.so'
  1794. xinput_lib='libXi.so'
  1795. xfixes_lib='libXfixes.so'
  1796. xrandr_lib='libXrandr.so'
  1797. xrender_lib='libXrender.so'
  1798. xss_lib='libXss.so'
  1799. ;;
  1800. *)
  1801. x11_lib=[`find_lib "libX11.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
  1802. x11ext_lib=[`find_lib "libXext.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
  1803. xcursor_lib=[`find_lib "libXcursor.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
  1804. xinput_lib=[`find_lib "libXi.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
  1805. xfixes_lib=[`find_lib "libXfixes.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
  1806. xrandr_lib=[`find_lib "libXrandr.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
  1807. xrender_lib=[`find_lib "libXrender.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
  1808. xss_lib=[`find_lib "libXss.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
  1809. ;;
  1810. esac
  1811. if test x$ac_cv_func_shmat != xyes; then
  1812. X_CFLAGS="$X_CFLAGS -DNO_SHARED_MEMORY"
  1813. fi
  1814. CFLAGS="$CFLAGS $X_CFLAGS"
  1815. LDFLAGS="$LDFLAGS $X_LIBS"
  1816. AC_CHECK_HEADER(X11/extensions/Xext.h,
  1817. have_xext_h_hdr=yes,
  1818. have_xext_h_hdr=no,
  1819. [#include <X11/Xlib.h>
  1820. #include <X11/Xproto.h>
  1821. ])
  1822. if test x$have_xext_h_hdr != xyes; then
  1823. AC_MSG_ERROR([
  1824. *** Missing Xext.h, maybe you need to install the libxext-dev package?
  1825. ])
  1826. fi
  1827. AC_DEFINE(SDL_VIDEO_DRIVER_X11, 1, [ ])
  1828. SOURCES="$SOURCES $srcdir/src/video/x11/*.c"
  1829. EXTRA_CFLAGS="$EXTRA_CFLAGS $X_CFLAGS"
  1830. # Needed so SDL applications can include SDL_syswm.h
  1831. SDL_CFLAGS="$SDL_CFLAGS $X_CFLAGS"
  1832. if test x$enable_x11_shared = xmaybe; then
  1833. enable_x11_shared=yes
  1834. fi
  1835. if test x$have_loadso != xyes && \
  1836. test x$enable_x11_shared = xyes; then
  1837. AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic X11 loading])
  1838. enable_x11_shared=no
  1839. fi
  1840. if test x$have_loadso = xyes && \
  1841. test x$enable_x11_shared = xyes && test x$x11_lib != x && test x$x11ext_lib != x; then
  1842. echo "-- dynamic libX11 -> $x11_lib"
  1843. echo "-- dynamic libX11ext -> $x11ext_lib"
  1844. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC, "$x11_lib", [ ])
  1845. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XEXT, "$x11ext_lib", [ ])
  1846. SUMMARY_video="${SUMMARY_video} x11(dynamic)"
  1847. else
  1848. enable_x11_shared=no
  1849. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $X_LIBS -lX11 -lXext"
  1850. SUMMARY_video="${SUMMARY_video} x11"
  1851. fi
  1852. have_video=yes
  1853. AC_MSG_CHECKING([for XGenericEvent])
  1854. have_XGenericEvent=no
  1855. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  1856. #include <X11/Xlib.h>
  1857. ]], [[
  1858. Display *display;
  1859. XEvent event;
  1860. XGenericEventCookie *cookie = &event.xcookie;
  1861. XNextEvent(display, &event);
  1862. XGetEventData(display, cookie);
  1863. XFreeEventData(display, cookie);
  1864. ]])], [
  1865. have_XGenericEvent=yes
  1866. AC_DEFINE([SDL_VIDEO_DRIVER_X11_SUPPORTS_GENERIC_EVENTS], 1, [ ])
  1867. ],[])
  1868. AC_MSG_RESULT($have_XGenericEvent)
  1869. AC_CHECK_LIB(X11, XkbKeycodeToKeysym, AC_DEFINE(SDL_VIDEO_DRIVER_X11_HAS_XKBKEYCODETOKEYSYM, 1, [Have XkbKeycodeToKeysym]))
  1870. AC_ARG_ENABLE(video-x11-xcursor,
  1871. [AS_HELP_STRING([--enable-video-x11-xcursor], [enable X11 Xcursor support [default=yes]])],
  1872. , enable_video_x11_xcursor=yes)
  1873. if test x$enable_video_x11_xcursor = xyes; then
  1874. definitely_enable_video_x11_xcursor=no
  1875. AC_CHECK_HEADER(X11/Xcursor/Xcursor.h,
  1876. have_xcursor_h_hdr=yes,
  1877. have_xcursor_h_hdr=no,
  1878. [#include <X11/Xlib.h>
  1879. ])
  1880. if test x$have_xcursor_h_hdr = xyes; then
  1881. if test x$enable_x11_shared = xyes && test x$xcursor_lib != x ; then
  1882. echo "-- dynamic libXcursor -> $xcursor_lib"
  1883. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XCURSOR, "$xcursor_lib", [ ])
  1884. definitely_enable_video_x11_xcursor=yes
  1885. else
  1886. AC_CHECK_LIB(Xcursor, XcursorImageCreate, have_xcursor_lib=yes)
  1887. if test x$have_xcursor_lib = xyes ; then
  1888. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lXcursor"
  1889. definitely_enable_video_x11_xcursor=yes
  1890. fi
  1891. fi
  1892. fi
  1893. fi
  1894. if test x$definitely_enable_video_x11_xcursor = xyes; then
  1895. AC_DEFINE(SDL_VIDEO_DRIVER_X11_XCURSOR, 1, [ ])
  1896. SUMMARY_video_x11="${SUMMARY_video_x11} xcursor"
  1897. fi
  1898. AC_ARG_ENABLE(video-x11-xdbe,
  1899. [AS_HELP_STRING([--enable-video-x11-xdbe], [enable X11 Xdbe support [default=yes]])],
  1900. , enable_video_x11_xdbe=yes)
  1901. if test x$enable_video_x11_xdbe = xyes; then
  1902. AC_CHECK_HEADER(X11/extensions/Xdbe.h,
  1903. have_dbe_h_hdr=yes,
  1904. have_dbe_h_hdr=no,
  1905. [#include <X11/Xlib.h>
  1906. ])
  1907. if test x$have_dbe_h_hdr = xyes; then
  1908. AC_DEFINE(SDL_VIDEO_DRIVER_X11_XDBE, 1, [ ])
  1909. SUMMARY_video_x11="${SUMMARY_video_x11} xdbe"
  1910. fi
  1911. fi
  1912. AC_ARG_ENABLE(video-x11-xinput,
  1913. [AS_HELP_STRING([--enable-video-x11-xinput], [enable X11 XInput extension for manymouse, tablets, etc [default=yes]])],
  1914. , enable_video_x11_xinput=yes)
  1915. if test x$enable_video_x11_xinput = xyes; then
  1916. definitely_enable_video_x11_xinput=no
  1917. AC_CHECK_HEADER(X11/extensions/XInput2.h,
  1918. have_xinput_h_hdr=yes,
  1919. have_xinput_h_hdr=no,
  1920. [#include <X11/Xlib.h>
  1921. ])
  1922. if test x$have_xinput_h_hdr = xyes; then
  1923. if test x$enable_x11_shared = xyes && test x$xinput_lib != x ; then
  1924. echo "-- dynamic libXi -> $xinput_lib"
  1925. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XINPUT2, "$xinput_lib", [ ])
  1926. definitely_enable_video_x11_xinput=yes
  1927. else
  1928. AC_CHECK_LIB(Xi, XOpenDevice, have_xinput_lib=yes)
  1929. if test x$have_xinput_lib = xyes ; then
  1930. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lXi"
  1931. definitely_enable_video_x11_xinput=yes
  1932. fi
  1933. fi
  1934. fi
  1935. fi
  1936. if test x$definitely_enable_video_x11_xinput = xyes; then
  1937. SUMMARY_video_x11="${SUMMARY_video_x11} xinput2"
  1938. AC_DEFINE(SDL_VIDEO_DRIVER_X11_XINPUT2, 1, [ ])
  1939. AC_MSG_CHECKING(for xinput2 multitouch)
  1940. have_xinput2_multitouch=no
  1941. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  1942. #include <X11/Xlib.h>
  1943. #include <X11/Xproto.h>
  1944. #include <X11/extensions/XInput2.h>
  1945. ]], [[
  1946. int event_type = XI_TouchBegin;
  1947. XITouchClassInfo *t;
  1948. ]])], [
  1949. have_xinput2_multitouch=yes
  1950. AC_DEFINE([SDL_VIDEO_DRIVER_X11_XINPUT2_SUPPORTS_MULTITOUCH], 1, [ ])
  1951. SUMMARY_video_x11="${SUMMARY_video_x11} xinput2_multitouch"
  1952. ],[])
  1953. AC_MSG_RESULT($have_xinput2_multitouch)
  1954. fi
  1955. AC_ARG_ENABLE(video-x11-xfixes,
  1956. [AS_HELP_STRING([--enable-video-x11-xfixes], [enable X11 Xfixes support [default=yes]])],
  1957. , enable_video_x11_xfixes=yes)
  1958. if test x$enable_video_x11_xfixes = xyes; then
  1959. definitely_enable_video_x11_xfixes=no
  1960. # check along with XInput2.h because we use Xfixes with XIBarrierReleasePointer
  1961. AC_MSG_CHECKING(for X11/extensions/Xfixes.h)
  1962. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  1963. #include <X11/Xlib.h>
  1964. #include <X11/Xproto.h>
  1965. #include <X11/extensions/XInput2.h>
  1966. #include <X11/extensions/Xfixes.h>]],
  1967. [BarrierEventID b;])],
  1968. [have_xfixes_h_hdr=yes],
  1969. [have_xfixes_h_hdr=no])
  1970. AC_MSG_RESULT($have_xfixes_h_hdr)
  1971. if test x$have_xfixes_h_hdr = xyes; then
  1972. if test x$enable_x11_shared = xyes && test x$xfixes_lib != x ; then
  1973. echo "-- dynamic libXfixes -> $xfixes_lib"
  1974. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XFIXES, "$xfixes_lib", [ ])
  1975. definitely_enable_video_x11_xfixes=yes
  1976. else
  1977. AC_CHECK_LIB(Xfixes, XFixesCreatePointerBarrier, have_xfixes_lib=yes)
  1978. if test x$have_xfixes_lib = xyes ; then
  1979. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lXfixes"
  1980. definitely_enable_video_x11_xfixes=yes
  1981. fi
  1982. fi
  1983. fi
  1984. fi
  1985. if test x$definitely_enable_video_x11_xfixes = xyes; then
  1986. AC_DEFINE(SDL_VIDEO_DRIVER_X11_XFIXES, 1, [ ])
  1987. SUMMARY_video_x11="${SUMMARY_video_x11} xfixes"
  1988. fi
  1989. AC_ARG_ENABLE(video-x11-xrandr,
  1990. [AS_HELP_STRING([--enable-video-x11-xrandr], [enable X11 Xrandr extension for fullscreen [default=yes]])],
  1991. , enable_video_x11_xrandr=yes)
  1992. if test x$enable_video_x11_xrandr = xyes; then
  1993. dnl XRRScreenResources is only present in Xrandr >= 1.2, we use that as a test.
  1994. definitely_enable_video_x11_xrandr=no
  1995. have_xrandr_h_hdr=no
  1996. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  1997. #include <X11/Xlib.h>
  1998. #include <X11/extensions/Xrandr.h>
  1999. ]], [[
  2000. XRRScreenResources *res = NULL;
  2001. ]])], [have_xrandr_h_hdr=yes],[])
  2002. if test x$have_xrandr_h_hdr = xyes; then
  2003. if test x$enable_x11_shared = xyes && test x$xrandr_lib != x ; then
  2004. echo "-- dynamic libXrandr -> $xrandr_lib"
  2005. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XRANDR, "$xrandr_lib", [ ])
  2006. definitely_enable_video_x11_xrandr=yes
  2007. else
  2008. AC_CHECK_LIB(Xrandr, XRRQueryExtension, have_xrandr_lib=yes)
  2009. if test x$have_xrandr_lib = xyes ; then
  2010. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lXrandr"
  2011. definitely_enable_video_x11_xrandr=yes
  2012. fi
  2013. fi
  2014. fi
  2015. fi
  2016. if test x$definitely_enable_video_x11_xrandr = xyes; then
  2017. AC_DEFINE(SDL_VIDEO_DRIVER_X11_XRANDR, 1, [ ])
  2018. SUMMARY_video_x11="${SUMMARY_video_x11} xrandr"
  2019. fi
  2020. AC_ARG_ENABLE(video-x11-scrnsaver,
  2021. [AS_HELP_STRING([--enable-video-x11-scrnsaver], [enable X11 screensaver extension [default=yes]])],
  2022. , enable_video_x11_scrnsaver=yes)
  2023. if test x$enable_video_x11_scrnsaver = xyes; then
  2024. AC_CHECK_HEADER(X11/extensions/scrnsaver.h,
  2025. have_scrnsaver_h_hdr=yes,
  2026. have_scrnsaver_h_hdr=no,
  2027. [#include <X11/Xlib.h>
  2028. ])
  2029. if test x$have_scrnsaver_h_hdr = xyes; then
  2030. if test x$enable_x11_shared = xyes && test x$xss_lib != x ; then
  2031. echo "-- dynamic libXss -> $xss_lib"
  2032. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XSS, "$xss_lib", [ ])
  2033. definitely_enable_video_x11_scrnsaver=yes
  2034. else
  2035. AC_CHECK_LIB(Xss, XScreenSaverSuspend, have_xss_lib=yes)
  2036. if test x$have_xss_lib = xyes ; then
  2037. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lXss"
  2038. definitely_enable_video_x11_scrnsaver=yes
  2039. fi
  2040. fi
  2041. fi
  2042. fi
  2043. if test x$definitely_enable_video_x11_scrnsaver = xyes; then
  2044. AC_DEFINE(SDL_VIDEO_DRIVER_X11_XSCRNSAVER, 1, [ ])
  2045. SUMMARY_video_x11="${SUMMARY_video_x11} xscrnsaver"
  2046. fi
  2047. AC_ARG_ENABLE(video-x11-xshape,
  2048. [AS_HELP_STRING([--enable-video-x11-xshape], [enable X11 XShape support [default=yes]])],
  2049. , enable_video_x11_xshape=yes)
  2050. if test x$enable_video_x11_xshape = xyes; then
  2051. AC_CHECK_HEADER(X11/extensions/shape.h,
  2052. have_shape_h_hdr=yes,
  2053. have_shape_h_hdr=no,
  2054. [#include <X11/Xlib.h>
  2055. ])
  2056. if test x$have_shape_h_hdr = xyes; then
  2057. AC_DEFINE(SDL_VIDEO_DRIVER_X11_XSHAPE, 1, [ ])
  2058. SUMMARY_video_x11="${SUMMARY_video_x11} xshape"
  2059. fi
  2060. fi
  2061. fi
  2062. fi
  2063. if test x$have_x != xyes; then
  2064. # Prevent Mesa from including X11 headers
  2065. EXTRA_CFLAGS="$EXTRA_CFLAGS -DMESA_EGL_NO_X11_HEADERS -DEGL_NO_X11"
  2066. fi
  2067. }
  2068. dnl Set up the Vivante video driver if enabled
  2069. CheckVivanteVideo()
  2070. {
  2071. AC_ARG_ENABLE(video-vivante,
  2072. [AS_HELP_STRING([--enable-video-vivante], [use Vivante EGL video driver [default=yes]])],
  2073. , enable_video_vivante=yes)
  2074. if test x$enable_video = xyes -a x$enable_video_vivante = xyes; then
  2075. AC_MSG_CHECKING(for Vivante VDK API)
  2076. have_vivante_vdk=no
  2077. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  2078. #define LINUX
  2079. #define EGL_API_FB
  2080. #include <gc_vdk.h>
  2081. ]],[])], [have_vivante_vdk=yes],[])
  2082. AC_MSG_RESULT($have_vivante_vdk)
  2083. AC_MSG_CHECKING(for Vivante FB API)
  2084. have_vivante_egl=no
  2085. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  2086. #define LINUX
  2087. #define EGL_API_FB
  2088. #include <EGL/eglvivante.h>
  2089. ]],[])], [have_vivante_egl=yes],[])
  2090. AC_MSG_RESULT($have_vivante_egl)
  2091. if test x$have_vivante_vdk = xyes -o x$have_vivante_egl = xyes; then
  2092. AC_DEFINE(SDL_VIDEO_DRIVER_VIVANTE, 1, [ ])
  2093. EXTRA_CFLAGS="$EXTRA_CFLAGS -DLINUX -DEGL_API_FB"
  2094. if test x$have_vivante_vdk = xyes; then
  2095. AC_DEFINE(SDL_VIDEO_DRIVER_VIVANTE_VDK, 1, [ ])
  2096. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lVDK"
  2097. fi
  2098. SOURCES="$SOURCES $srcdir/src/video/vivante/*.c"
  2099. SUMMARY_video="${SUMMARY_video} vivante"
  2100. have_video=yes
  2101. fi
  2102. fi
  2103. }
  2104. dnl Set up the Haiku video driver if enabled
  2105. CheckHaikuVideo()
  2106. {
  2107. if test x$enable_video = xyes; then
  2108. AC_DEFINE(SDL_VIDEO_DRIVER_HAIKU, 1, [ ])
  2109. SOURCES="$SOURCES $srcdir/src/video/haiku/*.cc"
  2110. have_video=yes
  2111. SUMMARY_video="${SUMMARY_video} haiku"
  2112. fi
  2113. }
  2114. dnl Set up the Cocoa video driver for Mac OS X (but not Darwin)
  2115. CheckCOCOA()
  2116. {
  2117. AC_ARG_ENABLE(video-cocoa,
  2118. [AS_HELP_STRING([--enable-video-cocoa], [use Cocoa video driver [default=yes]])],
  2119. , enable_video_cocoa=yes)
  2120. if test x$enable_video = xyes -a x$enable_video_cocoa = xyes; then
  2121. save_CFLAGS="$CFLAGS"
  2122. dnl Work around that we don't have Objective-C support in autoconf
  2123. CFLAGS="$CFLAGS -x objective-c"
  2124. AC_MSG_CHECKING(for Cocoa framework)
  2125. have_cocoa=no
  2126. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  2127. #import <Cocoa/Cocoa.h>
  2128. ]],[])], [have_cocoa=yes],[])
  2129. AC_MSG_RESULT($have_cocoa)
  2130. CFLAGS="$save_CFLAGS"
  2131. if test x$have_cocoa = xyes; then
  2132. AC_DEFINE(SDL_VIDEO_DRIVER_COCOA, 1, [ ])
  2133. SOURCES="$SOURCES $srcdir/src/video/cocoa/*.m"
  2134. SUMMARY_video="${SUMMARY_video} cocoa"
  2135. have_video=yes
  2136. fi
  2137. fi
  2138. }
  2139. CheckMETAL()
  2140. {
  2141. AC_ARG_ENABLE(video-metal,
  2142. [AS_HELP_STRING([--enable-video-metal], [include Metal support [default=yes]])],
  2143. , enable_video_metal=yes)
  2144. AC_ARG_ENABLE(render-metal,
  2145. [AS_HELP_STRING([--enable-render-metal], [enable the Metal render driver [default=yes]])],
  2146. , enable_render_metal=yes)
  2147. if test x$enable_video = xyes -a x$enable_video_metal = xyes; then
  2148. save_CFLAGS="$CFLAGS"
  2149. dnl Work around that we don't have Objective-C support in autoconf
  2150. CFLAGS="$CFLAGS -x objective-c"
  2151. AC_MSG_CHECKING(for Metal framework)
  2152. have_metal=no
  2153. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  2154. #import <Cocoa/Cocoa.h>
  2155. #import <Metal/Metal.h>
  2156. #import <QuartzCore/CAMetalLayer.h>
  2157. #if TARGET_CPU_X86
  2158. #error Metal doesn't work on this configuration
  2159. #endif
  2160. ]],[])], [have_metal=yes],[])
  2161. CFLAGS="$save_CFLAGS"
  2162. AC_MSG_RESULT($have_metal)
  2163. if test x$have_metal = xyes; then
  2164. AC_DEFINE(SDL_VIDEO_METAL, 1, [ ])
  2165. if test x$enable_render = xyes -a x$enable_render_metal = xyes; then
  2166. AC_DEFINE(SDL_VIDEO_RENDER_METAL, 1, [ ])
  2167. SOURCES="$SOURCES $srcdir/src/render/metal/*.m"
  2168. fi
  2169. SUMMARY_video="${SUMMARY_video} metal"
  2170. else
  2171. enable_video_metal=no
  2172. enable_render_metal=no
  2173. fi
  2174. fi
  2175. }
  2176. dnl Find DirectFB
  2177. CheckDirectFB()
  2178. {
  2179. AC_ARG_ENABLE(video-directfb,
  2180. [AS_HELP_STRING([--enable-video-directfb], [use DirectFB video driver [default=no]])],
  2181. , enable_video_directfb=no)
  2182. if test x$enable_video = xyes -a x$enable_video_directfb = xyes; then
  2183. PKG_CHECK_MODULES([DIRECTFB], [directfb >= 1.0.0], video_directfb=yes, video_directfb=no)
  2184. if test x$video_directfb = xyes; then
  2185. # SuSE 11.1 installs directfb-config without directfb-devel
  2186. save_CPPFLAGS="$CPPFLAGS"
  2187. CPPFLAGS="$CPPFLAGS $DIRECTFB_CFLAGS"
  2188. AC_CHECK_HEADER(directfb.h, have_directfb_hdr=yes, have_directfb_hdr=no)
  2189. CPPFLAGS="$save_CPPFLAGS"
  2190. video_directfb=$have_directfb_hdr
  2191. fi
  2192. if test x$video_directfb = xyes; then
  2193. AC_ARG_ENABLE(directfb-shared,
  2194. [AS_HELP_STRING([--enable-directfb-shared], [dynamically load directfb support [default=yes]])],
  2195. , enable_directfb_shared=yes)
  2196. AC_DEFINE(SDL_VIDEO_DRIVER_DIRECTFB, 1, [ ])
  2197. AC_DEFINE(SDL_VIDEO_RENDER_DIRECTFB, 1, [ ])
  2198. SOURCES="$SOURCES $srcdir/src/video/directfb/*.c"
  2199. EXTRA_CFLAGS="$EXTRA_CFLAGS $DIRECTFB_CFLAGS"
  2200. directfb_shared=no
  2201. directfb_lib=[`find_lib "libdirectfb*.so.*" "$DIRECTFB_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
  2202. if test x$have_loadso != xyes && \
  2203. test x$enable_directfb_shared = xyes; then
  2204. AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic directfb loading])
  2205. fi
  2206. if test x$have_loadso = xyes && \
  2207. test x$enable_directfb_shared = xyes && test x$directfb_lib != x; then
  2208. directfb_shared=yes
  2209. echo "-- dynamic libdirectfb -> $directfb_lib"
  2210. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_DIRECTFB_DYNAMIC, "$directfb_lib", [ ])
  2211. SUMMARY_video="${SUMMARY_video} directfb(dynamic)"
  2212. else
  2213. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $DIRECTFB_LIBS"
  2214. SUMMARY_video="${SUMMARY_video} directfb"
  2215. fi
  2216. SDL_CFLAGS="$SDL_CFLAGS $DIRECTFB_CFLAGS"
  2217. have_video=yes
  2218. fi
  2219. fi
  2220. }
  2221. dnl Find KMSDRM
  2222. CheckKMSDRM()
  2223. {
  2224. AC_ARG_ENABLE(video-kmsdrm,
  2225. [AS_HELP_STRING([--enable-video-kmsdrm], [use KMSDRM video driver [default=yes]])],
  2226. , enable_video_kmsdrm=yes)
  2227. if test x$enable_video = xyes && \
  2228. test x$enable_video_kmsdrm = xyes && \
  2229. test x$video_opengl_egl = xyes; then
  2230. video_kmsdrm=no
  2231. PKG_CHECK_MODULES([LIBDRM], [libdrm >= 1.4.82], libdrm_avail=yes, libdrm_avail=no)
  2232. PKG_CHECK_MODULES([LIBGBM], [gbm >= 11.1.0], libgbm_avail=yes, libgbm_avail=no)
  2233. if test x$libdrm_avail = xyes -a x$libgbm_avail = xyes; then
  2234. video_kmsdrm=yes
  2235. fi
  2236. if test x$video_kmsdrm = xyes; then
  2237. AC_ARG_ENABLE(kmsdrm-shared,
  2238. [AS_HELP_STRING([--enable-kmsdrm-shared], [dynamically load kmsdrm support [default=yes]])],
  2239. , enable_kmsdrm_shared=yes)
  2240. AC_DEFINE(SDL_VIDEO_DRIVER_KMSDRM, 1, [ ])
  2241. SOURCES="$SOURCES $srcdir/src/video/kmsdrm/*.c"
  2242. EXTRA_CFLAGS="$EXTRA_CFLAGS $LIBDRM_CFLAGS $LIBGBM_CFLAGS"
  2243. AC_MSG_CHECKING(for kmsdrm dynamic loading support)
  2244. kmsdrm_shared=no
  2245. drm_lib=[`find_lib "libdrm.so.*" "$LIBDRM_LIBS"`]
  2246. gbm_lib=[`find_lib "libgbm.so.*" "$LIBGBM_LIBS"`]
  2247. if test x$have_loadso != xyes && \
  2248. test x$enable_kmsdrm_shared = xyes; then
  2249. AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic kmsdrm loading])
  2250. fi
  2251. if test x$have_loadso = xyes && \
  2252. test x$enable_kmsdrm_shared = xyes && test x$drm_lib != x && test x$gbm_lib != x; then
  2253. kmsdrm_shared=yes
  2254. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_KMSDRM_DYNAMIC, "$drm_lib", [ ])
  2255. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_KMSDRM_DYNAMIC_GBM, "$gbm_lib", [ ])
  2256. AC_DEFINE_UNQUOTED(HAVE_KMSDRM_SHARED, "TRUE", [ ])
  2257. SUMMARY_video="${SUMMARY_video} kmsdrm(dynamic)"
  2258. else
  2259. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $LIBDRM_LIBS $LIBGBM_LIBS"
  2260. SUMMARY_video="${SUMMARY_video} kmsdrm"
  2261. fi
  2262. AC_MSG_RESULT($kmsdrm_shared)
  2263. if test x$kmsdrm_shared = xyes; then
  2264. echo "-- dynamic libdrm -> $drm_lib"
  2265. echo "-- dynamic libgbm -> $gbm_lib"
  2266. fi
  2267. have_video=yes
  2268. fi
  2269. fi
  2270. }
  2271. dnl rcg04172001 Set up the Null video driver.
  2272. CheckDummyVideo()
  2273. {
  2274. AC_ARG_ENABLE(video-dummy,
  2275. [AS_HELP_STRING([--enable-video-dummy], [use dummy video driver [default=yes]])],
  2276. , enable_video_dummy=yes)
  2277. if test x$enable_video_dummy = xyes; then
  2278. AC_DEFINE(SDL_VIDEO_DRIVER_DUMMY, 1, [ ])
  2279. SOURCES="$SOURCES $srcdir/src/video/dummy/*.c"
  2280. have_video=yes
  2281. SUMMARY_video="${SUMMARY_video} dummy"
  2282. fi
  2283. }
  2284. CheckOffscreenVideo()
  2285. {
  2286. AC_ARG_ENABLE(video-offscreen,
  2287. [AS_HELP_STRING([--enable-video-offscreen], [use offscreen video driver [default=yes]])],
  2288. , enable_video_offscreen=yes)
  2289. if test x$enable_video_offscreen = xyes; then
  2290. AC_DEFINE(SDL_VIDEO_DRIVER_OFFSCREEN, 1, [ ])
  2291. SOURCES="$SOURCES $srcdir/src/video/offscreen/*.c"
  2292. have_video=yes
  2293. SUMMARY_video="${SUMMARY_video} offscreen"
  2294. fi
  2295. }
  2296. dnl Set up the QNX video driver if enabled
  2297. CheckQNXVideo()
  2298. {
  2299. if test x$enable_video = xyes; then
  2300. AC_DEFINE(SDL_VIDEO_DRIVER_QNX, 1, [ ])
  2301. SOURCES="$SOURCES $srcdir/src/video/qnx/*.c"
  2302. have_video=yes
  2303. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lscreen -lEGL -lGLESv2"
  2304. SUMMARY_video="${SUMMARY_video} qnx"
  2305. fi
  2306. }
  2307. dnl Set up the QNX audio driver if enabled
  2308. CheckQNXAudio()
  2309. {
  2310. if test x$enable_audio = xyes; then
  2311. AC_DEFINE(SDL_AUDIO_DRIVER_QSA, 1, [ ])
  2312. SOURCES="$SOURCES $srcdir/src/audio/qsa/*.c"
  2313. have_audio=yes
  2314. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lasound"
  2315. SUMMARY_audio="${SUMMARY_audio} qsa"
  2316. fi
  2317. }
  2318. dnl Check to see if OpenGL support is desired
  2319. AC_ARG_ENABLE(video-opengl,
  2320. [AS_HELP_STRING([--enable-video-opengl], [include OpenGL support [default=yes]])],
  2321. , enable_video_opengl=yes)
  2322. dnl Find GLX
  2323. CheckGLX()
  2324. {
  2325. if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then
  2326. AC_MSG_CHECKING(for GLX support)
  2327. video_opengl_glx=no
  2328. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  2329. #include <GL/glx.h>
  2330. ]],[])], [video_opengl_glx=yes],[])
  2331. AC_MSG_RESULT($video_opengl_glx)
  2332. if test x$video_opengl_glx = xyes; then
  2333. AC_DEFINE(SDL_VIDEO_OPENGL, 1, [ ])
  2334. AC_DEFINE(SDL_VIDEO_OPENGL_GLX, 1, [ ])
  2335. fi
  2336. fi
  2337. }
  2338. dnl Check to see if OpenGL ES support is desired
  2339. AC_ARG_ENABLE(video-opengles,
  2340. [AS_HELP_STRING([--enable-video-opengles], [include OpenGL ES support [default=yes]])],
  2341. , enable_video_opengles=yes)
  2342. AC_ARG_ENABLE(video-opengles1,
  2343. [AS_HELP_STRING([--enable-video-opengles1], [include OpenGL ES 1.1 support [default=yes]])],
  2344. , enable_video_opengles1=yes)
  2345. AC_ARG_ENABLE(video-opengles2,
  2346. [AS_HELP_STRING([--enable-video-opengles2], [include OpenGL ES 2.0 support [default=yes]])],
  2347. , enable_video_opengles2=yes)
  2348. dnl Find EGL
  2349. CheckEGL()
  2350. {
  2351. if test x$enable_video = xyes -a x$enable_video_opengl = xyes || test x$enable_video = xyes -a x$enable_video_opengles = xyes; then
  2352. AC_MSG_CHECKING(for EGL support)
  2353. video_opengl_egl=no
  2354. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  2355. #define LINUX
  2356. #define EGL_API_FB
  2357. #define MESA_EGL_NO_X11_HEADERS
  2358. #define EGL_NO_X11
  2359. #include <EGL/egl.h>
  2360. #include <EGL/eglext.h>
  2361. ]],[])], [video_opengl_egl=yes],[])
  2362. AC_MSG_RESULT($video_opengl_egl)
  2363. if test x$video_opengl_egl = xyes; then
  2364. AC_DEFINE(SDL_VIDEO_OPENGL_EGL, 1, [ ])
  2365. fi
  2366. fi
  2367. }
  2368. dnl Find OpenGL
  2369. CheckOpenGL()
  2370. {
  2371. if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then
  2372. AC_MSG_CHECKING(for OpenGL headers)
  2373. video_opengl=no
  2374. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  2375. #include <GL/gl.h>
  2376. #include <GL/glext.h>
  2377. ]],[])], [video_opengl=yes],[])
  2378. AC_MSG_RESULT($video_opengl)
  2379. if test x$video_opengl = xyes; then
  2380. AC_DEFINE(SDL_VIDEO_OPENGL, 1, [ ])
  2381. AC_DEFINE(SDL_VIDEO_RENDER_OGL, 1, [ ])
  2382. SUMMARY_video="${SUMMARY_video} opengl"
  2383. fi
  2384. fi
  2385. }
  2386. dnl Find OpenGL ES
  2387. CheckOpenGLES()
  2388. {
  2389. if test x$enable_video = xyes -a x$enable_video_opengles = xyes; then
  2390. if test x$enable_video_opengles1 = xyes; then
  2391. AC_MSG_CHECKING(for OpenGL ES v1 headers)
  2392. video_opengles_v1=no
  2393. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  2394. #include <GLES/gl.h>
  2395. #include <GLES/glext.h>
  2396. ]],[])], [video_opengles_v1=yes],[])
  2397. AC_MSG_RESULT($video_opengles_v1)
  2398. if test x$video_opengles_v1 = xyes; then
  2399. AC_DEFINE(SDL_VIDEO_OPENGL_ES, 1, [ ])
  2400. AC_DEFINE(SDL_VIDEO_RENDER_OGL_ES, 1, [ ])
  2401. SUMMARY_video="${SUMMARY_video} opengl_es1"
  2402. fi
  2403. fi
  2404. if test x$enable_video_opengles2 = xyes; then
  2405. AC_MSG_CHECKING(for OpenGL ES v2 headers)
  2406. video_opengles_v2=no
  2407. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  2408. #include <GLES2/gl2.h>
  2409. #include <GLES2/gl2ext.h>
  2410. ]],[])], [video_opengles_v2=yes],[])
  2411. AC_MSG_RESULT($video_opengles_v2)
  2412. if test x$video_opengles_v2 = xyes; then
  2413. AC_DEFINE(SDL_VIDEO_OPENGL_ES2, 1, [ ])
  2414. AC_DEFINE(SDL_VIDEO_RENDER_OGL_ES2, 1, [ ])
  2415. SUMMARY_video="${SUMMARY_video} opengl_es2"
  2416. fi
  2417. fi
  2418. fi
  2419. }
  2420. dnl Check for Windows OpenGL
  2421. CheckWINDOWSGL()
  2422. {
  2423. if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then
  2424. AC_DEFINE(SDL_VIDEO_OPENGL, 1, [ ])
  2425. AC_DEFINE(SDL_VIDEO_OPENGL_WGL, 1, [ ])
  2426. AC_DEFINE(SDL_VIDEO_RENDER_OGL, 1, [ ])
  2427. SUMMARY_video="${SUMMARY_video} opengl"
  2428. fi
  2429. }
  2430. dnl Check for Windows OpenGL
  2431. CheckWINDOWSGLES()
  2432. {
  2433. if test x$enable_video = xyes -a x$enable_video_opengles = xyes; then
  2434. AC_MSG_CHECKING(for EGL support)
  2435. video_opengl_egl=no
  2436. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  2437. #include <EGL/egl.h>
  2438. ]],[])], [video_opengl_egl=yes],[])
  2439. AC_MSG_RESULT($video_opengl_egl)
  2440. if test x$video_opengl_egl = xyes; then
  2441. AC_DEFINE(SDL_VIDEO_OPENGL, 1, [ ])
  2442. AC_DEFINE(SDL_VIDEO_OPENGL_EGL, 1, [ ])
  2443. SUMMARY_video="${SUMMARY_video} opengl_es1"
  2444. fi
  2445. AC_MSG_CHECKING(for OpenGL ES v2 headers)
  2446. video_opengles_v2=no
  2447. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  2448. #include <GLES2/gl2.h>
  2449. #include <GLES2/gl2ext.h>
  2450. ]],[])], [video_opengles_v2=yes],[])
  2451. AC_MSG_RESULT($video_opengles_v2)
  2452. if test x$video_opengles_v2 = xyes; then
  2453. AC_DEFINE(SDL_VIDEO_OPENGL, 1, [ ])
  2454. AC_DEFINE(SDL_VIDEO_OPENGL_ES2, 1, [ ])
  2455. AC_DEFINE(SDL_VIDEO_RENDER_OGL_ES2, 1, [ ])
  2456. SUMMARY_video="${SUMMARY_video} opengl_es2"
  2457. fi
  2458. fi
  2459. }
  2460. dnl Check for Haiku OpenGL
  2461. CheckHaikuGL()
  2462. {
  2463. if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then
  2464. AC_DEFINE(SDL_VIDEO_OPENGL, 1, [ ])
  2465. AC_DEFINE(SDL_VIDEO_OPENGL_HAIKU, 1, [ ])
  2466. AC_DEFINE(SDL_VIDEO_RENDER_OGL, 1, [ ])
  2467. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lGL"
  2468. SUMMARY_video="${SUMMARY_video} opengl"
  2469. fi
  2470. }
  2471. dnl Check for MacOS OpenGL
  2472. CheckMacGL()
  2473. {
  2474. if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then
  2475. AC_DEFINE(SDL_VIDEO_OPENGL, 1, [ ])
  2476. AC_DEFINE(SDL_VIDEO_OPENGL_CGL, 1, [ ])
  2477. AC_DEFINE(SDL_VIDEO_RENDER_OGL, 1, [ ])
  2478. SUMMARY_video="${SUMMARY_video} opengl"
  2479. fi
  2480. }
  2481. dnl Check for MacOS OpenGLES
  2482. CheckMacGLES()
  2483. {
  2484. if test x$enable_video = xyes -a x$enable_video_opengles = xyes; then
  2485. video_opengl_egl=yes
  2486. AC_DEFINE(SDL_VIDEO_OPENGL_EGL, 1, [ ])
  2487. video_opengles_v2=yes
  2488. AC_DEFINE(SDL_VIDEO_OPENGL_ES2, 1, [ ])
  2489. AC_DEFINE(SDL_VIDEO_RENDER_OGL_ES2, 1, [ ])
  2490. SUMMARY_video="${SUMMARY_video} opengl_es2"
  2491. fi
  2492. }
  2493. CheckEmscriptenGLES()
  2494. {
  2495. if test x$enable_video = xyes -a x$enable_video_opengles = xyes; then
  2496. AC_MSG_CHECKING(for EGL support)
  2497. video_opengl_egl=no
  2498. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  2499. #include <EGL/egl.h>
  2500. ]],[])], [video_opengl_egl=yes],[])
  2501. AC_MSG_RESULT($video_opengl_egl)
  2502. if test x$video_opengl_egl = xyes; then
  2503. AC_DEFINE(SDL_VIDEO_OPENGL_EGL, 1, [ ])
  2504. fi
  2505. AC_MSG_CHECKING(for OpenGL ES v2 headers)
  2506. video_opengles_v2=no
  2507. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  2508. #include <GLES2/gl2.h>
  2509. #include <GLES2/gl2ext.h>
  2510. ]],[])], [video_opengles_v2=yes],[])
  2511. AC_MSG_RESULT($video_opengles_v2)
  2512. if test x$video_opengles_v2 = xyes; then
  2513. AC_DEFINE(SDL_VIDEO_OPENGL_ES2, 1, [ ])
  2514. AC_DEFINE(SDL_VIDEO_RENDER_OGL_ES2, 1, [ ])
  2515. SUMMARY_video="${SUMMARY_video} opengl_es2"
  2516. fi
  2517. fi
  2518. }
  2519. dnl Check to see if Vulkan support is desired
  2520. AC_ARG_ENABLE(video-vulkan,
  2521. [AS_HELP_STRING([--enable-video-vulkan], [include Vulkan support [default=yes]])],
  2522. , enable_video_vulkan=yes)
  2523. dnl Find Vulkan Header
  2524. CheckVulkan()
  2525. {
  2526. if test x$enable_video = xyes -a x$enable_video_vulkan = xyes; then
  2527. case "$host" in
  2528. *-*-android*)
  2529. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  2530. #if defined(__ARM_ARCH) && __ARM_ARCH < 7
  2531. #error Vulkan doesn't work on this configuration
  2532. #endif
  2533. ]],[])], [],[enable_video_vulkan=no])
  2534. ;;
  2535. *-*-darwin*)
  2536. save_CFLAGS="$CFLAGS"
  2537. dnl Work around that we don't have Objective-C support in autoconf
  2538. CFLAGS="$CFLAGS -x objective-c"
  2539. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  2540. #include <Cocoa/Cocoa.h>
  2541. #include <Metal/Metal.h>
  2542. #include <QuartzCore/CAMetalLayer.h>
  2543. #if TARGET_CPU_X86
  2544. #error Vulkan doesn't work on this configuration
  2545. #endif
  2546. ]],[])], [],[enable_video_vulkan=no])
  2547. CFLAGS="$save_CFLAGS"
  2548. ;;
  2549. *)
  2550. ;;
  2551. esac
  2552. if test x$enable_video_vulkan = xno; then
  2553. # For reasons I am totally unable to see, I get an undefined macro error if
  2554. # I put this in the AC_TRY_COMPILE.
  2555. AC_MSG_WARN([Vulkan does not work on this configuration.])
  2556. fi
  2557. fi
  2558. if test x$have_loadso != xyes; then
  2559. AC_MSG_WARN([Vulkan support is available, but disabled because there's no loadso.])
  2560. enable_video_vulkan=no
  2561. fi
  2562. if test x$enable_video_vulkan = xyes; then
  2563. AC_DEFINE(SDL_VIDEO_VULKAN, 1, [ ])
  2564. SUMMARY_video="${SUMMARY_video} vulkan"
  2565. fi
  2566. }
  2567. dnl See if we can use the new unified event interface in Linux 2.4
  2568. CheckInputEvents()
  2569. {
  2570. dnl Check for Linux 2.4 unified input event interface support
  2571. AC_CHECK_HEADERS(linux/input.h)
  2572. AC_MSG_CHECKING(for Linux 2.4 unified input interface)
  2573. use_input_events=no
  2574. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  2575. #include <linux/input.h>
  2576. ]], [[
  2577. #ifndef EVIOCGNAME
  2578. #error EVIOCGNAME() ioctl not available
  2579. #endif
  2580. ]])], [use_input_events=yes],[])
  2581. AC_MSG_RESULT($use_input_events)
  2582. if test x$use_input_events = xyes; then
  2583. AC_DEFINE(SDL_INPUT_LINUXEV, 1, [ ])
  2584. SUMMARY_input="${SUMMARY_input} linuxev"
  2585. fi
  2586. }
  2587. dnl See if we can use the kernel kd.h header
  2588. CheckInputKD()
  2589. {
  2590. AC_MSG_CHECKING(for Linux kd.h)
  2591. use_input_kd=no
  2592. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  2593. #include <linux/kd.h>
  2594. #include <linux/keyboard.h>
  2595. #include <sys/ioctl.h>
  2596. ]], [[
  2597. struct kbentry kbe;
  2598. kbe.kb_table = KG_CTRL;
  2599. ioctl(0, KDGKBENT, &kbe);
  2600. ]])], [use_input_kd=yes],[])
  2601. AC_MSG_RESULT($use_input_kd)
  2602. if test x$use_input_kd = xyes; then
  2603. AC_DEFINE(SDL_INPUT_LINUXKD, 1, [ ])
  2604. SUMMARY_input="${SUMMARY_input} linuxkd"
  2605. fi
  2606. }
  2607. dnl See if we can use the FreeBSD kernel kbio.h header
  2608. CheckInputKBIO()
  2609. {
  2610. AC_MSG_CHECKING(for FreeBSD kbio.h)
  2611. use_input_kbio=no
  2612. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  2613. #include <sys/kbio.h>
  2614. #include <sys/ioctl.h>
  2615. ]], [[
  2616. accentmap_t accTable;
  2617. ioctl(0, KDENABIO, 1);
  2618. ]])], [use_input_kbio=yes],[])
  2619. AC_MSG_RESULT($use_input_kbio)
  2620. if test x$use_input_kbio = xyes; then
  2621. AC_DEFINE(SDL_INPUT_FBSDKBIO, 1, [ ])
  2622. SUMMARY_input="${SUMMARY_input} fbsdkbio"
  2623. fi
  2624. }
  2625. dnl See if we can use the wscons input driver
  2626. CheckInputWSCONS()
  2627. {
  2628. AC_MSG_CHECKING(for OpenBSD wscons)
  2629. use_input_wscons=no
  2630. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  2631. #include <sys/time.h>
  2632. #include <dev/wscons/wsconsio.h>
  2633. #include <dev/wscons/wsksymdef.h>
  2634. #include <dev/wscons/wsksymvar.h>
  2635. #include <sys/ioctl.h>
  2636. ]], [[
  2637. struct wskbd_map_data data;
  2638. ioctl(0, WSKBDIO_GETMAP, &data);
  2639. ]])], [use_input_wscons=yes],[])
  2640. AC_MSG_RESULT($use_input_wscons)
  2641. if test x$use_input_wscons = xyes; then
  2642. AC_DEFINE(SDL_INPUT_WSCONS, 1, [ ])
  2643. SUMMARY_input="${SUMMARY_input} wscons"
  2644. fi
  2645. }
  2646. dnl See if the platform offers libudev for device enumeration and hotplugging.
  2647. CheckLibUDev()
  2648. {
  2649. AC_ARG_ENABLE(libudev,
  2650. [AS_HELP_STRING([--enable-libudev], [enable libudev support [default=yes]])],
  2651. , enable_libudev=yes)
  2652. if test x$enable_libudev = xyes; then
  2653. AC_CHECK_HEADER(libudev.h,
  2654. have_libudev_h_hdr=yes,
  2655. have_libudev_h_hdr=no)
  2656. if test x$have_libudev_h_hdr = xyes; then
  2657. AC_DEFINE(HAVE_LIBUDEV_H, 1, [ ])
  2658. udev_lib=[`find_lib "libudev.so.*" "" | sed 's/.*\/\(.*\)/\1/; q'`]
  2659. if test x$udev_lib != x; then
  2660. echo "-- dynamic udev -> $udev_lib"
  2661. AC_DEFINE_UNQUOTED(SDL_UDEV_DYNAMIC, "$udev_lib", [ ])
  2662. fi
  2663. fi
  2664. fi
  2665. }
  2666. dnl See if the platform offers libdbus for various IPC techniques.
  2667. CheckDBus()
  2668. {
  2669. AC_ARG_ENABLE(dbus,
  2670. [AS_HELP_STRING([--enable-dbus], [enable D-Bus support [default=yes]])],
  2671. , enable_dbus=yes)
  2672. if test x$enable_dbus = xyes; then
  2673. PKG_CHECK_MODULES([DBUS], [dbus-1], have_dbus=yes, have_dbus=no)
  2674. save_CPPFLAGS="$CPPFLAGS"
  2675. CPPFLAGS="$save_CPPFLAGS $DBUS_CFLAGS"
  2676. AC_CHECK_HEADER(dbus/dbus.h,
  2677. have_dbus_dbus_h_hdr=yes,
  2678. have_dbus_dbus_h_hdr=no)
  2679. CPPFLAGS="$save_CPPFLAGS"
  2680. if test x$have_dbus_dbus_h_hdr = xyes; then
  2681. AC_DEFINE(HAVE_DBUS_DBUS_H, 1, [ ])
  2682. EXTRA_CFLAGS="$EXTRA_CFLAGS $DBUS_CFLAGS"
  2683. SOURCES="$SOURCES $srcdir/src/core/linux/SDL_dbus.c"
  2684. fi
  2685. fi
  2686. }
  2687. dnl See if the platform wanna IME support.
  2688. CheckIME()
  2689. {
  2690. AC_ARG_ENABLE(ime,
  2691. [AS_HELP_STRING([--enable-ime], [enable IME support [default=yes]])],
  2692. , enable_ime=yes)
  2693. if test x$enable_ime = xyes; then
  2694. AC_DEFINE(SDL_USE_IME, 1, [ ])
  2695. SOURCES="$SOURCES $srcdir/src/core/linux/SDL_ime.c"
  2696. fi
  2697. }
  2698. dnl Check inotify presense
  2699. CheckInotify()
  2700. {
  2701. save_LIBS="$LIBS"
  2702. case "$host" in
  2703. *-*-freebsd*|*-*dragonfly*) LIBS="$LIBS -linotify"
  2704. ;;
  2705. esac
  2706. AC_CHECK_HEADERS(sys/inotify.h, [have_inotify_inotify_h_hdr=yes])
  2707. AC_CHECK_FUNCS(inotify_init, [have_inotify=yes])
  2708. AC_CHECK_FUNCS(inotify_init1)
  2709. if test x$have_inotify_inotify_h_hdr = xyes -a x$have_inotify = xyes; then
  2710. AC_DEFINE(HAVE_INOTIFY, 1, [ ])
  2711. case "$host" in
  2712. *-*-freebsd*|*-*-dragonfly*)
  2713. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -linotify"
  2714. ;;
  2715. esac
  2716. fi
  2717. LIBS="$save_LIBS"
  2718. }
  2719. dnl See if the platform has libibus IME support.
  2720. CheckIBus()
  2721. {
  2722. AC_ARG_ENABLE(ibus,
  2723. [AS_HELP_STRING([--enable-ibus], [enable IBus support [default=yes]])],
  2724. , enable_ibus=yes)
  2725. if test x$enable_ibus = xyes; then
  2726. PKG_CHECK_MODULES([IBUS], [ibus-1.0], have_ibus=yes, have_ibus=no)
  2727. save_CPPFLAGS="$CPPFLAGS"
  2728. CPPFLAGS="$save_CPPFLAGS $IBUS_CFLAGS"
  2729. AC_CHECK_HEADER(ibus-1.0/ibus.h,
  2730. have_ibus_ibus_h_hdr=yes,
  2731. have_ibus_ibus_h_hdr=no)
  2732. CPPFLAGS="$save_CPPFLAGS"
  2733. if test x$have_ibus_ibus_h_hdr = xyes; then
  2734. if test x$enable_ime != xyes; then
  2735. AC_MSG_WARN([IME support is required for IBus.])
  2736. have_ibus_ibus_h_hdr=no
  2737. elif test x$enable_dbus != xyes; then
  2738. AC_MSG_WARN([DBus support is required for IBus.])
  2739. have_ibus_ibus_h_hdr=no
  2740. elif test x$have_inotify_inotify_h_hdr != xyes; then
  2741. AC_MSG_WARN([INotify support is required for IBus.])
  2742. have_ibus_ibus_h_hdr=no
  2743. else
  2744. AC_DEFINE(HAVE_IBUS_IBUS_H, 1, [ ])
  2745. EXTRA_CFLAGS="$EXTRA_CFLAGS $IBUS_CFLAGS"
  2746. SOURCES="$SOURCES $srcdir/src/core/linux/SDL_ibus.c"
  2747. fi
  2748. fi
  2749. fi
  2750. }
  2751. dnl See if the platform has fcitx IME support.
  2752. CheckFcitx()
  2753. {
  2754. AC_ARG_ENABLE(fcitx,
  2755. [AS_HELP_STRING([--enable-fcitx], [enable fcitx support [default=yes]])],
  2756. , enable_fcitx=yes)
  2757. if test x$enable_fcitx = xyes; then
  2758. AC_MSG_CHECKING(for fcitx support)
  2759. have_fcitx=no
  2760. if test x$enable_ime != xyes; then
  2761. AC_MSG_WARN([IME support is required for fcitx.])
  2762. elif test x$have_dbus_dbus_h_hdr != xyes; then
  2763. AC_MSG_WARN([DBus support is required for fcitx.])
  2764. else
  2765. have_fcitx=yes
  2766. AC_DEFINE(HAVE_FCITX, 1, [ ])
  2767. SOURCES="$SOURCES $srcdir/src/core/linux/SDL_fcitx.c"
  2768. fi
  2769. AC_MSG_RESULT($have_fcitx)
  2770. fi
  2771. }
  2772. dnl Check to see if GameController framework support is desired
  2773. CheckJoystickMFI()
  2774. {
  2775. AC_ARG_ENABLE(joystick-mfi,
  2776. [AS_HELP_STRING([--enable-joystick-mfi], [include macOS MFI joystick support [default=yes]])],
  2777. , enable_joystick_mfi=yes)
  2778. if test x$enable_joystick_mfi = xyes; then
  2779. save_CFLAGS="$CFLAGS"
  2780. save_LDFLAGS="$LDFLAGS"
  2781. dnl Work around that we don't have Objective-C support in autoconf
  2782. CFLAGS="$CFLAGS -x objective-c -fobjc-weak"
  2783. LDFLAGS="$LDFLAGS -Wl,-weak_framework,CoreHaptics -Wl,-weak_framework,GameController"
  2784. AC_MSG_CHECKING(for GameController framework)
  2785. enable_joystick_mfi=no
  2786. AC_LINK_IFELSE([AC_LANG_PROGRAM([[
  2787. #include <AvailabilityMacros.h>
  2788. #include <TargetConditionals.h>
  2789. #import <GameController/GameController.h>
  2790. ]], [[
  2791. #if MAC_OS_X_VERSION_MIN_REQUIRED < 1080
  2792. #error GameController framework doesn't work on this configuration
  2793. #endif
  2794. #if TARGET_CPU_X86
  2795. #error GameController framework doesn't work on this configuration
  2796. #endif
  2797. ]])], [enable_joystick_mfi=yes],[])
  2798. CFLAGS="$save_CFLAGS"
  2799. LDFLAGS="$save_LDFLAGS"
  2800. AC_MSG_RESULT($enable_joystick_mfi)
  2801. if test x$enable_joystick_mfi = xyes; then
  2802. AC_DEFINE(SDL_JOYSTICK_MFI, 1, [ ])
  2803. EXTRA_CFLAGS="$EXTRA_CFLAGS -fobjc-weak -Wno-unused-command-line-argument"
  2804. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-weak_framework,CoreHaptics -Wl,-weak_framework,GameController"
  2805. fi
  2806. fi
  2807. }
  2808. dnl See what type of thread model to use on Linux and Solaris
  2809. CheckPTHREAD()
  2810. {
  2811. dnl Check for pthread support
  2812. dnl Emscripten pthreads work, but you need to have a non-pthread fallback build
  2813. dnl for systems without support. It's not currently enough to not use
  2814. dnl pthread functions in a pthread-build; it won't start up on unsupported
  2815. dnl browsers. As such, you have to explicitly enable it on Emscripten builds
  2816. dnl for the time being. This default with change to ON once this becomes
  2817. dnl commonly supported in browsers or the Emscripten teams makes a single
  2818. dnl binary work everywhere.
  2819. case "$host" in
  2820. *-*-emscripten*)
  2821. enable_pthreads_default=no
  2822. ;;
  2823. *)
  2824. enable_pthreads_default=yes
  2825. ;;
  2826. esac
  2827. AC_ARG_ENABLE(pthreads,
  2828. [AS_HELP_STRING([--enable-pthreads], [use POSIX threads for multi-threading [default=maybe]])],
  2829. , enable_pthreads=maybe)
  2830. dnl This is used on Linux for glibc binary compatibility (Doh!)
  2831. AC_ARG_ENABLE(pthread-sem,
  2832. [AS_HELP_STRING([--enable-pthread-sem], [use pthread semaphores [default=maybe]])],
  2833. , enable_pthread_sem=maybe)
  2834. if test x$enable_pthreads = xmaybe; then
  2835. enable_pthreads=$enable_pthreads_default
  2836. fi
  2837. if test x$enable_pthread_sem = xmaybe; then
  2838. enable_pthread_sem=$enable_pthreads
  2839. fi
  2840. case "$host" in
  2841. *-*-android*)
  2842. pthread_cflags="-D_REENTRANT -D_THREAD_SAFE"
  2843. pthread_lib=""
  2844. ;;
  2845. *-*-linux*|*-*-uclinux*)
  2846. pthread_cflags="-D_REENTRANT"
  2847. pthread_lib="-lpthread"
  2848. ;;
  2849. *-*-bsdi*)
  2850. pthread_cflags="-D_REENTRANT -D_THREAD_SAFE"
  2851. pthread_lib=""
  2852. ;;
  2853. *-*-darwin*)
  2854. pthread_cflags="-D_THREAD_SAFE"
  2855. # causes Carbon.p complaints?
  2856. # pthread_cflags="-D_REENTRANT -D_THREAD_SAFE"
  2857. ;;
  2858. *-*-freebsd*|*-*-dragonfly*)
  2859. pthread_cflags="-D_REENTRANT -D_THREAD_SAFE"
  2860. pthread_lib="-pthread"
  2861. ;;
  2862. *-*-netbsd*)
  2863. pthread_cflags="-D_REENTRANT -D_THREAD_SAFE"
  2864. pthread_lib="-lpthread"
  2865. ;;
  2866. *-*-openbsd*)
  2867. pthread_cflags="-D_REENTRANT"
  2868. pthread_lib="-lpthread"
  2869. ;;
  2870. *-*-solaris2.9)
  2871. # From Solaris 9+, posix4's preferred name is rt.
  2872. pthread_cflags="-D_REENTRANT"
  2873. pthread_lib="-lpthread -lrt"
  2874. ;;
  2875. *-*-solaris2.10)
  2876. # Solaris 10+ merged pthread into libc.
  2877. pthread_cflags="-D_REENTRANT"
  2878. pthread_lib="-lrt"
  2879. ;;
  2880. *-*-solaris*)
  2881. # Solaris 11+ merged rt into libc.
  2882. pthread_cflags="-D_REENTRANT"
  2883. pthread_lib=""
  2884. ;;
  2885. *-*-sysv5*)
  2886. pthread_cflags="-D_REENTRANT -Kthread"
  2887. pthread_lib=""
  2888. ;;
  2889. *-*-aix*)
  2890. pthread_cflags="-D_REENTRANT -mthreads"
  2891. pthread_lib="-lpthread"
  2892. ;;
  2893. *-*-hpux11*)
  2894. pthread_cflags="-D_REENTRANT"
  2895. pthread_lib="-L/usr/lib -lpthread"
  2896. ;;
  2897. *-*-haiku*)
  2898. pthread_cflags="-D_REENTRANT"
  2899. pthread_lib=""
  2900. ;;
  2901. *-*-nto*)
  2902. pthread_cflags="-D_REENTRANT"
  2903. pthread_lib=""
  2904. ;;
  2905. *-*-emscripten*)
  2906. pthread_cflags="-D_REENTRANT -pthread"
  2907. pthread_lib="-pthread"
  2908. ;;
  2909. *)
  2910. pthread_cflags="-D_REENTRANT"
  2911. pthread_lib="-lpthread"
  2912. ;;
  2913. esac
  2914. if test x$enable_threads = xyes -a x$enable_pthreads = xyes; then
  2915. # Save the original compiler flags and libraries
  2916. ac_save_cflags="$CFLAGS"; ac_save_libs="$LIBS"
  2917. # Add the pthread compiler flags and libraries
  2918. CFLAGS="$CFLAGS $pthread_cflags"; LIBS="$LIBS $pthread_lib"
  2919. # Check to see if we have pthread support on this system
  2920. AC_MSG_CHECKING(for pthreads)
  2921. use_pthreads=no
  2922. AC_LINK_IFELSE([AC_LANG_PROGRAM([[
  2923. #include <pthread.h>
  2924. ]], [[
  2925. pthread_attr_t type;
  2926. pthread_attr_init(&type);
  2927. ]])], [use_pthreads=yes],[])
  2928. AC_MSG_RESULT($use_pthreads)
  2929. # Restore the compiler flags and libraries
  2930. CFLAGS="$ac_save_cflags"; LIBS="$ac_save_libs"
  2931. # Do futher testing if we have pthread support...
  2932. if test x$use_pthreads = xyes; then
  2933. AC_DEFINE(SDL_THREAD_PTHREAD, 1, [ ])
  2934. EXTRA_CFLAGS="$EXTRA_CFLAGS $pthread_cflags"
  2935. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $pthread_lib"
  2936. SDL_CFLAGS="$SDL_CFLAGS $pthread_cflags"
  2937. # Save the original compiler flags and libraries
  2938. ac_save_cflags="$CFLAGS"; ac_save_libs="$LIBS"
  2939. # Add the pthread compiler flags and libraries
  2940. CFLAGS="$CFLAGS $pthread_cflags"; LIBS="$LIBS $pthread_lib"
  2941. # Check to see if recursive mutexes are available
  2942. AC_MSG_CHECKING(for recursive mutexes)
  2943. has_recursive_mutexes=no
  2944. if test x$has_recursive_mutexes = xno; then
  2945. AC_LINK_IFELSE([AC_LANG_PROGRAM([[
  2946. #define _GNU_SOURCE 1
  2947. #include <pthread.h>
  2948. ]], [[
  2949. pthread_mutexattr_t attr;
  2950. pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
  2951. ]])], [
  2952. has_recursive_mutexes=yes
  2953. AC_DEFINE(SDL_THREAD_PTHREAD_RECURSIVE_MUTEX, 1, [ ])
  2954. ],[])
  2955. fi
  2956. if test x$has_recursive_mutexes = xno; then
  2957. AC_LINK_IFELSE([AC_LANG_PROGRAM([[
  2958. #define _GNU_SOURCE 1
  2959. #include <pthread.h>
  2960. ]], [[
  2961. pthread_mutexattr_t attr;
  2962. pthread_mutexattr_setkind_np(&attr, PTHREAD_MUTEX_RECURSIVE_NP);
  2963. ]])],[
  2964. has_recursive_mutexes=yes
  2965. AC_DEFINE(SDL_THREAD_PTHREAD_RECURSIVE_MUTEX_NP, 1, [ ])
  2966. ],[])
  2967. fi
  2968. AC_MSG_RESULT($has_recursive_mutexes)
  2969. # Check to see if pthread semaphore support is missing
  2970. if test x$enable_pthread_sem = xyes; then
  2971. AC_MSG_CHECKING(for pthread semaphores)
  2972. have_pthread_sem=no
  2973. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  2974. #include <pthread.h>
  2975. #include <semaphore.h>
  2976. ]],[])], [have_pthread_sem=yes],[])
  2977. AC_MSG_RESULT($have_pthread_sem)
  2978. fi
  2979. if test x$have_pthread_sem = xyes; then
  2980. AC_MSG_CHECKING(for sem_timedwait)
  2981. have_sem_timedwait=no
  2982. AC_LINK_IFELSE([AC_LANG_PROGRAM([[
  2983. #include <pthread.h>
  2984. #include <semaphore.h>
  2985. ]], [[
  2986. sem_timedwait(NULL, NULL);
  2987. ]])], [
  2988. have_sem_timedwait=yes
  2989. AC_DEFINE([HAVE_SEM_TIMEDWAIT], 1, [ ])
  2990. ],[])
  2991. AC_MSG_RESULT($have_sem_timedwait)
  2992. fi
  2993. AC_CHECK_HEADER(pthread_np.h, have_pthread_np_h=yes, have_pthread_np_h=no, [ #include <pthread.h> ])
  2994. if test x$have_pthread_np_h = xyes; then
  2995. AC_DEFINE(HAVE_PTHREAD_NP_H, 1, [ ])
  2996. fi
  2997. # Check to see if pthread naming is available
  2998. AC_MSG_CHECKING(for pthread_setname_np)
  2999. AC_TRY_LINK_FUNC(pthread_setname_np, [
  3000. has_pthread_setname_np=yes
  3001. AC_DEFINE(HAVE_PTHREAD_SETNAME_NP, 1, [ ])
  3002. ],[
  3003. has_pthread_setname_np=no
  3004. ])
  3005. AC_MSG_RESULT($has_pthread_setname_np)
  3006. AC_MSG_CHECKING(for pthread_set_name_np)
  3007. AC_TRY_LINK_FUNC(pthread_set_name_np, [
  3008. has_pthread_set_name_np=yes
  3009. AC_DEFINE(HAVE_PTHREAD_SET_NAME_NP, 1, [ ])
  3010. ],[
  3011. has_pthread_set_name_np=no
  3012. ])
  3013. AC_MSG_RESULT($has_pthread_set_name_np)
  3014. # Restore the compiler flags and libraries
  3015. CFLAGS="$ac_save_cflags"; LIBS="$ac_save_libs"
  3016. # Basic thread creation functions
  3017. SOURCES="$SOURCES $srcdir/src/thread/pthread/SDL_systhread.c"
  3018. # Semaphores
  3019. # We can fake these with mutexes and condition variables if necessary
  3020. if test x$have_pthread_sem = xyes; then
  3021. SOURCES="$SOURCES $srcdir/src/thread/pthread/SDL_syssem.c"
  3022. else
  3023. SOURCES="$SOURCES $srcdir/src/thread/generic/SDL_syssem.c"
  3024. fi
  3025. # Mutexes
  3026. # We can fake these with semaphores if necessary
  3027. SOURCES="$SOURCES $srcdir/src/thread/pthread/SDL_sysmutex.c"
  3028. # Condition variables
  3029. # We can fake these with semaphores and mutexes if necessary
  3030. SOURCES="$SOURCES $srcdir/src/thread/pthread/SDL_syscond.c"
  3031. # Thread local storage
  3032. SOURCES="$SOURCES $srcdir/src/thread/pthread/SDL_systls.c"
  3033. have_threads=yes
  3034. fi
  3035. fi
  3036. }
  3037. dnl Determine whether the compiler can produce Windows executables
  3038. CheckWINDOWS()
  3039. {
  3040. AC_MSG_CHECKING(Windows compiler)
  3041. have_win32_gcc=no
  3042. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  3043. #include <windows.h>
  3044. ]],[])], [have_win32_gcc=yes],[])
  3045. AC_MSG_RESULT($have_win32_gcc)
  3046. if test x$have_win32_gcc != xyes; then
  3047. AC_MSG_ERROR([
  3048. *** Your compiler ($CC) does not produce Windows executables!
  3049. ])
  3050. fi
  3051. AC_MSG_CHECKING(Windows CE)
  3052. have_wince=no
  3053. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  3054. #if !defined(_WIN32_WCE) && !defined(__MINGW32CE__)
  3055. #error This is not Windows CE
  3056. #endif
  3057. ]],[])], [
  3058. have_wince=yes
  3059. AC_MSG_ERROR([
  3060. *** Sorry, Windows CE is no longer supported.
  3061. ])
  3062. ],[])
  3063. AC_MSG_RESULT($have_wince)
  3064. # headers needed elsewhere
  3065. AC_CHECK_HEADER(tpcshrd.h,have_tpcshrd_h=yes)
  3066. if test x$have_tpcshrd_h = xyes; then
  3067. AC_DEFINE(HAVE_TPCSHRD_H, 1, [ ])
  3068. fi
  3069. AC_CHECK_HEADER(roapi.h,have_roapi_h=yes)
  3070. if test x$have_roapi_h = xyes; then
  3071. AC_DEFINE(HAVE_ROAPI_H, 1, [ ])
  3072. fi
  3073. AC_CHECK_HEADER(shellscalingapi.h,have_shellscalingapi_h=yes)
  3074. if test x$shellscalingapi_h = xyes; then
  3075. AC_DEFINE(HAVE_SHELLSCALINGAPI_H, 1, [ ])
  3076. fi
  3077. }
  3078. dnl Determine whether the compiler can produce OS/2 executables
  3079. CheckOS2()
  3080. {
  3081. AC_MSG_CHECKING(OS/2 compiler)
  3082. have_os2_gcc=no
  3083. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <os2.h>]],
  3084. [])],[have_os2_gcc=yes],[])
  3085. AC_MSG_RESULT($have_os2_gcc)
  3086. if test x$have_os2_gcc != xyes; then
  3087. AC_MSG_ERROR([
  3088. *** Your compiler ($CC) does not produce OS/2 executables!
  3089. ])
  3090. fi
  3091. }
  3092. dnl Find the DirectX includes and libraries
  3093. CheckDIRECTX()
  3094. {
  3095. AC_ARG_ENABLE(directx,
  3096. [AS_HELP_STRING([--enable-directx], [use DirectX for Windows audio/video [default=yes]])],
  3097. , enable_directx=yes)
  3098. if test x$enable_directx = xyes; then
  3099. AC_CHECK_HEADER(d3d9.h, have_d3d=yes)
  3100. AC_CHECK_HEADER(d3d11_1.h, have_d3d11=yes)
  3101. AC_MSG_CHECKING(for d3d12 Windows SDK version)
  3102. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  3103. #include <winsdkver.h>
  3104. #include <sdkddkver.h>
  3105. #include <d3d12.h>
  3106. ID3D12Device1 *device;
  3107. #if WDK_NTDDI_VERSION <= 0x0A000008
  3108. asdf
  3109. #endif
  3110. ]])], [have_d3d12=yes],[have_d3d12=no])
  3111. AC_MSG_RESULT($have_d3d12)
  3112. AC_CHECK_HEADER(ddraw.h, have_ddraw=yes)
  3113. AC_CHECK_HEADER(dsound.h, have_dsound=yes)
  3114. AC_CHECK_HEADER(dinput.h, have_dinput=yes)
  3115. AC_CHECK_HEADER(dxgi.h, have_dxgi=yes)
  3116. if test x$have_ddraw = xyes; then
  3117. AC_DEFINE(HAVE_DDRAW_H, 1, [ ])
  3118. fi
  3119. if test x$have_dinput = xyes; then
  3120. AC_DEFINE(HAVE_DINPUT_H, 1, [ ])
  3121. fi
  3122. if test x$have_dsound = xyes; then
  3123. AC_DEFINE(HAVE_DSOUND_H, 1, [ ])
  3124. fi
  3125. if test x$have_dxgi = xyes; then
  3126. AC_DEFINE(HAVE_DXGI_H, 1, [ ])
  3127. fi
  3128. # FIXME: latest Cygwin finds dinput headers, but we die on other win32 headers.
  3129. # FIXME: ...so force it off for now.
  3130. case "$host" in
  3131. *-*-cygwin*)
  3132. have_dinput=false
  3133. ;;
  3134. esac
  3135. fi
  3136. AC_ARG_ENABLE(xinput,
  3137. [AS_HELP_STRING([--enable-xinput], [use Xinput for Windows [default=yes]])],
  3138. , enable_xinput=yes)
  3139. if test x$enable_xinput = xyes; then
  3140. AC_CHECK_HEADER(xinput.h, have_xinput=yes)
  3141. if test x$have_xinput = xyes; then
  3142. AC_DEFINE(HAVE_XINPUT_H, 1, [ ])
  3143. fi
  3144. fi
  3145. AC_MSG_CHECKING(for windows.gaming.input.h)
  3146. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  3147. #define COBJMACROS
  3148. #include <windows.gaming.input.h>
  3149. __x_ABI_CWindows_CGaming_CInput_CIGamepadStatics2 *s2;
  3150. ]],[])], [have_wgi=yes],[have_wgi=no])
  3151. AC_MSG_RESULT($have_wgi)
  3152. if test x$have_wgi = xyes; then
  3153. AC_DEFINE(HAVE_WINDOWS_GAMING_INPUT_H, 1, [ ])
  3154. fi
  3155. AC_CHECK_HEADER(mmdeviceapi.h, have_wasapi=yes)
  3156. if test x$have_wasapi = xyes; then
  3157. AC_DEFINE(HAVE_MMDEVICEAPI_H, 1, [ ])
  3158. fi
  3159. AC_CHECK_HEADER(audioclient.h,,have_wasapi=no)
  3160. if test x$have_wasapi = xyes; then
  3161. AC_DEFINE(HAVE_AUDIOCLIENT_H, 1, [ ])
  3162. fi
  3163. AC_ARG_ENABLE(wasapi,
  3164. [AS_HELP_STRING([--enable-wasapi], [use the Windows WASAPI audio driver [default=yes]])],
  3165. , enable_wasapi=yes)
  3166. }
  3167. dnl Check for the dlfcn.h interface for dynamically loading objects
  3168. dnl NOTE: CheckDLOPEN is called only for relevant platforms
  3169. CheckDLOPEN()
  3170. {
  3171. AC_DEFINE(DYNAPI_NEEDS_DLOPEN, 1, [ ])
  3172. AC_CHECK_HEADER(dlfcn.h,have_dlfcn_h=yes,have_dlfcn_h=no)
  3173. have_dlopen=no
  3174. AC_CHECK_LIB(c, dlopen, have_dlopen=yes,
  3175. AC_CHECK_LIB(dl, dlopen, [have_dlopen=yes; EXTRA_LDFLAGS="$EXTRA_LDFLAGS -ldl"]))
  3176. AC_MSG_CHECKING(for dlopen)
  3177. AC_MSG_RESULT($have_dlopen)
  3178. if test x$have_dlfcn_h = xyes -a x$have_dlopen = xyes; then
  3179. AC_DEFINE(HAVE_DLOPEN, 1, [ ])
  3180. if test x$enable_loadso = xyes; then
  3181. AC_DEFINE(SDL_LOADSO_DLOPEN, 1, [ ])
  3182. SOURCES="$SOURCES $srcdir/src/loadso/dlopen/*.c"
  3183. have_loadso=yes
  3184. fi
  3185. fi
  3186. }
  3187. CheckO_CLOEXEC()
  3188. {
  3189. AC_MSG_CHECKING(for O_CLOEXEC)
  3190. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  3191. #include <fcntl.h>
  3192. int flag = O_CLOEXEC;
  3193. ]],[])], [have_o_cloexec=yes],[have_o_cloexec=no])
  3194. AC_MSG_RESULT($have_o_cloexec)
  3195. if test $have_o_cloexec = yes; then
  3196. AC_DEFINE(HAVE_O_CLOEXEC, 1, [ ])
  3197. fi
  3198. }
  3199. dnl Check for the usbhid(3) library on *BSD
  3200. CheckUSBHID()
  3201. {
  3202. case "$host" in
  3203. *-*-*bsd*|*-*-dragonfly*)
  3204. if test x$enable_joystick = xyes; then
  3205. AC_CHECK_LIB(usbhid, hid_init, have_libusbhid=yes)
  3206. if test x$have_libusbhid = xyes; then
  3207. AC_CHECK_HEADER(usbhid.h, [USB_CFLAGS="-DHAVE_USBHID_H"])
  3208. AC_CHECK_HEADER(libusbhid.h, [USB_CFLAGS="-DHAVE_LIBUSBHID_H"])
  3209. USB_LIBS="$USB_LIBS -lusbhid"
  3210. else
  3211. AC_CHECK_HEADER(usb.h, [USB_CFLAGS="-DHAVE_USB_H"])
  3212. AC_CHECK_HEADER(libusb.h, [USB_CFLAGS="-DHAVE_LIBUSB_H"])
  3213. AC_CHECK_LIB(usb, hid_init, [USB_LIBS="$USB_LIBS -lusb"])
  3214. fi
  3215. save_CFLAGS="$CFLAGS"
  3216. CFLAGS="$CFLAGS $USB_CFLAGS"
  3217. AC_MSG_CHECKING(for usbhid)
  3218. have_usbhid=no
  3219. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  3220. #include <sys/types.h>
  3221. #if defined(HAVE_USB_H)
  3222. #include <usb.h>
  3223. #endif
  3224. #ifdef __DragonFly__
  3225. # include <bus/u4b/usb.h>
  3226. # include <bus/u4b/usbhid.h>
  3227. #else
  3228. # include <dev/usb/usb.h>
  3229. # include <dev/usb/usbhid.h>
  3230. #endif
  3231. #if defined(HAVE_USBHID_H)
  3232. #include <usbhid.h>
  3233. #elif defined(HAVE_LIBUSB_H)
  3234. #include <libusb.h>
  3235. #elif defined(HAVE_LIBUSBHID_H)
  3236. #include <libusbhid.h>
  3237. #endif
  3238. ]], [[
  3239. struct report_desc *repdesc;
  3240. struct usb_ctl_report *repbuf;
  3241. hid_kind_t hidkind;
  3242. ]])], [have_usbhid=yes],[])
  3243. AC_MSG_RESULT($have_usbhid)
  3244. if test x$have_usbhid = xyes; then
  3245. AC_MSG_CHECKING(for ucr_data member of usb_ctl_report)
  3246. have_usbhid_ucr_data=no
  3247. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  3248. #include <sys/types.h>
  3249. #if defined(HAVE_USB_H)
  3250. #include <usb.h>
  3251. #endif
  3252. #ifdef __DragonFly__
  3253. # include <bus/u4b/usb.h>
  3254. # include <bus/u4b/usbhid.h>
  3255. #else
  3256. # include <dev/usb/usb.h>
  3257. # include <dev/usb/usbhid.h>
  3258. #endif
  3259. #if defined(HAVE_USBHID_H)
  3260. #include <usbhid.h>
  3261. #elif defined(HAVE_LIBUSB_H)
  3262. #include <libusb.h>
  3263. #elif defined(HAVE_LIBUSBHID_H)
  3264. #include <libusbhid.h>
  3265. #endif
  3266. ]], [[
  3267. struct usb_ctl_report buf;
  3268. if (buf.ucr_data) { }
  3269. ]])], [have_usbhid_ucr_data=yes],[])
  3270. if test x$have_usbhid_ucr_data = xyes; then
  3271. USB_CFLAGS="$USB_CFLAGS -DUSBHID_UCR_DATA"
  3272. fi
  3273. AC_MSG_RESULT($have_usbhid_ucr_data)
  3274. AC_MSG_CHECKING(for new usbhid API)
  3275. have_usbhid_new=no
  3276. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  3277. #include <sys/types.h>
  3278. #if defined(HAVE_USB_H)
  3279. #include <usb.h>
  3280. #endif
  3281. #ifdef __DragonFly__
  3282. #include <bus/u4b/usb.h>
  3283. #include <bus/u4b/usbhid.h>
  3284. #else
  3285. #include <dev/usb/usb.h>
  3286. #include <dev/usb/usbhid.h>
  3287. #endif
  3288. #if defined(HAVE_USBHID_H)
  3289. #include <usbhid.h>
  3290. #elif defined(HAVE_LIBUSB_H)
  3291. #include <libusb.h>
  3292. #elif defined(HAVE_LIBUSBHID_H)
  3293. #include <libusbhid.h>
  3294. #endif
  3295. ]], [[
  3296. report_desc_t d;
  3297. hid_start_parse(d, 1, 1);
  3298. ]])], [have_usbhid_new=yes],[])
  3299. if test x$have_usbhid_new = xyes; then
  3300. USB_CFLAGS="$USB_CFLAGS -DUSBHID_NEW"
  3301. fi
  3302. AC_MSG_RESULT($have_usbhid_new)
  3303. AC_MSG_CHECKING(for struct joystick in machine/joystick.h)
  3304. have_machine_joystick=no
  3305. AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
  3306. #include <machine/joystick.h>
  3307. ]], [[
  3308. struct joystick t;
  3309. ]])], [have_machine_joystick=yes],[])
  3310. if test x$have_machine_joystick = xyes; then
  3311. AC_DEFINE(SDL_HAVE_MACHINE_JOYSTICK_H, 1, [ ])
  3312. fi
  3313. AC_MSG_RESULT($have_machine_joystick)
  3314. AC_DEFINE(SDL_JOYSTICK_USBHID, 1, [ ])
  3315. SOURCES="$SOURCES $srcdir/src/joystick/bsd/*.c"
  3316. EXTRA_CFLAGS="$EXTRA_CFLAGS $USB_CFLAGS"
  3317. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $USB_LIBS"
  3318. have_joystick=yes
  3319. fi
  3320. CFLAGS="$save_CFLAGS"
  3321. fi
  3322. ;;
  3323. esac
  3324. }
  3325. dnl Check for HIDAPI joystick drivers
  3326. CheckHIDAPI()
  3327. {
  3328. AC_ARG_ENABLE(hidapi-joystick,
  3329. [AS_HELP_STRING([--enable-hidapi-joystick], [use HIDAPI for low level joystick drivers [default=yes]])],
  3330. , enable_hidapi_joystick=yes)
  3331. AC_ARG_ENABLE(hidapi-libusb,
  3332. [AS_HELP_STRING([--enable-hidapi-libusb], [use libusb for low level joystick drivers [default=maybe]])],
  3333. , enable_hidapi_libusb=maybe)
  3334. if test x$enable_hidapi = xyes; then
  3335. case "$host" in
  3336. # libusb does not support iOS
  3337. *-ios-* )
  3338. enable_hidapi_libusb=no
  3339. ;;
  3340. # On the other hand, *BSD specifically uses libusb only
  3341. *-*-*bsd* )
  3342. enable_hidapi_libusb=yes
  3343. require_hidapi_libusb=yes
  3344. ;;
  3345. *-*-os2* )
  3346. enable_hidapi_libusb=yes
  3347. ;;
  3348. esac
  3349. hidapi_support=yes
  3350. if test x$enable_hidapi_libusb = xyes; then
  3351. PKG_CHECK_MODULES([LIBUSB], [libusb-1.0], have_libusb=yes, have_libusb=no)
  3352. save_CPPFLAGS="$CPPFLAGS"
  3353. CPPFLAGS="$save_CPPFLAGS $LIBUSB_CFLAGS"
  3354. AC_CHECK_HEADER(libusb.h, have_libusb_h=yes, have_libusb_h=no)
  3355. CPPFLAGS="$save_CPPFLAGS"
  3356. if test x$have_libusb_h = xno && test x$require_hidapi_libusb = xyes; then
  3357. hidapi_support=no
  3358. fi
  3359. fi
  3360. if test x$hidapi_support = xyes; then
  3361. if test x$have_libusb_h = xyes; then
  3362. AC_DEFINE(HAVE_LIBUSB)
  3363. EXTRA_CFLAGS="$EXTRA_CFLAGS $LIBUSB_CFLAGS"
  3364. if test x$require_hidapi_libusb = xyes; then
  3365. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $LIBUSB_LIBS"
  3366. else
  3367. if test x$have_loadso != xyes; then
  3368. AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic libusb loading])
  3369. fi
  3370. # libusb is loaded dynamically, so don't add it to LDFLAGS
  3371. libusb_lib=""
  3372. case "$host" in
  3373. *-*-darwin* )
  3374. libusb_lib="libusb-1.0.0.dylib"
  3375. ;;
  3376. *-*-cygwin* | *-*-mingw* )
  3377. libusb_lib="libusb-1.0.dll"
  3378. ;;
  3379. *-*-os2* )
  3380. libusb_lib="usb100.dll"
  3381. ;;
  3382. esac
  3383. if test x$libusb_lib = x; then
  3384. libusb_lib=[`find_lib "libusb-1.0.so.*" "" | sed 's/.*\/\(.*\)/\1/; q'`]
  3385. fi
  3386. AC_DEFINE_UNQUOTED(SDL_LIBUSB_DYNAMIC, "$libusb_lib", [ ])
  3387. fi
  3388. fi
  3389. fi
  3390. AC_MSG_CHECKING(for hidapi joystick support)
  3391. AC_MSG_RESULT($hidapi_support)
  3392. fi
  3393. if test x$enable_joystick = xyes -a x$hidapi_support = xyes -a x$enable_hidapi_joystick = xyes; then
  3394. AC_DEFINE(SDL_JOYSTICK_HIDAPI, 1, [ ])
  3395. SOURCES="$SOURCES $srcdir/src/joystick/hidapi/*.c"
  3396. fi
  3397. }
  3398. dnl Check for clock_gettime()
  3399. CheckClockGettime()
  3400. {
  3401. AC_ARG_ENABLE(clock_gettime,
  3402. [AS_HELP_STRING([--enable-clock_gettime], [use clock_gettime() instead of gettimeofday() on UNIX [default=yes]])],
  3403. , enable_clock_gettime=yes)
  3404. if test x$enable_clock_gettime = xyes; then
  3405. AC_CHECK_LIB(c, clock_gettime, have_clock_gettime=yes)
  3406. if test x$have_clock_gettime = xyes; then
  3407. AC_DEFINE(HAVE_CLOCK_GETTIME, 1, [ ])
  3408. else
  3409. AC_CHECK_LIB(rt, clock_gettime, have_clock_gettime=yes)
  3410. if test x$have_clock_gettime = xyes; then
  3411. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lrt"
  3412. AC_DEFINE(HAVE_CLOCK_GETTIME, 1, [ ])
  3413. fi
  3414. fi
  3415. fi
  3416. }
  3417. dnl Check for a valid linux/version.h
  3418. CheckLinuxVersion()
  3419. {
  3420. AC_CHECK_HEADER(linux/version.h, have_linux_version_h=yes)
  3421. if test x$have_linux_version_h = xyes; then
  3422. EXTRA_CFLAGS="$EXTRA_CFLAGS -DHAVE_LINUX_VERSION_H"
  3423. fi
  3424. }
  3425. dnl Check if we want to use RPATH
  3426. CheckRPATH()
  3427. {
  3428. AC_ARG_ENABLE(rpath,
  3429. [AS_HELP_STRING([--enable-rpath], [use an rpath when linking SDL [default=yes]])],
  3430. , enable_rpath=yes)
  3431. }
  3432. dnl Check if we want to use custom signals to fake iOS/Android's backgrounding
  3433. dnl events. These could be useful if you're building a custom embedded
  3434. dnl environment, etc, but most people don't need this.
  3435. CheckEventSignals()
  3436. {
  3437. AC_ARG_ENABLE(backgrounding-signal,
  3438. [AS_HELP_STRING([--enable-backgrounding-signal], [number to use for magic backgrounding signal or 'no' [default=no]])],
  3439. , enable_backgrounding_signal=no)
  3440. if test x$enable_backgrounding_signal != xno; then
  3441. EXTRA_CFLAGS="$EXTRA_CFLAGS -DSDL_BACKGROUNDING_SIGNAL=$enable_backgrounding_signal"
  3442. fi
  3443. AC_ARG_ENABLE(foregrounding-signal,
  3444. [AS_HELP_STRING([--enable-foregrounding-signal], [number to use for magic foregrounding signal or 'no' [default=no]])],
  3445. , enable_foregrounding_signal=no)
  3446. if test x$enable_foregrounding_signal != xno; then
  3447. EXTRA_CFLAGS="$EXTRA_CFLAGS -DSDL_FOREGROUNDING_SIGNAL=$enable_foregrounding_signal"
  3448. fi
  3449. }
  3450. dnl Set up the Virtual joystick driver.
  3451. CheckVirtualJoystick()
  3452. {
  3453. AC_ARG_ENABLE(joystick-virtual,
  3454. [AS_HELP_STRING([--enable-joystick-virtual], [enable virtual joystick APIs [default=yes]])],
  3455. , enable_joystick_virtual=yes)
  3456. if test x$enable_joystick = xyes -a x$enable_joystick_virtual = xyes; then
  3457. AC_DEFINE(SDL_JOYSTICK_VIRTUAL, 1, [ ])
  3458. SOURCES="$SOURCES $srcdir/src/joystick/virtual/*.c"
  3459. have_joystick_virtual=yes
  3460. fi
  3461. }
  3462. dnl Do this on all platforms, before everything else (other things might want to override it).
  3463. CheckWarnAll
  3464. CheckUnusedLocalTypedefs
  3465. CheckNoStrictAliasing
  3466. dnl Do this for every platform, but for some it doesn't mean anything, but better to catch it here anyhow.
  3467. CheckEventSignals
  3468. have_locale=no
  3469. dnl Set up the configuration based on the host platform!
  3470. case "$host" in
  3471. *-*-linux*|*-*-uclinux*|*-*-gnu*|*-*-k*bsd*-gnu|*-*-bsdi*|*-*-freebsd*|*-*-dragonfly*|*-*-netbsd*|*-*-openbsd*|*-*-sysv5*|*-*-solaris*|*-*-hpux*|*-*-aix*|*-*-minix*|*-*-nto*)
  3472. case "$host" in
  3473. *-*-android*)
  3474. # Android
  3475. ARCH=android
  3476. ANDROID_CFLAGS="-DGL_GLEXT_PROTOTYPES"
  3477. CFLAGS="$CFLAGS $ANDROID_CFLAGS"
  3478. SDL_CFLAGS="$SDL_CFLAGS $ANDROID_CFLAGS"
  3479. EXTRA_CFLAGS="$EXTRA_CFLAGS $ANDROID_CFLAGS"
  3480. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -ldl -lGLESv1_CM -lGLESv2 -llog -landroid"
  3481. SDLMAIN_SOURCES="$srcdir/src/main/android/*.c"
  3482. if test x$enable_video = xyes; then
  3483. SOURCES="$SOURCES $srcdir/src/core/android/*.c $srcdir/src/video/android/*.c"
  3484. AC_DEFINE(SDL_VIDEO_DRIVER_ANDROID, 1, [ ])
  3485. SUMMARY_video="${SUMMARY_video} android"
  3486. have_video=yes
  3487. fi
  3488. ;;
  3489. *-*-linux*) ARCH=linux ;;
  3490. *-*-uclinux*) ARCH=linux ;;
  3491. *-*-kfreebsd*-gnu) ARCH=kfreebsd-gnu ;;
  3492. *-*-knetbsd*-gnu) ARCH=knetbsd-gnu ;;
  3493. *-*-kopenbsd*-gnu) ARCH=kopenbsd-gnu ;;
  3494. *-*-gnu*) ARCH=gnu ;; # must be last of the gnu variants
  3495. *-*-bsdi*) ARCH=bsdi ;;
  3496. *-*-freebsd*) ARCH=freebsd ;;
  3497. *-*-dragonfly*) ARCH=freebsd ;;
  3498. *-*-netbsd*) ARCH=netbsd ;;
  3499. *-*-openbsd*) ARCH=openbsd ;;
  3500. *-*-sysv5*) ARCH=sysv5 ;;
  3501. *-*-solaris*) ARCH=solaris ;;
  3502. *-*-hpux*) ARCH=hpux ;;
  3503. *-*-aix*) ARCH=aix ;;
  3504. *-*-minix*) ARCH=minix ;;
  3505. *-*-nto*) ARCH=nto
  3506. CheckQNXVideo
  3507. ;;
  3508. esac
  3509. CheckVisibilityHidden
  3510. CheckWerror
  3511. CheckDeclarationAfterStatement
  3512. CheckDummyVideo
  3513. CheckOffscreenVideo
  3514. CheckDiskAudio
  3515. CheckDummyAudio
  3516. CheckDLOPEN
  3517. CheckARM
  3518. CheckNEON
  3519. CheckO_CLOEXEC
  3520. CheckOSS
  3521. CheckALSA
  3522. CheckPipewire
  3523. CheckPulseAudio
  3524. CheckJACK
  3525. CheckARTSC
  3526. CheckESD
  3527. CheckNAS
  3528. CheckSNDIO
  3529. CheckFusionSound
  3530. CheckLibSampleRate
  3531. # Need to check for Raspberry PI first and add platform specific compiler flags, otherwise the test for GLES fails!
  3532. CheckRPI
  3533. CheckX11
  3534. CheckDirectFB
  3535. # Need to check for EGL first because KMSDRM and Wayland depends on it.
  3536. CheckEGL
  3537. CheckKMSDRM
  3538. CheckGLX
  3539. CheckOpenGL
  3540. CheckOpenGLES
  3541. CheckVulkan
  3542. CheckWayland
  3543. CheckInputEvents
  3544. CheckLibUDev
  3545. CheckDBus
  3546. CheckIME
  3547. CheckInotify
  3548. CheckIBus
  3549. CheckFcitx
  3550. case $ARCH in
  3551. linux)
  3552. CheckInputKD
  3553. ;;
  3554. freebsd)
  3555. CheckInputKBIO
  3556. ;;
  3557. openbsd|netbsd)
  3558. CheckInputWSCONS
  3559. ;;
  3560. esac
  3561. CheckUSBHID
  3562. CheckHIDAPI
  3563. CheckPTHREAD
  3564. CheckClockGettime
  3565. CheckLinuxVersion
  3566. CheckRPATH
  3567. CheckVivanteVideo
  3568. # Set up files for the misc library
  3569. if test x$enable_misc = xyes; then
  3570. SOURCES="$SOURCES $srcdir/src/misc/unix/*.c"
  3571. have_misc=yes
  3572. fi
  3573. # Set up files for the locale library
  3574. if test x$enable_locale = xyes; then
  3575. SOURCES="$SOURCES $srcdir/src/locale/unix/*.c"
  3576. have_locale=yes
  3577. fi
  3578. # Set up files for the audio library
  3579. if test x$enable_audio = xyes; then
  3580. case $ARCH in
  3581. sysv5|solaris|hpux)
  3582. AC_DEFINE(SDL_AUDIO_DRIVER_SUNAUDIO, 1, [ ])
  3583. SOURCES="$SOURCES $srcdir/src/audio/sun/*.c"
  3584. SUMMARY_audio="${SUMMARY_audio} sun"
  3585. have_audio=yes
  3586. ;;
  3587. netbsd) # Don't use this on OpenBSD, it's busted.
  3588. AC_DEFINE(SDL_AUDIO_DRIVER_NETBSD, 1, [ ])
  3589. SOURCES="$SOURCES $srcdir/src/audio/netbsd/*.c"
  3590. SUMMARY_audio="${SUMMARY_audio} netbsd"
  3591. have_audio=yes
  3592. ;;
  3593. aix)
  3594. AC_DEFINE(SDL_AUDIO_DRIVER_PAUDIO, 1, [ ])
  3595. SOURCES="$SOURCES $srcdir/src/audio/paudio/*.c"
  3596. SUMMARY_audio="${SUMMARY_audio} paudio"
  3597. have_audio=yes
  3598. ;;
  3599. android)
  3600. AC_DEFINE(SDL_AUDIO_DRIVER_ANDROID, 1, [ ])
  3601. SOURCES="$SOURCES $srcdir/src/audio/android/*.c"
  3602. SUMMARY_audio="${SUMMARY_audio} android"
  3603. AC_DEFINE(SDL_AUDIO_DRIVER_OPENSLES, 1, [ ])
  3604. SOURCES="$SOURCES $srcdir/src/audio/openslES/*.c"
  3605. SUMMARY_audio="${SUMMARY_audio} openslES"
  3606. AC_DEFINE(SDL_AUDIO_DRIVER_AAUDIO, 1, [ ])
  3607. SOURCES="$SOURCES $srcdir/src/audio/aaudio/*.c"
  3608. SUMMARY_audio="${SUMMARY_audio} aaudio"
  3609. have_audio=yes
  3610. ;;
  3611. nto)
  3612. CheckQNXAudio
  3613. ;;
  3614. esac
  3615. fi
  3616. # Set up files for the joystick library
  3617. if test x$enable_joystick = xyes; then
  3618. case $ARCH in
  3619. linux)
  3620. if test "x$ac_cv_header_linux_input_h" = xyes; then
  3621. AC_DEFINE(SDL_JOYSTICK_LINUX, 1, [ ])
  3622. SOURCES="$SOURCES $srcdir/src/joystick/linux/*.c"
  3623. SOURCES="$SOURCES $srcdir/src/joystick/steam/*.c"
  3624. have_joystick=yes
  3625. fi
  3626. ;;
  3627. freebsd)
  3628. if test x$use_input_events = xyes -a x$ac_cv_header_linux_input_h = xyes; then
  3629. AC_DEFINE(SDL_JOYSTICK_LINUX, 1, [ ])
  3630. SOURCES="$SOURCES $srcdir/src/joystick/linux/*.c"
  3631. SOURCES="$SOURCES $srcdir/src/joystick/steam/*.c"
  3632. have_joystick=yes
  3633. fi
  3634. ;;
  3635. android)
  3636. AC_DEFINE(SDL_JOYSTICK_ANDROID, 1, [ ])
  3637. SOURCES="$SOURCES $srcdir/src/joystick/android/*.c"
  3638. SOURCES="$SOURCES $srcdir/src/joystick/steam/*.c"
  3639. have_joystick=yes
  3640. ;;
  3641. esac
  3642. fi
  3643. # Set up files for the haptic library
  3644. if test x$enable_haptic = xyes; then
  3645. case $ARCH in
  3646. linux|freebsd)
  3647. if test x$use_input_events = xyes; then
  3648. AC_DEFINE(SDL_HAPTIC_LINUX, 1, [ ])
  3649. SOURCES="$SOURCES $srcdir/src/haptic/linux/*.c"
  3650. have_haptic=yes
  3651. fi
  3652. ;;
  3653. android)
  3654. AC_DEFINE(SDL_HAPTIC_ANDROID, 1, [ ])
  3655. SOURCES="$SOURCES $srcdir/src/haptic/android/*.c"
  3656. have_haptic=yes
  3657. ;;
  3658. esac
  3659. fi
  3660. # Set up files for the sensor library
  3661. if test x$enable_sensor = xyes; then
  3662. case $ARCH in
  3663. android)
  3664. AC_DEFINE(SDL_SENSOR_ANDROID, 1, [ ])
  3665. SOURCES="$SOURCES $srcdir/src/sensor/android/*.c"
  3666. have_sensor=yes
  3667. ;;
  3668. esac
  3669. fi
  3670. # Set up files for the power library
  3671. if test x$enable_power = xyes; then
  3672. case $ARCH in
  3673. linux)
  3674. AC_DEFINE(SDL_POWER_LINUX, 1, [ ])
  3675. SOURCES="$SOURCES $srcdir/src/power/linux/*.c"
  3676. have_power=yes
  3677. ;;
  3678. android)
  3679. AC_DEFINE(SDL_POWER_ANDROID, 1, [ ])
  3680. SOURCES="$SOURCES $srcdir/src/power/android/*.c"
  3681. have_power=yes
  3682. ;;
  3683. esac
  3684. fi
  3685. # Set up files for the filesystem library
  3686. if test x$enable_filesystem = xyes; then
  3687. case $ARCH in
  3688. android)
  3689. AC_DEFINE(SDL_FILESYSTEM_ANDROID, 1, [ ])
  3690. SOURCES="$SOURCES $srcdir/src/filesystem/android/*.c"
  3691. have_filesystem=yes
  3692. ;;
  3693. *)
  3694. AC_DEFINE(SDL_FILESYSTEM_UNIX, 1, [ ])
  3695. SOURCES="$SOURCES $srcdir/src/filesystem/unix/*.c"
  3696. have_filesystem=yes
  3697. ;;
  3698. esac
  3699. fi
  3700. # Set up files for the timer library
  3701. if test x$enable_timers = xyes; then
  3702. AC_DEFINE(SDL_TIMER_UNIX, 1, [ ])
  3703. SOURCES="$SOURCES $srcdir/src/timer/unix/*.c"
  3704. have_timers=yes
  3705. fi
  3706. # Set up files for udev hotplugging support
  3707. if test x$enable_libudev = xyes && test x$have_libudev_h_hdr = xyes; then
  3708. SOURCES="$SOURCES $srcdir/src/core/linux/SDL_udev.c"
  3709. fi
  3710. # Set up files for evdev input
  3711. if test x$use_input_events = xyes; then
  3712. SOURCES="$SOURCES $srcdir/src/core/linux/SDL_evdev.c"
  3713. SOURCES="$SOURCES $srcdir/src/core/linux/SDL_evdev_kbd.c"
  3714. SOURCES="$SOURCES $srcdir/src/core/freebsd/SDL_evdev_kbd_freebsd.c"
  3715. fi
  3716. # Set up files for wscons input
  3717. if test x$use_input_wscons = xyes; then
  3718. SOURCES="$SOURCES $srcdir/src/core/openbsd/SDL_wscons_kbd.c"
  3719. SOURCES="$SOURCES $srcdir/src/core/openbsd/SDL_wscons_mouse.c"
  3720. fi
  3721. # Set up other core UNIX files
  3722. SOURCES="$SOURCES $srcdir/src/core/linux/SDL_evdev_capabilities.c"
  3723. SOURCES="$SOURCES $srcdir/src/core/linux/SDL_threadprio.c"
  3724. SOURCES="$SOURCES $srcdir/src/core/linux/SDL_sandbox.c"
  3725. SOURCES="$SOURCES $srcdir/src/core/unix/*.c"
  3726. ;;
  3727. *-*-cygwin* | *-*-mingw*)
  3728. ARCH=win32
  3729. if test "$build" != "$host"; then # cross-compiling
  3730. # Default cross-compile location
  3731. ac_default_prefix=/usr/local/cross-tools/$host
  3732. else
  3733. # Look for the location of the tools and install there
  3734. if test "$BUILD_PREFIX" != ""; then
  3735. ac_default_prefix=$BUILD_PREFIX
  3736. fi
  3737. fi
  3738. if test x$enable_loadso = xyes; then
  3739. have_loadso=yes
  3740. fi
  3741. CheckGDwarf4
  3742. CheckWerror
  3743. CheckDeclarationAfterStatement
  3744. CheckDummyVideo
  3745. CheckOffscreenVideo
  3746. CheckDiskAudio
  3747. CheckDummyAudio
  3748. CheckWINDOWS
  3749. CheckWINDOWSGL
  3750. CheckWINDOWSGLES
  3751. CheckVulkan
  3752. CheckDIRECTX
  3753. CheckHIDAPI
  3754. # Set up the core platform files
  3755. SOURCES="$SOURCES $srcdir/src/core/windows/*.c"
  3756. # Set up files for the misc library
  3757. if test x$enable_misc = xyes; then
  3758. SOURCES="$SOURCES $srcdir/src/misc/windows/*.c"
  3759. have_misc=yes
  3760. fi
  3761. # Use the Windows locale APIs.
  3762. if test x$enable_locale = xyes; then
  3763. SOURCES="$SOURCES $srcdir/src/locale/windows/*.c"
  3764. have_locale=yes
  3765. fi
  3766. # Set up files for the video library
  3767. if test x$enable_video = xyes; then
  3768. AC_DEFINE(SDL_VIDEO_DRIVER_WINDOWS, 1, [ ])
  3769. SOURCES="$SOURCES $srcdir/src/video/windows/*.c"
  3770. have_video=yes
  3771. AC_ARG_ENABLE(render-d3d,
  3772. [AS_HELP_STRING([--enable-render-d3d], [enable the Direct3D render driver [default=yes]])],
  3773. , enable_render_d3d=yes)
  3774. if test x$enable_render_d3d = xyes -a x$have_d3d = xyes; then
  3775. AC_DEFINE(SDL_VIDEO_RENDER_D3D, 1, [ ])
  3776. SUMMARY_video="${SUMMARY_video} d3d9"
  3777. fi
  3778. if test x$enable_render_d3d = xyes -a x$have_d3d11 = xyes; then
  3779. AC_DEFINE(SDL_VIDEO_RENDER_D3D11, 1, [ ])
  3780. SUMMARY_video="${SUMMARY_video} d3d11"
  3781. fi
  3782. if test x$enable_render_d3d = xyes -a x$have_d3d12 = xyes; then
  3783. AC_DEFINE(SDL_VIDEO_RENDER_D3D12, 1, [ ])
  3784. SUMMARY_video="${SUMMARY_video} d3d12"
  3785. fi
  3786. fi
  3787. # Set up files for the audio library
  3788. if test x$enable_audio = xyes; then
  3789. AC_DEFINE(SDL_AUDIO_DRIVER_WINMM, 1, [ ])
  3790. SUMMARY_audio="${SUMMARY_audio} winmm"
  3791. SOURCES="$SOURCES $srcdir/src/audio/winmm/*.c"
  3792. if test x$have_dsound = xyes; then
  3793. AC_DEFINE(SDL_AUDIO_DRIVER_DSOUND, 1, [ ])
  3794. SUMMARY_audio="${SUMMARY_audio} directsound"
  3795. SOURCES="$SOURCES $srcdir/src/audio/directsound/*.c"
  3796. fi
  3797. if test x$have_wasapi = xyes -a x$enable_wasapi = xyes; then
  3798. AC_DEFINE(SDL_AUDIO_DRIVER_WASAPI, 1, [ ])
  3799. SUMMARY_audio="${SUMMARY_audio} wasapi"
  3800. SOURCES="$SOURCES $srcdir/src/audio/wasapi/*.c"
  3801. fi
  3802. have_audio=yes
  3803. fi
  3804. # Set up files for the joystick library
  3805. if test x$enable_joystick = xyes; then
  3806. AC_DEFINE(SDL_JOYSTICK_RAWINPUT, 1, [ ])
  3807. if test x$have_dinput = xyes -o x$have_xinput = xyes -o x$have_wgi = xyes; then
  3808. if test x$have_xinput = xyes; then
  3809. AC_DEFINE(SDL_JOYSTICK_XINPUT, 1, [ ])
  3810. fi
  3811. if test x$have_wgi = xyes; then
  3812. AC_DEFINE(SDL_JOYSTICK_WGI, 1, [ ])
  3813. fi
  3814. if test x$have_dinput = xyes; then
  3815. AC_DEFINE(SDL_JOYSTICK_DINPUT, 1, [ ])
  3816. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -ldinput8 -ldxguid -ldxerr8"
  3817. fi
  3818. fi
  3819. SOURCES="$SOURCES $srcdir/src/joystick/windows/*.c"
  3820. have_joystick=yes
  3821. fi
  3822. if test x$enable_haptic = xyes; then
  3823. if test x$have_dinput = xyes -o x$have_xinput = xyes; then
  3824. if test x$have_xinput = xyes; then
  3825. AC_DEFINE(SDL_HAPTIC_XINPUT, 1, [ ])
  3826. fi
  3827. if test x$have_dinput = xyes; then
  3828. AC_DEFINE(SDL_HAPTIC_DINPUT, 1, [ ])
  3829. fi
  3830. SOURCES="$SOURCES $srcdir/src/haptic/windows/*.c"
  3831. have_haptic=yes
  3832. fi
  3833. fi
  3834. # Set up files for the sensor library
  3835. AC_CHECK_HEADER(sensorsapi.h,have_winsensors=yes,have_winsensors=no)
  3836. if test x$have_winsensors = xyes; then
  3837. AC_DEFINE(HAVE_SENSORSAPI_H, 1, [ ])
  3838. fi
  3839. if test x$enable_sensor = xyes -a x$have_winsensors = xyes; then
  3840. AC_DEFINE(SDL_SENSOR_WINDOWS, 1, [ ])
  3841. SOURCES="$SOURCES $srcdir/src/sensor/windows/*.c"
  3842. have_sensor=yes
  3843. fi
  3844. # Set up files for the power library
  3845. if test x$enable_power = xyes; then
  3846. AC_DEFINE(SDL_POWER_WINDOWS, 1, [ ])
  3847. SOURCES="$SOURCES $srcdir/src/power/windows/SDL_syspower.c"
  3848. have_power=yes
  3849. fi
  3850. # Set up files for the filesystem library
  3851. if test x$enable_filesystem = xyes; then
  3852. AC_DEFINE(SDL_FILESYSTEM_WINDOWS, 1, [ ])
  3853. SOURCES="$SOURCES $srcdir/src/filesystem/windows/SDL_sysfilesystem.c"
  3854. have_filesystem=yes
  3855. fi
  3856. # Set up files for the thread library
  3857. if test x$enable_threads = xyes; then
  3858. AC_DEFINE(SDL_THREAD_GENERIC_COND_SUFFIX, 1, [ ])
  3859. AC_DEFINE(SDL_THREAD_WINDOWS, 1, [ ])
  3860. SOURCES="$SOURCES $srcdir/src/thread/windows/*.c"
  3861. SOURCES="$SOURCES $srcdir/src/thread/generic/SDL_syscond.c"
  3862. have_threads=yes
  3863. fi
  3864. # Set up files for the timer library
  3865. if test x$enable_timers = xyes; then
  3866. AC_DEFINE(SDL_TIMER_WINDOWS, 1, [ ])
  3867. SOURCES="$SOURCES $srcdir/src/timer/windows/*.c"
  3868. have_timers=yes
  3869. fi
  3870. # Set up files for the shared object loading library
  3871. if test x$enable_loadso = xyes; then
  3872. AC_DEFINE(SDL_LOADSO_WINDOWS, 1, [ ])
  3873. SOURCES="$SOURCES $srcdir/src/loadso/windows/*.c"
  3874. fi
  3875. # Set up the system libraries we need
  3876. if test -f /lib/w32api/libuuid.a; then
  3877. LIBUUID=/lib/w32api/libuuid.a
  3878. else
  3879. LIBUUID=-luuid
  3880. fi
  3881. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -luser32 -lgdi32 -lwinmm -limm32 -lole32 -loleaut32 -lshell32 -lsetupapi -lversion $LIBUUID"
  3882. BUILD_LDFLAGS="$BUILD_LDFLAGS -Wc,-static-libgcc"
  3883. # The Windows platform requires special setup
  3884. VERSION_SOURCES="$srcdir/src/main/windows/*.rc"
  3885. SDLMAIN_SOURCES="$srcdir/src/main/windows/*.c"
  3886. SDL_CFLAGS="$SDL_CFLAGS -Dmain=SDL_main"
  3887. SDL_LIBS="-lSDL2main $SDL_LIBS -mwindows"
  3888. # Check to see if this is a mingw or cygwin build
  3889. have_mingw32=
  3890. AC_CHECK_LIB(mingw32, main, [have_mingw32=yes])
  3891. if test x$have_mingw32 = xyes; then
  3892. SDL_LIBS="-lmingw32 $SDL_LIBS"
  3893. else
  3894. SDL_LIBS="-lcygwin $SDL_LIBS"
  3895. fi
  3896. ;;
  3897. dnl BeOS support removed after SDL 2.0.1. Haiku still works. --ryan.
  3898. *-*-beos*)
  3899. AC_MSG_ERROR([
  3900. *** BeOS support has been removed as of SDL 2.0.2.
  3901. ])
  3902. ;;
  3903. *-*-haiku*)
  3904. ARCH=haiku
  3905. ac_default_prefix=/boot/system
  3906. CheckDummyVideo
  3907. CheckOffscreenVideo
  3908. CheckDiskAudio
  3909. CheckDummyAudio
  3910. CheckDLOPEN
  3911. CheckO_CLOEXEC
  3912. CheckHaikuVideo
  3913. CheckHaikuGL
  3914. CheckPTHREAD
  3915. # Set up files for the audio library
  3916. if test x$enable_audio = xyes; then
  3917. AC_DEFINE(SDL_AUDIO_DRIVER_HAIKU, 1, [ ])
  3918. SOURCES="$SOURCES $srcdir/src/audio/haiku/*.cc"
  3919. SUMMARY_audio="${SUMMARY_audio} haiku"
  3920. have_audio=yes
  3921. fi
  3922. # Set up files for the joystick library
  3923. if test x$enable_joystick = xyes; then
  3924. AC_DEFINE(SDL_JOYSTICK_HAIKU, 1, [ ])
  3925. SOURCES="$SOURCES $srcdir/src/joystick/haiku/*.cc"
  3926. have_joystick=yes
  3927. fi
  3928. # Set up files for the timer library
  3929. if test x$enable_timers = xyes; then
  3930. AC_DEFINE(SDL_TIMER_HAIKU, 1, [ ])
  3931. SOURCES="$SOURCES $srcdir/src/timer/haiku/*.c"
  3932. have_timers=yes
  3933. fi
  3934. # Set up files for the system power library
  3935. if test x$enable_power = xyes; then
  3936. AC_DEFINE(SDL_POWER_HAIKU, 1, [ ])
  3937. SOURCES="$SOURCES $srcdir/src/power/haiku/*.c"
  3938. have_power=yes
  3939. fi
  3940. # Set up files for the system filesystem library
  3941. if test x$enable_filesystem = xyes; then
  3942. AC_DEFINE(SDL_FILESYSTEM_HAIKU, 1, [ ])
  3943. SOURCES="$SOURCES $srcdir/src/filesystem/haiku/*.cc"
  3944. have_filesystem=yes
  3945. fi
  3946. # Set up files for the misc library
  3947. if test x$enable_misc = xyes; then
  3948. SOURCES="$SOURCES $srcdir/src/misc/haiku/*.cc"
  3949. have_misc=yes
  3950. fi
  3951. # Set up files for the locale library
  3952. if test x$enable_locale = xyes; then
  3953. SOURCES="$SOURCES $srcdir/src/locale/haiku/*.cc"
  3954. have_locale=yes
  3955. fi
  3956. # The Haiku platform requires special setup.
  3957. SOURCES="$srcdir/src/main/haiku/*.cc $SOURCES"
  3958. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lroot -lbe -lmedia -lgame -ldevice -ltextencoding"
  3959. ;;
  3960. *-ios-*)
  3961. ARCH=ios
  3962. CheckVisibilityHidden
  3963. CheckWerror
  3964. CheckNoErrorDeprecatedDeclarationsWerror
  3965. CheckDeclarationAfterStatement
  3966. CheckDummyVideo
  3967. CheckOffscreenVideo
  3968. CheckDiskAudio
  3969. CheckDummyAudio
  3970. CheckDLOPEN
  3971. CheckO_CLOEXEC
  3972. CheckMETAL
  3973. CheckVulkan
  3974. CheckPTHREAD
  3975. # Set up files for the misc library
  3976. if test x$enable_misc = xyes; then
  3977. SOURCES="$SOURCES $srcdir/src/misc/ios/*.m"
  3978. have_misc=yes
  3979. fi
  3980. # Set up files for the locale library
  3981. if test x$enable_locale = xyes; then
  3982. SOURCES="$SOURCES $srcdir/src/locale/macosx/*.m"
  3983. have_locale=yes
  3984. fi
  3985. # Set up files for the audio library
  3986. if test x$enable_audio = xyes; then
  3987. AC_DEFINE(SDL_AUDIO_DRIVER_COREAUDIO, 1, [ ])
  3988. SOURCES="$SOURCES $srcdir/src/audio/coreaudio/*.m"
  3989. SUMMARY_audio="${SUMMARY_audio} coreaudio"
  3990. have_audio=yes
  3991. fi
  3992. # Set up files for the joystick library
  3993. if test x$enable_joystick = xyes; then
  3994. AC_DEFINE(SDL_JOYSTICK_MFI, 1, [ ])
  3995. SOURCES="$SOURCES $srcdir/src/joystick/iphoneos/*.m"
  3996. SOURCES="$SOURCES $srcdir/src/joystick/steam/*.c"
  3997. have_joystick=yes
  3998. else
  3999. # Need this code for accelerometer as joystick support
  4000. SOURCES="$SOURCES $srcdir/src/joystick/iphoneos/*.m"
  4001. fi
  4002. # Set up files for the haptic library
  4003. #if test x$enable_haptic = xyes; then
  4004. # SOURCES="$SOURCES $srcdir/src/haptic/darwin/*.c"
  4005. # have_haptic=yes
  4006. # EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,ForceFeedback"
  4007. #fi
  4008. # Set up files for the sensor library
  4009. if test x$enable_sensor = xyes; then
  4010. AC_DEFINE(SDL_SENSOR_COREMOTION, 1, [ ])
  4011. SOURCES="$SOURCES $srcdir/src/sensor/coremotion/*.m"
  4012. have_sensor=yes
  4013. fi
  4014. # Set up files for the power library
  4015. if test x$enable_power = xyes; then
  4016. AC_DEFINE(SDL_POWER_UIKIT, 1, [ ])
  4017. SOURCES="$SOURCES $srcdir/src/power/uikit/*.m"
  4018. have_power=yes
  4019. fi
  4020. # Set up files for the filesystem library
  4021. if test x$enable_filesystem = xyes; then
  4022. SOURCES="$SOURCES $srcdir/src/filesystem/cocoa/*.m"
  4023. have_filesystem=yes
  4024. fi
  4025. # Set up additional files for the file library
  4026. if test x$enable_file = xyes; then
  4027. AC_DEFINE(SDL_FILESYSTEM_COCOA, 1, [ ])
  4028. SOURCES="$SOURCES $srcdir/src/file/cocoa/*.m"
  4029. fi
  4030. # Set up files for the timer library
  4031. if test x$enable_timers = xyes; then
  4032. AC_DEFINE(SDL_TIMER_UNIX, 1, [ ])
  4033. SOURCES="$SOURCES $srcdir/src/timer/unix/*.c"
  4034. have_timers=yes
  4035. fi
  4036. # Set up other core UNIX files
  4037. SOURCES="$SOURCES $srcdir/src/core/unix/*.c"
  4038. # The iOS platform requires special setup.
  4039. AC_DEFINE(SDL_VIDEO_DRIVER_UIKIT, 1, [ ])
  4040. AC_DEFINE(SDL_VIDEO_OPENGL_ES2, 1, [ ])
  4041. AC_DEFINE(SDL_VIDEO_OPENGL_ES, 1, [ ])
  4042. AC_DEFINE(SDL_VIDEO_RENDER_OGL_ES, 1, [ ])
  4043. AC_DEFINE(SDL_VIDEO_RENDER_OGL_ES2, 1, [ ])
  4044. SOURCES="$SOURCES $srcdir/src/video/uikit/*.m"
  4045. SUMMARY_video="${SUMMARY_video} uikit"
  4046. have_video=yes
  4047. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lm"
  4048. if test x$enable_system_iconv = xyes; then
  4049. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -liconv"
  4050. fi
  4051. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lobjc"
  4052. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,AVFoundation"
  4053. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,AudioToolbox"
  4054. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,CoreAudio"
  4055. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,CoreGraphics"
  4056. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,CoreMotion"
  4057. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,Foundation"
  4058. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,GameController"
  4059. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,OpenGLES"
  4060. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,QuartzCore"
  4061. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,UIKit"
  4062. if test x$enable_video_metal = xyes -o x$enable_video_vulkan = xyes; then
  4063. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,Metal"
  4064. fi
  4065. ;;
  4066. *-*-darwin* )
  4067. # This could be either full "Mac OS X", or plain "Darwin" which is
  4068. # just the OS X kernel sans upper layers like Carbon and Cocoa.
  4069. # Next line is broken, and a few files below require Mac OS X (full)
  4070. ARCH=macosx
  4071. # Mac OS X builds with both the Carbon and OSX APIs at the moment
  4072. EXTRA_CFLAGS="$EXTRA_CFLAGS -DTARGET_API_MAC_CARBON"
  4073. EXTRA_CFLAGS="$EXTRA_CFLAGS -DTARGET_API_MAC_OSX"
  4074. CheckObjectiveCARC
  4075. CheckVisibilityHidden
  4076. CheckWerror
  4077. CheckNoErrorDeprecatedDeclarationsWerror
  4078. CheckDeclarationAfterStatement
  4079. CheckDummyVideo
  4080. CheckOffscreenVideo
  4081. CheckDiskAudio
  4082. CheckDummyAudio
  4083. CheckDLOPEN
  4084. CheckO_CLOEXEC
  4085. CheckCOCOA
  4086. CheckMETAL
  4087. CheckX11
  4088. CheckMacGL
  4089. CheckMacGLES
  4090. CheckGLX
  4091. CheckOpenGL
  4092. CheckVulkan
  4093. CheckPTHREAD
  4094. CheckHIDAPI
  4095. # Set up files for the misc library
  4096. if test x$enable_misc = xyes; then
  4097. SOURCES="$SOURCES $srcdir/src/misc/macosx/*.m"
  4098. have_misc=yes
  4099. fi
  4100. # Set up files for the locale library
  4101. if test x$enable_locale = xyes; then
  4102. SOURCES="$SOURCES $srcdir/src/locale/macosx/*.m"
  4103. have_locale=yes
  4104. fi
  4105. # Set up files for the audio library
  4106. if test x$enable_audio = xyes; then
  4107. AC_DEFINE(SDL_AUDIO_DRIVER_COREAUDIO, 1, [ ])
  4108. SOURCES="$SOURCES $srcdir/src/audio/coreaudio/*.m"
  4109. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,CoreAudio -Wl,-framework,AudioToolbox"
  4110. SUMMARY_audio="${SUMMARY_audio} coreaudio"
  4111. have_audio=yes
  4112. fi
  4113. # Set up files for the joystick library
  4114. if test x$enable_joystick = xyes; then
  4115. AC_DEFINE(SDL_JOYSTICK_IOKIT, 1, [ ])
  4116. SOURCES="$SOURCES $srcdir/src/joystick/darwin/*.c"
  4117. SOURCES="$SOURCES $srcdir/src/joystick/iphoneos/*.m"
  4118. CheckJoystickMFI
  4119. have_joystick=yes
  4120. fi
  4121. # Set up files for the haptic library
  4122. if test x$enable_haptic = xyes; then
  4123. AC_DEFINE(SDL_HAPTIC_IOKIT, 1, [ ])
  4124. SOURCES="$SOURCES $srcdir/src/haptic/darwin/*.c"
  4125. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,ForceFeedback"
  4126. have_haptic=yes
  4127. fi
  4128. # Set up files for the power library
  4129. if test x$enable_power = xyes; then
  4130. AC_DEFINE(SDL_POWER_MACOSX, 1, [ ])
  4131. SOURCES="$SOURCES $srcdir/src/power/macosx/*.c"
  4132. have_power=yes
  4133. fi
  4134. # Set up files for the filesystem library
  4135. if test x$enable_filesystem = xyes; then
  4136. AC_DEFINE(SDL_FILESYSTEM_COCOA, 1, [ ])
  4137. SOURCES="$SOURCES $srcdir/src/filesystem/cocoa/*.m"
  4138. have_filesystem=yes
  4139. fi
  4140. # Set up files for the timer library
  4141. if test x$enable_timers = xyes; then
  4142. AC_DEFINE(SDL_TIMER_UNIX, 1, [ ])
  4143. SOURCES="$SOURCES $srcdir/src/timer/unix/*.c"
  4144. have_timers=yes
  4145. fi
  4146. # Set up additional files for the file library
  4147. if test x$enable_file = xyes; then
  4148. SOURCES="$SOURCES $srcdir/src/file/cocoa/*.m"
  4149. fi
  4150. # Set up other core UNIX files
  4151. SOURCES="$SOURCES $srcdir/src/core/unix/*.c"
  4152. # The Mac OS X platform requires special setup.
  4153. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lobjc"
  4154. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,CoreVideo"
  4155. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,Cocoa"
  4156. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,Carbon"
  4157. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,IOKit"
  4158. if test x$enable_video_metal = xyes -o x$enable_video_vulkan = xyes; then
  4159. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-weak_framework,QuartzCore -Wl,-weak_framework,Metal"
  4160. fi
  4161. ;;
  4162. *-nacl|*-pnacl)
  4163. ARCH=nacl
  4164. CheckNativeClient
  4165. CheckDummyAudio
  4166. CheckDummyVideo
  4167. CheckOffscreenVideo
  4168. CheckInputEvents
  4169. CheckPTHREAD
  4170. CheckO_CLOEXEC
  4171. # Set up files for the timer library
  4172. if test x$enable_timers = xyes; then
  4173. AC_DEFINE(SDL_TIMER_UNIX, 1, [ ])
  4174. SOURCES="$SOURCES $srcdir/src/timer/unix/*.c"
  4175. have_timers=yes
  4176. fi
  4177. if test x$enable_filesystem = xyes; then
  4178. AC_DEFINE(SDL_FILESYSTEM_NACL, 1, [ ])
  4179. SOURCES="$SOURCES $srcdir/src/filesystem/nacl/*.c"
  4180. have_filesystem=yes
  4181. fi
  4182. ;;
  4183. *-*-emscripten* )
  4184. if test x$enable_video = xyes; then
  4185. AC_DEFINE(SDL_VIDEO_DRIVER_EMSCRIPTEN, 1, [ ])
  4186. SOURCES="$SOURCES $srcdir/src/video/emscripten/*.c"
  4187. have_video=yes
  4188. SUMMARY_video="${SUMMARY_video} emscripten"
  4189. fi
  4190. if test x$enable_audio = xyes; then
  4191. AC_DEFINE(SDL_AUDIO_DRIVER_EMSCRIPTEN, 1, [ ])
  4192. SOURCES="$SOURCES $srcdir/src/audio/emscripten/*.c"
  4193. have_audio=yes
  4194. SUMMARY_audio="${SUMMARY_audio} emscripten"
  4195. fi
  4196. CheckVisibilityHidden
  4197. CheckWerror
  4198. CheckDeclarationAfterStatement
  4199. CheckDummyVideo
  4200. CheckOffscreenVideo
  4201. CheckDiskAudio
  4202. CheckDummyAudio
  4203. CheckPTHREAD
  4204. CheckDLOPEN
  4205. CheckClockGettime
  4206. CheckEmscriptenGLES
  4207. # Set up files for the misc library
  4208. if test x$enable_misc = xyes; then
  4209. SOURCES="$SOURCES $srcdir/src/misc/emscripten/*.c"
  4210. have_misc=yes
  4211. fi
  4212. # Set up files for the power library
  4213. if test x$enable_power = xyes; then
  4214. AC_DEFINE(SDL_POWER_EMSCRIPTEN, 1, [ ])
  4215. SOURCES="$SOURCES $srcdir/src/power/emscripten/*.c"
  4216. have_power=yes
  4217. fi
  4218. # Set up files for the joystick library
  4219. if test x$enable_joystick = xyes; then
  4220. AC_DEFINE(SDL_JOYSTICK_EMSCRIPTEN, 1, [ ])
  4221. SOURCES="$SOURCES $srcdir/src/joystick/emscripten/*.c"
  4222. have_joystick=yes
  4223. fi
  4224. # Set up files for the filesystem library
  4225. if test x$enable_filesystem = xyes; then
  4226. AC_DEFINE(SDL_FILESYSTEM_EMSCRIPTEN, 1, [ ])
  4227. SOURCES="$SOURCES $srcdir/src/filesystem/emscripten/*.c"
  4228. have_filesystem=yes
  4229. fi
  4230. # Set up files for the timer library
  4231. if test x$enable_timers = xyes; then
  4232. AC_DEFINE(SDL_TIMER_UNIX, 1, [ ])
  4233. SOURCES="$SOURCES $srcdir/src/timer/unix/*.c"
  4234. have_timers=yes
  4235. fi
  4236. # Set up files for the locale library
  4237. if test x$enable_locale = xyes; then
  4238. SOURCES="$SOURCES $srcdir/src/locale/emscripten/*.c"
  4239. have_locale=yes
  4240. fi
  4241. ;;
  4242. *-*-riscos*)
  4243. ARCH=riscos
  4244. CheckVisibilityHidden
  4245. CheckWerror
  4246. CheckDeclarationAfterStatement
  4247. CheckDummyVideo
  4248. CheckOffscreenVideo
  4249. CheckDiskAudio
  4250. CheckDummyAudio
  4251. CheckDLOPEN
  4252. CheckO_CLOEXEC
  4253. CheckOSS
  4254. CheckPTHREAD
  4255. CheckClockGettime
  4256. # Set up files for the misc library
  4257. if test x$enable_misc = xyes; then
  4258. SOURCES="$SOURCES $srcdir/src/misc/riscos/*.c"
  4259. have_misc=yes
  4260. fi
  4261. # Set up files for the video library
  4262. if test x$enable_video = xyes; then
  4263. AC_DEFINE(SDL_VIDEO_DRIVER_RISCOS, 1, [ ])
  4264. SOURCES="$SOURCES $srcdir/src/video/riscos/*.c"
  4265. have_video=yes
  4266. SUMMARY_video="${SUMMARY_video} riscos"
  4267. fi
  4268. # Set up files for the filesystem library
  4269. if test x$enable_filesystem = xyes; then
  4270. AC_DEFINE(SDL_FILESYSTEM_RISCOS, 1, [ ])
  4271. SOURCES="$SOURCES $srcdir/src/filesystem/riscos/*.c"
  4272. have_filesystem=yes
  4273. fi
  4274. # Set up files for the timer library
  4275. if test x$enable_timers = xyes; then
  4276. AC_DEFINE(SDL_TIMER_UNIX, 1, [ ])
  4277. SOURCES="$SOURCES $srcdir/src/timer/unix/*.c"
  4278. have_timers=yes
  4279. fi
  4280. ;;
  4281. *-*-os2*)
  4282. ARCH=os2
  4283. if test "$build" != "$host"; then # cross-compiling
  4284. # Default cross-compile location
  4285. ac_default_prefix=/@unixroot/usr/local/cross-tools/$host
  4286. else
  4287. # Look for the location of the tools and install there
  4288. if test "$BUILD_PREFIX" != ""; then
  4289. ac_default_prefix=$BUILD_PREFIX
  4290. fi
  4291. fi
  4292. enable_static=no # disable static builds
  4293. EXTRA_CFLAGS="$EXTRA_CFLAGS -DBUILD_SDL -DOS2EMX_PLAIN_CHAR"
  4294. CheckOS2
  4295. CheckWerror
  4296. CheckDeclarationAfterStatement
  4297. CheckDummyVideo
  4298. CheckDiskAudio
  4299. CheckDummyAudio
  4300. CheckHIDAPI
  4301. # Set up the core platform files
  4302. SOURCES="$SOURCES $srcdir/src/core/os2/*.c"
  4303. if test x$enable_system_iconv = xyes; then
  4304. if test x$ac_cv_func_iconv != xyes -o x$ac_cv_header_iconv_h != xyes; then
  4305. SOURCES="$SOURCES $srcdir/src/core/os2/geniconv/*.c"
  4306. fi
  4307. fi
  4308. # Use the Unix locale APIs.
  4309. if test x$enable_locale = xyes; then
  4310. SOURCES="$SOURCES $srcdir/src/locale/unix/*.c"
  4311. have_locale=yes
  4312. fi
  4313. # Set up files for the video library
  4314. if test x$enable_video = xyes; then
  4315. AC_DEFINE(SDL_VIDEO_DRIVER_OS2, 1, [ ])
  4316. SOURCES="$SOURCES $srcdir/src/video/os2/*.c"
  4317. have_video=yes
  4318. SUMMARY_video="${SUMMARY_video} OS/2"
  4319. fi
  4320. # Set up files for the audio library
  4321. if test x$enable_audio = xyes; then
  4322. AC_DEFINE(SDL_AUDIO_DRIVER_OS2, 1, [ ])
  4323. SOURCES="$SOURCES $srcdir/src/audio/os2/*.c"
  4324. have_audio=yes
  4325. SUMMARY_audio="${SUMMARY_audio} OS/2"
  4326. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lmmpm2"
  4327. fi
  4328. # Set up files for the thread library
  4329. if test x$enable_threads = xyes; then
  4330. AC_DEFINE(SDL_THREAD_OS2, 1, [ ])
  4331. SOURCES="$SOURCES $srcdir/src/thread/os2/*.c"
  4332. SOURCES="$SOURCES $srcdir/src/thread/generic/SDL_syscond.c"
  4333. have_threads=yes
  4334. fi
  4335. # Set up files for the timer library
  4336. if test x$enable_timers = xyes; then
  4337. AC_DEFINE(SDL_TIMER_OS2, 1, [ ])
  4338. SOURCES="$SOURCES $srcdir/src/timer/os2/*.c"
  4339. have_timers=yes
  4340. fi
  4341. # Set up files for the shared object loading library
  4342. if test x$enable_loadso = xyes; then
  4343. AC_DEFINE(SDL_LOADSO_OS2, 1, [ ])
  4344. SOURCES="$SOURCES $srcdir/src/loadso/os2/*.c"
  4345. have_loadso=yes
  4346. fi
  4347. # Set up files for the filesystem library
  4348. if test x$enable_filesystem = xyes; then
  4349. AC_DEFINE(SDL_FILESYSTEM_OS2, 1, [ ])
  4350. SOURCES="$SOURCES $srcdir/src/filesystem/os2/*.c"
  4351. have_filesystem=yes
  4352. fi
  4353. # Set up files for the joystick library
  4354. if test x$enable_joystick = xyes; then
  4355. AC_DEFINE(SDL_JOYSTICK_OS2, 1, [ ])
  4356. SOURCES="$SOURCES $srcdir/src/joystick/os2/*.c"
  4357. have_joystick=yes
  4358. fi
  4359. ;;
  4360. *)
  4361. AC_MSG_ERROR([
  4362. *** Unsupported host: Please add to configure.ac
  4363. ])
  4364. ;;
  4365. esac
  4366. dnl Permit use of virtual joystick APIs on any platform (subject to configure options)
  4367. CheckVirtualJoystick
  4368. # Check whether to install sdl2-config
  4369. AC_MSG_CHECKING(whether to install sdl2-config)
  4370. AC_ARG_ENABLE([sdl2-config],
  4371. [AS_HELP_STRING([--enable-sdl2-config],[Install sdl2-config [default=yes]])],
  4372. [case "${enableval}" in
  4373. yes) enable_sdl2_config="TRUE" ;;
  4374. no) enable_sdl2_config="FALSE" ;;
  4375. *) AC_MSG_ERROR([bad value '${enableval}' for --enable-sdl2-config]) ;;
  4376. esac], [enable_sdl2_config="TRUE"])
  4377. if test "$enable_sdl2_config" = "TRUE"; then
  4378. AC_MSG_RESULT(yes)
  4379. else
  4380. AC_MSG_RESULT(no)
  4381. fi
  4382. AC_SUBST([INSTALL_SDL2_CONFIG], [$enable_sdl2_config])
  4383. AC_ARG_ENABLE([vendor-info],
  4384. [AS_HELP_STRING([--enable-vendor-info=STRING], [Add vendor info to SDL_REVISION])],
  4385. [enable_vendor_info="$enableval"], [enable_vendor_info=])
  4386. AS_IF([test "$enable_vendor_info" = no], [enable_vendor_info=])
  4387. AC_SUBST([SDL_VENDOR_INFO], [$enable_vendor_info])
  4388. # Verify that we have all the platform specific files we need
  4389. if test x$have_audio != xyes; then
  4390. if test x$enable_audio = xyes; then
  4391. AC_DEFINE(SDL_AUDIO_DRIVER_DUMMY, 1, [ ])
  4392. fi
  4393. SOURCES="$SOURCES $srcdir/src/audio/dummy/*.c"
  4394. fi
  4395. if test x$have_video != xyes; then
  4396. if test x$enable_video = xyes; then
  4397. AC_DEFINE(SDL_VIDEO_DRIVER_DUMMY, 1, [ ])
  4398. fi
  4399. SOURCES="$SOURCES $srcdir/src/video/dummy/*.c"
  4400. fi
  4401. if test x$have_misc != xyes; then
  4402. if test x$enable_misc = xyes; then
  4403. AC_DEFINE(SDL_MISC_DUMMY, 1, [ ])
  4404. fi
  4405. SOURCES="$SOURCES $srcdir/src/misc/dummy/*.c"
  4406. fi
  4407. if test x$have_locale != xyes; then
  4408. if test x$enable_locale = xyes; then
  4409. AC_DEFINE(SDL_LOCALE_DUMMY, 1, [ ])
  4410. fi
  4411. SOURCES="$SOURCES $srcdir/src/locale/dummy/*.c"
  4412. fi
  4413. if test x$have_joystick != xyes; then
  4414. if test x$enable_joystick = xyes; then
  4415. AC_DEFINE(SDL_JOYSTICK_DUMMY, 1, [ ])
  4416. fi
  4417. SOURCES="$SOURCES $srcdir/src/joystick/dummy/*.c"
  4418. fi
  4419. if test x$have_haptic != xyes; then
  4420. if test x$enable_haptic = xyes; then
  4421. AC_DEFINE(SDL_HAPTIC_DUMMY, 1, [ ])
  4422. fi
  4423. SOURCES="$SOURCES $srcdir/src/haptic/dummy/*.c"
  4424. fi
  4425. if test x$have_sensor != xyes; then
  4426. if test x$enable_sensor = xyes; then
  4427. AC_DEFINE(SDL_SENSOR_DUMMY, 1, [ ])
  4428. fi
  4429. SOURCES="$SOURCES $srcdir/src/sensor/dummy/*.c"
  4430. fi
  4431. if test x$have_threads != xyes; then
  4432. if test x$enable_threads = xyes; then
  4433. AC_DEFINE(SDL_THREADS_DISABLED, 1, [ ])
  4434. fi
  4435. SOURCES="$SOURCES $srcdir/src/thread/generic/*.c"
  4436. fi
  4437. if test x$have_timers != xyes; then
  4438. if test x$enable_timers = xyes; then
  4439. AC_DEFINE(SDL_TIMER_DUMMY, 1, [ ])
  4440. fi
  4441. SOURCES="$SOURCES $srcdir/src/timer/dummy/*.c"
  4442. fi
  4443. if test x$have_filesystem != xyes; then
  4444. if test x$enable_filesystem = xyes; then
  4445. AC_DEFINE(SDL_FILESYSTEM_DUMMY, 1, [ ])
  4446. fi
  4447. SOURCES="$SOURCES $srcdir/src/filesystem/dummy/*.c"
  4448. fi
  4449. if test x$have_loadso != xyes; then
  4450. if test x$enable_loadso = xyes; then
  4451. AC_DEFINE(SDL_LOADSO_DUMMY, 1, [ ])
  4452. fi
  4453. SOURCES="$SOURCES $srcdir/src/loadso/dummy/*.c"
  4454. fi
  4455. if test x$SDLMAIN_SOURCES = x; then
  4456. SDLMAIN_SOURCES="$srcdir/src/main/dummy/*.c"
  4457. fi
  4458. SDLTEST_SOURCES="$srcdir/src/test/*.c"
  4459. if test x$video_wayland = xyes; then
  4460. WAYLAND_PROTOCOLS=`cd $srcdir/wayland-protocols ; for p in *.xml ; do printf '%s' "\$p" |sed 's,\\.xml\$, ,g' ; done`
  4461. WAYLAND_PROTOCOLS_SOURCES=`for p in $WAYLAND_PROTOCOLS ; do printf '%s' "\\$(gen)/\$p-protocol.c " ; done`
  4462. WAYLAND_PROTOCOLS_HEADERS=`for p in $WAYLAND_PROTOCOLS ; do printf '%s' "\\$(gen)/\$p-client-protocol.h " ; done`
  4463. GEN_SOURCES="$GEN_SOURCES $WAYLAND_PROTOCOLS_SOURCES"
  4464. GEN_HEADERS="$GEN_HEADERS $WAYLAND_PROTOCOLS_HEADERS"
  4465. WAYLAND_PROTOCOLS_DEPENDS=`for p in $WAYLAND_PROTOCOLS ; do\
  4466. echo ;\
  4467. printf '%s\n' "\\$(gen)/\$p-client-protocol.h: \\$(srcdir)/wayland-protocols/\$p.xml" ;\
  4468. printf '%s\n' " @\\$(SHELL) \\$(auxdir)/mkinstalldirs \\$(gen)" ;\
  4469. printf '%s\n' " \\$(RUN_CMD_GEN)\\$(WAYLAND_SCANNER) client-header \\$< \\$@" ;\
  4470. echo ;\
  4471. printf '%s\n' "\\$(gen)/\$p-protocol.c: \\$(srcdir)/wayland-protocols/\$p.xml" ;\
  4472. printf '%s\n' " @\\$(SHELL) \\$(auxdir)/mkinstalldirs \\$(gen)" ;\
  4473. printf '%s\n' " \\$(RUN_CMD_GEN)\\$(WAYLAND_SCANNER) \\$(WAYLAND_SCANNER_CODE_MODE) \\$< \\$@" ;\
  4474. echo ;\
  4475. printf '%s\n' "\\$(objects)/\$p-protocol.lo: \\$(gen)/\$p-protocol.c \\$(gen)/\$p-client-protocol.h" ;\
  4476. printf '%s\n' " @\\$(SHELL) \\$(auxdir)/mkinstalldirs \\$(objects)" ;\
  4477. printf '%s\n' " \\$(RUN_CMD_CC)\\$(LIBTOOL) --tag=CC --mode=compile \\$(CC) \\$(CFLAGS) \\$(EXTRA_CFLAGS) $DEPENDENCY_TRACKING_OPTIONS -c \\$< -o \\$@" ;\
  4478. done ;\
  4479. echo ;\
  4480. for s in $WAYLAND_SOURCES ; do printf '%s' "\$s:" ; printf ' \$(gen)/%s-client-protocol.h' $WAYLAND_PROTOCOLS ; echo ; done ; echo`
  4481. fi
  4482. OBJECTS=`echo $SOURCES`
  4483. DEPENDS=`echo $SOURCES | tr ' ' '\n'`
  4484. for EXT in asm cc m c S; do
  4485. OBJECTS=`echo "$OBJECTS" | sed 's,[[^ ]]*/\([[^ ]]*\)\.'$EXT',$(objects)/\1.lo,g'`
  4486. DEPENDS=`echo "$DEPENDS" | sed "s,^\\([[^ ]]*\\)/\\([[^ ]]*\\)\\.$EXT\\$,\\\\
  4487. \\$(objects)/\\2.lo: \\1/\\2.$EXT \\$(objects)/.created\\\\
  4488. \\$(RUN_CMD_CC)\\$(LIBTOOL) --tag=CC --mode=compile \\$(CC) \\$(CFLAGS) \\$(EXTRA_CFLAGS) $DEPENDENCY_TRACKING_OPTIONS -c \\$< -o \\$@,g"`
  4489. done
  4490. GEN_OBJECTS=`echo "$GEN_SOURCES" | sed 's,[[^ ]]*/\([[^ ]]*\)\.c,$(objects)/\1.lo,g'`
  4491. VERSION_OBJECTS=`echo $VERSION_SOURCES`
  4492. VERSION_DEPENDS=`echo $VERSION_SOURCES`
  4493. VERSION_OBJECTS=`echo "$VERSION_OBJECTS" | sed 's,[[^ ]]*/\([[^ ]]*\)\.rc,$(objects)/\1.lo,g'`
  4494. VERSION_DEPENDS=`echo "$VERSION_DEPENDS" | sed "s,\\([[^ ]]*\\)/\\([[^ ]]*\\)\\.rc,\\\\
  4495. \\$(objects)/\\2.lo: \\1/\\2.rc \\$(objects)/.created\\\\
  4496. \\$(RUN_CMD_RC)\\$(LIBTOOL) --mode=compile --tag=RC \\$(RC) -i \\$< -o \\$@,g"`
  4497. SDLMAIN_OBJECTS=`echo $SDLMAIN_SOURCES`
  4498. SDLMAIN_DEPENDS=`echo $SDLMAIN_SOURCES`
  4499. SDLMAIN_OBJECTS=`echo "$SDLMAIN_OBJECTS" | sed 's,[[^ ]]*/\([[^ ]]*\)\.c,$(objects)/\1.lo,g'`
  4500. SDLMAIN_DEPENDS=`echo "$SDLMAIN_DEPENDS" | sed "s,\\([[^ ]]*\\)/\\([[^ ]]*\\)\\.c,\\\\
  4501. \\$(objects)/\\2.lo: \\1/\\2.c \\$(objects)/.created\\\\
  4502. \\$(RUN_CMD_CC)\\$(LIBTOOL) --tag=CC --mode=compile \\$(CC) \\$(CFLAGS) \\$(EXTRA_CFLAGS) $DEPENDENCY_TRACKING_OPTIONS -c \\$< -o \\$@,g"`
  4503. SDLTEST_OBJECTS=`echo $SDLTEST_SOURCES`
  4504. SDLTEST_DEPENDS=`echo $SDLTEST_SOURCES`
  4505. SDLTEST_OBJECTS=`echo "$SDLTEST_OBJECTS" | sed 's,[[^ ]]*/\([[^ ]]*\)\.c,$(objects)/\1.lo,g'`
  4506. SDLTEST_DEPENDS=`echo "$SDLTEST_DEPENDS" | sed "s,\\([[^ ]]*\\)/\\([[^ ]]*\\)\\.c,\\\\
  4507. \\$(objects)/\\2.lo: \\1/\\2.c \\$(objects)/.created\\\\
  4508. \\$(RUN_CMD_CC)\\$(LIBTOOL) --tag=CC --mode=compile \\$(CC) \\$(CFLAGS) \\$(EXTRA_CFLAGS) $DEPENDENCY_TRACKING_OPTIONS -c \\$< -o \\$@,g"`
  4509. # Set runtime shared library paths as needed
  4510. if test "x$enable_rpath" = "xyes" -a "x$enable_shared" = "xyes"; then
  4511. if test $ARCH = bsdi -o $ARCH = freebsd -o $ARCH = linux -o $ARCH = netbsd; then
  4512. SDL_RLD_FLAGS="-Wl,-rpath,\${libdir}"
  4513. AC_MSG_CHECKING(for linker option --enable-new-dtags)
  4514. have_enable_new_dtags=no
  4515. save_LDFLAGS="$LDFLAGS"
  4516. LDFLAGS="$LDFLAGS -Wl,--enable-new-dtags"
  4517. AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], [
  4518. have_enable_new_dtags=yes
  4519. SDL_RLD_FLAGS="$SDL_RLD_FLAGS -Wl,--enable-new-dtags"
  4520. ],[])
  4521. LDFLAGS="$save_LDFLAGS"
  4522. AC_MSG_RESULT($have_enable_new_dtags)
  4523. fi
  4524. if test $ARCH = solaris; then
  4525. SDL_RLD_FLAGS="-R\${libdir}"
  4526. fi
  4527. else
  4528. SDL_RLD_FLAGS=""
  4529. fi
  4530. SDL_STATIC_LIBS="$EXTRA_LDFLAGS"
  4531. dnl Calculate the location of the prefix, relative to the cmake folder
  4532. dnl Calculate the location of the prefix, relative to bindir
  4533. pkg_cmakedir='$libdir/cmake/SDL2'
  4534. AX_COMPUTE_RELATIVE_PATHS([pkg_cmakedir:prefix:cmake_prefix_relpath bindir:prefix:bin_prefix_relpath])
  4535. AC_SUBST([cmake_prefix_relpath])
  4536. AC_SUBST([bin_prefix_relpath])
  4537. dnl Expand the cflags and libraries needed by apps using SDL
  4538. AC_SUBST(SDL_CFLAGS)
  4539. AC_SUBST(SDL_LIBS)
  4540. AC_SUBST(SDL_STATIC_LIBS)
  4541. AC_SUBST(SDL_RLD_FLAGS)
  4542. PKGCONFIG_DEPENDS=""
  4543. AC_SUBST(PKGCONFIG_DEPENDS)
  4544. if test x$enable_shared = xyes; then
  4545. PKGCONFIG_LIBS_PRIV="
  4546. Libs.private:"
  4547. ENABLE_SHARED_TRUE=
  4548. ENABLE_SHARED_FALSE="#"
  4549. else
  4550. PKGCONFIG_LIBS_PRIV=
  4551. ENABLE_SHARED_TRUE="#"
  4552. ENABLE_SHARED_FALSE=
  4553. fi
  4554. if test x$enable_static = xyes; then
  4555. ENABLE_STATIC_TRUE=
  4556. ENABLE_STATIC_FALSE="#"
  4557. else
  4558. ENABLE_STATIC_TRUE="#"
  4559. ENABLE_STATIC_FALSE=
  4560. fi
  4561. AC_SUBST(PKGCONFIG_LIBS_PRIV)
  4562. AC_SUBST(ENABLE_SHARED_TRUE)
  4563. AC_SUBST(ENABLE_SHARED_FALSE)
  4564. AC_SUBST(ENABLE_STATIC_TRUE)
  4565. AC_SUBST(ENABLE_STATIC_FALSE)
  4566. dnl Expand the sources and objects needed to build the library
  4567. AC_SUBST(ac_aux_dir)
  4568. AC_SUBST(INCLUDE)
  4569. AC_SUBST(OBJECTS)
  4570. AC_SUBST(GEN_HEADERS)
  4571. AC_SUBST(GEN_OBJECTS)
  4572. AC_SUBST(VERSION_OBJECTS)
  4573. AC_SUBST(SDLMAIN_OBJECTS)
  4574. AC_SUBST(SDLTEST_OBJECTS)
  4575. AC_SUBST(BUILD_CFLAGS)
  4576. AC_SUBST(EXTRA_CFLAGS)
  4577. AC_SUBST(BUILD_LDFLAGS)
  4578. AC_SUBST(EXTRA_LDFLAGS)
  4579. AC_SUBST(WAYLAND_SCANNER)
  4580. AC_SUBST(WAYLAND_SCANNER_CODE_MODE)
  4581. cat >Makefile.rules <<__EOF__
  4582. # Build rules for objects
  4583. -include \$(OBJECTS:.lo=.d)
  4584. # Special dependency for SDL.c, since it depends on SDL_revision.h
  4585. $srcdir/src/SDL.c: update-revision
  4586. $DEPENDS
  4587. $VERSION_DEPENDS
  4588. $SDLMAIN_DEPENDS
  4589. $SDLTEST_DEPENDS
  4590. $WAYLAND_PROTOCOLS_DEPENDS
  4591. __EOF__
  4592. AC_CONFIG_FILES([
  4593. Makefile:Makefile.in:Makefile.rules sdl2-config sdl2-config.cmake sdl2-config-version.cmake SDL2.spec sdl2.pc
  4594. ])
  4595. AC_CONFIG_COMMANDS([sdl2_config],[chmod a+x sdl2-config])
  4596. SUMMARY="SDL2 Configure Summary:\n"
  4597. if test x$enable_shared = xyes; then
  4598. SUMMARY="${SUMMARY}Building Shared Libraries\n"
  4599. fi
  4600. if test x$enable_static = xyes; then
  4601. SUMMARY="${SUMMARY}Building Static Libraries\n"
  4602. fi
  4603. SUMMARY="${SUMMARY}Enabled modules :${SUMMARY_modules}\n"
  4604. SUMMARY="${SUMMARY}Assembly Math :${SUMMARY_math}\n"
  4605. SUMMARY="${SUMMARY}Audio drivers :${SUMMARY_audio}\n"
  4606. SUMMARY="${SUMMARY}Video drivers :${SUMMARY_video}\n"
  4607. if test x$have_x = xyes; then
  4608. SUMMARY="${SUMMARY}X11 libraries :${SUMMARY_video_x11}\n"
  4609. fi
  4610. SUMMARY="${SUMMARY}Input drivers :${SUMMARY_input}\n"
  4611. if test x$have_joystick_virtual = xyes; then
  4612. SUMMARY="${SUMMARY}Enable virtual joystick APIs : YES\n"
  4613. else
  4614. SUMMARY="${SUMMARY}Enable virtual joystick APIs : NO\n"
  4615. fi
  4616. if test x$have_samplerate_h_hdr = xyes; then
  4617. SUMMARY="${SUMMARY}Using libsamplerate : YES\n"
  4618. else
  4619. SUMMARY="${SUMMARY}Using libsamplerate : NO\n"
  4620. fi
  4621. if test x$have_libudev_h_hdr = xyes; then
  4622. SUMMARY="${SUMMARY}Using libudev : YES\n"
  4623. else
  4624. SUMMARY="${SUMMARY}Using libudev : NO\n"
  4625. fi
  4626. if test x$have_dbus_dbus_h_hdr = xyes; then
  4627. SUMMARY="${SUMMARY}Using dbus : YES\n"
  4628. else
  4629. SUMMARY="${SUMMARY}Using dbus : NO\n"
  4630. fi
  4631. if test x$enable_ime = xyes; then
  4632. SUMMARY="${SUMMARY}Using ime : YES\n"
  4633. else
  4634. SUMMARY="${SUMMARY}Using ime : NO\n"
  4635. fi
  4636. if test x$have_ibus_ibus_h_hdr = xyes; then
  4637. SUMMARY="${SUMMARY}Using ibus : YES\n"
  4638. else
  4639. SUMMARY="${SUMMARY}Using ibus : NO\n"
  4640. fi
  4641. if test x$have_fcitx = xyes; then
  4642. SUMMARY="${SUMMARY}Using fcitx : YES\n"
  4643. else
  4644. SUMMARY="${SUMMARY}Using fcitx : NO\n"
  4645. fi
  4646. if test x$WARN_ABOUT_ARM_SIMD_ASM_MIT = xyes; then
  4647. SUMMARY="${SUMMARY}\nSDL is being built with ARM SIMD optimizations, which\n"
  4648. SUMMARY="${SUMMARY}uses code licensed under the MIT license. If this is a\n"
  4649. SUMMARY="${SUMMARY}problem, please disable that code by rerunning the\n"
  4650. SUMMARY="${SUMMARY}configure script with:\n"
  4651. SUMMARY="${SUMMARY}\n --disable-arm-simd\n"
  4652. fi
  4653. if test x$WARN_ABOUT_ARM_NEON_ASM_MIT = xyes; then
  4654. SUMMARY="${SUMMARY}\nSDL is being built with ARM NEON optimizations, which\n"
  4655. SUMMARY="${SUMMARY}uses code licensed under the MIT license. If this is a\n"
  4656. SUMMARY="${SUMMARY}problem, please disable that code by rerunning the\n"
  4657. SUMMARY="${SUMMARY}configure script with:\n"
  4658. SUMMARY="${SUMMARY}\n --disable-arm-neon\n"
  4659. fi
  4660. AC_CONFIG_COMMANDS([summary], [printf "$SUMMARY"], [SUMMARY="$SUMMARY"])
  4661. AC_OUTPUT