configure.ac 154 KB

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