configure.ac 168 KB

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