configure.in 135 KB

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