configure.in 130 KB

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