configure.in 130 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594
  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 See if GCC's -Wshadow is supported.
  1063. CheckWarnShadow()
  1064. {
  1065. AC_MSG_CHECKING(for GCC -Wshadow option)
  1066. have_gcc_Wshadow=no
  1067. save_CFLAGS="$CFLAGS"
  1068. CFLAGS="$save_CFLAGS -Wshadow"
  1069. AC_TRY_COMPILE([
  1070. int x = 0;
  1071. ],[
  1072. ],[
  1073. have_gcc_Wshadow=yes
  1074. ])
  1075. AC_MSG_RESULT($have_gcc_Wshadow)
  1076. CFLAGS="$save_CFLAGS"
  1077. if test x$have_gcc_Wshadow = xyes; then
  1078. EXTRA_CFLAGS="$EXTRA_CFLAGS -Wshadow"
  1079. fi
  1080. }
  1081. dnl Check for Wayland
  1082. CheckWayland()
  1083. {
  1084. AC_ARG_ENABLE(video-wayland,
  1085. AC_HELP_STRING([--enable-video-wayland], [use Wayland video driver [[default=yes]]]),
  1086. ,enable_video_wayland=yes)
  1087. AC_ARG_ENABLE(video-wayland-qt-touch,
  1088. AC_HELP_STRING([--enable-video-wayland-qt-touch], [QtWayland server support for Wayland video driver [[default=yes]]]),
  1089. ,enable_video_wayland_qt_touch=yes)
  1090. if test x$enable_video = xyes -a x$enable_video_wayland = xyes; then
  1091. AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
  1092. AC_MSG_CHECKING(for Wayland support)
  1093. video_wayland=no
  1094. if test x$PKG_CONFIG != xno && \
  1095. test x$video_opengl_egl = xyes && \
  1096. test x$video_opengles_v2 = xyes; then
  1097. if $PKG_CONFIG --exists wayland-client wayland-egl wayland-cursor egl xkbcommon ; then
  1098. WAYLAND_CFLAGS=`$PKG_CONFIG --cflags wayland-client wayland-egl wayland-cursor xkbcommon`
  1099. WAYLAND_LIBS=`$PKG_CONFIG --libs wayland-client wayland-egl wayland-cursor xkbcommon`
  1100. video_wayland=yes
  1101. fi
  1102. fi
  1103. AC_MSG_RESULT($video_wayland)
  1104. if test x$video_wayland = xyes; then
  1105. AC_DEFINE(SDL_VIDEO_DRIVER_WAYLAND, 1, [ ])
  1106. if test x$enable_video_wayland_qt_touch = xyes; then
  1107. AC_DEFINE(SDL_VIDEO_DRIVER_WAYLAND_QT_TOUCH, 1, [ ])
  1108. fi
  1109. SOURCES="$SOURCES $srcdir/src/video/wayland/*.c"
  1110. EXTRA_CFLAGS="$EXTRA_CFLAGS $WAYLAND_CFLAGS"
  1111. AC_ARG_ENABLE(wayland-shared,
  1112. AC_HELP_STRING([--enable-wayland-shared], [dynamically load Wayland support [[default=maybe]]]),
  1113. , enable_wayland_shared=maybe)
  1114. dnl FIXME: Do BSD and OS X need special cases?
  1115. case "$host" in
  1116. *)
  1117. wayland_client_lib=[`find_lib "libwayland-client.so.*" "$WAYLAND_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
  1118. wayland_egl_lib=[`find_lib "libwayland-egl.so.*" "$WAYLAND_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
  1119. if test x$wayland_egl_lib = x; then
  1120. dnl This works in Ubuntu 13.10, maybe others
  1121. wayland_egl_lib=[`find_lib "mesa-egl/libwayland-egl.so.*" "$WAYLAND_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
  1122. fi
  1123. wayland_cursor_lib=[`find_lib "libwayland-cursor.so.*" "$WAYLAND_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
  1124. xkbcommon_lib=[`find_lib "libxkbcommon.so.*" "$WAYLAND_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
  1125. ;;
  1126. esac
  1127. if test x$enable_wayland_shared = xmaybe; then
  1128. enable_wayland_shared=yes
  1129. fi
  1130. if test x$have_loadso != xyes && \
  1131. test x$enable_wayland_shared = xyes; then
  1132. AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic Wayland loading])
  1133. enable_wayland_shared=no
  1134. fi
  1135. if test x$have_loadso = xyes && \
  1136. test x$enable_wayland_shared = xyes && \
  1137. test x$wayland_client_lib != x && \
  1138. test x$wayland_egl_lib != x && \
  1139. test x$wayland_cursor_lib != x && \
  1140. test x$xkbcommon_lib != x; then
  1141. echo "-- dynamic libwayland-client -> $wayland_client_lib"
  1142. echo "-- dynamic libwayland-egl -> $wayland_egl_lib"
  1143. echo "-- dynamic libwayland-cursor -> $wayland_cursor_lib"
  1144. echo "-- dynamic libxkbcommon -> $xkbcommon_lib"
  1145. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_WAYLAND_DYNAMIC, "$wayland_client_lib", [ ])
  1146. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_WAYLAND_DYNAMIC_EGL, "$wayland_egl_lib", [ ])
  1147. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_WAYLAND_DYNAMIC_CURSOR, "$wayland_cursor_lib", [ ])
  1148. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_WAYLAND_DYNAMIC_XKBCOMMON, "$xkbcommon_lib", [ ])
  1149. SUMMARY_video="${SUMMARY_video} wayland(dynamic)"
  1150. else
  1151. enable_wayland_shared=no
  1152. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $WAYLAND_LIBS"
  1153. SUMMARY_video="${SUMMARY_video} wayland"
  1154. fi
  1155. have_video=yes
  1156. fi
  1157. fi
  1158. }
  1159. dnl Check for Mir
  1160. CheckMir()
  1161. {
  1162. AC_ARG_ENABLE(video-mir,
  1163. AC_HELP_STRING([--enable-video-mir], [use Mir video driver [[default=yes]]]),
  1164. ,enable_video_mir=yes)
  1165. if test x$enable_video = xyes -a x$enable_video_mir = xyes; then
  1166. AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
  1167. AC_MSG_CHECKING(for Mir support)
  1168. video_mir=no
  1169. if test x$PKG_CONFIG != xno; then
  1170. if $PKG_CONFIG --exists mirclient egl xkbcommon ; then
  1171. MIR_CFLAGS=`$PKG_CONFIG --cflags mirclient egl xkbcommon`
  1172. MIR_LIBS=`$PKG_CONFIG --libs mirclient egl xkbcommon`
  1173. save_CFLAGS="$CFLAGS"
  1174. CFLAGS="$save_CFLAGS $MIR_CFLAGS"
  1175. dnl This will disable Mir on Ubuntu < 14.04
  1176. AC_TRY_COMPILE([
  1177. #include <mir_toolkit/mir_client_library.h>
  1178. ],[
  1179. MirMotionToolType tool = mir_motion_tool_type_mouse;
  1180. ],[
  1181. video_mir=yes
  1182. ])
  1183. CFLAGS="$save_CFLAGS"
  1184. fi
  1185. fi
  1186. AC_MSG_RESULT($video_mir)
  1187. if test x$video_mir = xyes; then
  1188. AC_DEFINE(SDL_VIDEO_DRIVER_MIR, 1, [ ])
  1189. SOURCES="$SOURCES $srcdir/src/video/mir/*.c"
  1190. EXTRA_CFLAGS="$EXTRA_CFLAGS $MIR_CFLAGS"
  1191. AC_ARG_ENABLE(mir-shared,
  1192. AC_HELP_STRING([--enable-mir-shared], [dynamically load Mir support [[default=maybe]]]),
  1193. , enable_mir_shared=maybe)
  1194. dnl FIXME: Do BSD and OS X need special cases?
  1195. case "$host" in
  1196. *)
  1197. mirclient_lib=[`find_lib "libmirclient.so.*" "$MIR_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
  1198. xkbcommon_lib=[`find_lib "libxkbcommon.so.*" "$MIR_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
  1199. ;;
  1200. esac
  1201. if test x$enable_mir_shared = xmaybe; then
  1202. enable_mir_shared=yes
  1203. fi
  1204. if test x$have_loadso != xyes && \
  1205. test x$enable_mir_shared = xyes; then
  1206. AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic Mir loading])
  1207. enable_mir_shared=no
  1208. fi
  1209. if test x$have_loadso = xyes && \
  1210. test x$enable_mir_shared = xyes && \
  1211. test x$mirclient_lib != x && \
  1212. test x$xkbcommon_lib != x; then
  1213. echo "-- dynamic libmirclient -> $mirclient_lib"
  1214. echo "-- dynamic libxkbcommon -> $xkbcommon_lib"
  1215. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_MIR_DYNAMIC, "$mirclient_lib", [ ])
  1216. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_MIR_DYNAMIC_XKBCOMMON, "$xkbcommon_lib", [ ])
  1217. SUMMARY_video="${SUMMARY_video} mir(dynamic)"
  1218. else
  1219. enable_mir_shared=no
  1220. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $MIR_LIBS"
  1221. SUMMARY_video="${SUMMARY_video} mir"
  1222. fi
  1223. have_video=yes
  1224. fi
  1225. fi
  1226. }
  1227. dnl Check for Native Client stuff
  1228. CheckNativeClient()
  1229. {
  1230. AC_TRY_COMPILE([
  1231. #if !defined(__native_client__)
  1232. #error "NO NACL"
  1233. #endif
  1234. ],[
  1235. ],[
  1236. AC_DEFINE(SDL_VIDEO_DRIVER_NACL)
  1237. AC_DEFINE(SDL_AUDIO_DRIVER_NACL)
  1238. AC_DEFINE(HAVE_POW, 1, [ ])
  1239. AC_DEFINE(HAVE_OPENGLES2, 1, [ ])
  1240. AC_DEFINE(SDL_VIDEO_OPENGL_ES2, 1, [ ])
  1241. AC_DEFINE(SDL_VIDEO_RENDER_OGL_ES2, 1, [ ])
  1242. SDL_LIBS="-lppapi_simple -lppapi_gles2 $SDL_LIBS"
  1243. SDLMAIN_SOURCES="$srcdir/src/main/nacl/*.c"
  1244. SOURCES="$SOURCES $srcdir/src/audio/nacl/*.c"
  1245. SUMMARY_audio="${SUMMARY_audio} nacl"
  1246. SOURCES="$SOURCES $srcdir/src/video/nacl/*.c"
  1247. SUMMARY_video="${SUMMARY_video} nacl opengles2"
  1248. ])
  1249. }
  1250. dnl Find the X11 include and library directories
  1251. CheckX11()
  1252. {
  1253. AC_ARG_ENABLE(video-x11,
  1254. AC_HELP_STRING([--enable-video-x11], [use X11 video driver [[default=yes]]]),
  1255. , enable_video_x11=yes)
  1256. if test x$enable_video = xyes -a x$enable_video_x11 = xyes; then
  1257. case "$host" in
  1258. *-*-darwin*)
  1259. # This isn't necessary for X11, but fixes GLX detection
  1260. if test "x$x_includes" = xNONE && \
  1261. test "x$x_libraries" = xNONE && \
  1262. test -d /usr/X11R6/include && \
  1263. test -d /usr/X11R6/lib; then
  1264. x_includes="/usr/X11R6/include"
  1265. x_libraries="/usr/X11R6/lib"
  1266. fi
  1267. ;;
  1268. esac
  1269. AC_PATH_X
  1270. AC_PATH_XTRA
  1271. if test x$have_x = xyes; then
  1272. AC_ARG_ENABLE(x11-shared,
  1273. AC_HELP_STRING([--enable-x11-shared], [dynamically load X11 support [[default=maybe]]]),
  1274. , enable_x11_shared=maybe)
  1275. case "$host" in
  1276. *-*-darwin*)
  1277. x11_lib='/usr/X11R6/lib/libX11.6.dylib'
  1278. x11ext_lib='/usr/X11R6/lib/libXext.6.dylib'
  1279. xcursor_lib='/usr/X11R6/lib/libXcursor.1.dylib'
  1280. xinerama_lib='/usr/X11R6/lib/libXinerama.1.dylib'
  1281. xinput_lib='/usr/X11R6/lib/libXi.6.dylib'
  1282. xrandr_lib='/usr/X11R6/lib/libXrandr.2.dylib'
  1283. xrender_lib='/usr/X11R6/lib/libXrender.1.dylib'
  1284. xss_lib='/usr/X11R6/lib/libXss.1.dylib'
  1285. xvidmode_lib='/usr/X11R6/lib/libXxf86vm.1.dylib'
  1286. ;;
  1287. *-*-openbsd*)
  1288. x11_lib='libX11.so'
  1289. x11ext_lib='libXext.so'
  1290. xcursor_lib='libXcursor.so'
  1291. xinerama_lib='libXinerama.so'
  1292. xinput_lib='libXi.so'
  1293. xrandr_lib='libXrandr.so'
  1294. xrender_lib='libXrender.so'
  1295. xss_lib='libXss.so'
  1296. xvidmode_lib='libXxf86vm.so'
  1297. ;;
  1298. *)
  1299. x11_lib=[`find_lib "libX11.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
  1300. x11ext_lib=[`find_lib "libXext.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
  1301. xcursor_lib=[`find_lib "libXcursor.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
  1302. xinerama_lib=[`find_lib "libXinerama.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
  1303. xinput_lib=[`find_lib "libXi.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
  1304. xrandr_lib=[`find_lib "libXrandr.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
  1305. xrender_lib=[`find_lib "libXrender.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
  1306. xss_lib=[`find_lib "libXss.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
  1307. xvidmode_lib=[`find_lib "libXxf86vm.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
  1308. ;;
  1309. esac
  1310. if test x$ac_cv_func_shmat != xyes; then
  1311. X_CFLAGS="$X_CFLAGS -DNO_SHARED_MEMORY"
  1312. fi
  1313. CFLAGS="$CFLAGS $X_CFLAGS"
  1314. LDFLAGS="$LDFLAGS $X_LIBS"
  1315. AC_CHECK_HEADER(X11/extensions/Xext.h,
  1316. have_xext_h_hdr=yes,
  1317. have_xext_h_hdr=no,
  1318. [#include <X11/Xlib.h>
  1319. #include <X11/Xproto.h>
  1320. ])
  1321. if test x$have_xext_h_hdr != xyes; then
  1322. AC_MSG_ERROR([
  1323. *** Missing Xext.h, maybe you need to install the libxext-dev package?
  1324. ])
  1325. fi
  1326. AC_DEFINE(SDL_VIDEO_DRIVER_X11, 1, [ ])
  1327. SOURCES="$SOURCES $srcdir/src/video/x11/*.c"
  1328. EXTRA_CFLAGS="$EXTRA_CFLAGS $X_CFLAGS"
  1329. # Needed so SDL applications can include SDL_syswm.h
  1330. SDL_CFLAGS="$SDL_CFLAGS $X_CFLAGS"
  1331. if test x$enable_x11_shared = xmaybe; then
  1332. enable_x11_shared=yes
  1333. fi
  1334. if test x$have_loadso != xyes && \
  1335. test x$enable_x11_shared = xyes; then
  1336. AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic X11 loading])
  1337. enable_x11_shared=no
  1338. fi
  1339. if test x$have_loadso = xyes && \
  1340. test x$enable_x11_shared = xyes && test x$x11_lib != x && test x$x11ext_lib != x; then
  1341. echo "-- dynamic libX11 -> $x11_lib"
  1342. echo "-- dynamic libX11ext -> $x11ext_lib"
  1343. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC, "$x11_lib", [ ])
  1344. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XEXT, "$x11ext_lib", [ ])
  1345. SUMMARY_video="${SUMMARY_video} x11(dynamic)"
  1346. else
  1347. enable_x11_shared=no
  1348. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $X_LIBS -lX11 -lXext"
  1349. SUMMARY_video="${SUMMARY_video} x11"
  1350. fi
  1351. have_video=yes
  1352. AC_MSG_CHECKING(for const parameter to XextAddDisplay)
  1353. have_const_param_XextAddDisplay=no
  1354. AC_TRY_COMPILE([
  1355. #include <X11/Xlib.h>
  1356. #include <X11/Xproto.h>
  1357. #include <X11/extensions/Xext.h>
  1358. #include <X11/extensions/extutil.h>
  1359. extern XExtDisplayInfo* XextAddDisplay(XExtensionInfo* a,Display* b,_Xconst char* c,XExtensionHooks* d,int e,XPointer f);
  1360. ],[
  1361. ],[
  1362. have_const_param_XextAddDisplay=yes
  1363. AC_DEFINE(SDL_VIDEO_DRIVER_X11_CONST_PARAM_XEXTADDDISPLAY)
  1364. ])
  1365. AC_MSG_RESULT($have_const_param_XextAddDisplay)
  1366. AC_MSG_CHECKING(for const parameter to _XData32)
  1367. have_const_param_xdata32=no
  1368. AC_TRY_COMPILE([
  1369. #include <X11/Xlibint.h>
  1370. extern int _XData32(Display *dpy,register _Xconst long *data,unsigned len);
  1371. ],[
  1372. ],[
  1373. have_const_param_xdata32=yes
  1374. AC_DEFINE(SDL_VIDEO_DRIVER_X11_CONST_PARAM_XDATA32)
  1375. ])
  1376. AC_MSG_RESULT($have_const_param_xdata32)
  1377. dnl AC_CHECK_LIB(X11, XGetEventData, AC_DEFINE(SDL_VIDEO_DRIVER_X11_SUPPORTS_GENERIC_EVENTS, 1, [Have XGenericEvent]))
  1378. AC_MSG_CHECKING([for XGenericEvent])
  1379. have_XGenericEvent=no
  1380. AC_TRY_COMPILE([
  1381. #include <X11/Xlib.h>
  1382. ],[
  1383. Display *display;
  1384. XEvent event;
  1385. XGenericEventCookie *cookie = &event.xcookie;
  1386. XNextEvent(display, &event);
  1387. XGetEventData(display, cookie);
  1388. XFreeEventData(display, cookie);
  1389. ],[
  1390. have_XGenericEvent=yes
  1391. AC_DEFINE(SDL_VIDEO_DRIVER_X11_SUPPORTS_GENERIC_EVENTS)
  1392. ])
  1393. AC_MSG_RESULT($have_XGenericEvent)
  1394. AC_CHECK_LIB(X11, XkbKeycodeToKeysym, AC_DEFINE(SDL_VIDEO_DRIVER_X11_HAS_XKBKEYCODETOKEYSYM, 1, [Have XkbKeycodeToKeysym]))
  1395. AC_ARG_ENABLE(video-x11-xcursor,
  1396. AC_HELP_STRING([--enable-video-x11-xcursor], [enable X11 Xcursor support [[default=yes]]]),
  1397. , enable_video_x11_xcursor=yes)
  1398. if test x$enable_video_x11_xcursor = xyes; then
  1399. definitely_enable_video_x11_xcursor=no
  1400. AC_CHECK_HEADER(X11/Xcursor/Xcursor.h,
  1401. have_xcursor_h_hdr=yes,
  1402. have_xcursor_h_hdr=no,
  1403. [#include <X11/Xlib.h>
  1404. ])
  1405. if test x$have_xcursor_h_hdr = xyes; then
  1406. if test x$enable_x11_shared = xyes && test x$xcursor_lib != x ; then
  1407. echo "-- dynamic libXcursor -> $xcursor_lib"
  1408. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XCURSOR, "$xcursor_lib", [ ])
  1409. definitely_enable_video_x11_xcursor=yes
  1410. else
  1411. AC_CHECK_LIB(Xcursor, XcursorImageCreate, have_xcursor_lib=yes)
  1412. if test x$have_xcursor_lib = xyes ; then
  1413. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lXcursor"
  1414. definitely_enable_video_x11_xcursor=yes
  1415. fi
  1416. fi
  1417. fi
  1418. fi
  1419. if test x$definitely_enable_video_x11_xcursor = xyes; then
  1420. AC_DEFINE(SDL_VIDEO_DRIVER_X11_XCURSOR, 1, [ ])
  1421. SUMMARY_video_x11="${SUMMARY_video_x11} xcursor"
  1422. fi
  1423. AC_ARG_ENABLE(video-x11-xinerama,
  1424. AC_HELP_STRING([--enable-video-x11-xinerama], [enable X11 Xinerama support [[default=yes]]]),
  1425. , enable_video_x11_xinerama=yes)
  1426. if test x$enable_video_x11_xinerama = xyes; then
  1427. definitely_enable_video_x11_xinerama=no
  1428. AC_CHECK_HEADER(X11/extensions/Xinerama.h,
  1429. have_xinerama_h_hdr=yes,
  1430. have_xinerama_h_hdr=no,
  1431. [#include <X11/Xlib.h>
  1432. ])
  1433. if test x$have_xinerama_h_hdr = xyes; then
  1434. if test x$enable_x11_shared = xyes && test x$xinerama_lib != x ; then
  1435. echo "-- dynamic libXinerama -> $xinerama_lib"
  1436. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XINERAMA, "$xinerama_lib", [ ])
  1437. definitely_enable_video_x11_xinerama=yes
  1438. else
  1439. AC_CHECK_LIB(Xinerama, XineramaQueryExtension, have_xinerama_lib=yes)
  1440. if test x$have_xinerama_lib = xyes ; then
  1441. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lXinerama"
  1442. definitely_enable_video_x11_xinerama=yes
  1443. fi
  1444. fi
  1445. fi
  1446. fi
  1447. if test x$definitely_enable_video_x11_xinerama = xyes; then
  1448. AC_DEFINE(SDL_VIDEO_DRIVER_X11_XINERAMA, 1, [ ])
  1449. SUMMARY_video_x11="${SUMMARY_video_x11} xinerama"
  1450. fi
  1451. AC_ARG_ENABLE(video-x11-xinput,
  1452. AC_HELP_STRING([--enable-video-x11-xinput], [enable X11 XInput extension for manymouse, tablets, etc [[default=yes]]]),
  1453. , enable_video_x11_xinput=yes)
  1454. if test x$enable_video_x11_xinput = xyes; then
  1455. definitely_enable_video_x11_xinput=no
  1456. AC_CHECK_HEADER(X11/extensions/XInput2.h,
  1457. have_xinput_h_hdr=yes,
  1458. have_xinput_h_hdr=no,
  1459. [#include <X11/Xlib.h>
  1460. ])
  1461. if test x$have_xinput_h_hdr = xyes; then
  1462. if test x$enable_x11_shared = xyes && test x$xinput_lib != x ; then
  1463. echo "-- dynamic libXi -> $xinput_lib"
  1464. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XINPUT2, "$xinput_lib", [ ])
  1465. definitely_enable_video_x11_xinput=yes
  1466. else
  1467. AC_CHECK_LIB(Xi, XOpenDevice, have_xinput_lib=yes)
  1468. if test x$have_xinput_lib = xyes ; then
  1469. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lXi"
  1470. definitely_enable_video_x11_xinput=yes
  1471. fi
  1472. fi
  1473. fi
  1474. fi
  1475. if test x$definitely_enable_video_x11_xinput = xyes; then
  1476. SUMMARY_video_x11="${SUMMARY_video_x11} xinput2"
  1477. AC_DEFINE(SDL_VIDEO_DRIVER_X11_XINPUT2, 1, [ ])
  1478. AC_MSG_CHECKING(for xinput2 multitouch)
  1479. have_xinput2_multitouch=no
  1480. AC_TRY_COMPILE([
  1481. #include <X11/Xlib.h>
  1482. #include <X11/Xproto.h>
  1483. #include <X11/extensions/XInput2.h>
  1484. ],[
  1485. int event_type = XI_TouchBegin;
  1486. XITouchClassInfo *t;
  1487. ],[
  1488. have_xinput2_multitouch=yes
  1489. AC_DEFINE(SDL_VIDEO_DRIVER_X11_XINPUT2_SUPPORTS_MULTITOUCH)
  1490. SUMMARY_video_x11="${SUMMARY_video_x11} xinput2_multitouch"
  1491. ])
  1492. AC_MSG_RESULT($have_xinput2_multitouch)
  1493. fi
  1494. AC_ARG_ENABLE(video-x11-xrandr,
  1495. AC_HELP_STRING([--enable-video-x11-xrandr], [enable X11 Xrandr extension for fullscreen [[default=yes]]]),
  1496. , enable_video_x11_xrandr=yes)
  1497. if test x$enable_video_x11_xrandr = xyes; then
  1498. dnl XRRScreenResources is only present in Xrandr >= 1.2, we use that as a test.
  1499. definitely_enable_video_x11_xrandr=no
  1500. have_xrandr_h_hdr=no
  1501. AC_TRY_COMPILE([
  1502. #include <X11/Xlib.h>
  1503. #include <X11/extensions/Xrandr.h>
  1504. ],[
  1505. XRRScreenResources *res = NULL;
  1506. ],[
  1507. have_xrandr_h_hdr=yes
  1508. ])
  1509. if test x$have_xrandr_h_hdr = xyes; then
  1510. if test x$enable_x11_shared = xyes && test x$xrandr_lib != x ; then
  1511. echo "-- dynamic libXrandr -> $xrandr_lib"
  1512. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XRANDR, "$xrandr_lib", [ ])
  1513. definitely_enable_video_x11_xrandr=yes
  1514. else
  1515. AC_CHECK_LIB(Xrandr, XRRQueryExtension, have_xrandr_lib=yes)
  1516. if test x$have_xrandr_lib = xyes ; then
  1517. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lXrandr"
  1518. definitely_enable_video_x11_xrandr=yes
  1519. fi
  1520. fi
  1521. fi
  1522. fi
  1523. if test x$definitely_enable_video_x11_xrandr = xyes; then
  1524. AC_DEFINE(SDL_VIDEO_DRIVER_X11_XRANDR, 1, [ ])
  1525. SUMMARY_video_x11="${SUMMARY_video_x11} xrandr"
  1526. fi
  1527. AC_ARG_ENABLE(video-x11-scrnsaver,
  1528. AC_HELP_STRING([--enable-video-x11-scrnsaver], [enable X11 screensaver extension [[default=yes]]]),
  1529. , enable_video_x11_scrnsaver=yes)
  1530. if test x$enable_video_x11_scrnsaver = xyes; then
  1531. AC_CHECK_HEADER(X11/extensions/scrnsaver.h,
  1532. have_scrnsaver_h_hdr=yes,
  1533. have_scrnsaver_h_hdr=no,
  1534. [#include <X11/Xlib.h>
  1535. ])
  1536. if test x$have_scrnsaver_h_hdr = xyes; then
  1537. if test x$enable_x11_shared = xyes && test x$xss_lib != x ; then
  1538. echo "-- dynamic libXss -> $xss_lib"
  1539. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XSS, "$xss_lib", [ ])
  1540. definitely_enable_video_x11_scrnsaver=yes
  1541. else
  1542. AC_CHECK_LIB(Xss, XScreenSaverSuspend, have_xss_lib=yes)
  1543. if test x$have_xss_lib = xyes ; then
  1544. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lXss"
  1545. definitely_enable_video_x11_scrnsaver=yes
  1546. fi
  1547. fi
  1548. fi
  1549. fi
  1550. if test x$definitely_enable_video_x11_scrnsaver = xyes; then
  1551. AC_DEFINE(SDL_VIDEO_DRIVER_X11_XSCRNSAVER, 1, [ ])
  1552. SUMMARY_video_x11="${SUMMARY_video_x11} xscrnsaver"
  1553. fi
  1554. AC_ARG_ENABLE(video-x11-xshape,
  1555. AC_HELP_STRING([--enable-video-x11-xshape], [enable X11 XShape support [[default=yes]]]),
  1556. , enable_video_x11_xshape=yes)
  1557. if test x$enable_video_x11_xshape = xyes; then
  1558. AC_CHECK_HEADER(X11/extensions/shape.h,
  1559. have_shape_h_hdr=yes,
  1560. have_shape_h_hdr=no,
  1561. [#include <X11/Xlib.h>
  1562. ])
  1563. if test x$have_shape_h_hdr = xyes; then
  1564. AC_DEFINE(SDL_VIDEO_DRIVER_X11_XSHAPE, 1, [ ])
  1565. SUMMARY_video_x11="${SUMMARY_video_x11} xshape"
  1566. fi
  1567. fi
  1568. AC_ARG_ENABLE(video-x11-vm,
  1569. AC_HELP_STRING([--enable-video-x11-vm], [use X11 VM extension for fullscreen [[default=yes]]]),
  1570. , enable_video_x11_vm=yes)
  1571. if test x$enable_video_x11_vm = xyes; then
  1572. definitely_enable_video_x11_vm=no
  1573. AC_CHECK_HEADER(X11/extensions/xf86vmode.h,
  1574. have_vm_h_hdr=yes,
  1575. have_vm_h_hdr=no,
  1576. [#include <X11/Xlib.h>
  1577. ])
  1578. if test x$have_vm_h_hdr = xyes; then
  1579. if test x$enable_x11_shared = xyes && test x$xvidmode_lib != x ; then
  1580. echo "-- dynamic libXxf86vm -> $xvidmode_lib"
  1581. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XVIDMODE, "$xvidmode_lib", [ ])
  1582. definitely_enable_video_x11_vm=yes
  1583. else
  1584. AC_CHECK_LIB(Xxf86vm, XF86VidModeQueryVersion, have_vm_lib=yes)
  1585. if test x$have_vm_lib = xyes ; then
  1586. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lXxf86vm"
  1587. definitely_enable_video_x11_vm=yes
  1588. fi
  1589. fi
  1590. fi
  1591. fi
  1592. if test x$definitely_enable_video_x11_vm = xyes; then
  1593. AC_DEFINE(SDL_VIDEO_DRIVER_X11_XVIDMODE, 1, [ ])
  1594. SUMMARY_video_x11="${SUMMARY_video_x11} xvidmode"
  1595. fi
  1596. fi
  1597. fi
  1598. }
  1599. dnl Set up the Vivante video driver if enabled
  1600. CheckVivanteVideo()
  1601. {
  1602. AC_ARG_ENABLE(video-vivante,
  1603. AC_HELP_STRING([--enable-video-vivante], [use Vivante EGL video driver [[default=yes]]]),
  1604. , enable_video_vivante=yes)
  1605. if test x$enable_video = xyes -a x$enable_video_vivante = xyes; then
  1606. AC_MSG_CHECKING(for Vivante VDK API)
  1607. have_vivante_vdk=no
  1608. AC_TRY_COMPILE([
  1609. #define LINUX
  1610. #define EGL_API_FB
  1611. #include <gc_vdk.h>
  1612. ],[
  1613. ],[
  1614. have_vivante_vdk=yes
  1615. ])
  1616. AC_MSG_RESULT($have_vivante_vdk)
  1617. AC_MSG_CHECKING(for Vivante FB API)
  1618. have_vivante_egl=no
  1619. AC_TRY_COMPILE([
  1620. #define LINUX
  1621. #define EGL_API_FB
  1622. #include <EGL/eglvivante.h>
  1623. ],[
  1624. ],[
  1625. have_vivante_egl=yes
  1626. ])
  1627. AC_MSG_RESULT($have_vivante_egl)
  1628. if test x$have_vivante_vdk = xyes -o x$have_vivante_egl = xyes; then
  1629. AC_DEFINE(SDL_VIDEO_DRIVER_VIVANTE, 1, [ ])
  1630. EXTRA_CFLAGS="$EXTRA_CFLAGS -DLINUX -DEGL_API_FB"
  1631. if test x$have_vivante_vdk = xyes; then
  1632. AC_DEFINE(SDL_VIDEO_DRIVER_VIVANTE_VDK, 1, [ ])
  1633. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lVDK"
  1634. fi
  1635. SOURCES="$SOURCES $srcdir/src/video/vivante/*.c"
  1636. SUMMARY_video="${SUMMARY_video} vivante"
  1637. have_video=yes
  1638. fi
  1639. fi
  1640. }
  1641. dnl Set up the Haiku video driver if enabled
  1642. CheckHaikuVideo()
  1643. {
  1644. if test x$enable_video = xyes; then
  1645. AC_DEFINE(SDL_VIDEO_DRIVER_HAIKU, 1, [ ])
  1646. SOURCES="$SOURCES $srcdir/src/video/haiku/*.cc"
  1647. have_video=yes
  1648. SUMMARY_video="${SUMMARY_video} haiku"
  1649. fi
  1650. }
  1651. dnl Set up the Cocoa video driver for Mac OS X (but not Darwin)
  1652. CheckCOCOA()
  1653. {
  1654. AC_ARG_ENABLE(video-cocoa,
  1655. AC_HELP_STRING([--enable-video-cocoa], [use Cocoa video driver [[default=yes]]]),
  1656. , enable_video_cocoa=yes)
  1657. if test x$enable_video = xyes -a x$enable_video_cocoa = xyes; then
  1658. save_CFLAGS="$CFLAGS"
  1659. dnl work around that we don't have Objective-C support in autoconf
  1660. CFLAGS="$CFLAGS -x objective-c"
  1661. AC_MSG_CHECKING(for Cocoa framework)
  1662. have_cocoa=no
  1663. AC_TRY_COMPILE([
  1664. #import <Cocoa/Cocoa.h>
  1665. ],[
  1666. ],[
  1667. have_cocoa=yes
  1668. ])
  1669. AC_MSG_RESULT($have_cocoa)
  1670. CFLAGS="$save_CFLAGS"
  1671. if test x$have_cocoa = xyes; then
  1672. AC_DEFINE(SDL_VIDEO_DRIVER_COCOA, 1, [ ])
  1673. SOURCES="$SOURCES $srcdir/src/video/cocoa/*.m"
  1674. SUMMARY_video="${SUMMARY_video} cocoa"
  1675. have_video=yes
  1676. fi
  1677. fi
  1678. }
  1679. dnl Find DirectFB
  1680. CheckDirectFB()
  1681. {
  1682. AC_ARG_ENABLE(video-directfb,
  1683. AC_HELP_STRING([--enable-video-directfb], [use DirectFB video driver [[default=no]]]),
  1684. , enable_video_directfb=no)
  1685. if test x$enable_video = xyes -a x$enable_video_directfb = xyes; then
  1686. video_directfb=no
  1687. DIRECTFB_REQUIRED_VERSION=1.0.0
  1688. AC_PATH_PROGS(DIRECTFBCONFIG, directfb-config, no, [$prefix/bin:$PATH])
  1689. if test x$DIRECTFBCONFIG = xno; then
  1690. AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
  1691. if test x$PKG_CONFIG != xno; then
  1692. if $PKG_CONFIG --atleast-pkgconfig-version 0.7 && $PKG_CONFIG --atleast-version $DIRECTFB_REQUIRED_VERSION directfb; then
  1693. DIRECTFB_CFLAGS=`$PKG_CONFIG --cflags directfb`
  1694. DIRECTFB_LIBS=`$PKG_CONFIG --libs directfb`
  1695. DIRECTFB_PREFIX=`$PKG_CONFIG --variable=prefix directfb`
  1696. video_directfb=yes
  1697. fi
  1698. fi
  1699. else
  1700. set -- `echo $DIRECTFB_REQUIRED_VERSION | sed 's/\./ /g'`
  1701. NEED_VERSION=`expr $1 \* 10000 + $2 \* 100 + $3`
  1702. set -- `$DIRECTFBCONFIG --version | sed 's/\./ /g'`
  1703. HAVE_VERSION=`expr $1 \* 10000 + $2 \* 100 + $3`
  1704. if test $HAVE_VERSION -ge $NEED_VERSION; then
  1705. DIRECTFB_CFLAGS=`$DIRECTFBCONFIG --cflags`
  1706. DIRECTFB_LIBS=`$DIRECTFBCONFIG --libs`
  1707. DIRECTFB_PREFIX=`$DIRECTFBCONFIG --prefix`
  1708. video_directfb=yes
  1709. fi
  1710. fi
  1711. if test x$video_directfb = xyes; then
  1712. # SuSE 11.1 installs directfb-config without directfb-devel
  1713. save_CPPFLAGS="$CPPFLAGS"
  1714. CPPFLAGS="$CPPFLAGS $DIRECTFB_CFLAGS"
  1715. AC_CHECK_HEADER(directfb.h, have_directfb_hdr=yes, have_directfb_hdr=no)
  1716. CPPFLAGS="$save_CPPFLAGS"
  1717. video_directfb=$have_directfb_hdr
  1718. fi
  1719. AC_MSG_CHECKING(for DirectFB $DIRECTFB_REQUIRED_VERSION support)
  1720. AC_MSG_RESULT($video_directfb)
  1721. if test x$video_directfb = xyes; then
  1722. AC_ARG_ENABLE(directfb-shared,
  1723. AC_HELP_STRING([--enable-directfb-shared], [dynamically load directfb support [[default=yes]]]),
  1724. , enable_directfb_shared=yes)
  1725. AC_DEFINE(SDL_VIDEO_DRIVER_DIRECTFB, 1, [ ])
  1726. AC_DEFINE(SDL_VIDEO_RENDER_DIRECTFB, 1, [ ])
  1727. SOURCES="$SOURCES $srcdir/src/video/directfb/*.c"
  1728. EXTRA_CFLAGS="$EXTRA_CFLAGS $DIRECTFB_CFLAGS"
  1729. AC_MSG_CHECKING(for directfb dynamic loading support)
  1730. directfb_shared=no
  1731. directfb_lib=[`find_lib "libdirectfb.so.*" "$DIRECTFB_LIBS"`]
  1732. # | sed 's/.*\/\(.*\)/\1/; q'`]
  1733. AC_MSG_WARN("directfb $directfb_lib")
  1734. if test x$have_loadso != xyes && \
  1735. test x$enable_directfb_shared = xyes; then
  1736. AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic directfb loading])
  1737. fi
  1738. if test x$have_loadso = xyes && \
  1739. test x$enable_directfb_shared = xyes && test x$directfb_lib != x; then
  1740. directfb_shared=yes
  1741. echo "-- $directfb_lib_spec -> $directfb_lib"
  1742. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_DIRECTFB_DYNAMIC, "$directfb_lib", [ ])
  1743. SUMMARY_video="${SUMMARY_video} directfb(dynamic)"
  1744. else
  1745. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $DIRECTFB_LIBS"
  1746. SUMMARY_video="${SUMMARY_video} directfb"
  1747. fi
  1748. AC_MSG_RESULT($directfb_shared)
  1749. SDL_CFLAGS="$SDL_CFLAGS $DIRECTFB_CFLAGS"
  1750. have_video=yes
  1751. fi
  1752. fi
  1753. }
  1754. dnl Find FusionSound
  1755. CheckFusionSound()
  1756. {
  1757. AC_ARG_ENABLE(fusionsound,
  1758. AC_HELP_STRING([--enable-fusionsound], [use FusionSound audio driver [[default=no]]]),
  1759. , enable_fusionsound=no)
  1760. if test x$enable_audio = xyes -a x$enable_fusionsound = xyes; then
  1761. fusionsound=no
  1762. FUSIONSOUND_REQUIRED_VERSION=1.1.1
  1763. AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
  1764. AC_MSG_CHECKING(for FusionSound $FUSIONSOUND_REQUIRED_VERSION support)
  1765. if test x$PKG_CONFIG != xno; then
  1766. if $PKG_CONFIG --atleast-pkgconfig-version 0.7 && $PKG_CONFIG --atleast-version $FUSIONSOUND_REQUIRED_VERSION fusionsound; then
  1767. FUSIONSOUND_CFLAGS=`$PKG_CONFIG --cflags fusionsound`
  1768. FUSIONSOUND_LIBS=`$PKG_CONFIG --libs fusionsound`
  1769. fusionsound=yes
  1770. fi
  1771. fi
  1772. AC_MSG_RESULT($fusionsound)
  1773. if test x$fusionsound = xyes; then
  1774. AC_DEFINE(SDL_AUDIO_DRIVER_FUSIONSOUND, 1, [ ])
  1775. SOURCES="$SOURCES $srcdir/src/audio/fusionsound/*.c"
  1776. EXTRA_CFLAGS="$EXTRA_CFLAGS $FUSIONSOUND_CFLAGS"
  1777. AC_ARG_ENABLE(fusionsound-shared,
  1778. AC_HELP_STRING([--enable-fusionsound-shared], [dynamically load fusionsound audio support [[default=yes]]]),
  1779. , enable_fusionsound_shared=yes)
  1780. fusionsound_shared=no
  1781. AC_MSG_CHECKING(for FusionSound dynamic loading support)
  1782. if test x$have_loadso != xyes && \
  1783. test x$enable_fusionsound_shared = xyes; then
  1784. AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic fusionsound loading])
  1785. fi
  1786. if test x$have_loadso = xyes && \
  1787. test x$enable_fusionsound_shared = xyes; then
  1788. AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_FUSIONSOUND_DYNAMIC, "libfusionsound.so", [ ])
  1789. fusionsound_shared=yes
  1790. SUMMARY_audio="${SUMMARY_audio} fusionsound(dynamic)"
  1791. else
  1792. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $FUSIONSOUND_LIBS"
  1793. SUMMARY_audio="${SUMMARY_audio} fusionsound"
  1794. fi
  1795. AC_MSG_RESULT($fusionsound_shared)
  1796. have_audio=yes
  1797. fi
  1798. fi
  1799. }
  1800. dnl rcg04172001 Set up the Null video driver.
  1801. CheckDummyVideo()
  1802. {
  1803. AC_ARG_ENABLE(video-dummy,
  1804. AC_HELP_STRING([--enable-video-dummy], [use dummy video driver [[default=yes]]]),
  1805. , enable_video_dummy=yes)
  1806. if test x$enable_video_dummy = xyes; then
  1807. AC_DEFINE(SDL_VIDEO_DRIVER_DUMMY, 1, [ ])
  1808. SOURCES="$SOURCES $srcdir/src/video/dummy/*.c"
  1809. have_video=yes
  1810. SUMMARY_video="${SUMMARY_video} dummy"
  1811. fi
  1812. }
  1813. dnl Check to see if OpenGL support is desired
  1814. AC_ARG_ENABLE(video-opengl,
  1815. AC_HELP_STRING([--enable-video-opengl], [include OpenGL support [[default=yes]]]),
  1816. , enable_video_opengl=yes)
  1817. dnl Find OpenGL
  1818. CheckOpenGLX11()
  1819. {
  1820. if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then
  1821. AC_MSG_CHECKING(for OpenGL (GLX) support)
  1822. video_opengl=no
  1823. AC_TRY_COMPILE([
  1824. #include <GL/gl.h>
  1825. #include <GL/glx.h>
  1826. ],[
  1827. ],[
  1828. video_opengl=yes
  1829. ])
  1830. AC_MSG_RESULT($video_opengl)
  1831. if test x$video_opengl = xyes; then
  1832. AC_DEFINE(SDL_VIDEO_OPENGL, 1, [ ])
  1833. AC_DEFINE(SDL_VIDEO_OPENGL_GLX, 1, [ ])
  1834. AC_DEFINE(SDL_VIDEO_RENDER_OGL, 1, [ ])
  1835. SUMMARY_video="${SUMMARY_video} opengl"
  1836. fi
  1837. fi
  1838. }
  1839. dnl Check to see if OpenGL ES support is desired
  1840. AC_ARG_ENABLE(video-opengles,
  1841. AC_HELP_STRING([--enable-video-opengles], [include OpenGL ES support [[default=yes]]]),
  1842. , enable_video_opengles=yes)
  1843. AC_ARG_ENABLE(video-opengles1,
  1844. AC_HELP_STRING([--enable-video-opengles1], [include OpenGL ES 1.1 support [[default=yes]]]),
  1845. , enable_video_opengles1=yes)
  1846. AC_ARG_ENABLE(video-opengles2,
  1847. AC_HELP_STRING([--enable-video-opengles2], [include OpenGL ES 2.0 support [[default=yes]]]),
  1848. , enable_video_opengles2=yes)
  1849. dnl Find OpenGL ES
  1850. CheckOpenGLESX11()
  1851. {
  1852. if test x$enable_video = xyes -a x$enable_video_opengles = xyes; then
  1853. AC_MSG_CHECKING(for EGL support)
  1854. video_opengl_egl=no
  1855. AC_TRY_COMPILE([
  1856. #define LINUX
  1857. #define EGL_API_FB
  1858. #include <EGL/egl.h>
  1859. #include <EGL/eglext.h>
  1860. ],[
  1861. ],[
  1862. video_opengl_egl=yes
  1863. ])
  1864. AC_MSG_RESULT($video_opengl_egl)
  1865. if test x$video_opengl_egl = xyes; then
  1866. AC_DEFINE(SDL_VIDEO_OPENGL_EGL, 1, [ ])
  1867. fi
  1868. if test x$enable_video_opengles1 = xyes; then
  1869. AC_MSG_CHECKING(for OpenGL ES v1 headers)
  1870. video_opengles_v1=no
  1871. AC_TRY_COMPILE([
  1872. #include <GLES/gl.h>
  1873. #include <GLES/glext.h>
  1874. ],[
  1875. ],[
  1876. video_opengles_v1=yes
  1877. ])
  1878. AC_MSG_RESULT($video_opengles_v1)
  1879. if test x$video_opengles_v1 = xyes; then
  1880. AC_DEFINE(SDL_VIDEO_OPENGL_ES, 1, [ ])
  1881. AC_DEFINE(SDL_VIDEO_RENDER_OGL_ES, 1, [ ])
  1882. SUMMARY_video="${SUMMARY_video} opengl_es1"
  1883. fi
  1884. fi
  1885. if test x$enable_video_opengles2 = xyes; then
  1886. AC_MSG_CHECKING(for OpenGL ES v2 headers)
  1887. video_opengles_v2=no
  1888. AC_TRY_COMPILE([
  1889. #include <GLES2/gl2.h>
  1890. #include <GLES2/gl2ext.h>
  1891. ],[
  1892. ],[
  1893. video_opengles_v2=yes
  1894. ])
  1895. AC_MSG_RESULT($video_opengles_v2)
  1896. if test x$video_opengles_v2 = xyes; then
  1897. AC_DEFINE(SDL_VIDEO_OPENGL_ES2, 1, [ ])
  1898. AC_DEFINE(SDL_VIDEO_RENDER_OGL_ES2, 1, [ ])
  1899. SUMMARY_video="${SUMMARY_video} opengl_es2"
  1900. fi
  1901. fi
  1902. fi
  1903. }
  1904. dnl Check for Windows OpenGL
  1905. CheckWINDOWSGL()
  1906. {
  1907. if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then
  1908. AC_DEFINE(SDL_VIDEO_OPENGL, 1, [ ])
  1909. AC_DEFINE(SDL_VIDEO_OPENGL_WGL, 1, [ ])
  1910. AC_DEFINE(SDL_VIDEO_RENDER_OGL, 1, [ ])
  1911. SUMMARY_video="${SUMMARY_video} opengl"
  1912. fi
  1913. }
  1914. dnl Check for Windows OpenGL
  1915. CheckWINDOWSGLES()
  1916. {
  1917. if test x$enable_video = xyes -a x$enable_video_opengles = xyes; then
  1918. AC_MSG_CHECKING(for EGL support)
  1919. video_opengl_egl=no
  1920. AC_TRY_COMPILE([
  1921. #include <EGL/egl.h>
  1922. ],[
  1923. ],[
  1924. video_opengl_egl=yes
  1925. ])
  1926. AC_MSG_RESULT($video_opengl_egl)
  1927. if test x$video_opengl_egl = xyes; then
  1928. AC_DEFINE(SDL_VIDEO_OPENGL, 1, [ ])
  1929. AC_DEFINE(SDL_VIDEO_OPENGL_EGL, 1, [ ])
  1930. SUMMARY_video="${SUMMARY_video} opengl_es1"
  1931. fi
  1932. AC_MSG_CHECKING(for OpenGL ES v2 headers)
  1933. video_opengles_v2=no
  1934. AC_TRY_COMPILE([
  1935. #include <GLES2/gl2.h>
  1936. #include <GLES2/gl2ext.h>
  1937. ],[
  1938. ],[
  1939. video_opengles_v2=yes
  1940. ])
  1941. AC_MSG_RESULT($video_opengles_v2)
  1942. if test x$video_opengles_v2 = xyes; then
  1943. AC_DEFINE(SDL_VIDEO_OPENGL, 1, [ ])
  1944. AC_DEFINE(SDL_VIDEO_OPENGL_ES2, 1, [ ])
  1945. AC_DEFINE(SDL_VIDEO_RENDER_OGL_ES2, 1, [ ])
  1946. SUMMARY_video="${SUMMARY_video} opengl_es2"
  1947. fi
  1948. fi
  1949. }
  1950. dnl Check for Haiku OpenGL
  1951. CheckHaikuGL()
  1952. {
  1953. if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then
  1954. AC_DEFINE(SDL_VIDEO_OPENGL, 1, [ ])
  1955. AC_DEFINE(SDL_VIDEO_OPENGL_HAIKU, 1, [ ])
  1956. AC_DEFINE(SDL_VIDEO_RENDER_OGL, 1, [ ])
  1957. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lGL"
  1958. SUMMARY_video="${SUMMARY_video} opengl"
  1959. fi
  1960. }
  1961. dnl Check for MacOS OpenGL
  1962. CheckMacGL()
  1963. {
  1964. if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then
  1965. AC_DEFINE(SDL_VIDEO_OPENGL, 1, [ ])
  1966. AC_DEFINE(SDL_VIDEO_OPENGL_CGL, 1, [ ])
  1967. AC_DEFINE(SDL_VIDEO_RENDER_OGL, 1, [ ])
  1968. SUMMARY_video="${SUMMARY_video} opengl"
  1969. fi
  1970. }
  1971. CheckEmscriptenGLES()
  1972. {
  1973. if test x$enable_video = xyes -a x$enable_video_opengles = xyes; then
  1974. AC_MSG_CHECKING(for EGL support)
  1975. video_opengl_egl=no
  1976. AC_TRY_COMPILE([
  1977. #include <EGL/egl.h>
  1978. ],[
  1979. ],[
  1980. video_opengl_egl=yes
  1981. ])
  1982. AC_MSG_RESULT($video_opengl_egl)
  1983. if test x$video_opengl_egl = xyes; then
  1984. AC_DEFINE(SDL_VIDEO_OPENGL_EGL, 1, [ ])
  1985. fi
  1986. AC_MSG_CHECKING(for OpenGL ES v2 headers)
  1987. video_opengles_v2=no
  1988. AC_TRY_COMPILE([
  1989. #include <GLES2/gl2.h>
  1990. #include <GLES2/gl2ext.h>
  1991. ],[
  1992. ],[
  1993. video_opengles_v2=yes
  1994. ])
  1995. AC_MSG_RESULT($video_opengles_v2)
  1996. if test x$video_opengles_v2 = xyes; then
  1997. AC_DEFINE(SDL_VIDEO_OPENGL_ES2, 1, [ ])
  1998. AC_DEFINE(SDL_VIDEO_RENDER_OGL_ES2, 1, [ ])
  1999. SUMMARY_video="${SUMMARY_video} opengl_es2"
  2000. fi
  2001. fi
  2002. }
  2003. dnl See if we can use the new unified event interface in Linux 2.4
  2004. CheckInputEvents()
  2005. {
  2006. dnl Check for Linux 2.4 unified input event interface support
  2007. AC_MSG_CHECKING(for Linux 2.4 unified input interface)
  2008. use_input_events=no
  2009. AC_TRY_COMPILE([
  2010. #include <linux/input.h>
  2011. ],[
  2012. #ifndef EVIOCGNAME
  2013. #error EVIOCGNAME() ioctl not available
  2014. #endif
  2015. ],[
  2016. use_input_events=yes
  2017. ])
  2018. AC_MSG_RESULT($use_input_events)
  2019. if test x$use_input_events = xyes; then
  2020. AC_DEFINE(SDL_INPUT_LINUXEV, 1, [ ])
  2021. SUMMARY_input="${SUMMARY_input} linuxev"
  2022. fi
  2023. }
  2024. dnl See if we can use the kernel kd.h header
  2025. CheckInputKD()
  2026. {
  2027. AC_MSG_CHECKING(for Linux kd.h)
  2028. use_input_kd=no
  2029. AC_TRY_COMPILE([
  2030. #include <linux/kd.h>
  2031. #include <linux/keyboard.h>
  2032. ],[
  2033. struct kbentry kbe;
  2034. kbe.kb_table = KG_CTRL;
  2035. ioctl(0, KDGKBENT, &kbe);
  2036. ],[
  2037. use_input_kd=yes
  2038. ])
  2039. AC_MSG_RESULT($use_input_kd)
  2040. if test x$use_input_kd = xyes; then
  2041. AC_DEFINE(SDL_INPUT_LINUXKD, 1, [ ])
  2042. SUMMARY_input="${SUMMARY_input} linuxkd"
  2043. fi
  2044. }
  2045. dnl See if the platform offers libudev for device enumeration and hotplugging.
  2046. CheckLibUDev()
  2047. {
  2048. AC_ARG_ENABLE(libudev,
  2049. AC_HELP_STRING([--enable-libudev], [enable libudev support [[default=yes]]]),
  2050. , enable_libudev=yes)
  2051. if test x$enable_libudev = xyes; then
  2052. AC_CHECK_HEADER(libudev.h,
  2053. have_libudev_h_hdr=yes,
  2054. have_libudev_h_hdr=no)
  2055. if test x$have_libudev_h_hdr = xyes; then
  2056. AC_DEFINE(HAVE_LIBUDEV_H, 1, [ ])
  2057. fi
  2058. fi
  2059. }
  2060. dnl See if the platform offers libdbus for various IPC techniques.
  2061. CheckDBus()
  2062. {
  2063. AC_ARG_ENABLE(dbus,
  2064. AC_HELP_STRING([--enable-dbus], [enable D-Bus support [[default=yes]]]),
  2065. , enable_dbus=yes)
  2066. if test x$enable_dbus = xyes; then
  2067. AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
  2068. if test x$PKG_CONFIG != xno; then
  2069. DBUS_CFLAGS=`$PKG_CONFIG --cflags dbus-1`
  2070. save_CFLAGS="$CFLAGS"
  2071. CFLAGS="$save_CFLAGS $DBUS_CFLAGS"
  2072. AC_CHECK_HEADER(dbus/dbus.h,
  2073. have_dbus_dbus_h_hdr=yes,
  2074. have_dbus_dbus_h_hdr=no)
  2075. CFLAGS="$save_CFLAGS"
  2076. if test x$have_dbus_dbus_h_hdr = xyes; then
  2077. AC_DEFINE(HAVE_DBUS_DBUS_H, 1, [ ])
  2078. EXTRA_CFLAGS="$EXTRA_CFLAGS $DBUS_CFLAGS"
  2079. SOURCES="$SOURCES $srcdir/src/core/linux/SDL_dbus.c"
  2080. fi
  2081. fi
  2082. fi
  2083. }
  2084. dnl See if the platform has libibus IME support.
  2085. CheckIBus()
  2086. {
  2087. AC_ARG_ENABLE(ibus,
  2088. AC_HELP_STRING([--enable-ibus], [enable IBus support [[default=yes]]]),
  2089. , enable_ibus=yes)
  2090. if test x$enable_ibus = xyes; then
  2091. AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
  2092. if test x$PKG_CONFIG != xno; then
  2093. IBUS_CFLAGS=`$PKG_CONFIG --cflags ibus-1.0`
  2094. save_CFLAGS="$CFLAGS"
  2095. CFLAGS="$save_CFLAGS $IBUS_CFLAGS"
  2096. AC_CHECK_HEADER(ibus-1.0/ibus.h,
  2097. have_ibus_ibus_h_hdr=yes,
  2098. have_ibus_ibus_h_hdr=no)
  2099. AC_CHECK_HEADER(sys/inotify.h,
  2100. have_inotify_inotify_h_hdr=yes,
  2101. have_inotify_inotify_h_hdr=no)
  2102. CFLAGS="$save_CFLAGS"
  2103. if test x$have_ibus_ibus_h_hdr = xyes; then
  2104. if test x$enable_dbus != xyes; then
  2105. AC_MSG_WARN([DBus support is required for IBus.])
  2106. have_ibus_ibus_h_hdr=no
  2107. elif test x$have_inotify_inotify_h_hdr != xyes; then
  2108. AC_MSG_WARN([INotify support is required for IBus.])
  2109. have_ibus_ibus_h_hdr=no
  2110. else
  2111. AC_DEFINE(HAVE_IBUS_IBUS_H, 1, [ ])
  2112. EXTRA_CFLAGS="$EXTRA_CFLAGS $IBUS_CFLAGS"
  2113. SOURCES="$SOURCES $srcdir/src/core/linux/SDL_ibus.c"
  2114. fi
  2115. fi
  2116. fi
  2117. fi
  2118. }
  2119. dnl See if we can use the Touchscreen input library
  2120. CheckTslib()
  2121. {
  2122. AC_ARG_ENABLE(input-tslib,
  2123. AC_HELP_STRING([--enable-input-tslib], [use the Touchscreen library for input [[default=yes]]]),
  2124. , enable_input_tslib=yes)
  2125. if test x$enable_input_tslib = xyes; then
  2126. AC_MSG_CHECKING(for Touchscreen library support)
  2127. enable_input_tslib=no
  2128. AC_TRY_COMPILE([
  2129. #include "tslib.h"
  2130. ],[
  2131. ],[
  2132. enable_input_tslib=yes
  2133. ])
  2134. AC_MSG_RESULT($enable_input_tslib)
  2135. if test x$enable_input_tslib = xyes; then
  2136. AC_DEFINE(SDL_INPUT_TSLIB, 1, [ ])
  2137. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lts"
  2138. SUMMARY_input="${SUMMARY_input} ts"
  2139. fi
  2140. fi
  2141. }
  2142. dnl See what type of thread model to use on Linux and Solaris
  2143. CheckPTHREAD()
  2144. {
  2145. dnl Check for pthread support
  2146. AC_ARG_ENABLE(pthreads,
  2147. AC_HELP_STRING([--enable-pthreads], [use POSIX threads for multi-threading [[default=yes]]]),
  2148. , enable_pthreads=yes)
  2149. dnl This is used on Linux for glibc binary compatibility (Doh!)
  2150. AC_ARG_ENABLE(pthread-sem,
  2151. AC_HELP_STRING([--enable-pthread-sem], [use pthread semaphores [[default=yes]]]),
  2152. , enable_pthread_sem=yes)
  2153. case "$host" in
  2154. *-*-androideabi*)
  2155. pthread_cflags="-D_REENTRANT -D_THREAD_SAFE"
  2156. pthread_lib=""
  2157. ;;
  2158. *-*-linux*|*-*-uclinux*)
  2159. pthread_cflags="-D_REENTRANT"
  2160. pthread_lib="-lpthread"
  2161. ;;
  2162. *-*-bsdi*)
  2163. pthread_cflags="-D_REENTRANT -D_THREAD_SAFE"
  2164. pthread_lib=""
  2165. ;;
  2166. *-*-darwin*)
  2167. pthread_cflags="-D_THREAD_SAFE"
  2168. # causes Carbon.p complaints?
  2169. # pthread_cflags="-D_REENTRANT -D_THREAD_SAFE"
  2170. ;;
  2171. *-*-freebsd*|*-*-dragonfly*)
  2172. pthread_cflags="-D_REENTRANT -D_THREAD_SAFE"
  2173. pthread_lib="-pthread"
  2174. ;;
  2175. *-*-netbsd*)
  2176. pthread_cflags="-D_REENTRANT -D_THREAD_SAFE"
  2177. pthread_lib="-lpthread"
  2178. ;;
  2179. *-*-openbsd*)
  2180. pthread_cflags="-D_REENTRANT"
  2181. pthread_lib="-pthread"
  2182. ;;
  2183. *-*-solaris2.9)
  2184. # From Solaris 9+, posix4's preferred name is rt.
  2185. pthread_cflags="-D_REENTRANT"
  2186. pthread_lib="-lpthread -lrt"
  2187. ;;
  2188. *-*-solaris2.10)
  2189. # Solaris 10+ merged pthread into libc.
  2190. pthread_cflags="-D_REENTRANT"
  2191. pthread_lib="-lrt"
  2192. ;;
  2193. *-*-solaris*)
  2194. # Solaris 11+ merged rt into libc.
  2195. pthread_cflags="-D_REENTRANT"
  2196. pthread_lib=""
  2197. ;;
  2198. *-*-sysv5*)
  2199. pthread_cflags="-D_REENTRANT -Kthread"
  2200. pthread_lib=""
  2201. ;;
  2202. *-*-aix*)
  2203. pthread_cflags="-D_REENTRANT -mthreads"
  2204. pthread_lib="-lpthread"
  2205. ;;
  2206. *-*-hpux11*)
  2207. pthread_cflags="-D_REENTRANT"
  2208. pthread_lib="-L/usr/lib -lpthread"
  2209. ;;
  2210. *-*-haiku*)
  2211. pthread_cflags="-D_REENTRANT"
  2212. pthread_lib=""
  2213. ;;
  2214. *)
  2215. pthread_cflags="-D_REENTRANT"
  2216. pthread_lib="-lpthread"
  2217. ;;
  2218. esac
  2219. if test x$enable_threads = xyes -a x$enable_pthreads = xyes; then
  2220. # Save the original compiler flags and libraries
  2221. ac_save_cflags="$CFLAGS"; ac_save_libs="$LIBS"
  2222. # Add the pthread compiler flags and libraries
  2223. CFLAGS="$CFLAGS $pthread_cflags"; LIBS="$LIBS $pthread_lib"
  2224. # Check to see if we have pthread support on this system
  2225. AC_MSG_CHECKING(for pthreads)
  2226. use_pthreads=no
  2227. AC_TRY_LINK([
  2228. #include <pthread.h>
  2229. ],[
  2230. pthread_attr_t type;
  2231. pthread_attr_init(&type);
  2232. ],[
  2233. use_pthreads=yes
  2234. ])
  2235. AC_MSG_RESULT($use_pthreads)
  2236. # Restore the compiler flags and libraries
  2237. CFLAGS="$ac_save_cflags"; LIBS="$ac_save_libs"
  2238. # Do futher testing if we have pthread support...
  2239. if test x$use_pthreads = xyes; then
  2240. AC_DEFINE(SDL_THREAD_PTHREAD, 1, [ ])
  2241. EXTRA_CFLAGS="$EXTRA_CFLAGS $pthread_cflags"
  2242. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $pthread_lib"
  2243. SDL_CFLAGS="$SDL_CFLAGS $pthread_cflags"
  2244. SDL_LIBS="$SDL_LIBS $pthread_lib"
  2245. # Save the original compiler flags and libraries
  2246. ac_save_cflags="$CFLAGS"; ac_save_libs="$LIBS"
  2247. # Add the pthread compiler flags and libraries
  2248. CFLAGS="$CFLAGS $pthread_cflags"; LIBS="$LIBS $pthread_lib"
  2249. # Check to see if recursive mutexes are available
  2250. AC_MSG_CHECKING(for recursive mutexes)
  2251. has_recursive_mutexes=no
  2252. if test x$has_recursive_mutexes = xno; then
  2253. AC_TRY_LINK([
  2254. #define _GNU_SOURCE 1
  2255. #include <pthread.h>
  2256. ],[
  2257. pthread_mutexattr_t attr;
  2258. pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
  2259. ],[
  2260. has_recursive_mutexes=yes
  2261. AC_DEFINE(SDL_THREAD_PTHREAD_RECURSIVE_MUTEX, 1, [ ])
  2262. ])
  2263. fi
  2264. if test x$has_recursive_mutexes = xno; then
  2265. AC_TRY_LINK([
  2266. #define _GNU_SOURCE 1
  2267. #include <pthread.h>
  2268. ],[
  2269. pthread_mutexattr_t attr;
  2270. pthread_mutexattr_setkind_np(&attr, PTHREAD_MUTEX_RECURSIVE_NP);
  2271. ],[
  2272. has_recursive_mutexes=yes
  2273. AC_DEFINE(SDL_THREAD_PTHREAD_RECURSIVE_MUTEX_NP, 1, [ ])
  2274. ])
  2275. fi
  2276. AC_MSG_RESULT($has_recursive_mutexes)
  2277. # Check to see if pthread semaphore support is missing
  2278. if test x$enable_pthread_sem = xyes; then
  2279. AC_MSG_CHECKING(for pthread semaphores)
  2280. have_pthread_sem=no
  2281. AC_TRY_COMPILE([
  2282. #include <pthread.h>
  2283. #include <semaphore.h>
  2284. ],[
  2285. ],[
  2286. have_pthread_sem=yes
  2287. ])
  2288. AC_MSG_RESULT($have_pthread_sem)
  2289. fi
  2290. if test x$have_pthread_sem = xyes; then
  2291. AC_MSG_CHECKING(for sem_timedwait)
  2292. have_sem_timedwait=no
  2293. AC_TRY_LINK([
  2294. #include <pthread.h>
  2295. #include <semaphore.h>
  2296. ],[
  2297. sem_timedwait(NULL, NULL);
  2298. ],[
  2299. have_sem_timedwait=yes
  2300. AC_DEFINE(HAVE_SEM_TIMEDWAIT)
  2301. ])
  2302. AC_MSG_RESULT($have_sem_timedwait)
  2303. fi
  2304. AC_CHECK_HEADER(pthread_np.h, have_pthread_np_h=yes, have_pthread_np_h=no, [ #include <pthread.h> ])
  2305. if test x$have_pthread_np_h = xyes; then
  2306. AC_DEFINE(HAVE_PTHREAD_NP_H, 1, [ ])
  2307. fi
  2308. # Check to see if pthread naming is available
  2309. AC_MSG_CHECKING(for pthread_setname_np)
  2310. AC_TRY_LINK_FUNC(pthread_setname_np, [
  2311. has_pthread_setname_np=yes
  2312. AC_DEFINE(HAVE_PTHREAD_SETNAME_NP, 1, [ ])
  2313. ],[
  2314. has_pthread_setname_np=no
  2315. ])
  2316. AC_MSG_RESULT($has_pthread_setname_np)
  2317. AC_MSG_CHECKING(for pthread_set_name_np)
  2318. AC_TRY_LINK_FUNC(pthread_set_name_np, [
  2319. has_pthread_set_name_np=yes
  2320. AC_DEFINE(HAVE_PTHREAD_SET_NAME_NP, 1, [ ])
  2321. ],[
  2322. has_pthread_set_name_np=no
  2323. ])
  2324. AC_MSG_RESULT($has_pthread_set_name_np)
  2325. # Restore the compiler flags and libraries
  2326. CFLAGS="$ac_save_cflags"; LIBS="$ac_save_libs"
  2327. # Basic thread creation functions
  2328. SOURCES="$SOURCES $srcdir/src/thread/pthread/SDL_systhread.c"
  2329. # Semaphores
  2330. # We can fake these with mutexes and condition variables if necessary
  2331. if test x$have_pthread_sem = xyes; then
  2332. SOURCES="$SOURCES $srcdir/src/thread/pthread/SDL_syssem.c"
  2333. else
  2334. SOURCES="$SOURCES $srcdir/src/thread/generic/SDL_syssem.c"
  2335. fi
  2336. # Mutexes
  2337. # We can fake these with semaphores if necessary
  2338. SOURCES="$SOURCES $srcdir/src/thread/pthread/SDL_sysmutex.c"
  2339. # Condition variables
  2340. # We can fake these with semaphores and mutexes if necessary
  2341. SOURCES="$SOURCES $srcdir/src/thread/pthread/SDL_syscond.c"
  2342. # Thread local storage
  2343. SOURCES="$SOURCES $srcdir/src/thread/pthread/SDL_systls.c"
  2344. have_threads=yes
  2345. fi
  2346. fi
  2347. }
  2348. dnl Determine whether the compiler can produce Windows executables
  2349. CheckWINDOWS()
  2350. {
  2351. AC_MSG_CHECKING(Windows compiler)
  2352. have_win32_gcc=no
  2353. AC_TRY_COMPILE([
  2354. #include <windows.h>
  2355. ],[
  2356. ],[
  2357. have_win32_gcc=yes
  2358. ])
  2359. AC_MSG_RESULT($have_win32_gcc)
  2360. if test x$have_win32_gcc != xyes; then
  2361. AC_MSG_ERROR([
  2362. *** Your compiler ($CC) does not produce Windows executables!
  2363. ])
  2364. fi
  2365. AC_MSG_CHECKING(Windows CE)
  2366. have_wince=no
  2367. AC_TRY_COMPILE([
  2368. #if !defined(_WIN32_WCE) && !defined(__MINGW32CE__)
  2369. #error This is not Windows CE
  2370. #endif
  2371. ],[
  2372. ],[
  2373. have_wince=yes
  2374. AC_MSG_ERROR([
  2375. *** Sorry, Windows CE is no longer supported.
  2376. ])
  2377. ])
  2378. AC_MSG_RESULT($have_wince)
  2379. # This fixes Windows stack alignment with newer GCC
  2380. CheckStackBoundary
  2381. }
  2382. dnl Find the DirectX includes and libraries
  2383. CheckDIRECTX()
  2384. {
  2385. AC_ARG_ENABLE(directx,
  2386. AC_HELP_STRING([--enable-directx], [use DirectX for Windows audio/video [[default=yes]]]),
  2387. , enable_directx=yes)
  2388. if test x$enable_directx = xyes; then
  2389. AC_CHECK_HEADER(d3d9.h, have_d3d=yes)
  2390. AC_CHECK_HEADER(d3d11_1.h, have_d3d11=yes)
  2391. AC_CHECK_HEADER(ddraw.h, have_ddraw=yes)
  2392. AC_CHECK_HEADER(dsound.h, have_dsound=yes)
  2393. AC_CHECK_HEADER(dinput.h, have_dinput=yes)
  2394. AC_CHECK_HEADER(dxgi.h, have_dxgi=yes)
  2395. AC_CHECK_HEADER(xaudio2.h, have_xaudio2=yes)
  2396. AC_CHECK_HEADER(xinput.h, have_xinput=yes)
  2397. if test x$have_ddraw = xyes; then
  2398. AC_DEFINE(HAVE_DDRAW_H, 1, [ ])
  2399. fi
  2400. if test x$have_dinput = xyes; then
  2401. AC_DEFINE(HAVE_DINPUT_H, 1, [ ])
  2402. fi
  2403. if test x$have_dsound = xyes; then
  2404. AC_DEFINE(HAVE_DSOUND_H, 1, [ ])
  2405. fi
  2406. if test x$have_dxgi = xyes; then
  2407. AC_DEFINE(HAVE_DXGI_H, 1, [ ])
  2408. fi
  2409. if test x$have_xinput = xyes; then
  2410. AC_DEFINE(HAVE_XINPUT_H, 1, [ ])
  2411. fi
  2412. SUMMARY_video="${SUMMARY_video} directx"
  2413. SUMMARY_audio="${SUMMARY_audio} directx"
  2414. # FIXME: latest Cygwin finds dinput headers, but we die on other win32 headers.
  2415. # FIXME: ...so force it off for now.
  2416. case "$host" in
  2417. *-*-cygwin*)
  2418. have_dinput=false
  2419. ;;
  2420. esac
  2421. fi
  2422. }
  2423. dnl Check for the dlfcn.h interface for dynamically loading objects
  2424. CheckDLOPEN()
  2425. {
  2426. AC_ARG_ENABLE(sdl-dlopen,
  2427. AC_HELP_STRING([--enable-sdl-dlopen], [use dlopen for shared object loading [[default=yes]]]),
  2428. , enable_sdl_dlopen=yes)
  2429. if test x$enable_sdl_dlopen = xyes; then
  2430. AC_MSG_CHECKING(for dlopen)
  2431. have_dlopen=no
  2432. AC_TRY_COMPILE([
  2433. #include <dlfcn.h>
  2434. ],[
  2435. void *handle = dlopen("", RTLD_NOW);
  2436. const char *loaderror = (char *) dlerror();
  2437. ],[
  2438. have_dlopen=yes
  2439. ])
  2440. AC_MSG_RESULT($have_dlopen)
  2441. if test x$have_dlopen = xyes; then
  2442. AC_CHECK_LIB(c, dlopen, EXTRA_LDFLAGS="$EXTRA_LDFLAGS",
  2443. AC_CHECK_LIB(dl, dlopen, EXTRA_LDFLAGS="$EXTRA_LDFLAGS -ldl",
  2444. AC_CHECK_LIB(ltdl, dlopen, EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lltdl")))
  2445. AC_DEFINE(SDL_LOADSO_DLOPEN, 1, [ ])
  2446. SOURCES="$SOURCES $srcdir/src/loadso/dlopen/*.c"
  2447. have_loadso=yes
  2448. fi
  2449. fi
  2450. }
  2451. dnl Check for the usbhid(3) library on *BSD
  2452. CheckUSBHID()
  2453. {
  2454. case "$host" in
  2455. *-*-*bsd*)
  2456. if test x$enable_joystick = xyes; then
  2457. AC_CHECK_LIB(usbhid, hid_init, have_libusbhid=yes)
  2458. if test x$have_libusbhid = xyes; then
  2459. AC_CHECK_HEADER(usbhid.h, [USB_CFLAGS="-DHAVE_USBHID_H"])
  2460. AC_CHECK_HEADER(libusbhid.h, [USB_CFLAGS="-DHAVE_LIBUSBHID_H"])
  2461. USB_LIBS="$USB_LIBS -lusbhid"
  2462. else
  2463. AC_CHECK_HEADER(usb.h, [USB_CFLAGS="-DHAVE_USB_H"])
  2464. AC_CHECK_HEADER(libusb.h, [USB_CFLAGS="-DHAVE_LIBUSB_H"])
  2465. AC_CHECK_LIB(usb, hid_init, [USB_LIBS="$USB_LIBS -lusb"])
  2466. fi
  2467. save_CFLAGS="$CFLAGS"
  2468. CFLAGS="$CFLAGS $USB_CFLAGS"
  2469. AC_MSG_CHECKING(for usbhid)
  2470. have_usbhid=no
  2471. AC_TRY_COMPILE([
  2472. #include <sys/types.h>
  2473. #if defined(HAVE_USB_H)
  2474. #include <usb.h>
  2475. #endif
  2476. #ifdef __DragonFly__
  2477. # include <bus/usb/usb.h>
  2478. # include <bus/usb/usbhid.h>
  2479. #else
  2480. # include <dev/usb/usb.h>
  2481. # include <dev/usb/usbhid.h>
  2482. #endif
  2483. #if defined(HAVE_USBHID_H)
  2484. #include <usbhid.h>
  2485. #elif defined(HAVE_LIBUSB_H)
  2486. #include <libusb.h>
  2487. #elif defined(HAVE_LIBUSBHID_H)
  2488. #include <libusbhid.h>
  2489. #endif
  2490. ],[
  2491. struct report_desc *repdesc;
  2492. struct usb_ctl_report *repbuf;
  2493. hid_kind_t hidkind;
  2494. ],[
  2495. have_usbhid=yes
  2496. ])
  2497. AC_MSG_RESULT($have_usbhid)
  2498. if test x$have_usbhid = xyes; then
  2499. AC_MSG_CHECKING(for ucr_data member of usb_ctl_report)
  2500. have_usbhid_ucr_data=no
  2501. AC_TRY_COMPILE([
  2502. #include <sys/types.h>
  2503. #if defined(HAVE_USB_H)
  2504. #include <usb.h>
  2505. #endif
  2506. #ifdef __DragonFly__
  2507. # include <bus/usb/usb.h>
  2508. # include <bus/usb/usbhid.h>
  2509. #else
  2510. # include <dev/usb/usb.h>
  2511. # include <dev/usb/usbhid.h>
  2512. #endif
  2513. #if defined(HAVE_USBHID_H)
  2514. #include <usbhid.h>
  2515. #elif defined(HAVE_LIBUSB_H)
  2516. #include <libusb.h>
  2517. #elif defined(HAVE_LIBUSBHID_H)
  2518. #include <libusbhid.h>
  2519. #endif
  2520. ],[
  2521. struct usb_ctl_report buf;
  2522. if (buf.ucr_data) { }
  2523. ],[
  2524. have_usbhid_ucr_data=yes
  2525. ])
  2526. if test x$have_usbhid_ucr_data = xyes; then
  2527. USB_CFLAGS="$USB_CFLAGS -DUSBHID_UCR_DATA"
  2528. fi
  2529. AC_MSG_RESULT($have_usbhid_ucr_data)
  2530. AC_MSG_CHECKING(for new usbhid API)
  2531. have_usbhid_new=no
  2532. AC_TRY_COMPILE([
  2533. #include <sys/types.h>
  2534. #if defined(HAVE_USB_H)
  2535. #include <usb.h>
  2536. #endif
  2537. #ifdef __DragonFly__
  2538. #include <bus/usb/usb.h>
  2539. #include <bus/usb/usbhid.h>
  2540. #else
  2541. #include <dev/usb/usb.h>
  2542. #include <dev/usb/usbhid.h>
  2543. #endif
  2544. #if defined(HAVE_USBHID_H)
  2545. #include <usbhid.h>
  2546. #elif defined(HAVE_LIBUSB_H)
  2547. #include <libusb.h>
  2548. #elif defined(HAVE_LIBUSBHID_H)
  2549. #include <libusbhid.h>
  2550. #endif
  2551. ],[
  2552. report_desc_t d;
  2553. hid_start_parse(d, 1, 1);
  2554. ],[
  2555. have_usbhid_new=yes
  2556. ])
  2557. if test x$have_usbhid_new = xyes; then
  2558. USB_CFLAGS="$USB_CFLAGS -DUSBHID_NEW"
  2559. fi
  2560. AC_MSG_RESULT($have_usbhid_new)
  2561. AC_MSG_CHECKING(for struct joystick in machine/joystick.h)
  2562. have_machine_joystick=no
  2563. AC_TRY_COMPILE([
  2564. #include <machine/joystick.h>
  2565. ],[
  2566. struct joystick t;
  2567. ],[
  2568. have_machine_joystick=yes
  2569. ])
  2570. if test x$have_machine_joystick = xyes; then
  2571. AC_DEFINE(SDL_JOYSTICK_USBHID_MACHINE_JOYSTICK_H, 1, [ ])
  2572. fi
  2573. AC_MSG_RESULT($have_machine_joystick)
  2574. AC_DEFINE(SDL_JOYSTICK_USBHID, 1, [ ])
  2575. SOURCES="$SOURCES $srcdir/src/joystick/bsd/*.c"
  2576. EXTRA_CFLAGS="$EXTRA_CFLAGS $USB_CFLAGS"
  2577. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $USB_LIBS"
  2578. have_joystick=yes
  2579. fi
  2580. CFLAGS="$save_CFLAGS"
  2581. fi
  2582. ;;
  2583. esac
  2584. }
  2585. dnl Check for clock_gettime()
  2586. CheckClockGettime()
  2587. {
  2588. AC_ARG_ENABLE(clock_gettime,
  2589. AC_HELP_STRING([--enable-clock_gettime], [use clock_gettime() instead of gettimeofday() on UNIX [[default=yes]]]),
  2590. , enable_clock_gettime=yes)
  2591. if test x$enable_clock_gettime = xyes; then
  2592. AC_CHECK_LIB(rt, clock_gettime, have_clock_gettime=yes)
  2593. if test x$have_clock_gettime = xyes; then
  2594. AC_DEFINE(HAVE_CLOCK_GETTIME, 1, [ ])
  2595. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lrt"
  2596. else
  2597. AC_CHECK_LIB(c, clock_gettime, have_clock_gettime=yes)
  2598. if test x$have_clock_gettime = xyes; then
  2599. AC_DEFINE(HAVE_CLOCK_GETTIME, 1, [ ])
  2600. EXTRA_LDFLAGS="$EXTRA_LDFLAGS"
  2601. fi
  2602. fi
  2603. fi
  2604. }
  2605. dnl Check for a valid linux/version.h
  2606. CheckLinuxVersion()
  2607. {
  2608. AC_CHECK_HEADER(linux/version.h, have_linux_version_h=yes)
  2609. if test x$have_linux_version_h = xyes; then
  2610. EXTRA_CFLAGS="$EXTRA_CFLAGS -DHAVE_LINUX_VERSION_H"
  2611. fi
  2612. }
  2613. dnl Check if we want to use RPATH
  2614. CheckRPATH()
  2615. {
  2616. AC_ARG_ENABLE(rpath,
  2617. AC_HELP_STRING([--enable-rpath], [use an rpath when linking SDL [[default=yes]]]),
  2618. , enable_rpath=yes)
  2619. }
  2620. dnl Set up the configuration based on the host platform!
  2621. case "$host" in
  2622. *-*-linux*|*-*-uclinux*|*-*-gnu*|*-*-k*bsd*-gnu|*-*-bsdi*|*-*-freebsd*|*-*-dragonfly*|*-*-netbsd*|*-*-openbsd*|*-*-sysv5*|*-*-solaris*|*-*-hpux*|*-*-aix*|*-*-minix*)
  2623. case "$host" in
  2624. *-raspberry-linux*)
  2625. # Raspberry Pi
  2626. ARCH=linux
  2627. RPI_CFLAGS="-I/opt/vc/include -I/opt/vc/include/interface/vcos/pthreads -I/opt/vc/include/interface/vmcs_host/linux"
  2628. CFLAGS="$CFLAGS $RPI_CFLAGS"
  2629. SDL_CFLAGS="$SDL_CFLAGS $RPI_CFLAGS"
  2630. EXTRA_CFLAGS="$EXTRA_CFLAGS $RPI_CFLAGS"
  2631. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -L/opt/vc/lib -lbcm_host -ldl"
  2632. if test x$enable_video = xyes; then
  2633. SOURCES="$SOURCES $srcdir/src/video/raspberry/*.c"
  2634. # FIXME: confdefs? Not AC_DEFINE?
  2635. $as_echo "#define SDL_VIDEO_DRIVER_RPI 1" >>confdefs.h
  2636. SUMMARY_video="${SUMMARY_video} rpi"
  2637. fi
  2638. ;;
  2639. *-*-androideabi*)
  2640. # Android
  2641. ARCH=android
  2642. ANDROID_CFLAGS="-DGL_GLEXT_PROTOTYPES"
  2643. CFLAGS="$CFLAGS $ANDROID_CFLAGS"
  2644. SDL_CFLAGS="$SDL_CFLAGS $ANDROID_CFLAGS"
  2645. EXTRA_CFLAGS="$EXTRA_CFLAGS $ANDROID_CFLAGS"
  2646. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -ldl -lGLESv1_CM -lGLESv2 -llog -landroid"
  2647. if test x$enable_video = xyes; then
  2648. SOURCES="$SOURCES $srcdir/src/core/android/*.c $srcdir/src/video/android/*.c"
  2649. # FIXME: confdefs? Not AC_DEFINE?
  2650. $as_echo "#define SDL_VIDEO_DRIVER_ANDROID 1" >>confdefs.h
  2651. SUMMARY_video="${SUMMARY_video} android"
  2652. fi
  2653. ;;
  2654. *-*-linux*) ARCH=linux ;;
  2655. *-*-uclinux*) ARCH=linux ;;
  2656. *-*-kfreebsd*-gnu) ARCH=kfreebsd-gnu ;;
  2657. *-*-knetbsd*-gnu) ARCH=knetbsd-gnu ;;
  2658. *-*-kopenbsd*-gnu) ARCH=kopenbsd-gnu ;;
  2659. *-*-gnu*) ARCH=gnu ;; # must be last of the gnu variants
  2660. *-*-bsdi*) ARCH=bsdi ;;
  2661. *-*-freebsd*) ARCH=freebsd ;;
  2662. *-*-dragonfly*) ARCH=freebsd ;;
  2663. *-*-netbsd*) ARCH=netbsd ;;
  2664. *-*-openbsd*) ARCH=openbsd ;;
  2665. *-*-sysv5*) ARCH=sysv5 ;;
  2666. *-*-solaris*) ARCH=solaris ;;
  2667. *-*-hpux*) ARCH=hpux ;;
  2668. *-*-aix*) ARCH=aix ;;
  2669. *-*-minix*) ARCH=minix ;;
  2670. esac
  2671. CheckVisibilityHidden
  2672. CheckDummyVideo
  2673. CheckDiskAudio
  2674. CheckDummyAudio
  2675. CheckDLOPEN
  2676. CheckOSS
  2677. CheckALSA
  2678. CheckPulseAudio
  2679. CheckARTSC
  2680. CheckESD
  2681. CheckNAS
  2682. CheckSNDIO
  2683. CheckX11
  2684. CheckDirectFB
  2685. CheckFusionSound
  2686. CheckOpenGLX11
  2687. CheckOpenGLESX11
  2688. CheckMir
  2689. CheckWayland
  2690. CheckLibUDev
  2691. CheckDBus
  2692. CheckIBus
  2693. case $ARCH in
  2694. linux)
  2695. CheckInputEvents
  2696. CheckInputKD
  2697. ;;
  2698. esac
  2699. CheckTslib
  2700. CheckUSBHID
  2701. CheckPTHREAD
  2702. CheckClockGettime
  2703. CheckLinuxVersion
  2704. CheckRPATH
  2705. CheckVivanteVideo
  2706. # Set up files for the audio library
  2707. if test x$enable_audio = xyes; then
  2708. case $ARCH in
  2709. sysv5|solaris|hpux)
  2710. AC_DEFINE(SDL_AUDIO_DRIVER_SUNAUDIO, 1, [ ])
  2711. SOURCES="$SOURCES $srcdir/src/audio/sun/*.c"
  2712. have_audio=yes
  2713. ;;
  2714. netbsd) # Don't use this on OpenBSD, it's busted.
  2715. AC_DEFINE(SDL_AUDIO_DRIVER_BSD, 1, [ ])
  2716. SOURCES="$SOURCES $srcdir/src/audio/bsd/*.c"
  2717. have_audio=yes
  2718. ;;
  2719. aix)
  2720. AC_DEFINE(SDL_AUDIO_DRIVER_PAUDIO, 1, [ ])
  2721. SOURCES="$SOURCES $srcdir/src/audio/paudio/*.c"
  2722. have_audio=yes
  2723. ;;
  2724. android)
  2725. AC_DEFINE(SDL_AUDIO_DRIVER_ANDROID, 1, [ ])
  2726. SOURCES="$SOURCES $srcdir/src/audio/android/*.c"
  2727. SUMMARY_audio="${SUMMARY_audio} android"
  2728. have_audio=yes
  2729. ;;
  2730. esac
  2731. fi
  2732. # Set up files for the joystick library
  2733. if test x$enable_joystick = xyes; then
  2734. case $ARCH in
  2735. linux)
  2736. AC_DEFINE(SDL_JOYSTICK_LINUX, 1, [ ])
  2737. SOURCES="$SOURCES $srcdir/src/joystick/linux/*.c"
  2738. have_joystick=yes
  2739. ;;
  2740. android)
  2741. AC_DEFINE(SDL_JOYSTICK_ANDROID, 1, [ ])
  2742. SOURCES="$SOURCES $srcdir/src/joystick/android/*.c"
  2743. have_joystick=yes
  2744. ;;
  2745. esac
  2746. fi
  2747. # Set up files for the haptic library
  2748. if test x$enable_haptic = xyes; then
  2749. if test x$use_input_events = xyes; then
  2750. case $ARCH in
  2751. linux)
  2752. AC_DEFINE(SDL_HAPTIC_LINUX, 1, [ ])
  2753. SOURCES="$SOURCES $srcdir/src/haptic/linux/*.c"
  2754. have_haptic=yes
  2755. ;;
  2756. esac
  2757. fi
  2758. fi
  2759. # Set up files for the power library
  2760. if test x$enable_power = xyes; then
  2761. case $ARCH in
  2762. linux)
  2763. AC_DEFINE(SDL_POWER_LINUX, 1, [ ])
  2764. SOURCES="$SOURCES $srcdir/src/power/linux/*.c"
  2765. have_power=yes
  2766. ;;
  2767. android)
  2768. AC_DEFINE(SDL_POWER_ANDROID, 1, [ ])
  2769. SOURCES="$SOURCES $srcdir/src/power/android/*.c"
  2770. have_power=yes
  2771. ;;
  2772. esac
  2773. fi
  2774. # Set up files for the filesystem library
  2775. if test x$enable_filesystem = xyes; then
  2776. case $ARCH in
  2777. android)
  2778. AC_DEFINE(SDL_FILESYSTEM_ANDROID, 1, [ ])
  2779. SOURCES="$SOURCES $srcdir/src/filesystem/android/*.c"
  2780. have_filesystem=yes
  2781. ;;
  2782. *)
  2783. AC_DEFINE(SDL_FILESYSTEM_UNIX, 1, [ ])
  2784. SOURCES="$SOURCES $srcdir/src/filesystem/unix/*.c"
  2785. have_filesystem=yes
  2786. ;;
  2787. esac
  2788. fi
  2789. # Set up files for the timer library
  2790. if test x$enable_timers = xyes; then
  2791. AC_DEFINE(SDL_TIMER_UNIX, 1, [ ])
  2792. SOURCES="$SOURCES $srcdir/src/timer/unix/*.c"
  2793. have_timers=yes
  2794. fi
  2795. # Set up files for udev hotplugging support
  2796. if test x$enable_libudev = xyes && test x$have_libudev_h_hdr = xyes; then
  2797. SOURCES="$SOURCES $srcdir/src/core/linux/SDL_udev.c"
  2798. fi
  2799. # Set up files for evdev input
  2800. if test x$use_input_events = xyes; then
  2801. SOURCES="$SOURCES $srcdir/src/core/linux/SDL_evdev.c"
  2802. fi
  2803. ;;
  2804. *-*-cygwin* | *-*-mingw32*)
  2805. ARCH=win32
  2806. if test "$build" != "$host"; then # cross-compiling
  2807. # Default cross-compile location
  2808. ac_default_prefix=/usr/local/cross-tools/$host
  2809. else
  2810. # Look for the location of the tools and install there
  2811. if test "$BUILD_PREFIX" != ""; then
  2812. ac_default_prefix=$BUILD_PREFIX
  2813. fi
  2814. fi
  2815. CheckDummyVideo
  2816. CheckDiskAudio
  2817. CheckDummyAudio
  2818. CheckWINDOWS
  2819. CheckWINDOWSGL
  2820. CheckWINDOWSGLES
  2821. CheckDIRECTX
  2822. # Set up the core platform files
  2823. SOURCES="$SOURCES $srcdir/src/core/windows/*.c"
  2824. # Set up files for the video library
  2825. if test x$enable_video = xyes; then
  2826. AC_DEFINE(SDL_VIDEO_DRIVER_WINDOWS, 1, [ ])
  2827. SOURCES="$SOURCES $srcdir/src/video/windows/*.c"
  2828. have_video=yes
  2829. AC_ARG_ENABLE(render-d3d,
  2830. AC_HELP_STRING([--enable-render-d3d], [enable the Direct3D render driver [[default=yes]]]),
  2831. , enable_render_d3d=yes)
  2832. if test x$enable_render_d3d = xyes -a x$have_d3d = xyes; then
  2833. AC_DEFINE(SDL_VIDEO_RENDER_D3D, 1, [ ])
  2834. fi
  2835. if test x$enable_render_d3d = xyes -a x$have_d3d11 = xyes; then
  2836. AC_DEFINE(SDL_VIDEO_RENDER_D3D11, 1, [ ])
  2837. fi
  2838. fi
  2839. # Set up files for the audio library
  2840. if test x$enable_audio = xyes; then
  2841. AC_DEFINE(SDL_AUDIO_DRIVER_WINMM, 1, [ ])
  2842. SOURCES="$SOURCES $srcdir/src/audio/winmm/*.c"
  2843. if test x$have_dsound = xyes; then
  2844. AC_DEFINE(SDL_AUDIO_DRIVER_DSOUND, 1, [ ])
  2845. SOURCES="$SOURCES $srcdir/src/audio/directsound/*.c"
  2846. fi
  2847. if test x$have_xaudio2 = xyes; then
  2848. AC_DEFINE(SDL_AUDIO_DRIVER_XAUDIO2, 1, [ ])
  2849. SOURCES="$SOURCES $srcdir/src/audio/xaudio2/*.c"
  2850. fi
  2851. have_audio=yes
  2852. fi
  2853. # Set up files for the joystick library
  2854. if test x$enable_joystick = xyes; then
  2855. if test x$have_dinput = xyes -o x$have_xinput = xyes; then
  2856. if test x$have_xinput = xyes; then
  2857. AC_DEFINE(SDL_JOYSTICK_XINPUT, 1, [ ])
  2858. fi
  2859. if test x$have_dinput = xyes; then
  2860. AC_DEFINE(SDL_JOYSTICK_DINPUT, 1, [ ])
  2861. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -ldinput8 -ldxguid -ldxerr8"
  2862. fi
  2863. else
  2864. AC_DEFINE(SDL_JOYSTICK_WINMM, 1, [ ])
  2865. fi
  2866. SOURCES="$SOURCES $srcdir/src/joystick/windows/*.c"
  2867. have_joystick=yes
  2868. fi
  2869. if test x$enable_haptic = xyes; then
  2870. if test x$have_dinput = xyes -o x$have_xinput = xyes; then
  2871. if test x$have_xinput = xyes; then
  2872. AC_DEFINE(SDL_HAPTIC_XINPUT, 1, [ ])
  2873. fi
  2874. if test x$have_dinput = xyes; then
  2875. AC_DEFINE(SDL_HAPTIC_DINPUT, 1, [ ])
  2876. fi
  2877. SOURCES="$SOURCES $srcdir/src/haptic/windows/*.c"
  2878. have_haptic=yes
  2879. fi
  2880. fi
  2881. if test x$enable_power = xyes; then
  2882. AC_DEFINE(SDL_POWER_WINDOWS, 1, [ ])
  2883. SOURCES="$SOURCES $srcdir/src/power/windows/SDL_syspower.c"
  2884. have_power=yes
  2885. fi
  2886. if test x$enable_filesystem = xyes; then
  2887. AC_DEFINE(SDL_FILESYSTEM_WINDOWS, 1, [ ])
  2888. SOURCES="$SOURCES $srcdir/src/filesystem/windows/SDL_sysfilesystem.c"
  2889. have_filesystem=yes
  2890. fi
  2891. # Set up files for the thread library
  2892. if test x$enable_threads = xyes; then
  2893. AC_DEFINE(SDL_THREAD_WINDOWS, 1, [ ])
  2894. SOURCES="$SOURCES $srcdir/src/thread/windows/*.c"
  2895. SOURCES="$SOURCES $srcdir/src/thread/generic/SDL_syscond.c"
  2896. have_threads=yes
  2897. fi
  2898. # Set up files for the timer library
  2899. if test x$enable_timers = xyes; then
  2900. AC_DEFINE(SDL_TIMER_WINDOWS, 1, [ ])
  2901. SOURCES="$SOURCES $srcdir/src/timer/windows/*.c"
  2902. have_timers=yes
  2903. fi
  2904. # Set up files for the shared object loading library
  2905. if test x$enable_loadso = xyes; then
  2906. AC_DEFINE(SDL_LOADSO_WINDOWS, 1, [ ])
  2907. SOURCES="$SOURCES $srcdir/src/loadso/windows/*.c"
  2908. have_loadso=yes
  2909. fi
  2910. # Set up the system libraries we need
  2911. if test -f /lib/w32api/libuuid.a; then
  2912. LIBUUID=/lib/w32api/libuuid.a
  2913. else
  2914. LIBUUID=-luuid
  2915. fi
  2916. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -luser32 -lgdi32 -lwinmm -limm32 -lole32 -loleaut32 -lshell32 -lversion $LIBUUID -XCClinker -static-libgcc"
  2917. # The Windows platform requires special setup
  2918. VERSION_SOURCES="$srcdir/src/main/windows/*.rc"
  2919. SDLMAIN_SOURCES="$srcdir/src/main/windows/*.c"
  2920. SDL_CFLAGS="$SDL_CFLAGS -Dmain=SDL_main"
  2921. SDL_LIBS="-lSDL2main $SDL_LIBS -mwindows"
  2922. # Check to see if this is a mingw or cygwin build
  2923. have_mingw32=
  2924. AC_CHECK_LIB(mingw32, main, [have_mingw32=yes])
  2925. if test x$have_mingw32 = xyes; then
  2926. SDL_LIBS="-lmingw32 $SDL_LIBS"
  2927. else
  2928. SDL_LIBS="-lcygwin $SDL_LIBS"
  2929. fi
  2930. ;;
  2931. dnl BeOS support removed after SDL 2.0.1. Haiku still works. --ryan.
  2932. *-*-beos*)
  2933. AC_MSG_ERROR([
  2934. *** BeOS support has been removed as of SDL 2.0.2.
  2935. ])
  2936. ;;
  2937. *-*-haiku*)
  2938. ARCH=haiku
  2939. ac_default_prefix=/boot/system
  2940. CheckDummyVideo
  2941. CheckDiskAudio
  2942. CheckDummyAudio
  2943. CheckHaikuVideo
  2944. CheckHaikuGL
  2945. CheckPTHREAD
  2946. # Set up files for the audio library
  2947. if test x$enable_audio = xyes; then
  2948. AC_DEFINE(SDL_AUDIO_DRIVER_HAIKU, 1, [ ])
  2949. SOURCES="$SOURCES $srcdir/src/audio/haiku/*.cc"
  2950. have_audio=yes
  2951. fi
  2952. # Set up files for the joystick library
  2953. if test x$enable_joystick = xyes; then
  2954. AC_DEFINE(SDL_JOYSTICK_HAIKU, 1, [ ])
  2955. SOURCES="$SOURCES $srcdir/src/joystick/haiku/*.cc"
  2956. have_joystick=yes
  2957. fi
  2958. # Set up files for the timer library
  2959. if test x$enable_timers = xyes; then
  2960. AC_DEFINE(SDL_TIMER_HAIKU, 1, [ ])
  2961. SOURCES="$SOURCES $srcdir/src/timer/haiku/*.c"
  2962. have_timers=yes
  2963. fi
  2964. # Set up files for the shared object loading library
  2965. if test x$enable_loadso = xyes; then
  2966. AC_DEFINE(SDL_LOADSO_HAIKU, 1, [ ])
  2967. SOURCES="$SOURCES $srcdir/src/loadso/haiku/*.c"
  2968. have_loadso=yes
  2969. fi
  2970. # Set up files for the system power library
  2971. if test x$enable_power = xyes; then
  2972. AC_DEFINE(SDL_POWER_HAIKU, 1, [ ])
  2973. SOURCES="$SOURCES $srcdir/src/power/haiku/*.c"
  2974. have_power=yes
  2975. fi
  2976. # Set up files for the system filesystem library
  2977. if test x$enable_filesystem = xyes; then
  2978. AC_DEFINE(SDL_FILESYSTEM_HAIKU, 1, [ ])
  2979. SOURCES="$SOURCES $srcdir/src/filesystem/haiku/*.cc"
  2980. have_filesystem=yes
  2981. fi
  2982. # The Haiku platform requires special setup.
  2983. SOURCES="$srcdir/src/main/haiku/*.cc $SOURCES"
  2984. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lroot -lbe -lmedia -lgame -ldevice -ltextencoding"
  2985. ;;
  2986. arm*-apple-darwin*)
  2987. # iOS - We are not writing anything to confdefs.h because you have to replace
  2988. # SDL_config.h for SDL_config_iphoneos.h anyway
  2989. ARCH=ios
  2990. CheckVisibilityHidden
  2991. CheckDummyVideo
  2992. CheckDiskAudio
  2993. CheckDummyAudio
  2994. CheckDLOPEN
  2995. CheckCOCOA
  2996. CheckPTHREAD
  2997. # Set up files for the audio library
  2998. if test x$enable_audio = xyes; then
  2999. SOURCES="$SOURCES $srcdir/src/audio/coreaudio/*.c"
  3000. SUMMARY_audio="${SUMMARY_audio} coreaudio"
  3001. have_audio=yes
  3002. fi
  3003. # Set up files for the joystick library
  3004. if test x$enable_joystick = xyes; then
  3005. SOURCES="$SOURCES $srcdir/src/joystick/iphoneos/*.m"
  3006. have_joystick=yes
  3007. fi
  3008. # Set up files for the haptic library
  3009. #if test x$enable_haptic = xyes; then
  3010. # SOURCES="$SOURCES $srcdir/src/haptic/darwin/*.c"
  3011. # have_haptic=yes
  3012. # EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,ForceFeedback"
  3013. #fi
  3014. # Set up files for the power library
  3015. if test x$enable_power = xyes; then
  3016. SOURCES="$SOURCES $srcdir/src/power/uikit/*.m"
  3017. have_power=yes
  3018. fi
  3019. # Set up files for the filesystem library
  3020. if test x$enable_filesystem = xyes; then
  3021. SOURCES="$SOURCES $srcdir/src/filesystem/cocoa/*.m"
  3022. have_filesystem=yes
  3023. fi
  3024. # Set up files for the timer library
  3025. if test x$enable_timers = xyes; then
  3026. SOURCES="$SOURCES $srcdir/src/timer/unix/*.c"
  3027. have_timers=yes
  3028. fi
  3029. # Set up additional files for the file library
  3030. if test x$enable_file = xyes; then
  3031. SOURCES="$SOURCES $srcdir/src/file/cocoa/*.m"
  3032. fi
  3033. # The iOS platform requires special setup.
  3034. SOURCES="$SOURCES $srcdir/src/video/uikit/*.m"
  3035. EXTRA_CFLAGS="$EXTRA_CFLAGS -fpascal-strings"
  3036. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lm -liconv -lobjc"
  3037. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,Foundation"
  3038. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,UIKit"
  3039. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,OpenGLES"
  3040. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,QuartzCore"
  3041. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,CoreAudio"
  3042. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,AudioToolbox"
  3043. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,CoreGraphics"
  3044. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,CoreMotion"
  3045. ;;
  3046. *-*-darwin* )
  3047. # This could be either full "Mac OS X", or plain "Darwin" which is
  3048. # just the OS X kernel sans upper layers like Carbon and Cocoa.
  3049. # Next line is broken, and a few files below require Mac OS X (full)
  3050. ARCH=macosx
  3051. # Mac OS X builds with both the Carbon and OSX APIs at the moment
  3052. EXTRA_CFLAGS="$EXTRA_CFLAGS -DTARGET_API_MAC_CARBON"
  3053. EXTRA_CFLAGS="$EXTRA_CFLAGS -DTARGET_API_MAC_OSX"
  3054. CheckVisibilityHidden
  3055. CheckDummyVideo
  3056. CheckDiskAudio
  3057. CheckDummyAudio
  3058. CheckDLOPEN
  3059. CheckCOCOA
  3060. CheckX11
  3061. CheckMacGL
  3062. CheckOpenGLX11
  3063. CheckPTHREAD
  3064. # Set up files for the audio library
  3065. if test x$enable_audio = xyes; then
  3066. AC_DEFINE(SDL_AUDIO_DRIVER_COREAUDIO, 1, [ ])
  3067. SOURCES="$SOURCES $srcdir/src/audio/coreaudio/*.c"
  3068. SUMMARY_audio="${SUMMARY_audio} coreaudio"
  3069. have_audio=yes
  3070. fi
  3071. # Set up files for the joystick library
  3072. if test x$enable_joystick = xyes; then
  3073. AC_DEFINE(SDL_JOYSTICK_IOKIT, 1, [ ])
  3074. SOURCES="$SOURCES $srcdir/src/joystick/darwin/*.c"
  3075. have_joystick=yes
  3076. fi
  3077. # Set up files for the haptic library
  3078. if test x$enable_haptic = xyes; then
  3079. AC_DEFINE(SDL_HAPTIC_IOKIT, 1, [ ])
  3080. SOURCES="$SOURCES $srcdir/src/haptic/darwin/*.c"
  3081. have_haptic=yes
  3082. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,ForceFeedback"
  3083. fi
  3084. # Set up files for the power library
  3085. if test x$enable_power = xyes; then
  3086. AC_DEFINE(SDL_POWER_MACOSX, 1, [ ])
  3087. SOURCES="$SOURCES $srcdir/src/power/macosx/*.c"
  3088. have_power=yes
  3089. fi
  3090. # Set up files for the filesystem library
  3091. if test x$enable_filesystem = xyes; then
  3092. AC_DEFINE(SDL_FILESYSTEM_COCOA, 1, [ ])
  3093. SOURCES="$SOURCES $srcdir/src/filesystem/cocoa/*.m"
  3094. have_filesystem=yes
  3095. fi
  3096. # Set up files for the timer library
  3097. if test x$enable_timers = xyes; then
  3098. AC_DEFINE(SDL_TIMER_UNIX, 1, [ ])
  3099. SOURCES="$SOURCES $srcdir/src/timer/unix/*.c"
  3100. have_timers=yes
  3101. fi
  3102. # Set up additional files for the file library
  3103. if test x$enable_file = xyes; then
  3104. SOURCES="$SOURCES $srcdir/src/file/cocoa/*.m"
  3105. fi
  3106. # The Mac OS X platform requires special setup.
  3107. EXTRA_CFLAGS="$EXTRA_CFLAGS -fpascal-strings"
  3108. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lobjc"
  3109. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,CoreVideo"
  3110. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,Cocoa"
  3111. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,Carbon"
  3112. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,IOKit"
  3113. # If audio is used, add the AudioUnit framework
  3114. if test x$enable_audio = xyes; then
  3115. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,CoreAudio -Wl,-framework,AudioToolbox -Wl,-framework,AudioUnit"
  3116. fi
  3117. ;;
  3118. *-nacl|*-pnacl)
  3119. ARCH=nacl
  3120. CheckNativeClient
  3121. CheckDummyAudio
  3122. CheckDummyVideo
  3123. CheckInputEvents
  3124. CheckPTHREAD
  3125. # Set up files for the timer library
  3126. if test x$enable_timers = xyes; then
  3127. AC_DEFINE(SDL_TIMER_UNIX)
  3128. SOURCES="$SOURCES $srcdir/src/timer/unix/*.c"
  3129. have_timers=yes
  3130. fi
  3131. if test x$enable_filesystem = xyes; then
  3132. AC_DEFINE(SDL_FILESYSTEM_NACL, 1, [ ])
  3133. SOURCES="$SOURCES $srcdir/src/filesystem/nacl/*.c"
  3134. have_filesystem=yes
  3135. fi
  3136. ;;
  3137. *-*-emscripten* )
  3138. if test x$enable_video = xyes; then
  3139. AC_DEFINE(SDL_VIDEO_DRIVER_EMSCRIPTEN, 1, [ ])
  3140. SOURCES="$SOURCES $srcdir/src/video/emscripten/*.c"
  3141. have_video=yes
  3142. SUMMARY_video="${SUMMARY_video} emscripten"
  3143. fi
  3144. if test x$enable_audio = xyes; then
  3145. AC_DEFINE(SDL_AUDIO_DRIVER_EMSCRIPTEN, 1, [ ])
  3146. SOURCES="$SOURCES $srcdir/src/audio/emscripten/*.c"
  3147. have_audio=yes
  3148. SUMMARY_audio="${SUMMARY_audio} emscripten"
  3149. fi
  3150. CheckVisibilityHidden
  3151. CheckDummyVideo
  3152. CheckDiskAudio
  3153. CheckDummyAudio
  3154. CheckDLOPEN
  3155. CheckClockGettime
  3156. CheckEmscriptenGLES
  3157. # Set up files for the power library
  3158. if test x$enable_power = xyes; then
  3159. AC_DEFINE(SDL_POWER_EMSCRIPTEN, 1, [ ])
  3160. SOURCES="$SOURCES $srcdir/src/power/emscripten/*.c"
  3161. have_power=yes
  3162. fi
  3163. # Set up files for the power library
  3164. if test x$enable_joystick = xyes; then
  3165. AC_DEFINE(SDL_JOYSTICK_EMSCRIPTEN, 1, [ ])
  3166. SOURCES="$SOURCES $srcdir/src/joystick/emscripten/*.c"
  3167. have_joystick=yes
  3168. fi
  3169. # Set up files for the filesystem library
  3170. if test x$enable_filesystem = xyes; then
  3171. AC_DEFINE(SDL_FILESYSTEM_EMSCRIPTEN, 1, [ ])
  3172. SOURCES="$SOURCES $srcdir/src/filesystem/emscripten/*.c"
  3173. have_filesystem=yes
  3174. fi
  3175. # Set up files for the timer library
  3176. if test x$enable_timers = xyes; then
  3177. AC_DEFINE(SDL_TIMER_UNIX, 1, [ ])
  3178. SOURCES="$SOURCES $srcdir/src/timer/unix/*.c"
  3179. have_timers=yes
  3180. fi
  3181. ;;
  3182. *)
  3183. AC_MSG_ERROR([
  3184. *** Unsupported host: Please add to configure.in
  3185. ])
  3186. ;;
  3187. esac
  3188. dnl Do this on all platforms, after everything else.
  3189. CheckWarnAll
  3190. CheckWarnShadow
  3191. # Verify that we have all the platform specific files we need
  3192. if test x$have_joystick != xyes; then
  3193. if test x$enable_joystick = xyes; then
  3194. AC_DEFINE(SDL_JOYSTICK_DISABLED, 1, [ ])
  3195. fi
  3196. SOURCES="$SOURCES $srcdir/src/joystick/dummy/*.c"
  3197. fi
  3198. if test x$have_haptic != xyes; then
  3199. if test x$enable_haptic = xyes; then
  3200. AC_DEFINE(SDL_HAPTIC_DISABLED, 1, [ ])
  3201. fi
  3202. SOURCES="$SOURCES $srcdir/src/haptic/dummy/*.c"
  3203. fi
  3204. if test x$have_threads != xyes; then
  3205. if test x$enable_threads = xyes; then
  3206. AC_DEFINE(SDL_THREADS_DISABLED, 1, [ ])
  3207. fi
  3208. SOURCES="$SOURCES $srcdir/src/thread/generic/*.c"
  3209. fi
  3210. if test x$have_timers != xyes; then
  3211. if test x$enable_timers = xyes; then
  3212. AC_DEFINE(SDL_TIMERS_DISABLED, 1, [ ])
  3213. fi
  3214. SOURCES="$SOURCES $srcdir/src/timer/dummy/*.c"
  3215. fi
  3216. if test x$have_filesystem != xyes; then
  3217. if test x$enable_filesystem = xyes; then
  3218. AC_DEFINE(SDL_FILESYSTEM_DISABLED, 1, [ ])
  3219. fi
  3220. SOURCES="$SOURCES $srcdir/src/filesystem/dummy/*.c"
  3221. fi
  3222. if test x$have_loadso != xyes; then
  3223. if test x$enable_loadso = xyes; then
  3224. AC_DEFINE(SDL_LOADSO_DISABLED, 1, [ ])
  3225. fi
  3226. SOURCES="$SOURCES $srcdir/src/loadso/dummy/*.c"
  3227. fi
  3228. if test x$SDLMAIN_SOURCES = x; then
  3229. SDLMAIN_SOURCES="$srcdir/src/main/dummy/*.c"
  3230. fi
  3231. SDLTEST_SOURCES="$srcdir/src/test/*.c"
  3232. OBJECTS=`echo $SOURCES`
  3233. DEPENDS=`echo $SOURCES | tr ' ' '\n'`
  3234. for EXT in asm cc m c S; do
  3235. OBJECTS=`echo "$OBJECTS" | sed 's,[[^ ]]*/\([[^ ]]*\)\.'$EXT',$(objects)/\1.lo,g'`
  3236. DEPENDS=`echo "$DEPENDS" | sed "s,^\\([[^ ]]*\\)/\\([[^ ]]*\\)\\.$EXT\\$,\\\\
  3237. \\$(objects)/\\2.lo: \\1/\\2.$EXT\\\\
  3238. \\$(RUN_CMD_CC)\\$(LIBTOOL) --tag=CC --mode=compile \\$(CC) \\$(CFLAGS) \\$(EXTRA_CFLAGS) $DEPENDENCY_TRACKING_OPTIONS -c \\$< -o \\$@,g"`
  3239. done
  3240. VERSION_OBJECTS=`echo $VERSION_SOURCES`
  3241. VERSION_DEPENDS=`echo $VERSION_SOURCES`
  3242. VERSION_OBJECTS=`echo "$VERSION_OBJECTS" | sed 's,[[^ ]]*/\([[^ ]]*\)\.rc,$(objects)/\1.o,g'`
  3243. VERSION_DEPENDS=`echo "$VERSION_DEPENDS" | sed "s,\\([[^ ]]*\\)/\\([[^ ]]*\\)\\.rc,\\\\
  3244. \\$(objects)/\\2.o: \\1/\\2.rc\\\\
  3245. \\$(WINDRES) \\$< \\$@,g"`
  3246. SDLMAIN_OBJECTS=`echo $SDLMAIN_SOURCES`
  3247. SDLMAIN_DEPENDS=`echo $SDLMAIN_SOURCES`
  3248. SDLMAIN_OBJECTS=`echo "$SDLMAIN_OBJECTS" | sed 's,[[^ ]]*/\([[^ ]]*\)\.c,$(objects)/\1.o,g'`
  3249. SDLMAIN_DEPENDS=`echo "$SDLMAIN_DEPENDS" | sed "s,\\([[^ ]]*\\)/\\([[^ ]]*\\)\\.c,\\\\
  3250. \\$(objects)/\\2.o: \\1/\\2.c\\\\
  3251. \\$(RUN_CMD_CC)\\$(LIBTOOL) --tag=CC --mode=compile \\$(CC) \\$(CFLAGS) \\$(EXTRA_CFLAGS) $DEPENDENCY_TRACKING_OPTIONS -c \\$< -o \\$@,g"`
  3252. SDLTEST_OBJECTS=`echo $SDLTEST_SOURCES`
  3253. SDLTEST_DEPENDS=`echo $SDLTEST_SOURCES`
  3254. SDLTEST_OBJECTS=`echo "$SDLTEST_OBJECTS" | sed 's,[[^ ]]*/\([[^ ]]*\)\.c,$(objects)/\1.o,g'`
  3255. SDLTEST_DEPENDS=`echo "$SDLTEST_DEPENDS" | sed "s,\\([[^ ]]*\\)/\\([[^ ]]*\\)\\.c,\\\\
  3256. \\$(objects)/\\2.o: \\1/\\2.c\\\\
  3257. \\$(RUN_CMD_CC)\\$(LIBTOOL) --tag=CC --mode=compile \\$(CC) \\$(CFLAGS) \\$(EXTRA_CFLAGS) $DEPENDENCY_TRACKING_OPTIONS -c \\$< -o \\$@,g"`
  3258. # Set runtime shared library paths as needed
  3259. if test "x$enable_rpath" = "xyes"; then
  3260. if test $ARCH = bsdi -o $ARCH = freebsd -o $ARCH = linux -o $ARCH = netbsd; then
  3261. SDL_RLD_FLAGS="-Wl,-rpath,\${libdir}"
  3262. fi
  3263. if test $ARCH = solaris; then
  3264. SDL_RLD_FLAGS="-R\${libdir}"
  3265. fi
  3266. else
  3267. SDL_RLD_FLAGS=""
  3268. fi
  3269. SDL_STATIC_LIBS="$SDL_LIBS $EXTRA_LDFLAGS"
  3270. dnl Expand the cflags and libraries needed by apps using SDL
  3271. AC_SUBST(SDL_CFLAGS)
  3272. AC_SUBST(SDL_LIBS)
  3273. AC_SUBST(SDL_STATIC_LIBS)
  3274. AC_SUBST(SDL_RLD_FLAGS)
  3275. if test x$enable_shared = xyes; then
  3276. ENABLE_SHARED_TRUE=
  3277. ENABLE_SHARED_FALSE="#"
  3278. else
  3279. ENABLE_SHARED_TRUE="#"
  3280. ENABLE_SHARED_FALSE=
  3281. fi
  3282. if test x$enable_static = xyes; then
  3283. ENABLE_STATIC_TRUE=
  3284. ENABLE_STATIC_FALSE="#"
  3285. else
  3286. ENABLE_STATIC_TRUE="#"
  3287. ENABLE_STATIC_FALSE=
  3288. fi
  3289. AC_SUBST(ENABLE_SHARED_TRUE)
  3290. AC_SUBST(ENABLE_SHARED_FALSE)
  3291. AC_SUBST(ENABLE_STATIC_TRUE)
  3292. AC_SUBST(ENABLE_STATIC_FALSE)
  3293. dnl Expand the sources and objects needed to build the library
  3294. AC_SUBST(ac_aux_dir)
  3295. AC_SUBST(INCLUDE)
  3296. AC_SUBST(OBJECTS)
  3297. AC_SUBST(VERSION_OBJECTS)
  3298. AC_SUBST(SDLMAIN_OBJECTS)
  3299. AC_SUBST(SDLTEST_OBJECTS)
  3300. AC_SUBST(BUILD_CFLAGS)
  3301. AC_SUBST(EXTRA_CFLAGS)
  3302. AC_SUBST(BUILD_LDFLAGS)
  3303. AC_SUBST(EXTRA_LDFLAGS)
  3304. AC_SUBST(WINDRES)
  3305. cat >Makefile.rules <<__EOF__
  3306. # Build rules for objects
  3307. -include \$(OBJECTS:.lo=.d)
  3308. # Special dependency for SDL.c, since it depends on SDL_revision.h
  3309. $srcdir/src/SDL.c: update-revision
  3310. $DEPENDS
  3311. $VERSION_DEPENDS
  3312. $SDLMAIN_DEPENDS
  3313. $SDLTEST_DEPENDS
  3314. __EOF__
  3315. AC_CONFIG_FILES([
  3316. Makefile:Makefile.in:Makefile.rules sdl2-config SDL2.spec sdl2.pc
  3317. ])
  3318. AC_CONFIG_COMMANDS([sdl2_config],[chmod a+x sdl2-config])
  3319. SUMMARY="SDL2 Configure Summary:\n"
  3320. if test x$enable_shared = xyes; then
  3321. SUMMARY="${SUMMARY}Building Shared Libraries\n"
  3322. fi
  3323. if test x$enable_static = xyes; then
  3324. SUMMARY="${SUMMARY}Building Static Libraries\n"
  3325. fi
  3326. SUMMARY="${SUMMARY}Enabled modules :${SUMMARY_modules}\n"
  3327. SUMMARY="${SUMMARY}Assembly Math :${SUMMARY_math}\n"
  3328. SUMMARY="${SUMMARY}Audio drivers :${SUMMARY_audio}\n"
  3329. SUMMARY="${SUMMARY}Video drivers :${SUMMARY_video}\n"
  3330. if test x$have_x = xyes; then
  3331. SUMMARY="${SUMMARY}X11 libraries :${SUMMARY_video_x11}\n"
  3332. fi
  3333. SUMMARY="${SUMMARY}Input drivers :${SUMMARY_input}\n"
  3334. if test x$enable_libudev = xyes; then
  3335. SUMMARY="${SUMMARY}Using libudev : YES\n"
  3336. else
  3337. SUMMARY="${SUMMARY}Using libudev : NO\n"
  3338. fi
  3339. if test x$have_dbus_dbus_h_hdr = xyes; then
  3340. SUMMARY="${SUMMARY}Using dbus : YES\n"
  3341. else
  3342. SUMMARY="${SUMMARY}Using dbus : NO\n"
  3343. fi
  3344. if test x$have_ibus_ibus_h_hdr = xyes; then
  3345. SUMMARY="${SUMMARY}Using ibus : YES\n"
  3346. else
  3347. SUMMARY="${SUMMARY}Using ibus : NO\n"
  3348. fi
  3349. AC_CONFIG_COMMANDS([summary], [echo -en "$SUMMARY"], [SUMMARY="$SUMMARY"])
  3350. AC_OUTPUT