configure.in 153 KB

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