configure.in 116 KB

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