configure.ac 167 KB

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