configure.in 153 KB

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