configure.ac 183 KB

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