configure.ac 180 KB

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