configure.ac 181 KB

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