configure.in 118 KB

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