configure.ac 159 KB

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