🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

4441 lines
159 KiB

  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=13
  22. SDL_INTERFACE_AGE=1
  23. SDL_BINARY_AGE=13
  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_LANG([Windows Resource])
  34. LT_RELEASE=$SDL_MAJOR_VERSION.$SDL_MINOR_VERSION
  35. LT_CURRENT=`expr $SDL_MICRO_VERSION - $SDL_INTERFACE_AGE`
  36. LT_REVISION=$SDL_INTERFACE_AGE
  37. LT_AGE=`expr $SDL_BINARY_AGE - $SDL_INTERFACE_AGE`
  38. m4_pattern_allow([^LT_])
  39. AC_SUBST(LT_RELEASE)
  40. AC_SUBST(LT_CURRENT)
  41. AC_SUBST(LT_REVISION)
  42. AC_SUBST(LT_AGE)
  43. dnl Detect the canonical build and host environments
  44. dnl AC_CANONICAL_HOST
  45. dnl Check for tools
  46. AC_PROG_LIBTOOL
  47. AC_PROG_CC
  48. AC_PROG_CXX
  49. AC_PROG_INSTALL
  50. AC_PROG_MAKE_SET
  51. AC_LIBTOOL_RC
  52. PKG_PROG_PKG_CONFIG
  53. dnl Make sure that srcdir is a full pathname
  54. case "$host" in
  55. *-*-mingw32*)
  56. # Except on msys, where make can't handle full pathnames (bug 1972)
  57. ;;
  58. *)
  59. srcdir=`cd $srcdir && pwd`
  60. ;;
  61. esac
  62. dnl Set up the compiler and linker flags
  63. INCLUDE="-I$srcdir/include"
  64. dnl Don't use our khronos headers on QNX.
  65. case "$host" in
  66. *-*-nto-qnx*)
  67. ;;
  68. *)
  69. INCLUDE="$INCLUDE -idirafter $srcdir/src/video/khronos"
  70. ;;
  71. esac
  72. if test x$srcdir != x.; then
  73. INCLUDE="-Iinclude $INCLUDE"
  74. elif test -d .hg; then
  75. AC_MSG_ERROR([
  76. *** When building from Mercurial you should configure and build in a
  77. separate directory so you don't clobber SDL_config.h, SDL_revision.h
  78. ])
  79. fi
  80. BASE_CFLAGS=""
  81. BASE_LDFLAGS=""
  82. case "$host" in
  83. *-*-cygwin*)
  84. # We build SDL on cygwin without the UNIX emulation layer
  85. save_CFLAGS="$CFLAGS"
  86. have_no_cygwin=no
  87. AC_MSG_CHECKING(for GCC -mno-cygwin option)
  88. CFLAGS="$save_CFLAGS -mno-cygwin"
  89. AC_TRY_COMPILE([
  90. ],[
  91. ],[
  92. have_no_cygwin=yes
  93. ])
  94. AC_MSG_RESULT($have_no_cygwin)
  95. CFLAGS="$save_CFLAGS"
  96. if test x$have_no_cygwin = xyes; then
  97. BASE_CFLAGS="-mno-cygwin"
  98. BASE_LDFLAGS="-mno-cygwin"
  99. fi
  100. BASE_CFLAGS="$BASE_CFLAGS -I/usr/include/mingw"
  101. ;;
  102. esac
  103. # Uncomment the following line if you want to force SDL and applications
  104. # built with it to be compiled for a particular architecture.
  105. #AX_GCC_ARCHFLAG([no], [BASE_CFLAGS="$BASE_CFLAGS $ax_cv_gcc_archflag]")
  106. BUILD_CFLAGS="$CFLAGS $CPPFLAGS -DUSING_GENERATED_CONFIG_H"
  107. # The default optimization for SDL is -O3 (Bug #31)
  108. if test "x$orig_CFLAGS" = x; then
  109. BUILD_CFLAGS=`echo $BUILD_CFLAGS | sed 's/-O2/-O3/'`
  110. fi
  111. EXTRA_CFLAGS="$INCLUDE $BASE_CFLAGS"
  112. BUILD_LDFLAGS="$LDFLAGS"
  113. EXTRA_LDFLAGS="$BASE_LDFLAGS"
  114. ## These are common directories to find software packages
  115. #for path in /usr/freeware /usr/pkg /usr/X11R6 /usr/local; do
  116. # if test -d $path/include; then
  117. # EXTRA_CFLAGS="$EXTRA_CFLAGS -I$path/include"
  118. # fi
  119. # if test -d $path/lib; then
  120. # EXTRA_LDFLAGS="$EXTRA_LDFLAGS -L$path/lib"
  121. # fi
  122. #done
  123. SDL_CFLAGS="$BASE_CFLAGS"
  124. SDL_LIBS="-lSDL2"
  125. if test "x$BASE_LDFLAGS" != x; then
  126. SDL_LIBS="$SDL_LIBS $BASE_LDFLAGS"
  127. fi
  128. if test "x$EXTRA_CFLAGS" != x; then
  129. CPPFLAGS="$CPPFLAGS $EXTRA_CFLAGS"
  130. CFLAGS="$CFLAGS $EXTRA_CFLAGS"
  131. fi
  132. if test "x$EXTRA_LDFLAGS" != x; then
  133. LDFLAGS="$LDFLAGS $EXTRA_LDFLAGS"
  134. fi
  135. dnl set this to use on systems that use lib64 instead of lib
  136. base_libdir=`echo \${libdir} | sed 's/.*\/\(.*\)/\1/; q'`
  137. dnl Function to find a library in the compiler search path
  138. find_lib()
  139. {
  140. gcc_bin_path=[`$CC -print-search-dirs 2>/dev/null | fgrep programs: | sed 's/[^=]*=\(.*\)/\1/' | sed 's/:/ /g'`]
  141. gcc_lib_path=[`$CC -print-search-dirs 2>/dev/null | fgrep libraries: | sed 's/[^=]*=\(.*\)/\1/' | sed 's/:/ /g'`]
  142. env_lib_path=[`echo $LIBS $LDFLAGS $* | sed 's/-L[ ]*//g'`]
  143. if test "$cross_compiling" = yes; then
  144. host_lib_path=""
  145. else
  146. host_lib_path="/usr/$base_libdir /usr/local/$base_libdir"
  147. fi
  148. for path in $env_lib_path $gcc_bin_path $gcc_lib_path $host_lib_path; do
  149. lib=[`ls -- $path/$1 2>/dev/null | sed -e '/\.so\..*\./d' -e 's,.*/,,' | sort | tail -1`]
  150. if test x$lib != x; then
  151. echo $lib
  152. return
  153. fi
  154. done
  155. # Try again, this time allowing more than one version digit after the .so
  156. for path in $env_lib_path $gcc_bin_path $gcc_lib_path $host_lib_path; do
  157. lib=[`ls -- $path/$1 2>/dev/null | sed -e 's,.*/,,' | sort | tail -1`]
  158. if test x$lib != x; then
  159. echo $lib
  160. return
  161. fi
  162. done
  163. }
  164. dnl Check for compiler characteristics
  165. AC_C_CONST
  166. AC_C_INLINE
  167. AC_C_VOLATILE
  168. dnl See whether we want assertions for debugging/sanity checking SDL itself.
  169. AC_ARG_ENABLE(assertions,
  170. AS_HELP_STRING([--enable-assertions],
  171. [Enable internal sanity checks (auto/disabled/release/enabled/paranoid) [[default=auto]]]),
  172. , enable_assertions=auto)
  173. case "$enable_assertions" in
  174. auto) # Use optimization settings to determine assertion level
  175. ;;
  176. disabled)
  177. AC_DEFINE(SDL_DEFAULT_ASSERT_LEVEL, 0, [ ])
  178. ;;
  179. release)
  180. AC_DEFINE(SDL_DEFAULT_ASSERT_LEVEL, 1, [ ])
  181. ;;
  182. enabled)
  183. AC_DEFINE(SDL_DEFAULT_ASSERT_LEVEL, 2, [ ])
  184. ;;
  185. paranoid)
  186. AC_DEFINE(SDL_DEFAULT_ASSERT_LEVEL, 3, [ ])
  187. ;;
  188. *)
  189. AC_MSG_ERROR([*** unknown assertion level. stop.])
  190. ;;
  191. esac
  192. dnl See whether we can use gcc style dependency tracking
  193. AC_ARG_ENABLE(dependency-tracking,
  194. AS_HELP_STRING([--enable-dependency-tracking],
  195. [Use gcc -MMD -MT dependency tracking [[default=yes]]]),
  196. , enable_dependency_tracking=yes)
  197. if test x$enable_dependency_tracking = xyes; then
  198. have_gcc_mmd_mt=no
  199. AC_MSG_CHECKING(for GCC -MMD -MT option)
  200. AC_TRY_COMPILE([
  201. #if !defined(__GNUC__) || __GNUC__ < 3
  202. #error Dependency tracking requires GCC 3.0 or newer
  203. #endif
  204. ],[
  205. ],[
  206. have_gcc_mmd_mt=yes
  207. ])
  208. AC_MSG_RESULT($have_gcc_mmd_mt)
  209. if test x$have_gcc_mmd_mt = xyes; then
  210. DEPENDENCY_TRACKING_OPTIONS="-MMD -MT \$@"
  211. fi
  212. fi
  213. AC_MSG_CHECKING(for linker option --no-undefined)
  214. have_no_undefined=no
  215. case "$host" in
  216. dnl Skip this on platforms where it is just simply busted.
  217. *-*-openbsd*)
  218. ;;
  219. *)
  220. save_LDFLAGS="$LDFLAGS"
  221. LDFLAGS="$LDFLAGS -Wl,--no-undefined"
  222. AC_TRY_LINK([
  223. ],[
  224. ],[
  225. have_no_undefined=yes
  226. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,--no-undefined"
  227. ])
  228. LDFLAGS="$save_LDFLAGS"
  229. ;;
  230. esac
  231. AC_MSG_RESULT($have_no_undefined)
  232. AC_MSG_CHECKING(for linker option --dynamicbase)
  233. have_dynamicbase=no
  234. case "$host" in
  235. *)
  236. save_LDFLAGS="$LDFLAGS"
  237. LDFLAGS="$LDFLAGS -Wl,--dynamicbase"
  238. AC_TRY_LINK([
  239. ],[
  240. ],[
  241. have_dynamicbase=yes
  242. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,--dynamicbase"
  243. ])
  244. LDFLAGS="$save_LDFLAGS"
  245. ;;
  246. esac
  247. AC_MSG_RESULT($have_dynamicbase)
  248. AC_MSG_CHECKING(for linker option --nxcompat)
  249. have_nxcompat=no
  250. case "$host" in
  251. *)
  252. save_LDFLAGS="$LDFLAGS"
  253. LDFLAGS="$LDFLAGS -Wl,--nxcompat"
  254. AC_TRY_LINK([
  255. ],[
  256. ],[
  257. have_nxcompat=yes
  258. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,--nxcompat"
  259. ])
  260. LDFLAGS="$save_LDFLAGS"
  261. ;;
  262. esac
  263. AC_MSG_RESULT($have_nxcompat)
  264. AC_MSG_CHECKING(for linker option --high-entropy-va)
  265. have_high_entropy_va=no
  266. case "$host" in
  267. *)
  268. save_LDFLAGS="$LDFLAGS"
  269. LDFLAGS="$LDFLAGS -Wl,--high-entropy-va"
  270. AC_TRY_LINK([
  271. ],[
  272. ],[
  273. have_high_entropy_va=yes
  274. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,--high-entropy-va"
  275. ])
  276. LDFLAGS="$save_LDFLAGS"
  277. ;;
  278. esac
  279. AC_MSG_RESULT($have_high_entropy_va)
  280. dnl See whether we are allowed to use the system C library
  281. AC_ARG_ENABLE(libc,
  282. AS_HELP_STRING([--enable-libc], [Use the system C library [[default=yes]]]),
  283. , enable_libc=yes)
  284. if test x$enable_libc = xyes; then
  285. AC_DEFINE(HAVE_LIBC, 1, [ ])
  286. dnl Check for C library headers
  287. AC_HEADER_STDC
  288. AC_CHECK_HEADERS(sys/types.h stdio.h stdlib.h stddef.h stdarg.h malloc.h memory.h string.h strings.h wchar.h inttypes.h stdint.h limits.h ctype.h math.h float.h iconv.h signal.h)
  289. dnl Check for typedefs, structures, etc.
  290. AC_TYPE_SIZE_T
  291. dnl Check for defines
  292. AC_CHECK_DEFINE(M_PI, math.h)
  293. dnl Checks for library functions.
  294. case "$host" in
  295. *-*-cygwin* | *-*-mingw32*)
  296. ;;
  297. *)
  298. AC_FUNC_ALLOCA
  299. ;;
  300. esac
  301. AC_FUNC_MEMCMP
  302. if test x$ac_cv_func_memcmp_working = xyes; then
  303. AC_DEFINE(HAVE_MEMCMP, 1, [ ])
  304. fi
  305. AC_FUNC_STRTOD
  306. if test x$ac_cv_func_strtod = xyes; then
  307. AC_DEFINE(HAVE_STRTOD, 1, [ ])
  308. fi
  309. AC_CHECK_FUNC(mprotect,
  310. AC_TRY_COMPILE([
  311. #include <sys/types.h>
  312. #include <sys/mman.h>
  313. ],[
  314. ],[
  315. AC_DEFINE(HAVE_MPROTECT, 1, [ ])
  316. ]),
  317. )
  318. AC_CHECK_FUNCS(malloc calloc realloc free getenv setenv putenv unsetenv qsort abs bcopy memset memcpy memmove wcslen wcslcpy wcslcat wcsdup wcsstr wcscmp wcsncmp strlen strlcpy strlcat _strrev _strupr _strlwr strchr strrchr strstr strtok_r itoa _ltoa _uitoa _ultoa strtol strtoul _i64toa _ui64toa strtoll strtoull atoi atof strcmp strncmp _stricmp strcasecmp _strnicmp strncasecmp vsscanf vsnprintf fopen64 fseeko fseeko64 sigaction setjmp nanosleep sysconf sysctlbyname getauxval poll _Exit)
  319. AC_CHECK_LIB(m, pow, [LIBS="$LIBS -lm"; EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lm"])
  320. AC_CHECK_FUNCS(acos acosf asin asinf atan atanf atan2 atan2f ceil ceilf copysign copysignf cos cosf exp expf fabs fabsf floor floorf trunc truncf fmod fmodf log logf log10 log10f pow powf scalbn scalbnf sin sinf sqrt sqrtf tan tanf)
  321. AC_CHECK_LIB(iconv, iconv_open, [LIBS="$LIBS -liconv"; EXTRA_LDFLAGS="$EXTRA_LDFLAGS -liconv"])
  322. AC_CHECK_FUNCS(iconv)
  323. AC_CHECK_MEMBER(struct sigaction.sa_sigaction,[AC_DEFINE([HAVE_SA_SIGACTION], 1, [ ])], ,[#include <signal.h>])
  324. dnl Check for additional non-standard headers
  325. AC_CHECK_HEADERS(libunwind.h)
  326. fi
  327. dnl AC_CHECK_SIZEOF(void*)
  328. dnl See whether we can use gcc atomic operations on this architecture
  329. AC_ARG_ENABLE(gcc-atomics,
  330. AS_HELP_STRING([--enable-gcc-atomics],
  331. [Use gcc builtin atomics [[default=yes]]]),
  332. , enable_gcc_atomics=yes)
  333. if test x$enable_gcc_atomics = xyes; then
  334. have_gcc_atomics=no
  335. AC_MSG_CHECKING(for GCC builtin atomic operations)
  336. AC_TRY_LINK([
  337. ],[
  338. int a;
  339. void *x, *y, *z;
  340. __sync_lock_test_and_set(&a, 4);
  341. __sync_lock_test_and_set(&x, y);
  342. __sync_fetch_and_add(&a, 1);
  343. __sync_bool_compare_and_swap(&a, 5, 10);
  344. __sync_bool_compare_and_swap(&x, y, z);
  345. ],[
  346. have_gcc_atomics=yes
  347. ])
  348. AC_MSG_RESULT($have_gcc_atomics)
  349. if test x$have_gcc_atomics = xyes; then
  350. AC_DEFINE(HAVE_GCC_ATOMICS, 1, [ ])
  351. else
  352. # See if we have the minimum operation needed for GCC atomics
  353. AC_TRY_LINK([
  354. ],[
  355. int a;
  356. __sync_lock_test_and_set(&a, 1);
  357. __sync_lock_release(&a);
  358. ],[
  359. have_gcc_sync_lock_test_and_set=yes
  360. ])
  361. if test x$have_gcc_sync_lock_test_and_set = xyes; then
  362. AC_DEFINE(HAVE_GCC_SYNC_LOCK_TEST_AND_SET, 1, [ ])
  363. fi
  364. fi
  365. fi
  366. # Standard C sources
  367. SOURCES="$SOURCES $srcdir/src/*.c"
  368. SOURCES="$SOURCES $srcdir/src/atomic/*.c"
  369. SOURCES="$SOURCES $srcdir/src/audio/*.c"
  370. SOURCES="$SOURCES $srcdir/src/cpuinfo/*.c"
  371. SOURCES="$SOURCES $srcdir/src/dynapi/*.c"
  372. SOURCES="$SOURCES $srcdir/src/events/*.c"
  373. SOURCES="$SOURCES $srcdir/src/file/*.c"
  374. SOURCES="$SOURCES $srcdir/src/haptic/*.c"
  375. SOURCES="$SOURCES $srcdir/src/joystick/*.c"
  376. SOURCES="$SOURCES $srcdir/src/libm/*.c"
  377. SOURCES="$SOURCES $srcdir/src/power/*.c"
  378. #SOURCES="$SOURCES $srcdir/src/filesystem/*.c"
  379. SOURCES="$SOURCES $srcdir/src/render/*.c"
  380. SOURCES="$SOURCES $srcdir/src/render/*/*.c"
  381. SOURCES="$SOURCES $srcdir/src/sensor/*.c"
  382. SOURCES="$SOURCES $srcdir/src/stdlib/*.c"
  383. SOURCES="$SOURCES $srcdir/src/thread/*.c"
  384. SOURCES="$SOURCES $srcdir/src/timer/*.c"
  385. SOURCES="$SOURCES $srcdir/src/video/*.c"
  386. SOURCES="$SOURCES $srcdir/src/video/yuv2rgb/*.c"
  387. SOURCES="$SOURCES $srcdir/src/locale/*.c"
  388. dnl Enable/disable various subsystems of the SDL library
  389. AC_ARG_ENABLE(atomic,
  390. AS_HELP_STRING([--enable-atomic], [Enable the atomic operations subsystem [[default=yes]]]),
  391. , enable_atomic=yes)
  392. if test x$enable_atomic != xyes; then
  393. AC_DEFINE(SDL_ATOMIC_DISABLED, 1, [ ])
  394. else
  395. SUMMARY_modules="${SUMMARY_modules} atomic"
  396. fi
  397. AC_ARG_ENABLE(audio,
  398. AS_HELP_STRING([--enable-audio], [Enable the audio subsystem [[default=yes]]]),
  399. , enable_audio=yes)
  400. if test x$enable_audio != xyes; then
  401. AC_DEFINE(SDL_AUDIO_DISABLED, 1, [ ])
  402. else
  403. SUMMARY_modules="${SUMMARY_modules} audio"
  404. fi
  405. AC_ARG_ENABLE(video,
  406. AS_HELP_STRING([--enable-video], [Enable the video subsystem [[default=yes]]]),
  407. , enable_video=yes)
  408. if test x$enable_video != xyes; then
  409. AC_DEFINE(SDL_VIDEO_DISABLED, 1, [ ])
  410. else
  411. SUMMARY_modules="${SUMMARY_modules} video"
  412. fi
  413. AC_ARG_ENABLE(render,
  414. AS_HELP_STRING([--enable-render], [Enable the render subsystem [[default=yes]]]),
  415. , enable_render=yes)
  416. if test x$enable_render != xyes; then
  417. AC_DEFINE(SDL_RENDER_DISABLED, 1, [ ])
  418. else
  419. SUMMARY_modules="${SUMMARY_modules} render"
  420. fi
  421. AC_ARG_ENABLE(events,
  422. AS_HELP_STRING([--enable-events], [Enable the events subsystem [[default=yes]]]),
  423. , enable_events=yes)
  424. if test x$enable_events != xyes; then
  425. AC_DEFINE(SDL_EVENTS_DISABLED, 1, [ ])
  426. else
  427. SUMMARY_modules="${SUMMARY_modules} events"
  428. fi
  429. AC_ARG_ENABLE(joystick,
  430. AS_HELP_STRING([--enable-joystick], [Enable the joystick subsystem [[default=yes]]]),
  431. , enable_joystick=yes)
  432. if test x$enable_joystick != xyes; then
  433. AC_DEFINE(SDL_JOYSTICK_DISABLED, 1, [ ])
  434. else
  435. SUMMARY_modules="${SUMMARY_modules} joystick"
  436. fi
  437. AC_ARG_ENABLE(haptic,
  438. AS_HELP_STRING([--enable-haptic], [Enable the haptic (force feedback) subsystem [[default=yes]]]),
  439. , enable_haptic=yes)
  440. if test x$enable_haptic != xyes; then
  441. AC_DEFINE(SDL_HAPTIC_DISABLED, 1, [ ])
  442. else
  443. SUMMARY_modules="${SUMMARY_modules} haptic"
  444. fi
  445. AC_ARG_ENABLE(sensor,
  446. AS_HELP_STRING([--enable-sensor], [Enable the sensor subsystem [[default=yes]]]),
  447. , enable_sensor=yes)
  448. if test x$enable_sensor != xyes; then
  449. AC_DEFINE(SDL_SENSOR_DISABLED, 1, [ ])
  450. else
  451. SUMMARY_modules="${SUMMARY_modules} sensor"
  452. fi
  453. AC_ARG_ENABLE(power,
  454. AS_HELP_STRING([--enable-power], [Enable the power subsystem [[default=yes]]]),
  455. , enable_power=yes)
  456. if test x$enable_power != xyes; then
  457. AC_DEFINE(SDL_POWER_DISABLED, 1, [ ])
  458. else
  459. SUMMARY_modules="${SUMMARY_modules} power"
  460. fi
  461. AC_ARG_ENABLE(filesystem,
  462. AS_HELP_STRING([--enable-filesystem], [Enable the filesystem subsystem [[default=yes]]]),
  463. , enable_filesystem=yes)
  464. if test x$enable_filesystem != xyes; then
  465. AC_DEFINE(SDL_FILESYSTEM_DISABLED, 1, [ ])
  466. else
  467. SUMMARY_modules="${SUMMARY_modules} filesystem"
  468. fi
  469. AC_ARG_ENABLE(threads,
  470. AS_HELP_STRING([--enable-threads], [Enable the threading subsystem [[default=yes]]]),
  471. , enable_threads=yes)
  472. if test x$enable_threads != xyes; then
  473. AC_DEFINE(SDL_THREADS_DISABLED, 1, [ ])
  474. else
  475. SUMMARY_modules="${SUMMARY_modules} threads"
  476. fi
  477. AC_ARG_ENABLE(timers,
  478. AS_HELP_STRING([--enable-timers], [Enable the timer subsystem [[default=yes]]]),
  479. , enable_timers=yes)
  480. if test x$enable_timers != xyes; then
  481. AC_DEFINE(SDL_TIMERS_DISABLED, 1, [ ])
  482. else
  483. SUMMARY_modules="${SUMMARY_modules} timers"
  484. fi
  485. AC_ARG_ENABLE(file,
  486. AS_HELP_STRING([--enable-file], [Enable the file subsystem [[default=yes]]]),
  487. , enable_file=yes)
  488. if test x$enable_file != xyes; then
  489. AC_DEFINE(SDL_FILE_DISABLED, 1, [ ])
  490. else
  491. SUMMARY_modules="${SUMMARY_modules} file"
  492. fi
  493. AC_ARG_ENABLE(loadso,
  494. AS_HELP_STRING([--enable-loadso], [Enable the shared object loading subsystem [[default=yes]]]),
  495. , enable_loadso=yes)
  496. if test x$enable_loadso != xyes; then
  497. AC_DEFINE(SDL_LOADSO_DISABLED, 1, [ ])
  498. else
  499. SUMMARY_modules="${SUMMARY_modules} loadso"
  500. fi
  501. AC_ARG_ENABLE(cpuinfo,
  502. AS_HELP_STRING([--enable-cpuinfo], [Enable the cpuinfo subsystem [[default=yes]]]),
  503. , enable_cpuinfo=yes)
  504. if test x$enable_cpuinfo != xyes; then
  505. AC_DEFINE(SDL_CPUINFO_DISABLED, 1, [ ])
  506. else
  507. SUMMARY_modules="${SUMMARY_modules} cpuinfo"
  508. fi
  509. AC_ARG_ENABLE(assembly,
  510. AS_HELP_STRING([--enable-assembly], [Enable assembly routines [[default=yes]]]),
  511. , enable_assembly=yes)
  512. if test x$enable_assembly = xyes; then
  513. SUMMARY_modules="${SUMMARY_modules} assembly"
  514. AC_DEFINE(SDL_ASSEMBLY_ROUTINES, 1, [ ])
  515. # Make sure that we don't generate floating point code that would
  516. # cause illegal instruction exceptions on older processors
  517. case "$host" in
  518. *-*-darwin*)
  519. # Don't need to worry about Apple hardware, it's all SSE capable
  520. default_ssemath=yes
  521. ;;
  522. *64-*-*)
  523. # x86 64-bit architectures all have SSE instructions
  524. default_ssemath=yes
  525. ;;
  526. *)
  527. default_ssemath=no
  528. ;;
  529. esac
  530. AC_ARG_ENABLE(ssemath,
  531. AS_HELP_STRING([--enable-ssemath], [Allow GCC to use SSE floating point math [[default=maybe]]]),
  532. , enable_ssemath=$default_ssemath)
  533. if test x$enable_ssemath = xno; then
  534. if test x$have_gcc_sse = xyes -o x$have_gcc_sse2 = xyes -o x$have_gcc_sse3 = xyes; then
  535. EXTRA_CFLAGS="$EXTRA_CFLAGS -mfpmath=387"
  536. fi
  537. fi
  538. dnl Check for various instruction support
  539. AC_ARG_ENABLE(mmx,
  540. AS_HELP_STRING([--enable-mmx], [use MMX assembly routines [[default=yes]]]),
  541. , enable_mmx=yes)
  542. if test x$enable_mmx = xyes; then
  543. save_CFLAGS="$CFLAGS"
  544. have_gcc_mmx=no
  545. AC_MSG_CHECKING(for GCC -mmmx option)
  546. mmx_CFLAGS="-mmmx"
  547. CFLAGS="$save_CFLAGS $mmx_CFLAGS"
  548. AC_TRY_COMPILE([
  549. #ifdef __MINGW32__
  550. #include <_mingw.h>
  551. #ifdef __MINGW64_VERSION_MAJOR
  552. #include <intrin.h>
  553. #else
  554. #include <mmintrin.h>
  555. #endif
  556. #else
  557. #include <mmintrin.h>
  558. #endif
  559. #ifndef __MMX__
  560. #error Assembler CPP flag not enabled
  561. #endif
  562. ],[
  563. ],[
  564. have_gcc_mmx=yes
  565. ])
  566. AC_MSG_RESULT($have_gcc_mmx)
  567. CFLAGS="$save_CFLAGS"
  568. if test x$have_gcc_mmx = xyes; then
  569. EXTRA_CFLAGS="$EXTRA_CFLAGS $mmx_CFLAGS"
  570. SUMMARY_math="${SUMMARY_math} mmx"
  571. fi
  572. fi
  573. AC_ARG_ENABLE(3dnow,
  574. AS_HELP_STRING([--enable-3dnow], [use 3DNow! assembly routines [[default=yes]]]),
  575. , enable_3dnow=yes)
  576. if test x$enable_3dnow = xyes; then
  577. save_CFLAGS="$CFLAGS"
  578. have_gcc_3dnow=no
  579. AC_MSG_CHECKING(for GCC -m3dnow option)
  580. amd3dnow_CFLAGS="-m3dnow"
  581. CFLAGS="$save_CFLAGS $amd3dnow_CFLAGS"
  582. AC_TRY_LINK([
  583. #include <mm3dnow.h>
  584. #ifndef __3dNOW__
  585. #error Assembler CPP flag not enabled
  586. #endif
  587. ],[
  588. void *p = 0;
  589. _m_prefetch(p);
  590. ],[
  591. have_gcc_3dnow=yes
  592. ])
  593. AC_MSG_RESULT($have_gcc_3dnow)
  594. CFLAGS="$save_CFLAGS"
  595. if test x$have_gcc_3dnow = xyes; then
  596. EXTRA_CFLAGS="$EXTRA_CFLAGS $amd3dnow_CFLAGS"
  597. SUMMARY_math="${SUMMARY_math} 3dnow"
  598. fi
  599. fi
  600. AC_ARG_ENABLE(sse,
  601. AS_HELP_STRING([--enable-sse], [use SSE assembly routines [[default=yes]]]),
  602. , enable_sse=yes)
  603. if test x$enable_sse = xyes; then
  604. save_CFLAGS="$CFLAGS"
  605. have_gcc_sse=no
  606. AC_MSG_CHECKING(for GCC -msse option)
  607. sse_CFLAGS="-msse"
  608. CFLAGS="$save_CFLAGS $sse_CFLAGS"
  609. AC_TRY_COMPILE([
  610. #ifdef __MINGW32__
  611. #include <_mingw.h>
  612. #ifdef __MINGW64_VERSION_MAJOR
  613. #include <intrin.h>
  614. #else
  615. #include <xmmintrin.h>
  616. #endif
  617. #else
  618. #include <xmmintrin.h>
  619. #endif
  620. #ifndef __SSE__
  621. #error Assembler CPP flag not enabled
  622. #endif
  623. ],[
  624. ],[
  625. have_gcc_sse=yes
  626. ])
  627. AC_MSG_RESULT($have_gcc_sse)
  628. CFLAGS="$save_CFLAGS"
  629. if test x$have_gcc_sse = xyes; then
  630. EXTRA_CFLAGS="$EXTRA_CFLAGS $sse_CFLAGS"
  631. SUMMARY_math="${SUMMARY_math} sse"
  632. fi
  633. fi
  634. AC_ARG_ENABLE(sse2,
  635. AS_HELP_STRING([--enable-sse2], [use SSE2 assembly routines [[default=maybe]]]),
  636. , enable_sse2=$default_ssemath)
  637. if test x$enable_sse2 = xyes; then
  638. save_CFLAGS="$CFLAGS"
  639. have_gcc_sse2=no
  640. AC_MSG_CHECKING(for GCC -msse2 option)
  641. sse2_CFLAGS="-msse2"
  642. CFLAGS="$save_CFLAGS $sse2_CFLAGS"
  643. AC_TRY_COMPILE([
  644. #ifdef __MINGW32__
  645. #include <_mingw.h>
  646. #ifdef __MINGW64_VERSION_MAJOR
  647. #include <intrin.h>
  648. #else
  649. #include <emmintrin.h>
  650. #endif
  651. #else
  652. #include <emmintrin.h>
  653. #endif
  654. #ifndef __SSE2__
  655. #error Assembler CPP flag not enabled
  656. #endif
  657. ],[
  658. ],[
  659. have_gcc_sse2=yes
  660. ])
  661. AC_MSG_RESULT($have_gcc_sse2)
  662. CFLAGS="$save_CFLAGS"
  663. if test x$have_gcc_sse2 = xyes; then
  664. EXTRA_CFLAGS="$EXTRA_CFLAGS $sse2_CFLAGS"
  665. SUMMARY_math="${SUMMARY_math} sse2"
  666. fi
  667. fi
  668. AC_ARG_ENABLE(sse3,
  669. AS_HELP_STRING([--enable-sse3], [use SSE3 assembly routines [[default=maybe]]]),
  670. , enable_sse3=$default_ssemath)
  671. if test x$enable_sse3 = xyes; then
  672. save_CFLAGS="$CFLAGS"
  673. have_gcc_sse3=no
  674. AC_MSG_CHECKING(for GCC -msse3 option)
  675. sse3_CFLAGS="-msse3"
  676. CFLAGS="$save_CFLAGS $sse3_CFLAGS"
  677. AC_TRY_COMPILE([
  678. #ifdef __MINGW32__
  679. #include <_mingw.h>
  680. #ifdef __MINGW64_VERSION_MAJOR
  681. #include <intrin.h>
  682. #else
  683. #include <pmmintrin.h>
  684. #endif
  685. #else
  686. #include <pmmintrin.h>
  687. #endif
  688. #ifndef __SSE2__
  689. #error Assembler CPP flag not enabled
  690. #endif
  691. ],[
  692. ],[
  693. have_gcc_sse3=yes
  694. ])
  695. AC_MSG_RESULT($have_gcc_sse3)
  696. CFLAGS="$save_CFLAGS"
  697. if test x$have_gcc_sse3 = xyes; then
  698. EXTRA_CFLAGS="$EXTRA_CFLAGS $sse3_CFLAGS"
  699. SUMMARY_math="${SUMMARY_math} sse3"
  700. fi
  701. fi
  702. AC_CHECK_HEADER(immintrin.h,
  703. have_immintrin_h_hdr=yes,
  704. have_immintrin_h_hdr=no)
  705. if test x$have_immintrin_h_hdr = xyes; then
  706. AC_DEFINE(HAVE_IMMINTRIN_H, 1, [ ])
  707. fi
  708. AC_ARG_ENABLE(altivec,
  709. AS_HELP_STRING([--enable-altivec], [use Altivec assembly routines [[default=yes]]]),
  710. , enable_altivec=yes)
  711. if test x$enable_altivec = xyes; then
  712. save_CFLAGS="$CFLAGS"
  713. have_gcc_altivec=no
  714. have_altivec_h_hdr=no
  715. altivec_CFLAGS="-maltivec"
  716. CFLAGS="$save_CFLAGS $altivec_CFLAGS"
  717. AC_MSG_CHECKING(for Altivec with GCC altivec.h and -maltivec option)
  718. AC_TRY_COMPILE([
  719. #include <altivec.h>
  720. vector unsigned int vzero() {
  721. return vec_splat_u32(0);
  722. }
  723. ],[
  724. ],[
  725. have_gcc_altivec=yes
  726. have_altivec_h_hdr=yes
  727. ])
  728. AC_MSG_RESULT($have_gcc_altivec)
  729. if test x$have_gcc_altivec = xno; then
  730. AC_MSG_CHECKING(for Altivec with GCC -maltivec option)
  731. AC_TRY_COMPILE([
  732. vector unsigned int vzero() {
  733. return vec_splat_u32(0);
  734. }
  735. ],[
  736. ],[
  737. have_gcc_altivec=yes
  738. ])
  739. AC_MSG_RESULT($have_gcc_altivec)
  740. fi
  741. if test x$have_gcc_altivec = xno; then
  742. AC_MSG_CHECKING(for Altivec with GCC altivec.h and -faltivec option)
  743. altivec_CFLAGS="-faltivec"
  744. CFLAGS="$save_CFLAGS $altivec_CFLAGS"
  745. AC_TRY_COMPILE([
  746. #include <altivec.h>
  747. vector unsigned int vzero() {
  748. return vec_splat_u32(0);
  749. }
  750. ],[
  751. ],[
  752. have_gcc_altivec=yes
  753. have_altivec_h_hdr=yes
  754. ])
  755. AC_MSG_RESULT($have_gcc_altivec)
  756. fi
  757. if test x$have_gcc_altivec = xno; then
  758. AC_MSG_CHECKING(for Altivec with GCC -faltivec option)
  759. AC_TRY_COMPILE([
  760. vector unsigned int vzero() {
  761. return vec_splat_u32(0);
  762. }
  763. ],[
  764. ],[
  765. have_gcc_altivec=yes
  766. ])
  767. AC_MSG_RESULT($have_gcc_altivec)
  768. fi
  769. CFLAGS="$save_CFLAGS"
  770. if test x$have_gcc_altivec = xyes; then
  771. AC_DEFINE(SDL_ALTIVEC_BLITTERS, 1, [ ])
  772. if test x$have_altivec_h_hdr = xyes; then
  773. AC_DEFINE(HAVE_ALTIVEC_H, 1, [ ])
  774. fi
  775. EXTRA_CFLAGS="$EXTRA_CFLAGS $altivec_CFLAGS"
  776. SUMMARY_math="${SUMMARY_math} altivec"
  777. fi
  778. fi
  779. fi
  780. dnl See if the OSS audio interface is supported
  781. CheckOSS()
  782. {
  783. AC_ARG_ENABLE(oss,
  784. AS_HELP_STRING([--enable-oss], [support the OSS audio API [[default=maybe]]]),
  785. , enable_oss=maybe)
  786. # OpenBSD "has" OSS, but it's not really for app use. They want you to
  787. # use sndio instead. So on there, we default to disabled. You can force
  788. # it on if you really want, though.
  789. if test x$enable_oss = xmaybe; then
  790. enable_oss=yes
  791. case "$host" in
  792. *-*-openbsd*)
  793. enable_oss=no;;
  794. esac
  795. fi
  796. if test x$enable_audio = xyes -a x$enable_oss = xyes; then
  797. AC_MSG_CHECKING(for OSS audio support)
  798. have_oss=no
  799. if test x$have_oss != xyes; then
  800. AC_TRY_COMPILE([
  801. #include <sys/soundcard.h>
  802. ],[
  803. int arg = SNDCTL_DSP_SETFRAGMENT;
  804. ],[
  805. have_oss=yes
  806. ])
  807. fi
  808. if test x$have_oss != xyes; then
  809. AC_TRY_COMPILE([
  810. #include <soundcard.h>
  811. ],[
  812. int arg = SNDCTL_DSP_SETFRAGMENT;
  813. ],[
  814. have_oss=yes
  815. AC_DEFINE(SDL_AUDIO_DRIVER_OSS_SOUNDCARD_H, 1, [ ])
  816. ])
  817. fi
  818. AC_MSG_RESULT($have_oss)
  819. if test x$have_oss = xyes; then
  820. SUMMARY_audio="${SUMMARY_audio} oss"
  821. AC_DEFINE(SDL_AUDIO_DRIVER_OSS, 1, [ ])
  822. SOURCES="$SOURCES $srcdir/src/audio/dsp/*.c"
  823. have_audio=yes
  824. # We may need to link with ossaudio emulation library
  825. case "$host" in
  826. *-*-openbsd*|*-*-netbsd*)
  827. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lossaudio";;
  828. esac
  829. fi
  830. fi
  831. }
  832. dnl See if the ALSA audio interface is supported
  833. CheckALSA()
  834. {
  835. AC_ARG_ENABLE(alsa,
  836. AS_HELP_STRING([--enable-alsa], [support the ALSA audio API [[default=yes]]]),
  837. , enable_alsa=yes)
  838. if test x$enable_audio = xyes -a x$enable_alsa = xyes; then
  839. AM_PATH_ALSA(1.0.11, have_alsa=yes, have_alsa=no)
  840. # Restore all flags from before the ALSA detection runs
  841. CFLAGS="$alsa_save_CFLAGS"
  842. LDFLAGS="$alsa_save_LDFLAGS"
  843. LIBS="$alsa_save_LIBS"
  844. if test x$have_alsa = xyes; then
  845. AC_ARG_ENABLE(alsa-shared,
  846. AS_HELP_STRING([--enable-alsa-shared], [dynamically load ALSA audio support [[default=yes]]]),
  847. , enable_alsa_shared=yes)
  848. alsa_lib=[`find_lib "libasound.so.*" "$ALSA_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
  849. AC_DEFINE(SDL_AUDIO_DRIVER_ALSA, 1, [ ])
  850. SOURCES="$SOURCES $srcdir/src/audio/alsa/*.c"
  851. EXTRA_CFLAGS="$EXTRA_CFLAGS $ALSA_CFLAGS"
  852. if test x$have_loadso != xyes && \
  853. test x$enable_alsa_shared = xyes; then
  854. AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic ALSA loading])
  855. fi
  856. if test x$have_loadso = xyes && \
  857. test x$enable_alsa_shared = xyes && test x$alsa_lib != x; then
  858. echo "-- dynamic libasound -> $alsa_lib"
  859. AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_ALSA_DYNAMIC, "$alsa_lib", [ ])
  860. SUMMARY_audio="${SUMMARY_audio} alsa(dynamic)"
  861. else
  862. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $ALSA_LIBS"
  863. SUMMARY_audio="${SUMMARY_audio} alsa"
  864. fi
  865. have_audio=yes
  866. fi
  867. fi
  868. }
  869. dnl Find JACK Audio
  870. CheckJACK()
  871. {
  872. AC_ARG_ENABLE(jack,
  873. AS_HELP_STRING([--enable-jack], [use JACK audio [[default=yes]]]),
  874. , enable_jack=yes)
  875. if test x$enable_audio = xyes -a x$enable_jack = xyes; then
  876. PKG_CHECK_MODULES([JACK], [jack >= 0.125], audio_jack=yes, audio_jack=no)
  877. if test x$audio_jack = xyes; then
  878. AC_ARG_ENABLE(jack-shared,
  879. AS_HELP_STRING([--enable-jack-shared], [dynamically load JACK audio support [[default=yes]]]),
  880. , enable_jack_shared=yes)
  881. jack_lib=[`find_lib "libjack.so.*" "$JACK_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
  882. AC_DEFINE(SDL_AUDIO_DRIVER_JACK, 1, [ ])
  883. SOURCES="$SOURCES $srcdir/src/audio/jack/*.c"
  884. EXTRA_CFLAGS="$EXTRA_CFLAGS $JACK_CFLAGS"
  885. if test x$have_loadso != xyes && \
  886. test x$enable_jack_shared = xyes; then
  887. AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic JACK audio loading])
  888. fi
  889. if test x$have_loadso = xyes && \
  890. test x$enable_jack_shared = xyes && test x$jack_lib != x; then
  891. echo "-- dynamic libjack -> $jack_lib"
  892. AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_JACK_DYNAMIC, "$jack_lib", [ ])
  893. SUMMARY_audio="${SUMMARY_audio} jack(dynamic)"
  894. case "$host" in
  895. # On Solaris, jack must be linked deferred explicitly
  896. # to prevent undefined symbol failures.
  897. *-*-solaris*)
  898. JACK_LIBS=`echo $JACK_LIBS | sed 's/\-l/-Wl,-l/g'`
  899. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-zdeferred $JACK_LIBS -Wl,-znodeferred"
  900. esac
  901. else
  902. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $JACK_LIBS"
  903. SUMMARY_audio="${SUMMARY_audio} jack"
  904. fi
  905. have_audio=yes
  906. fi
  907. fi
  908. }
  909. dnl Find the ESD includes and libraries
  910. CheckESD()
  911. {
  912. AC_ARG_ENABLE(esd,
  913. AS_HELP_STRING([--enable-esd], [support the Enlightened Sound Daemon [[default=yes]]]),
  914. , enable_esd=yes)
  915. if test x$enable_audio = xyes -a x$enable_esd = xyes; then
  916. AM_PATH_ESD(0.2.8, have_esd=yes, have_esd=no)
  917. if test x$have_esd = xyes; then
  918. AC_ARG_ENABLE(esd-shared,
  919. AS_HELP_STRING([--enable-esd-shared], [dynamically load ESD audio support [[default=yes]]]),
  920. , enable_esd_shared=yes)
  921. esd_lib=[`find_lib "libesd.so.*" "$ESD_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
  922. AC_DEFINE(SDL_AUDIO_DRIVER_ESD, 1, [ ])
  923. SOURCES="$SOURCES $srcdir/src/audio/esd/*.c"
  924. EXTRA_CFLAGS="$EXTRA_CFLAGS $ESD_CFLAGS"
  925. if test x$have_loadso != xyes && \
  926. test x$enable_esd_shared = xyes; then
  927. AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic ESD loading])
  928. fi
  929. if test x$have_loadso = xyes && \
  930. test x$enable_esd_shared = xyes && test x$esd_lib != x; then
  931. echo "-- dynamic libesd -> $esd_lib"
  932. AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_ESD_DYNAMIC, "$esd_lib", [ ])
  933. SUMMARY_audio="${SUMMARY_audio} esd(dynamic)"
  934. else
  935. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $ESD_LIBS"
  936. SUMMARY_audio="${SUMMARY_audio} esd"
  937. fi
  938. have_audio=yes
  939. fi
  940. fi
  941. }
  942. dnl Find PulseAudio
  943. CheckPulseAudio()
  944. {
  945. AC_ARG_ENABLE(pulseaudio,
  946. AS_HELP_STRING([--enable-pulseaudio], [use PulseAudio [[default=yes]]]),
  947. , enable_pulseaudio=yes)
  948. if test x$enable_audio = xyes -a x$enable_pulseaudio = xyes; then
  949. PKG_CHECK_MODULES([PULSEAUDIO], [libpulse-simple >= 0.9], audio_pulseaudio=yes, audio_pulseaudio=no)
  950. if test x$audio_pulseaudio = xyes; then
  951. AC_ARG_ENABLE(pulseaudio-shared,
  952. AS_HELP_STRING([--enable-pulseaudio-shared], [dynamically load PulseAudio support [[default=yes]]]),
  953. , enable_pulseaudio_shared=yes)
  954. pulseaudio_lib=[`find_lib "libpulse-simple.so.*" "$PULSEAUDIO_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
  955. AC_DEFINE(SDL_AUDIO_DRIVER_PULSEAUDIO, 1, [ ])
  956. SOURCES="$SOURCES $srcdir/src/audio/pulseaudio/*.c"
  957. EXTRA_CFLAGS="$EXTRA_CFLAGS $PULSEAUDIO_CFLAGS"
  958. if test x$have_loadso != xyes && \
  959. test x$enable_pulseaudio_shared = xyes; then
  960. AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic PulseAudio loading])
  961. fi
  962. if test x$have_loadso = xyes && \
  963. test x$enable_pulseaudio_shared = xyes && test x$pulseaudio_lib != x; then
  964. echo "-- dynamic libpulse-simple -> $pulseaudio_lib"
  965. AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_PULSEAUDIO_DYNAMIC, "$pulseaudio_lib", [ ])
  966. SUMMARY_audio="${SUMMARY_audio} pulse(dynamic)"
  967. case "$host" in
  968. # On Solaris, pulseaudio must be linked deferred explicitly
  969. # to prevent undefined symbol failures.
  970. *-*-solaris*)
  971. PULSEAUDIO_LIBS=`echo $PULSEAUDIO_LIBS | sed 's/\-l/-Wl,-l/g'`
  972. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-zdeferred $PULSEAUDIO_LIBS -Wl,-znodeferred"
  973. esac
  974. else
  975. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $PULSEAUDIO_LIBS"
  976. SUMMARY_audio="${SUMMARY_audio} pulse"
  977. fi
  978. have_audio=yes
  979. fi
  980. fi
  981. }
  982. CheckARTSC()
  983. {
  984. AC_ARG_ENABLE(arts,
  985. AS_HELP_STRING([--enable-arts], [support the Analog Real Time Synthesizer [[default=yes]]]),
  986. , enable_arts=yes)
  987. if test x$enable_audio = xyes -a x$enable_arts = xyes; then
  988. AC_PATH_PROG(ARTSCONFIG, artsc-config)
  989. if test x$ARTSCONFIG = x -o x$ARTSCONFIG = x'"$ARTSCONFIG"'; then
  990. : # arts isn't installed
  991. else
  992. ARTS_CFLAGS=`$ARTSCONFIG --cflags`
  993. ARTS_LIBS=`$ARTSCONFIG --libs`
  994. AC_MSG_CHECKING(for aRts development environment)
  995. audio_arts=no
  996. save_CFLAGS="$CFLAGS"
  997. CFLAGS="$CFLAGS $ARTS_CFLAGS"
  998. AC_TRY_COMPILE([
  999. #include <artsc.h>
  1000. ],[
  1001. arts_stream_t stream;
  1002. ],[
  1003. audio_arts=yes
  1004. ])
  1005. CFLAGS="$save_CFLAGS"
  1006. AC_MSG_RESULT($audio_arts)
  1007. if test x$audio_arts = xyes; then
  1008. AC_ARG_ENABLE(arts-shared,
  1009. AS_HELP_STRING([--enable-arts-shared], [dynamically load aRts audio support [[default=yes]]]),
  1010. , enable_arts_shared=yes)
  1011. arts_lib=[`find_lib "libartsc.so.*" "$ARTS_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
  1012. AC_DEFINE(SDL_AUDIO_DRIVER_ARTS, 1, [ ])
  1013. SOURCES="$SOURCES $srcdir/src/audio/arts/*.c"
  1014. EXTRA_CFLAGS="$EXTRA_CFLAGS $ARTS_CFLAGS"
  1015. if test x$have_loadso != xyes && \
  1016. test x$enable_arts_shared = xyes; then
  1017. AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic ARTS loading])
  1018. fi
  1019. if test x$have_loadso = xyes && \
  1020. test x$enable_arts_shared = xyes && test x$arts_lib != x; then
  1021. echo "-- dynamic libartsc -> $arts_lib"
  1022. AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_ARTS_DYNAMIC, "$arts_lib", [ ])
  1023. SUMMARY_audio="${SUMMARY_audio} arts(dynamic)"
  1024. else
  1025. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $ARTS_LIBS"
  1026. SUMMARY_audio="${SUMMARY_audio} arts"
  1027. fi
  1028. have_audio=yes
  1029. fi
  1030. fi
  1031. fi
  1032. }
  1033. dnl See if the NAS audio interface is supported
  1034. CheckNAS()
  1035. {
  1036. AC_ARG_ENABLE(nas,
  1037. AS_HELP_STRING([--enable-nas], [support the NAS audio API [[default=yes]]]),
  1038. , enable_nas=yes)
  1039. if test x$enable_audio = xyes -a x$enable_nas = xyes; then
  1040. AC_CHECK_HEADER(audio/audiolib.h, have_nas_hdr=yes)
  1041. AC_CHECK_LIB(audio, AuOpenServer, have_nas_lib=yes)
  1042. AC_MSG_CHECKING(for NAS audio support)
  1043. have_nas=no
  1044. if test x$have_nas_hdr = xyes -a x$have_nas_lib = xyes; then
  1045. have_nas=yes
  1046. NAS_LIBS="-laudio"
  1047. elif test -r /usr/X11R6/include/audio/audiolib.h; then
  1048. have_nas=yes
  1049. NAS_CFLAGS="-I/usr/X11R6/include/"
  1050. NAS_LIBS="-L/usr/X11R6/lib -laudio -lXt"
  1051. fi
  1052. AC_MSG_RESULT($have_nas)
  1053. if test x$have_nas = xyes; then
  1054. AC_ARG_ENABLE(nas-shared,
  1055. AS_HELP_STRING([--enable-nas-shared], [dynamically load NAS audio support [[default=yes]]]),
  1056. , enable_nas_shared=yes)
  1057. nas_lib=[`find_lib "libaudio.so.*" "$NAS_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
  1058. if test x$have_loadso != xyes && \
  1059. test x$enable_nas_shared = xyes; then
  1060. AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic NAS loading])
  1061. fi
  1062. if test x$have_loadso = xyes && \
  1063. test x$enable_nas_shared = xyes && test x$nas_lib != x; then
  1064. echo "-- dynamic libaudio -> $nas_lib"
  1065. AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_NAS_DYNAMIC, "$nas_lib", [ ])
  1066. SUMMARY_audio="${SUMMARY_audio} nas(dynamic)"
  1067. else
  1068. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $NAS_LIBS"
  1069. SUMMARY_audio="${SUMMARY_audio} nas"
  1070. fi
  1071. AC_DEFINE(SDL_AUDIO_DRIVER_NAS, 1, [ ])
  1072. SOURCES="$SOURCES $srcdir/src/audio/nas/*.c"
  1073. EXTRA_CFLAGS="$EXTRA_CFLAGS $NAS_CFLAGS"
  1074. have_audio=yes
  1075. fi
  1076. fi
  1077. }
  1078. dnl See if the sndio audio interface is supported
  1079. CheckSNDIO()
  1080. {
  1081. AC_ARG_ENABLE(sndio,
  1082. AS_HELP_STRING([--enable-sndio], [support the sndio audio API [[default=yes]]]),
  1083. , enable_sndio=yes)
  1084. if test x$enable_audio = xyes -a x$enable_sndio = xyes; then
  1085. AC_CHECK_HEADER(sndio.h, have_sndio_hdr=yes)
  1086. AC_CHECK_LIB(sndio, sio_open, have_sndio_lib=yes)
  1087. AC_MSG_CHECKING(for sndio audio support)
  1088. have_sndio=no
  1089. if test x$have_sndio_hdr = xyes -a x$have_sndio_lib = xyes; then
  1090. have_sndio=yes
  1091. SNDIO_LIBS="-lsndio"
  1092. fi
  1093. AC_MSG_RESULT($have_sndio)
  1094. if test x$have_sndio = xyes; then
  1095. AC_ARG_ENABLE(sndio-shared,
  1096. AS_HELP_STRING([--enable-sndio-shared], [dynamically load sndio audio support [[default=yes]]]),
  1097. , enable_sndio_shared=yes)
  1098. sndio_lib=[`find_lib "libsndio.so.*" "$SNDIO_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
  1099. if test x$have_loadso != xyes && \
  1100. test x$enable_sndio_shared = xyes; then
  1101. AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic sndio loading])
  1102. fi
  1103. if test x$have_loadso = xyes && \
  1104. test x$enable_sndio_shared = xyes && test x$sndio_lib != x; then
  1105. echo "-- dynamic libsndio -> $sndio_lib"
  1106. AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_SNDIO_DYNAMIC, "$sndio_lib", [ ])
  1107. SUMMARY_audio="${SUMMARY_audio} sndio(dynamic)"
  1108. else
  1109. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $SNDIO_LIBS"
  1110. SUMMARY_audio="${SUMMARY_audio} sndio"
  1111. fi
  1112. AC_DEFINE(SDL_AUDIO_DRIVER_SNDIO, 1, [ ])
  1113. SOURCES="$SOURCES $srcdir/src/audio/sndio/*.c"
  1114. EXTRA_CFLAGS="$EXTRA_CFLAGS $SNDIO_CFLAGS"
  1115. have_audio=yes
  1116. fi
  1117. fi
  1118. }
  1119. dnl Find FusionSound
  1120. CheckFusionSound()
  1121. {
  1122. AC_ARG_ENABLE(fusionsound,
  1123. AS_HELP_STRING([--enable-fusionsound], [use FusionSound audio driver [[default=no]]]),
  1124. , enable_fusionsound=no)
  1125. if test x$enable_audio = xyes -a x$enable_fusionsound = xyes; then
  1126. PKG_CHECK_MODULES([FUSIONSOUND], [fusionsound >= 1.1.1], fusionsound=yes, fusionsound=no)
  1127. if test x$fusionsound = xyes; then
  1128. AC_DEFINE(SDL_AUDIO_DRIVER_FUSIONSOUND, 1, [ ])
  1129. SOURCES="$SOURCES $srcdir/src/audio/fusionsound/*.c"
  1130. EXTRA_CFLAGS="$EXTRA_CFLAGS $FUSIONSOUND_CFLAGS"
  1131. AC_ARG_ENABLE(fusionsound-shared,
  1132. AS_HELP_STRING([--enable-fusionsound-shared], [dynamically load fusionsound audio support [[default=yes]]]),
  1133. , enable_fusionsound_shared=yes)
  1134. fusionsound_shared=no
  1135. AC_MSG_CHECKING(for FusionSound dynamic loading support)
  1136. if test x$have_loadso != xyes && \
  1137. test x$enable_fusionsound_shared = xyes; then
  1138. AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic fusionsound loading])
  1139. fi
  1140. if test x$have_loadso = xyes && \
  1141. test x$enable_fusionsound_shared = xyes; then
  1142. AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_FUSIONSOUND_DYNAMIC, "libfusionsound.so", [ ])
  1143. fusionsound_shared=yes
  1144. SUMMARY_audio="${SUMMARY_audio} fusionsound(dynamic)"
  1145. else
  1146. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $FUSIONSOUND_LIBS"
  1147. SUMMARY_audio="${SUMMARY_audio} fusionsound"
  1148. fi
  1149. AC_MSG_RESULT($fusionsound_shared)
  1150. have_audio=yes
  1151. fi
  1152. fi
  1153. }
  1154. dnl rcg07142001 See if the user wants the disk writer audio driver...
  1155. CheckDiskAudio()
  1156. {
  1157. AC_ARG_ENABLE(diskaudio,
  1158. AS_HELP_STRING([--enable-diskaudio], [support the disk writer audio driver [[default=yes]]]),
  1159. , enable_diskaudio=yes)
  1160. if test x$enable_audio = xyes -a x$enable_diskaudio = xyes; then
  1161. AC_DEFINE(SDL_AUDIO_DRIVER_DISK, 1, [ ])
  1162. SOURCES="$SOURCES $srcdir/src/audio/disk/*.c"
  1163. SUMMARY_audio="${SUMMARY_audio} disk"
  1164. fi
  1165. }
  1166. dnl rcg03142006 See if the user wants the dummy audio driver...
  1167. CheckDummyAudio()
  1168. {
  1169. AC_ARG_ENABLE(dummyaudio,
  1170. AS_HELP_STRING([--enable-dummyaudio], [support the dummy audio driver [[default=yes]]]),
  1171. , enable_dummyaudio=yes)
  1172. if test x$enable_audio = xyes -a x$enable_dummyaudio = xyes; then
  1173. AC_DEFINE(SDL_AUDIO_DRIVER_DUMMY, 1, [ ])
  1174. SOURCES="$SOURCES $srcdir/src/audio/dummy/*.c"
  1175. SUMMARY_audio="${SUMMARY_audio} dummy"
  1176. fi
  1177. }
  1178. dnl See if libsamplerate is available
  1179. CheckLibSampleRate()
  1180. {
  1181. AC_ARG_ENABLE(libsamplerate,
  1182. AS_HELP_STRING([--enable-libsamplerate], [use libsamplerate for audio rate conversion [[default=yes]]]),
  1183. , enable_libsamplerate=yes)
  1184. if test x$enable_libsamplerate = xyes; then
  1185. AC_CHECK_HEADER(samplerate.h,
  1186. have_samplerate_h_hdr=yes,
  1187. have_samplerate_h_hdr=no)
  1188. if test x$have_samplerate_h_hdr = xyes; then
  1189. AC_DEFINE(HAVE_LIBSAMPLERATE_H, 1, [ ])
  1190. AC_ARG_ENABLE(libsamplerate-shared,
  1191. AS_HELP_STRING([--enable-libsamplerate-shared], [dynamically load libsamplerate [[default=yes]]]),
  1192. , enable_libsamplerate_shared=yes)
  1193. samplerate_lib=[`find_lib "libsamplerate.so.*" "" | sed 's/.*\/\(.*\)/\1/; q'`]
  1194. if test x$have_loadso != xyes && \
  1195. test x$enable_libsamplerate_shared = xyes; then
  1196. AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic libsamplerate loading])
  1197. fi
  1198. if test x$have_loadso = xyes && \
  1199. test x$enable_libsamplerate_shared = xyes && test x$samplerate_lib != x; then
  1200. echo "-- dynamic libsamplerate -> $samplerate_lib"
  1201. AC_DEFINE_UNQUOTED(SDL_LIBSAMPLERATE_DYNAMIC, "$samplerate_lib", [ ])
  1202. else
  1203. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lsamplerate"
  1204. fi
  1205. fi
  1206. fi
  1207. }
  1208. dnl Check for ARM instruction support using gas syntax
  1209. CheckARM()
  1210. {
  1211. AC_ARG_ENABLE(arm-simd,
  1212. AC_HELP_STRING([--enable-arm-simd], [use SIMD assembly blitters on ARM [[default=no]]]),
  1213. enable_arm_simd=$enableval, enable_arm_simd=no)
  1214. if test x$enable_video = xyes -a x$enable_assembly = xyes -a x$enable_arm_simd = xyes; then
  1215. save_CFLAGS="$CFLAGS"
  1216. have_arm_simd=no
  1217. CFLAGS="-x assembler-with-cpp $CFLAGS"
  1218. AC_MSG_CHECKING(for ARM SIMD)
  1219. AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
  1220. .text
  1221. .arch armv6
  1222. .object_arch armv4
  1223. .arm
  1224. .altmacro
  1225. #ifndef __ARM_EABI__
  1226. #error EABI is required (to be sure that calling conventions are compatible)
  1227. #endif
  1228. pld [r0]
  1229. uqadd8 r0, r0, r0
  1230. ]])], have_arm_simd=yes)
  1231. AC_MSG_RESULT($have_arm_simd)
  1232. CFLAGS="$save_CFLAGS"
  1233. if test x$have_arm_simd = xyes; then
  1234. AC_DEFINE(SDL_ARM_SIMD_BLITTERS, 1, [ ])
  1235. dnl SOURCES="$SOURCES $srcdir/src/video/arm/pixman-arm-simd*.c"
  1236. SOURCES="$SOURCES $srcdir/src/video/arm/pixman-arm-simd*.S"
  1237. WARN_ABOUT_ARM_SIMD_ASM_MIT="yes"
  1238. fi
  1239. fi
  1240. }
  1241. dnl Check for ARM NEON instruction support using gas syntax
  1242. CheckNEON()
  1243. {
  1244. AC_ARG_ENABLE(arm-neon,
  1245. AC_HELP_STRING([--enable-arm-neon], [use NEON assembly blitters on ARM [[default=no]]]),
  1246. enable_arm_neon=$enableval, enable_arm_neon=no)
  1247. if test x$enable_video = xyes -a x$enable_assembly = xyes -a x$enable_arm_neon = xyes; then
  1248. save_CFLAGS="$CFLAGS"
  1249. have_arm_neon=no
  1250. CFLAGS="-x assembler-with-cpp $CFLAGS"
  1251. AC_MSG_CHECKING(for ARM NEON)
  1252. AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
  1253. .text
  1254. .fpu neon
  1255. .arch armv7a
  1256. .object_arch armv4
  1257. .eabi_attribute 10, 0
  1258. .arm
  1259. .altmacro
  1260. #ifndef __ARM_EABI__
  1261. #error EABI is required (to be sure that calling conventions are compatible)
  1262. #endif
  1263. pld [r0]
  1264. vmovn.u16 d0, q0
  1265. ]])], have_arm_neon=yes)
  1266. AC_MSG_RESULT($have_arm_neon)
  1267. CFLAGS="$save_CFLAGS"
  1268. if test x$have_arm_neon = xyes; then
  1269. AC_DEFINE(SDL_ARM_NEON_BLITTERS, 1, [ ])
  1270. dnl SOURCES="$SOURCES $srcdir/src/video/arm/pixman-arm-neon*.c"
  1271. SOURCES="$SOURCES $srcdir/src/video/arm/pixman-arm-neon*.S"
  1272. WARN_ABOUT_ARM_NEON_ASM_MIT="yes"
  1273. fi
  1274. fi
  1275. }
  1276. dnl See if GCC's -fvisibility=hidden is supported (gcc4 and later, usually).
  1277. dnl Details of this flag are here: http://gcc.gnu.org/wiki/Visibility
  1278. CheckVisibilityHidden()
  1279. {
  1280. AC_MSG_CHECKING(for GCC -fvisibility=hidden option)
  1281. have_gcc_fvisibility=no
  1282. visibility_CFLAGS="-fvisibility=hidden"
  1283. save_CFLAGS="$CFLAGS"
  1284. CFLAGS="$save_CFLAGS $visibility_CFLAGS -Werror"
  1285. AC_TRY_COMPILE([
  1286. #if !defined(__GNUC__) || __GNUC__ < 4
  1287. #error SDL only uses visibility attributes in GCC 4 or newer
  1288. #endif
  1289. ],[
  1290. ],[
  1291. have_gcc_fvisibility=yes
  1292. ])
  1293. AC_MSG_RESULT($have_gcc_fvisibility)
  1294. CFLAGS="$save_CFLAGS"
  1295. if test x$have_gcc_fvisibility = xyes; then
  1296. EXTRA_CFLAGS="$EXTRA_CFLAGS $visibility_CFLAGS"
  1297. fi
  1298. }
  1299. dnl See if GCC's -fno-strict-aliasingis supported.
  1300. dnl Reference: https://bugzilla.libsdl.org/show_bug.cgi?id=4254
  1301. CheckNoStrictAliasing()
  1302. {
  1303. AC_MSG_CHECKING(for GCC -fno-strict-aliasing option)
  1304. have_gcc_no_strict_aliasing=no
  1305. save_CFLAGS="$CFLAGS"
  1306. CFLAGS="$save_CFLAGS -fno-strict-aliasing"
  1307. AC_TRY_COMPILE([
  1308. int x = 0;
  1309. ],[
  1310. ],[
  1311. have_gcc_no_strict_aliasing=yes
  1312. ])
  1313. AC_MSG_RESULT($have_gcc_no_strict_aliasing)
  1314. CFLAGS="$save_CFLAGS"
  1315. if test x$have_gcc_no_strict_aliasing = xyes; then
  1316. EXTRA_CFLAGS="$EXTRA_CFLAGS -fno-strict-aliasing"
  1317. fi
  1318. }
  1319. dnl See if GCC's -mpreferred-stack-boundary is supported.
  1320. dnl Reference: http://bugzilla.libsdl.org/show_bug.cgi?id=1296
  1321. CheckStackBoundary()
  1322. {
  1323. AC_MSG_CHECKING(for GCC -mpreferred-stack-boundary option)
  1324. have_gcc_preferred_stack_boundary=no
  1325. save_CFLAGS="$CFLAGS"
  1326. CFLAGS="$save_CFLAGS -mpreferred-stack-boundary=2"
  1327. AC_TRY_COMPILE([
  1328. int x = 0;
  1329. ],[
  1330. ],[
  1331. have_gcc_preferred_stack_boundary=yes
  1332. ])
  1333. AC_MSG_RESULT($have_gcc_preferred_stack_boundary)
  1334. CFLAGS="$save_CFLAGS"
  1335. if test x$have_gcc_preferred_stack_boundary = xyes; then
  1336. EXTRA_CFLAGS="$EXTRA_CFLAGS -mpreferred-stack-boundary=2"
  1337. fi
  1338. }
  1339. dnl See if GCC's -Wdeclaration-after-statement is supported.
  1340. dnl This lets us catch things that would fail on a C89 compiler when using
  1341. dnl a modern GCC.
  1342. CheckDeclarationAfterStatement()
  1343. {
  1344. AC_MSG_CHECKING(for GCC -Wdeclaration-after-statement option)
  1345. have_gcc_declaration_after_statement=no
  1346. save_CFLAGS="$CFLAGS"
  1347. CFLAGS="$save_CFLAGS -Wdeclaration-after-statement -Werror=declaration-after-statement"
  1348. AC_TRY_COMPILE([
  1349. int x = 0;
  1350. ],[
  1351. ],[
  1352. have_gcc_declaration_after_statement=yes
  1353. ])
  1354. AC_MSG_RESULT($have_gcc_declaration_after_statement)
  1355. CFLAGS="$save_CFLAGS"
  1356. if test x$have_gcc_declaration_after_statement = xyes; then
  1357. EXTRA_CFLAGS="$EXTRA_CFLAGS -Wdeclaration-after-statement -Werror=declaration-after-statement"
  1358. fi
  1359. }
  1360. dnl See if GCC's -Wall is supported.
  1361. CheckWarnAll()
  1362. {
  1363. AC_MSG_CHECKING(for GCC -Wall option)
  1364. have_gcc_Wall=no
  1365. save_CFLAGS="$CFLAGS"
  1366. CFLAGS="$save_CFLAGS -Wall"
  1367. AC_TRY_COMPILE([
  1368. int x = 0;
  1369. ],[
  1370. ],[
  1371. have_gcc_Wall=yes
  1372. ])
  1373. AC_MSG_RESULT($have_gcc_Wall)
  1374. CFLAGS="$save_CFLAGS"
  1375. if test x$have_gcc_Wall = xyes; then
  1376. EXTRA_CFLAGS="$EXTRA_CFLAGS -Wall"
  1377. dnl Haiku headers use multicharacter constants all over the place. Ignore these warnings when using -Wall.
  1378. AC_MSG_CHECKING(for necessary GCC -Wno-multichar option)
  1379. need_gcc_Wno_multichar=no
  1380. case "$host" in
  1381. *-*-haiku*)
  1382. need_gcc_Wno_multichar=yes
  1383. ;;
  1384. esac
  1385. AC_MSG_RESULT($need_gcc_Wno_multichar)
  1386. if test x$need_gcc_Wno_multichar = xyes; then
  1387. EXTRA_CFLAGS="$EXTRA_CFLAGS -Wno-multichar"
  1388. fi
  1389. fi
  1390. }
  1391. dnl Check for Wayland
  1392. CheckWayland()
  1393. {
  1394. AC_ARG_ENABLE(video-wayland,
  1395. AS_HELP_STRING([--enable-video-wayland], [use Wayland video driver [[default=yes]]]),
  1396. ,enable_video_wayland=yes)
  1397. AC_ARG_ENABLE(video-wayland-qt-touch,
  1398. AS_HELP_STRING([--enable-video-wayland-qt-touch], [QtWayland server support for Wayland video driver [[default=yes]]]),
  1399. ,enable_video_wayland_qt_touch=yes)
  1400. if test x$enable_video = xyes -a x$enable_video_wayland = xyes; then
  1401. AC_MSG_CHECKING(for Wayland support)
  1402. video_wayland=no
  1403. if test x$video_opengl_egl = xyes && \
  1404. test x$video_opengles_v2 = xyes; then
  1405. if $PKG_CONFIG --exists wayland-client wayland-scanner wayland-egl wayland-cursor egl xkbcommon ; then
  1406. WAYLAND_CFLAGS=`$PKG_CONFIG --cflags wayland-client wayland-egl wayland-cursor xkbcommon`
  1407. WAYLAND_LIBS=`$PKG_CONFIG --libs wayland-client wayland-egl wayland-cursor xkbcommon`
  1408. WAYLAND_SCANNER=`$PKG_CONFIG --variable=wayland_scanner wayland-scanner`
  1409. video_wayland=yes
  1410. fi
  1411. fi
  1412. AC_MSG_RESULT($video_wayland)
  1413. if test x$video_wayland = xyes; then
  1414. AC_DEFINE(SDL_VIDEO_DRIVER_WAYLAND, 1, [ ])
  1415. if test x$enable_video_wayland_qt_touch = xyes; then
  1416. AC_DEFINE(SDL_VIDEO_DRIVER_WAYLAND_QT_TOUCH, 1, [ ])
  1417. fi
  1418. WAYLAND_SOURCES="$srcdir/src/video/wayland/*.c"
  1419. SOURCES="$SOURCES $WAYLAND_SOURCES"
  1420. EXTRA_CFLAGS="$EXTRA_CFLAGS $WAYLAND_CFLAGS -I\$(gen)"
  1421. AC_ARG_ENABLE(wayland-shared,
  1422. AS_HELP_STRING([--enable-wayland-shared], [dynamically load Wayland support [[default=maybe]]]),
  1423. , enable_wayland_shared=maybe)
  1424. dnl FIXME: Do BSD and OS X need special cases?
  1425. case "$host" in
  1426. *)
  1427. wayland_client_lib=[`find_lib "libwayland-client.so.*" "$WAYLAND_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
  1428. wayland_egl_lib=[`find_lib "libwayland-egl.so.*" "$WAYLAND_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
  1429. if test x$wayland_egl_lib = x; then
  1430. dnl This works in Ubuntu 13.10, maybe others
  1431. wayland_egl_lib=[`find_lib "mesa-egl/libwayland-egl.so.*" "$WAYLAND_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
  1432. fi
  1433. wayland_cursor_lib=[`find_lib "libwayland-cursor.so.*" "$WAYLAND_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
  1434. xkbcommon_lib=[`find_lib "libxkbcommon.so.*" "$WAYLAND_LIBS" | sed 's/.*\/\(.*\)/\1/; q'`]
  1435. ;;
  1436. esac
  1437. if test x$enable_wayland_shared = xmaybe; then
  1438. enable_wayland_shared=yes
  1439. fi
  1440. if test x$have_loadso != xyes && \
  1441. test x$enable_wayland_shared = xyes; then
  1442. AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic Wayland loading])
  1443. enable_wayland_shared=no
  1444. fi
  1445. if test x$have_loadso = xyes && \
  1446. test x$enable_wayland_shared = xyes && \
  1447. test x$wayland_client_lib != x && \
  1448. test x$wayland_egl_lib != x && \
  1449. test x$wayland_cursor_lib != x && \
  1450. test x$xkbcommon_lib != x; then
  1451. echo "-- dynamic libwayland-client -> $wayland_client_lib"
  1452. echo "-- dynamic libwayland-egl -> $wayland_egl_lib"
  1453. echo "-- dynamic libwayland-cursor -> $wayland_cursor_lib"
  1454. echo "-- dynamic libxkbcommon -> $xkbcommon_lib"
  1455. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_WAYLAND_DYNAMIC, "$wayland_client_lib", [ ])
  1456. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_WAYLAND_DYNAMIC_EGL, "$wayland_egl_lib", [ ])
  1457. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_WAYLAND_DYNAMIC_CURSOR, "$wayland_cursor_lib", [ ])
  1458. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_WAYLAND_DYNAMIC_XKBCOMMON, "$xkbcommon_lib", [ ])
  1459. SUMMARY_video="${SUMMARY_video} wayland(dynamic)"
  1460. else
  1461. enable_wayland_shared=no
  1462. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $WAYLAND_LIBS"
  1463. SUMMARY_video="${SUMMARY_video} wayland"
  1464. fi
  1465. have_video=yes
  1466. fi
  1467. fi
  1468. }
  1469. dnl Check for Native Client stuff
  1470. CheckNativeClient()
  1471. {
  1472. AC_TRY_COMPILE([
  1473. #if !defined(__native_client__)
  1474. #error "NO NACL"
  1475. #endif
  1476. ],[
  1477. ],[
  1478. AC_DEFINE(SDL_VIDEO_DRIVER_NACL, 1, [ ])
  1479. AC_DEFINE(SDL_AUDIO_DRIVER_NACL, 1, [ ])
  1480. AC_DEFINE(HAVE_POW, 1, [ ])
  1481. AC_DEFINE(HAVE_OPENGLES2, 1, [ ])
  1482. AC_DEFINE(SDL_VIDEO_OPENGL_ES2, 1, [ ])
  1483. AC_DEFINE(SDL_VIDEO_RENDER_OGL_ES2, 1, [ ])
  1484. SDL_LIBS="-lppapi_simple -lppapi_gles2 $SDL_LIBS"
  1485. SDLMAIN_SOURCES="$srcdir/src/main/nacl/*.c"
  1486. SOURCES="$SOURCES $srcdir/src/audio/nacl/*.c"
  1487. SUMMARY_audio="${SUMMARY_audio} nacl"
  1488. SOURCES="$SOURCES $srcdir/src/video/nacl/*.c"
  1489. SUMMARY_video="${SUMMARY_video} nacl opengles2"
  1490. ])
  1491. }
  1492. CheckRPI()
  1493. {
  1494. AC_ARG_ENABLE(video-rpi,
  1495. AS_HELP_STRING([--enable-video-rpi], [use Raspberry Pi video driver [[default=yes]]]),
  1496. , enable_video_rpi=yes)
  1497. if test x$enable_video = xyes -a x$enable_video_rpi = xyes; then
  1498. PKG_CHECK_MODULES([RPI], [bcm_host brcmegl], video_rpi=yes, video_rpi=no)
  1499. if test x$video_rpi = xno; then
  1500. if test x$ARCH = xnetbsd; then
  1501. RPI_CFLAGS="-I/usr/pkg/include -I/usr/pkg/include/interface/vcos/pthreads -I/usr/pkg/include/interface/vmcs_host/linux"
  1502. RPI_LIBS="-Wl,-R/usr/pkg/lib -L/usr/pkg/lib -lbcm_host"
  1503. else
  1504. RPI_CFLAGS="-I/opt/vc/include -I/opt/vc/include/interface/vcos/pthreads -I/opt/vc/include/interface/vmcs_host/linux"
  1505. RPI_LIBS="-Wl,-rpath,/opt/vc/lib -L/opt/vc/lib -lbcm_host"
  1506. fi
  1507. fi
  1508. # Save the original compiler flags and libraries
  1509. ac_save_cflags="$CFLAGS"; ac_save_libs="$LIBS"
  1510. # Add the Raspberry Pi compiler flags and libraries
  1511. CFLAGS="$CFLAGS $RPI_CFLAGS"; LIBS="$LIBS $RPI_LIBS"
  1512. AC_MSG_CHECKING(for Raspberry Pi)
  1513. have_video_rpi=no
  1514. AC_TRY_LINK([
  1515. #include <bcm_host.h>
  1516. ],[
  1517. bcm_host_init();
  1518. ],[
  1519. have_video_rpi=yes
  1520. ],[
  1521. ])
  1522. AC_MSG_RESULT($have_video_rpi)
  1523. # Restore the compiler flags and libraries
  1524. CFLAGS="$ac_save_cflags"; LIBS="$ac_save_libs"
  1525. if test x$have_video_rpi = xyes; then
  1526. CFLAGS="$CFLAGS $RPI_CFLAGS"
  1527. SDL_CFLAGS="$SDL_CFLAGS $RPI_CFLAGS"
  1528. EXTRA_CFLAGS="$EXTRA_CFLAGS $RPI_CFLAGS"
  1529. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $RPI_LIBS"
  1530. SOURCES="$SOURCES $srcdir/src/video/raspberry/*.c"
  1531. AC_DEFINE(SDL_VIDEO_DRIVER_RPI, 1, [ ])
  1532. SUMMARY_video="${SUMMARY_video} rpi"
  1533. fi
  1534. fi
  1535. }
  1536. dnl Find the X11 include and library directories
  1537. CheckX11()
  1538. {
  1539. AC_ARG_ENABLE(video-x11,
  1540. AS_HELP_STRING([--enable-video-x11], [use X11 video driver [[default=yes]]]),
  1541. , enable_video_x11=yes)
  1542. if test x$enable_video = xyes -a x$enable_video_x11 = xyes; then
  1543. case "$host" in
  1544. *-*-darwin*)
  1545. # This isn't necessary for X11, but fixes GLX detection
  1546. if test "x$x_includes" = xNONE && \
  1547. test "x$x_libraries" = xNONE && \
  1548. test -d /opt/X11/include && \
  1549. test -d /opt/X11/lib; then
  1550. x_includes="/opt/X11/include"
  1551. x_libraries="/opt/X11/lib"
  1552. fi
  1553. ;;
  1554. esac
  1555. AC_PATH_X
  1556. AC_PATH_XTRA
  1557. if test x$have_x = xyes; then
  1558. AC_ARG_ENABLE(x11-shared,
  1559. AS_HELP_STRING([--enable-x11-shared], [dynamically load X11 support [[default=maybe]]]),
  1560. , enable_x11_shared=maybe)
  1561. case "$host" in
  1562. *-*-darwin*)
  1563. # Apple now puts this in /opt/X11
  1564. x11_lib='/opt/X11/lib/libX11.6.dylib'
  1565. x11ext_lib='/opt/X11/lib/libXext.6.dylib'
  1566. xcursor_lib='/opt/X11/lib/libXcursor.1.dylib'
  1567. xinerama_lib='/opt/X11/lib/libXinerama.1.dylib'
  1568. xinput_lib='/opt/X11/lib/libXi.6.dylib'
  1569. xrandr_lib='/opt/X11/lib/libXrandr.2.dylib'
  1570. xrender_lib='/opt/X11/lib/libXrender.1.dylib'
  1571. xss_lib='/opt/X11/lib/libXss.1.dylib'
  1572. xvidmode_lib='/opt/X11/lib/libXxf86vm.1.dylib'
  1573. ;;
  1574. *-*-openbsd*)
  1575. x11_lib='libX11.so'
  1576. x11ext_lib='libXext.so'
  1577. xcursor_lib='libXcursor.so'
  1578. xinerama_lib='libXinerama.so'
  1579. xinput_lib='libXi.so'
  1580. xrandr_lib='libXrandr.so'
  1581. xrender_lib='libXrender.so'
  1582. xss_lib='libXss.so'
  1583. xvidmode_lib='libXxf86vm.so'
  1584. ;;
  1585. *)
  1586. x11_lib=[`find_lib "libX11.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
  1587. x11ext_lib=[`find_lib "libXext.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
  1588. xcursor_lib=[`find_lib "libXcursor.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
  1589. xinerama_lib=[`find_lib "libXinerama.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
  1590. xinput_lib=[`find_lib "libXi.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
  1591. xrandr_lib=[`find_lib "libXrandr.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
  1592. xrender_lib=[`find_lib "libXrender.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
  1593. xss_lib=[`find_lib "libXss.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
  1594. xvidmode_lib=[`find_lib "libXxf86vm.so.*" "$X_LIBS -L/usr/X11/$base_libdir -L/usr/X11R6/$base_libdir" | sed 's/.*\/\(.*\)/\1/; q'`]
  1595. ;;
  1596. esac
  1597. if test x$ac_cv_func_shmat != xyes; then
  1598. X_CFLAGS="$X_CFLAGS -DNO_SHARED_MEMORY"
  1599. fi
  1600. CFLAGS="$CFLAGS $X_CFLAGS"
  1601. LDFLAGS="$LDFLAGS $X_LIBS"
  1602. AC_CHECK_HEADER(X11/extensions/Xext.h,
  1603. have_xext_h_hdr=yes,
  1604. have_xext_h_hdr=no,
  1605. [#include <X11/Xlib.h>
  1606. #include <X11/Xproto.h>
  1607. ])
  1608. if test x$have_xext_h_hdr != xyes; then
  1609. AC_MSG_ERROR([
  1610. *** Missing Xext.h, maybe you need to install the libxext-dev package?
  1611. ])
  1612. fi
  1613. AC_DEFINE(SDL_VIDEO_DRIVER_X11, 1, [ ])
  1614. SOURCES="$SOURCES $srcdir/src/video/x11/*.c"
  1615. EXTRA_CFLAGS="$EXTRA_CFLAGS $X_CFLAGS"
  1616. # Needed so SDL applications can include SDL_syswm.h
  1617. SDL_CFLAGS="$SDL_CFLAGS $X_CFLAGS"
  1618. if test x$enable_x11_shared = xmaybe; then
  1619. enable_x11_shared=yes
  1620. fi
  1621. if test x$have_loadso != xyes && \
  1622. test x$enable_x11_shared = xyes; then
  1623. AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic X11 loading])
  1624. enable_x11_shared=no
  1625. fi
  1626. if test x$have_loadso = xyes && \
  1627. test x$enable_x11_shared = xyes && test x$x11_lib != x && test x$x11ext_lib != x; then
  1628. echo "-- dynamic libX11 -> $x11_lib"
  1629. echo "-- dynamic libX11ext -> $x11ext_lib"
  1630. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC, "$x11_lib", [ ])
  1631. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XEXT, "$x11ext_lib", [ ])
  1632. SUMMARY_video="${SUMMARY_video} x11(dynamic)"
  1633. else
  1634. enable_x11_shared=no
  1635. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $X_LIBS -lX11 -lXext"
  1636. SUMMARY_video="${SUMMARY_video} x11"
  1637. fi
  1638. have_video=yes
  1639. AC_MSG_CHECKING(for const parameter to XextAddDisplay)
  1640. have_const_param_XextAddDisplay=no
  1641. AC_TRY_COMPILE([
  1642. #include <X11/Xlib.h>
  1643. #include <X11/Xproto.h>
  1644. #include <X11/extensions/Xext.h>
  1645. #include <X11/extensions/extutil.h>
  1646. extern XExtDisplayInfo* XextAddDisplay(XExtensionInfo* a,Display* b,_Xconst char* c,XExtensionHooks* d,int e,XPointer f);
  1647. ],[
  1648. ],[
  1649. have_const_param_XextAddDisplay=yes
  1650. AC_DEFINE([SDL_VIDEO_DRIVER_X11_CONST_PARAM_XEXTADDDISPLAY], 1, [ ])
  1651. ])
  1652. AC_MSG_RESULT($have_const_param_XextAddDisplay)
  1653. dnl AC_CHECK_LIB(X11, XGetEventData, AC_DEFINE(SDL_VIDEO_DRIVER_X11_SUPPORTS_GENERIC_EVENTS, 1, [Have XGenericEvent]))
  1654. AC_MSG_CHECKING([for XGenericEvent])
  1655. have_XGenericEvent=no
  1656. AC_TRY_COMPILE([
  1657. #include <X11/Xlib.h>
  1658. ],[
  1659. Display *display;
  1660. XEvent event;
  1661. XGenericEventCookie *cookie = &event.xcookie;
  1662. XNextEvent(display, &event);
  1663. XGetEventData(display, cookie);
  1664. XFreeEventData(display, cookie);
  1665. ],[
  1666. have_XGenericEvent=yes
  1667. AC_DEFINE([SDL_VIDEO_DRIVER_X11_SUPPORTS_GENERIC_EVENTS], 1, [ ])
  1668. ])
  1669. AC_MSG_RESULT($have_XGenericEvent)
  1670. AC_CHECK_LIB(X11, XkbKeycodeToKeysym, AC_DEFINE(SDL_VIDEO_DRIVER_X11_HAS_XKBKEYCODETOKEYSYM, 1, [Have XkbKeycodeToKeysym]))
  1671. AC_ARG_ENABLE(video-x11-xcursor,
  1672. AS_HELP_STRING([--enable-video-x11-xcursor], [enable X11 Xcursor support [[default=yes]]]),
  1673. , enable_video_x11_xcursor=yes)
  1674. if test x$enable_video_x11_xcursor = xyes; then
  1675. definitely_enable_video_x11_xcursor=no
  1676. AC_CHECK_HEADER(X11/Xcursor/Xcursor.h,
  1677. have_xcursor_h_hdr=yes,
  1678. have_xcursor_h_hdr=no,
  1679. [#include <X11/Xlib.h>
  1680. ])
  1681. if test x$have_xcursor_h_hdr = xyes; then
  1682. if test x$enable_x11_shared = xyes && test x$xcursor_lib != x ; then
  1683. echo "-- dynamic libXcursor -> $xcursor_lib"
  1684. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XCURSOR, "$xcursor_lib", [ ])
  1685. definitely_enable_video_x11_xcursor=yes
  1686. else
  1687. AC_CHECK_LIB(Xcursor, XcursorImageCreate, have_xcursor_lib=yes)
  1688. if test x$have_xcursor_lib = xyes ; then
  1689. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lXcursor"
  1690. definitely_enable_video_x11_xcursor=yes
  1691. fi
  1692. fi
  1693. fi
  1694. fi
  1695. if test x$definitely_enable_video_x11_xcursor = xyes; then
  1696. AC_DEFINE(SDL_VIDEO_DRIVER_X11_XCURSOR, 1, [ ])
  1697. SUMMARY_video_x11="${SUMMARY_video_x11} xcursor"
  1698. fi
  1699. AC_ARG_ENABLE(video-x11-xdbe,
  1700. AS_HELP_STRING([--enable-video-x11-xdbe], [enable X11 Xdbe support [[default=yes]]]),
  1701. , enable_video_x11_xdbe=yes)
  1702. if test x$enable_video_x11_xdbe = xyes; then
  1703. AC_CHECK_HEADER(X11/extensions/Xdbe.h,
  1704. have_dbe_h_hdr=yes,
  1705. have_dbe_h_hdr=no,
  1706. [#include <X11/Xlib.h>
  1707. ])
  1708. if test x$have_dbe_h_hdr = xyes; then
  1709. AC_DEFINE(SDL_VIDEO_DRIVER_X11_XDBE, 1, [ ])
  1710. SUMMARY_video_x11="${SUMMARY_video_x11} xdbe"
  1711. fi
  1712. fi
  1713. AC_ARG_ENABLE(video-x11-xinerama,
  1714. AS_HELP_STRING([--enable-video-x11-xinerama], [enable X11 Xinerama support [[default=yes]]]),
  1715. , enable_video_x11_xinerama=yes)
  1716. if test x$enable_video_x11_xinerama = xyes; then
  1717. definitely_enable_video_x11_xinerama=no
  1718. AC_CHECK_HEADER(X11/extensions/Xinerama.h,
  1719. have_xinerama_h_hdr=yes,
  1720. have_xinerama_h_hdr=no,
  1721. [#include <X11/Xlib.h>
  1722. ])
  1723. if test x$have_xinerama_h_hdr = xyes; then
  1724. if test x$enable_x11_shared = xyes && test x$xinerama_lib != x ; then
  1725. echo "-- dynamic libXinerama -> $xinerama_lib"
  1726. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XINERAMA, "$xinerama_lib", [ ])
  1727. definitely_enable_video_x11_xinerama=yes
  1728. else
  1729. AC_CHECK_LIB(Xinerama, XineramaQueryExtension, have_xinerama_lib=yes)
  1730. if test x$have_xinerama_lib = xyes ; then
  1731. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lXinerama"
  1732. definitely_enable_video_x11_xinerama=yes
  1733. fi
  1734. fi
  1735. fi
  1736. fi
  1737. if test x$definitely_enable_video_x11_xinerama = xyes; then
  1738. AC_DEFINE(SDL_VIDEO_DRIVER_X11_XINERAMA, 1, [ ])
  1739. SUMMARY_video_x11="${SUMMARY_video_x11} xinerama"
  1740. fi
  1741. AC_ARG_ENABLE(video-x11-xinput,
  1742. AS_HELP_STRING([--enable-video-x11-xinput], [enable X11 XInput extension for manymouse, tablets, etc [[default=yes]]]),
  1743. , enable_video_x11_xinput=yes)
  1744. if test x$enable_video_x11_xinput = xyes; then
  1745. definitely_enable_video_x11_xinput=no
  1746. AC_CHECK_HEADER(X11/extensions/XInput2.h,
  1747. have_xinput_h_hdr=yes,
  1748. have_xinput_h_hdr=no,
  1749. [#include <X11/Xlib.h>
  1750. ])
  1751. if test x$have_xinput_h_hdr = xyes; then
  1752. if test x$enable_x11_shared = xyes && test x$xinput_lib != x ; then
  1753. echo "-- dynamic libXi -> $xinput_lib"
  1754. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XINPUT2, "$xinput_lib", [ ])
  1755. definitely_enable_video_x11_xinput=yes
  1756. else
  1757. AC_CHECK_LIB(Xi, XOpenDevice, have_xinput_lib=yes)
  1758. if test x$have_xinput_lib = xyes ; then
  1759. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lXi"
  1760. definitely_enable_video_x11_xinput=yes
  1761. fi
  1762. fi
  1763. fi
  1764. fi
  1765. if test x$definitely_enable_video_x11_xinput = xyes; then
  1766. SUMMARY_video_x11="${SUMMARY_video_x11} xinput2"
  1767. AC_DEFINE(SDL_VIDEO_DRIVER_X11_XINPUT2, 1, [ ])
  1768. AC_MSG_CHECKING(for xinput2 multitouch)
  1769. have_xinput2_multitouch=no
  1770. AC_TRY_COMPILE([
  1771. #include <X11/Xlib.h>
  1772. #include <X11/Xproto.h>
  1773. #include <X11/extensions/XInput2.h>
  1774. ],[
  1775. int event_type = XI_TouchBegin;
  1776. XITouchClassInfo *t;
  1777. ],[
  1778. have_xinput2_multitouch=yes
  1779. AC_DEFINE([SDL_VIDEO_DRIVER_X11_XINPUT2_SUPPORTS_MULTITOUCH], 1, [ ])
  1780. SUMMARY_video_x11="${SUMMARY_video_x11} xinput2_multitouch"
  1781. ])
  1782. AC_MSG_RESULT($have_xinput2_multitouch)
  1783. fi
  1784. AC_ARG_ENABLE(video-x11-xrandr,
  1785. AS_HELP_STRING([--enable-video-x11-xrandr], [enable X11 Xrandr extension for fullscreen [[default=yes]]]),
  1786. , enable_video_x11_xrandr=yes)
  1787. if test x$enable_video_x11_xrandr = xyes; then
  1788. dnl XRRScreenResources is only present in Xrandr >= 1.2, we use that as a test.
  1789. definitely_enable_video_x11_xrandr=no
  1790. have_xrandr_h_hdr=no
  1791. AC_TRY_COMPILE([
  1792. #include <X11/Xlib.h>
  1793. #include <X11/extensions/Xrandr.h>
  1794. ],[
  1795. XRRScreenResources *res = NULL;
  1796. ],[
  1797. have_xrandr_h_hdr=yes
  1798. ])
  1799. if test x$have_xrandr_h_hdr = xyes; then
  1800. if test x$enable_x11_shared = xyes && test x$xrandr_lib != x ; then
  1801. echo "-- dynamic libXrandr -> $xrandr_lib"
  1802. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XRANDR, "$xrandr_lib", [ ])
  1803. definitely_enable_video_x11_xrandr=yes
  1804. else
  1805. AC_CHECK_LIB(Xrandr, XRRQueryExtension, have_xrandr_lib=yes)
  1806. if test x$have_xrandr_lib = xyes ; then
  1807. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lXrandr"
  1808. definitely_enable_video_x11_xrandr=yes
  1809. fi
  1810. fi
  1811. fi
  1812. fi
  1813. if test x$definitely_enable_video_x11_xrandr = xyes; then
  1814. AC_DEFINE(SDL_VIDEO_DRIVER_X11_XRANDR, 1, [ ])
  1815. SUMMARY_video_x11="${SUMMARY_video_x11} xrandr"
  1816. fi
  1817. AC_ARG_ENABLE(video-x11-scrnsaver,
  1818. AS_HELP_STRING([--enable-video-x11-scrnsaver], [enable X11 screensaver extension [[default=yes]]]),
  1819. , enable_video_x11_scrnsaver=yes)
  1820. if test x$enable_video_x11_scrnsaver = xyes; then
  1821. AC_CHECK_HEADER(X11/extensions/scrnsaver.h,
  1822. have_scrnsaver_h_hdr=yes,
  1823. have_scrnsaver_h_hdr=no,
  1824. [#include <X11/Xlib.h>
  1825. ])
  1826. if test x$have_scrnsaver_h_hdr = xyes; then
  1827. if test x$enable_x11_shared = xyes && test x$xss_lib != x ; then
  1828. echo "-- dynamic libXss -> $xss_lib"
  1829. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XSS, "$xss_lib", [ ])
  1830. definitely_enable_video_x11_scrnsaver=yes
  1831. else
  1832. AC_CHECK_LIB(Xss, XScreenSaverSuspend, have_xss_lib=yes)
  1833. if test x$have_xss_lib = xyes ; then
  1834. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lXss"
  1835. definitely_enable_video_x11_scrnsaver=yes
  1836. fi
  1837. fi
  1838. fi
  1839. fi
  1840. if test x$definitely_enable_video_x11_scrnsaver = xyes; then
  1841. AC_DEFINE(SDL_VIDEO_DRIVER_X11_XSCRNSAVER, 1, [ ])
  1842. SUMMARY_video_x11="${SUMMARY_video_x11} xscrnsaver"
  1843. fi
  1844. AC_ARG_ENABLE(video-x11-xshape,
  1845. AS_HELP_STRING([--enable-video-x11-xshape], [enable X11 XShape support [[default=yes]]]),
  1846. , enable_video_x11_xshape=yes)
  1847. if test x$enable_video_x11_xshape = xyes; then
  1848. AC_CHECK_HEADER(X11/extensions/shape.h,
  1849. have_shape_h_hdr=yes,
  1850. have_shape_h_hdr=no,
  1851. [#include <X11/Xlib.h>
  1852. ])
  1853. if test x$have_shape_h_hdr = xyes; then
  1854. AC_DEFINE(SDL_VIDEO_DRIVER_X11_XSHAPE, 1, [ ])
  1855. SUMMARY_video_x11="${SUMMARY_video_x11} xshape"
  1856. fi
  1857. fi
  1858. AC_ARG_ENABLE(video-x11-vm,
  1859. AS_HELP_STRING([--enable-video-x11-vm], [use X11 VM extension for fullscreen [[default=yes]]]),
  1860. , enable_video_x11_vm=yes)
  1861. if test x$enable_video_x11_vm = xyes; then
  1862. definitely_enable_video_x11_vm=no
  1863. AC_CHECK_HEADER(X11/extensions/xf86vmode.h,
  1864. have_vm_h_hdr=yes,
  1865. have_vm_h_hdr=no,
  1866. [#include <X11/Xlib.h>
  1867. ])
  1868. if test x$have_vm_h_hdr = xyes; then
  1869. if test x$enable_x11_shared = xyes && test x$xvidmode_lib != x ; then
  1870. echo "-- dynamic libXxf86vm -> $xvidmode_lib"
  1871. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XVIDMODE, "$xvidmode_lib", [ ])
  1872. definitely_enable_video_x11_vm=yes
  1873. else
  1874. AC_CHECK_LIB(Xxf86vm, XF86VidModeQueryVersion, have_vm_lib=yes)
  1875. if test x$have_vm_lib = xyes ; then
  1876. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lXxf86vm"
  1877. definitely_enable_video_x11_vm=yes
  1878. fi
  1879. fi
  1880. fi
  1881. fi
  1882. if test x$definitely_enable_video_x11_vm = xyes; then
  1883. AC_DEFINE(SDL_VIDEO_DRIVER_X11_XVIDMODE, 1, [ ])
  1884. SUMMARY_video_x11="${SUMMARY_video_x11} xvidmode"
  1885. fi
  1886. fi
  1887. else
  1888. # Prevent Mesa from including X11 headers
  1889. EXTRA_CFLAGS="$EXTRA_CFLAGS -DMESA_EGL_NO_X11_HEADERS -DEGL_NO_X11"
  1890. fi
  1891. }
  1892. dnl Set up the Vivante video driver if enabled
  1893. CheckVivanteVideo()
  1894. {
  1895. AC_ARG_ENABLE(video-vivante,
  1896. AS_HELP_STRING([--enable-video-vivante], [use Vivante EGL video driver [[default=yes]]]),
  1897. , enable_video_vivante=yes)
  1898. if test x$enable_video = xyes -a x$enable_video_vivante = xyes; then
  1899. AC_MSG_CHECKING(for Vivante VDK API)
  1900. have_vivante_vdk=no
  1901. AC_TRY_COMPILE([
  1902. #define LINUX
  1903. #define EGL_API_FB
  1904. #include <gc_vdk.h>
  1905. ],[
  1906. ],[
  1907. have_vivante_vdk=yes
  1908. ])
  1909. AC_MSG_RESULT($have_vivante_vdk)
  1910. AC_MSG_CHECKING(for Vivante FB API)
  1911. have_vivante_egl=no
  1912. AC_TRY_COMPILE([
  1913. #define LINUX
  1914. #define EGL_API_FB
  1915. #include <EGL/eglvivante.h>
  1916. ],[
  1917. ],[
  1918. have_vivante_egl=yes
  1919. ])
  1920. AC_MSG_RESULT($have_vivante_egl)
  1921. if test x$have_vivante_vdk = xyes -o x$have_vivante_egl = xyes; then
  1922. AC_DEFINE(SDL_VIDEO_DRIVER_VIVANTE, 1, [ ])
  1923. EXTRA_CFLAGS="$EXTRA_CFLAGS -DLINUX -DEGL_API_FB"
  1924. if test x$have_vivante_vdk = xyes; then
  1925. AC_DEFINE(SDL_VIDEO_DRIVER_VIVANTE_VDK, 1, [ ])
  1926. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lVDK"
  1927. fi
  1928. SOURCES="$SOURCES $srcdir/src/video/vivante/*.c"
  1929. SUMMARY_video="${SUMMARY_video} vivante"
  1930. have_video=yes
  1931. fi
  1932. fi
  1933. }
  1934. dnl Set up the Haiku video driver if enabled
  1935. CheckHaikuVideo()
  1936. {
  1937. if test x$enable_video = xyes; then
  1938. AC_DEFINE(SDL_VIDEO_DRIVER_HAIKU, 1, [ ])
  1939. SOURCES="$SOURCES $srcdir/src/video/haiku/*.cc"
  1940. have_video=yes
  1941. SUMMARY_video="${SUMMARY_video} haiku"
  1942. fi
  1943. }
  1944. dnl Set up the Cocoa video driver for Mac OS X (but not Darwin)
  1945. CheckCOCOA()
  1946. {
  1947. AC_ARG_ENABLE(video-cocoa,
  1948. AS_HELP_STRING([--enable-video-cocoa], [use Cocoa video driver [[default=yes]]]),
  1949. , enable_video_cocoa=yes)
  1950. if test x$enable_video = xyes -a x$enable_video_cocoa = xyes; then
  1951. save_CFLAGS="$CFLAGS"
  1952. dnl Work around that we don't have Objective-C support in autoconf
  1953. CFLAGS="$CFLAGS -x objective-c"
  1954. AC_MSG_CHECKING(for Cocoa framework)
  1955. have_cocoa=no
  1956. AC_TRY_COMPILE([
  1957. #import <Cocoa/Cocoa.h>
  1958. ],[
  1959. ],[
  1960. have_cocoa=yes
  1961. ])
  1962. AC_MSG_RESULT($have_cocoa)
  1963. CFLAGS="$save_CFLAGS"
  1964. if test x$have_cocoa = xyes; then
  1965. AC_DEFINE(SDL_VIDEO_DRIVER_COCOA, 1, [ ])
  1966. SOURCES="$SOURCES $srcdir/src/video/cocoa/*.m"
  1967. SUMMARY_video="${SUMMARY_video} cocoa"
  1968. have_video=yes
  1969. fi
  1970. fi
  1971. }
  1972. CheckMETAL()
  1973. {
  1974. AC_ARG_ENABLE(video-metal,
  1975. AC_HELP_STRING([--enable-video-metal], [include Metal support [[default=yes]]]),
  1976. , enable_video_metal=yes)
  1977. AC_ARG_ENABLE(render-metal,
  1978. AS_HELP_STRING([--enable-render-metal], [enable the Metal render driver [[default=yes]]]),
  1979. , enable_render_metal=yes)
  1980. if test x$enable_video = xyes -a x$enable_video_metal = xyes; then
  1981. save_CFLAGS="$CFLAGS"
  1982. dnl Work around that we don't have Objective-C support in autoconf
  1983. CFLAGS="$CFLAGS -x objective-c"
  1984. AC_MSG_CHECKING(for Metal framework)
  1985. have_metal=no
  1986. AC_TRY_COMPILE([
  1987. #import <Cocoa/Cocoa.h>
  1988. #import <Metal/Metal.h>
  1989. #import <QuartzCore/CAMetalLayer.h>
  1990. #if TARGET_CPU_X86
  1991. #error Metal doesn't work on this configuration
  1992. #endif
  1993. ],[
  1994. ],[
  1995. have_metal=yes
  1996. ])
  1997. CFLAGS="$save_CFLAGS"
  1998. AC_MSG_RESULT($have_metal)
  1999. if test x$have_metal = xyes; then
  2000. AC_DEFINE(SDL_VIDEO_METAL, 1, [ ])
  2001. if test x$enable_render = xyes -a x$enable_render_metal = xyes; then
  2002. AC_DEFINE(SDL_VIDEO_RENDER_METAL, 1, [ ])
  2003. SOURCES="$SOURCES $srcdir/src/render/metal/*.m"
  2004. fi
  2005. SUMMARY_video="${SUMMARY_video} metal"
  2006. else
  2007. enable_video_metal=no
  2008. enable_render_metal=no
  2009. fi
  2010. fi
  2011. }
  2012. dnl Find DirectFB
  2013. CheckDirectFB()
  2014. {
  2015. AC_ARG_ENABLE(video-directfb,
  2016. AS_HELP_STRING([--enable-video-directfb], [use DirectFB video driver [[default=no]]]),
  2017. , enable_video_directfb=no)
  2018. if test x$enable_video = xyes -a x$enable_video_directfb = xyes; then
  2019. PKG_CHECK_MODULES([DIRECTFB], [directfb >= 1.0.0], video_directfb=yes, video_directfb=no)
  2020. if test x$video_directfb = xyes; then
  2021. # SuSE 11.1 installs directfb-config without directfb-devel
  2022. save_CPPFLAGS="$CPPFLAGS"
  2023. CPPFLAGS="$CPPFLAGS $DIRECTFB_CFLAGS"
  2024. AC_CHECK_HEADER(directfb.h, have_directfb_hdr=yes, have_directfb_hdr=no)
  2025. CPPFLAGS="$save_CPPFLAGS"
  2026. video_directfb=$have_directfb_hdr
  2027. fi
  2028. if test x$video_directfb = xyes; then
  2029. AC_ARG_ENABLE(directfb-shared,
  2030. AS_HELP_STRING([--enable-directfb-shared], [dynamically load directfb support [[default=yes]]]),
  2031. , enable_directfb_shared=yes)
  2032. AC_DEFINE(SDL_VIDEO_DRIVER_DIRECTFB, 1, [ ])
  2033. AC_DEFINE(SDL_VIDEO_RENDER_DIRECTFB, 1, [ ])
  2034. SOURCES="$SOURCES $srcdir/src/video/directfb/*.c"
  2035. EXTRA_CFLAGS="$EXTRA_CFLAGS $DIRECTFB_CFLAGS"
  2036. AC_MSG_CHECKING(for directfb dynamic loading support)
  2037. directfb_shared=no
  2038. directfb_lib=[`find_lib "libdirectfb*.so.*" "$DIRECTFB_LIBS"`]
  2039. # | sed 's/.*\/\(.*\)/\1/; q'`]
  2040. AC_MSG_WARN("directfb $directfb_lib")
  2041. if test x$have_loadso != xyes && \
  2042. test x$enable_directfb_shared = xyes; then
  2043. AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic directfb loading])
  2044. fi
  2045. if test x$have_loadso = xyes && \
  2046. test x$enable_directfb_shared = xyes && test x$directfb_lib != x; then
  2047. directfb_shared=yes
  2048. echo "-- $directfb_lib_spec -> $directfb_lib"
  2049. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_DIRECTFB_DYNAMIC, "$directfb_lib", [ ])
  2050. SUMMARY_video="${SUMMARY_video} directfb(dynamic)"
  2051. else
  2052. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $DIRECTFB_LIBS"
  2053. SUMMARY_video="${SUMMARY_video} directfb"
  2054. fi
  2055. AC_MSG_RESULT($directfb_shared)
  2056. SDL_CFLAGS="$SDL_CFLAGS $DIRECTFB_CFLAGS"
  2057. have_video=yes
  2058. fi
  2059. fi
  2060. }
  2061. dnl Find KMSDRM
  2062. CheckKMSDRM()
  2063. {
  2064. AC_ARG_ENABLE(video-kmsdrm,
  2065. AS_HELP_STRING([--enable-video-kmsdrm], [use KMSDRM video driver [[default=no]]]),
  2066. , enable_video_kmsdrm=no)
  2067. if test x$enable_video = xyes -a x$enable_video_kmsdrm = xyes; then
  2068. video_kmsdrm=no
  2069. PKG_CHECK_MODULES([LIBDRM], [libdrm >= 2.4.46], libdrm_avail=yes, libdrm_avail=no)
  2070. PKG_CHECK_MODULES([LIBGBM], [gbm >= 9.0.0], libgbm_avail=yes, libgbm_avail=no)
  2071. if test x$libdrm_avail = xyes -a x$libgbm_avail = xyes; then
  2072. video_kmsdrm=yes
  2073. fi
  2074. if test x$video_kmsdrm = xyes; then
  2075. AC_ARG_ENABLE(kmsdrm-shared,
  2076. AS_HELP_STRING([--enable-kmsdrm-shared], [dynamically load kmsdrm support [[default=yes]]]),
  2077. , enable_kmsdrm_shared=yes)
  2078. AC_DEFINE(SDL_VIDEO_DRIVER_KMSDRM, 1, [ ])
  2079. SOURCES="$SOURCES $srcdir/src/video/kmsdrm/*.c"
  2080. EXTRA_CFLAGS="$EXTRA_CFLAGS $LIBDRM_CFLAGS $LIBGBM_CFLAGS"
  2081. AC_MSG_CHECKING(for kmsdrm dynamic loading support)
  2082. kmsdrm_shared=no
  2083. drm_lib=[`find_lib "libdrm.so.*" "$DRM_LIBS"`]
  2084. gbm_lib=[`find_lib "libgbm.so.*" "$DRM_LIBS"`]
  2085. if test x$have_loadso != xyes && \
  2086. test x$enable_kmsdrm_shared = xyes; then
  2087. AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic kmsdrm loading])
  2088. fi
  2089. if test x$have_loadso = xyes && \
  2090. test x$enable_kmsdrm_shared = xyes && test x$drm_lib != x && test x$gbm_lib != x; then
  2091. kmsdrm_shared=yes
  2092. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_KMSDRM_DYNAMIC, "$drm_lib", [ ])
  2093. AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_KMSDRM_DYNAMIC_GBM, "$gbm_lib", [ ])
  2094. AC_DEFINE_UNQUOTED(HAVE_KMSDRM_SHARED, "TRUE", [ ])
  2095. SUMMARY_video="${SUMMARY_video} kmsdrm(dynamic)"
  2096. else
  2097. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $LIBDRM_LIBS $LIBGBM_LIBS"
  2098. SUMMARY_video="${SUMMARY_video} kmsdrm"
  2099. fi
  2100. AC_MSG_RESULT($kmsdrm_shared)
  2101. have_video=yes
  2102. fi
  2103. fi
  2104. }
  2105. dnl rcg04172001 Set up the Null video driver.
  2106. CheckDummyVideo()
  2107. {
  2108. AC_ARG_ENABLE(video-dummy,
  2109. AS_HELP_STRING([--enable-video-dummy], [use dummy video driver [[default=yes]]]),
  2110. , enable_video_dummy=yes)
  2111. if test x$enable_video_dummy = xyes; then
  2112. AC_DEFINE(SDL_VIDEO_DRIVER_DUMMY, 1, [ ])
  2113. SOURCES="$SOURCES $srcdir/src/video/dummy/*.c"
  2114. have_video=yes
  2115. SUMMARY_video="${SUMMARY_video} dummy"
  2116. fi
  2117. }
  2118. dnl Set up the QNX video driver if enabled
  2119. CheckQNXVideo()
  2120. {
  2121. if test x$enable_video = xyes; then
  2122. AC_DEFINE(SDL_VIDEO_DRIVER_QNX, 1, [ ])
  2123. SOURCES="$SOURCES $srcdir/src/video/qnx/*.c"
  2124. have_video=yes
  2125. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lscreen -lEGL -lGLESv2"
  2126. SUMMARY_video="${SUMMARY_video} qnx"
  2127. fi
  2128. }
  2129. dnl Set up the QNX audio driver if enabled
  2130. CheckQNXAudio()
  2131. {
  2132. if test x$enable_audio = xyes; then
  2133. AC_DEFINE(SDL_AUDIO_DRIVER_QSA, 1, [ ])
  2134. SOURCES="$SOURCES $srcdir/src/audio/qsa/*.c"
  2135. have_audio=yes
  2136. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lasound"
  2137. SUMMARY_audio="${SUMMARY_audio} qsa"
  2138. fi
  2139. }
  2140. dnl Check to see if OpenGL support is desired
  2141. AC_ARG_ENABLE(video-opengl,
  2142. AS_HELP_STRING([--enable-video-opengl], [include OpenGL support [[default=yes]]]),
  2143. , enable_video_opengl=yes)
  2144. dnl Find OpenGL
  2145. CheckOpenGLX11()
  2146. {
  2147. if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then
  2148. AC_MSG_CHECKING(for OpenGL (GLX) support)
  2149. video_opengl=no
  2150. AC_TRY_COMPILE([
  2151. #include <GL/gl.h>
  2152. #include <GL/glx.h>
  2153. ],[
  2154. ],[
  2155. video_opengl=yes
  2156. ])
  2157. AC_MSG_RESULT($video_opengl)
  2158. if test x$video_opengl = xyes; then
  2159. AC_DEFINE(SDL_VIDEO_OPENGL, 1, [ ])
  2160. AC_DEFINE(SDL_VIDEO_OPENGL_GLX, 1, [ ])
  2161. AC_DEFINE(SDL_VIDEO_RENDER_OGL, 1, [ ])
  2162. SUMMARY_video="${SUMMARY_video} opengl"
  2163. fi
  2164. fi
  2165. }
  2166. dnl Check to see if OpenGL ES support is desired
  2167. AC_ARG_ENABLE(video-opengles,
  2168. AS_HELP_STRING([--enable-video-opengles], [include OpenGL ES support [[default=yes]]]),
  2169. , enable_video_opengles=yes)
  2170. AC_ARG_ENABLE(video-opengles1,
  2171. AS_HELP_STRING([--enable-video-opengles1], [include OpenGL ES 1.1 support [[default=yes]]]),
  2172. , enable_video_opengles1=yes)
  2173. AC_ARG_ENABLE(video-opengles2,
  2174. AS_HELP_STRING([--enable-video-opengles2], [include OpenGL ES 2.0 support [[default=yes]]]),
  2175. , enable_video_opengles2=yes)
  2176. dnl Find OpenGL ES
  2177. CheckOpenGLESX11()
  2178. {
  2179. if test x$enable_video = xyes -a x$enable_video_opengles = xyes; then
  2180. AC_MSG_CHECKING(for EGL support)
  2181. video_opengl_egl=no
  2182. AC_TRY_COMPILE([
  2183. #define LINUX
  2184. #define EGL_API_FB
  2185. #define MESA_EGL_NO_X11_HEADERS
  2186. #include <EGL/egl.h>
  2187. #include <EGL/eglext.h>
  2188. ],[
  2189. ],[
  2190. video_opengl_egl=yes
  2191. ])
  2192. AC_MSG_RESULT($video_opengl_egl)
  2193. if test x$video_opengl_egl = xyes; then
  2194. AC_DEFINE(SDL_VIDEO_OPENGL_EGL, 1, [ ])
  2195. fi
  2196. if test x$enable_video_opengles1 = xyes; then
  2197. AC_MSG_CHECKING(for OpenGL ES v1 headers)
  2198. video_opengles_v1=no
  2199. AC_TRY_COMPILE([
  2200. #include <GLES/gl.h>
  2201. #include <GLES/glext.h>
  2202. ],[
  2203. ],[
  2204. video_opengles_v1=yes
  2205. ])
  2206. AC_MSG_RESULT($video_opengles_v1)
  2207. if test x$video_opengles_v1 = xyes; then
  2208. AC_DEFINE(SDL_VIDEO_OPENGL_ES, 1, [ ])
  2209. AC_DEFINE(SDL_VIDEO_RENDER_OGL_ES, 1, [ ])
  2210. SUMMARY_video="${SUMMARY_video} opengl_es1"
  2211. fi
  2212. fi
  2213. if test x$enable_video_opengles2 = xyes; then
  2214. AC_MSG_CHECKING(for OpenGL ES v2 headers)
  2215. video_opengles_v2=no
  2216. AC_TRY_COMPILE([
  2217. #include <GLES2/gl2.h>
  2218. #include <GLES2/gl2ext.h>
  2219. ],[
  2220. ],[
  2221. video_opengles_v2=yes
  2222. ])
  2223. AC_MSG_RESULT($video_opengles_v2)
  2224. if test x$video_opengles_v2 = xyes; then
  2225. AC_DEFINE(SDL_VIDEO_OPENGL_ES2, 1, [ ])
  2226. AC_DEFINE(SDL_VIDEO_RENDER_OGL_ES2, 1, [ ])
  2227. SUMMARY_video="${SUMMARY_video} opengl_es2"
  2228. fi
  2229. fi
  2230. fi
  2231. }
  2232. dnl Check for Windows OpenGL
  2233. CheckWINDOWSGL()
  2234. {
  2235. if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then
  2236. AC_DEFINE(SDL_VIDEO_OPENGL, 1, [ ])
  2237. AC_DEFINE(SDL_VIDEO_OPENGL_WGL, 1, [ ])
  2238. AC_DEFINE(SDL_VIDEO_RENDER_OGL, 1, [ ])
  2239. SUMMARY_video="${SUMMARY_video} opengl"
  2240. fi
  2241. }
  2242. dnl Check for Windows OpenGL
  2243. CheckWINDOWSGLES()
  2244. {
  2245. if test x$enable_video = xyes -a x$enable_video_opengles = xyes; then
  2246. AC_MSG_CHECKING(for EGL support)
  2247. video_opengl_egl=no
  2248. AC_TRY_COMPILE([
  2249. #include <EGL/egl.h>
  2250. ],[
  2251. ],[
  2252. video_opengl_egl=yes
  2253. ])
  2254. AC_MSG_RESULT($video_opengl_egl)
  2255. if test x$video_opengl_egl = xyes; then
  2256. AC_DEFINE(SDL_VIDEO_OPENGL, 1, [ ])
  2257. AC_DEFINE(SDL_VIDEO_OPENGL_EGL, 1, [ ])
  2258. SUMMARY_video="${SUMMARY_video} opengl_es1"
  2259. fi
  2260. AC_MSG_CHECKING(for OpenGL ES v2 headers)
  2261. video_opengles_v2=no
  2262. AC_TRY_COMPILE([
  2263. #include <GLES2/gl2.h>
  2264. #include <GLES2/gl2ext.h>
  2265. ],[
  2266. ],[
  2267. video_opengles_v2=yes
  2268. ])
  2269. AC_MSG_RESULT($video_opengles_v2)
  2270. if test x$video_opengles_v2 = xyes; then
  2271. AC_DEFINE(SDL_VIDEO_OPENGL, 1, [ ])
  2272. AC_DEFINE(SDL_VIDEO_OPENGL_ES2, 1, [ ])
  2273. AC_DEFINE(SDL_VIDEO_RENDER_OGL_ES2, 1, [ ])
  2274. SUMMARY_video="${SUMMARY_video} opengl_es2"
  2275. fi
  2276. fi
  2277. }
  2278. dnl Check for Haiku OpenGL
  2279. CheckHaikuGL()
  2280. {
  2281. if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then
  2282. AC_DEFINE(SDL_VIDEO_OPENGL, 1, [ ])
  2283. AC_DEFINE(SDL_VIDEO_OPENGL_HAIKU, 1, [ ])
  2284. AC_DEFINE(SDL_VIDEO_RENDER_OGL, 1, [ ])
  2285. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lGL"
  2286. SUMMARY_video="${SUMMARY_video} opengl"
  2287. fi
  2288. }
  2289. dnl Check for MacOS OpenGL
  2290. CheckMacGL()
  2291. {
  2292. if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then
  2293. AC_DEFINE(SDL_VIDEO_OPENGL, 1, [ ])
  2294. AC_DEFINE(SDL_VIDEO_OPENGL_CGL, 1, [ ])
  2295. AC_DEFINE(SDL_VIDEO_RENDER_OGL, 1, [ ])
  2296. SUMMARY_video="${SUMMARY_video} opengl"
  2297. fi
  2298. }
  2299. dnl Check for MacOS OpenGLES
  2300. CheckMacGLES()
  2301. {
  2302. if test x$enable_video = xyes -a x$enable_video_opengles = xyes; then
  2303. video_opengl_egl=yes
  2304. AC_DEFINE(SDL_VIDEO_OPENGL_EGL, 1, [ ])
  2305. video_opengles_v2=yes
  2306. AC_DEFINE(SDL_VIDEO_OPENGL_ES2, 1, [ ])
  2307. AC_DEFINE(SDL_VIDEO_RENDER_OGL_ES2, 1, [ ])
  2308. SUMMARY_video="${SUMMARY_video} opengl_es2"
  2309. fi
  2310. }
  2311. CheckEmscriptenGLES()
  2312. {
  2313. if test x$enable_video = xyes -a x$enable_video_opengles = xyes; then
  2314. AC_MSG_CHECKING(for EGL support)
  2315. video_opengl_egl=no
  2316. AC_TRY_COMPILE([
  2317. #include <EGL/egl.h>
  2318. ],[
  2319. ],[
  2320. video_opengl_egl=yes
  2321. ])
  2322. AC_MSG_RESULT($video_opengl_egl)
  2323. if test x$video_opengl_egl = xyes; then
  2324. AC_DEFINE(SDL_VIDEO_OPENGL_EGL, 1, [ ])
  2325. fi
  2326. AC_MSG_CHECKING(for OpenGL ES v2 headers)
  2327. video_opengles_v2=no
  2328. AC_TRY_COMPILE([
  2329. #include <GLES2/gl2.h>
  2330. #include <GLES2/gl2ext.h>
  2331. ],[
  2332. ],[
  2333. video_opengles_v2=yes
  2334. ])
  2335. AC_MSG_RESULT($video_opengles_v2)
  2336. if test x$video_opengles_v2 = xyes; then
  2337. AC_DEFINE(SDL_VIDEO_OPENGL_ES2, 1, [ ])
  2338. AC_DEFINE(SDL_VIDEO_RENDER_OGL_ES2, 1, [ ])
  2339. SUMMARY_video="${SUMMARY_video} opengl_es2"
  2340. fi
  2341. fi
  2342. }
  2343. dnl Check to see if Vulkan support is desired
  2344. AC_ARG_ENABLE(video-vulkan,
  2345. AS_HELP_STRING([--enable-video-vulkan], [include Vulkan support [[default=yes]]]),
  2346. , enable_video_vulkan=yes)
  2347. dnl Find Vulkan Header
  2348. CheckVulkan()
  2349. {
  2350. if test x$enable_video = xyes -a x$enable_video_vulkan = xyes; then
  2351. case "$host" in
  2352. *-*-android*)
  2353. AC_TRY_COMPILE([
  2354. #if defined(__ARM_ARCH) && __ARM_ARCH < 7
  2355. #error Vulkan doesn't work on this configuration
  2356. #endif
  2357. ],[
  2358. ],[
  2359. ],[
  2360. enable_video_vulkan=no
  2361. ])
  2362. ;;
  2363. *-*-darwin*)
  2364. save_CFLAGS="$CFLAGS"
  2365. dnl Work around that we don't have Objective-C support in autoconf
  2366. CFLAGS="$CFLAGS -x objective-c"
  2367. AC_TRY_COMPILE([
  2368. #include <Cocoa/Cocoa.h>
  2369. #include <Metal/Metal.h>
  2370. #include <QuartzCore/CAMetalLayer.h>
  2371. #if TARGET_CPU_X86
  2372. #error Vulkan doesn't work on this configuration
  2373. #endif
  2374. ],[
  2375. ],[
  2376. ],[
  2377. enable_video_vulkan=no
  2378. ])
  2379. CFLAGS="$save_CFLAGS"
  2380. ;;
  2381. *)
  2382. ;;
  2383. esac
  2384. if test x$enable_video_vulkan = xno; then
  2385. # For reasons I am totally unable to see, I get an undefined macro error if
  2386. # I put this in the AC_TRY_COMPILE.
  2387. AC_MSG_WARN([Vulkan does not work on this configuration.])
  2388. fi
  2389. fi
  2390. if test x$enable_video_vulkan = xyes; then
  2391. AC_DEFINE(SDL_VIDEO_VULKAN, 1, [ ])
  2392. SUMMARY_video="${SUMMARY_video} vulkan"
  2393. fi
  2394. }
  2395. dnl See if we can use the new unified event interface in Linux 2.4
  2396. CheckInputEvents()
  2397. {
  2398. dnl Check for Linux 2.4 unified input event interface support
  2399. AC_MSG_CHECKING(for Linux 2.4 unified input interface)
  2400. use_input_events=no
  2401. AC_TRY_COMPILE([
  2402. #include <linux/input.h>
  2403. ],[
  2404. #ifndef EVIOCGNAME
  2405. #error EVIOCGNAME() ioctl not available
  2406. #endif
  2407. ],[
  2408. use_input_events=yes
  2409. ])
  2410. AC_MSG_RESULT($use_input_events)
  2411. if test x$use_input_events = xyes; then
  2412. AC_DEFINE(SDL_INPUT_LINUXEV, 1, [ ])
  2413. SUMMARY_input="${SUMMARY_input} linuxev"
  2414. fi
  2415. }
  2416. dnl See if we can use the kernel kd.h header
  2417. CheckInputKD()
  2418. {
  2419. AC_MSG_CHECKING(for Linux kd.h)
  2420. use_input_kd=no
  2421. AC_TRY_COMPILE([
  2422. #include <linux/kd.h>
  2423. #include <linux/keyboard.h>
  2424. ],[
  2425. struct kbentry kbe;
  2426. kbe.kb_table = KG_CTRL;
  2427. ioctl(0, KDGKBENT, &kbe);
  2428. ],[
  2429. use_input_kd=yes
  2430. ])
  2431. AC_MSG_RESULT($use_input_kd)
  2432. if test x$use_input_kd = xyes; then
  2433. AC_DEFINE(SDL_INPUT_LINUXKD, 1, [ ])
  2434. SUMMARY_input="${SUMMARY_input} linuxkd"
  2435. fi
  2436. }
  2437. dnl See if the platform offers libudev for device enumeration and hotplugging.
  2438. CheckLibUDev()
  2439. {
  2440. AC_ARG_ENABLE(libudev,
  2441. AS_HELP_STRING([--enable-libudev], [enable libudev support [[default=yes]]]),
  2442. , enable_libudev=yes)
  2443. if test x$enable_libudev = xyes; then
  2444. AC_CHECK_HEADER(libudev.h,
  2445. have_libudev_h_hdr=yes,
  2446. have_libudev_h_hdr=no)
  2447. if test x$have_libudev_h_hdr = xyes; then
  2448. AC_DEFINE(HAVE_LIBUDEV_H, 1, [ ])
  2449. udev_lib=[`find_lib "libudev.so.*" "" | sed 's/.*\/\(.*\)/\1/; q'`]
  2450. if test x$udev_lib != x; then
  2451. echo "-- dynamic udev -> $udev_lib"
  2452. AC_DEFINE_UNQUOTED(SDL_UDEV_DYNAMIC, "$udev_lib", [ ])
  2453. fi
  2454. fi
  2455. fi
  2456. }
  2457. dnl See if the platform offers libdbus for various IPC techniques.
  2458. CheckDBus()
  2459. {
  2460. AC_ARG_ENABLE(dbus,
  2461. AS_HELP_STRING([--enable-dbus], [enable D-Bus support [[default=yes]]]),
  2462. , enable_dbus=yes)
  2463. if test x$enable_dbus = xyes; then
  2464. PKG_CHECK_MODULES([DBUS], [dbus-1], have_dbus=yes, have_dbus=no)
  2465. save_CFLAGS="$CFLAGS"
  2466. CFLAGS="$save_CFLAGS $DBUS_CFLAGS"
  2467. AC_CHECK_HEADER(dbus/dbus.h,
  2468. have_dbus_dbus_h_hdr=yes,
  2469. have_dbus_dbus_h_hdr=no)
  2470. CFLAGS="$save_CFLAGS"
  2471. if test x$have_dbus_dbus_h_hdr = xyes; then
  2472. AC_DEFINE(HAVE_DBUS_DBUS_H, 1, [ ])
  2473. EXTRA_CFLAGS="$EXTRA_CFLAGS $DBUS_CFLAGS"
  2474. SOURCES="$SOURCES $srcdir/src/core/linux/SDL_dbus.c"
  2475. fi
  2476. fi
  2477. }
  2478. dnl See if the platform wanna IME support.
  2479. CheckIME()
  2480. {
  2481. AC_ARG_ENABLE(ime,
  2482. AS_HELP_STRING([--enable-ime], [enable IME support [[default=yes]]]),
  2483. , enable_ime=yes)
  2484. if test x$enable_ime = xyes; then
  2485. AC_DEFINE(SDL_USE_IME, 1, [ ])
  2486. SOURCES="$SOURCES $srcdir/src/core/linux/SDL_ime.c"
  2487. fi
  2488. }
  2489. dnl See if the platform has libibus IME support.
  2490. CheckIBus()
  2491. {
  2492. AC_ARG_ENABLE(ibus,
  2493. AS_HELP_STRING([--enable-ibus], [enable IBus support [[default=yes]]]),
  2494. , enable_ibus=yes)
  2495. if test x$enable_ibus = xyes; then
  2496. PKG_CHECK_MODULES([IBUS], [ibus-1.0], have_ibus=yes, have_ibus=no)
  2497. save_CFLAGS="$CFLAGS"
  2498. CFLAGS="$save_CFLAGS $IBUS_CFLAGS"
  2499. AC_CHECK_HEADER(ibus-1.0/ibus.h,
  2500. have_ibus_ibus_h_hdr=yes,
  2501. have_ibus_ibus_h_hdr=no)
  2502. AC_CHECK_HEADER(sys/inotify.h,
  2503. have_inotify_inotify_h_hdr=yes,
  2504. have_inotify_inotify_h_hdr=no)
  2505. CFLAGS="$save_CFLAGS"
  2506. if test x$have_ibus_ibus_h_hdr = xyes; then
  2507. if test x$enable_ime != xyes; then
  2508. AC_MSG_WARN([IME support is required for IBus.])
  2509. have_ibus_ibus_h_hdr=no
  2510. elif test x$enable_dbus != xyes; then
  2511. AC_MSG_WARN([DBus support is required for IBus.])
  2512. have_ibus_ibus_h_hdr=no
  2513. elif test x$have_inotify_inotify_h_hdr != xyes; then
  2514. AC_MSG_WARN([INotify support is required for IBus.])
  2515. have_ibus_ibus_h_hdr=no
  2516. else
  2517. AC_DEFINE(HAVE_IBUS_IBUS_H, 1, [ ])
  2518. EXTRA_CFLAGS="$EXTRA_CFLAGS $IBUS_CFLAGS"
  2519. SOURCES="$SOURCES $srcdir/src/core/linux/SDL_ibus.c"
  2520. fi
  2521. fi
  2522. fi
  2523. }
  2524. dnl See if the platform has fcitx IME support.
  2525. CheckFcitx()
  2526. {
  2527. AC_ARG_ENABLE(fcitx,
  2528. AS_HELP_STRING([--enable-fcitx], [enable fcitx support [[default=yes]]]),
  2529. , enable_fcitx=yes)
  2530. if test x$enable_fcitx = xyes; then
  2531. AC_MSG_CHECKING(for fcitx support)
  2532. have_fcitx=no
  2533. if test x$enable_ime != xyes; then
  2534. AC_MSG_WARN([IME support is required for fcitx.])
  2535. elif test x$have_dbus_dbus_h_hdr != xyes; then
  2536. AC_MSG_WARN([DBus support is required for fcitx.])
  2537. else
  2538. have_fcitx=yes
  2539. AC_DEFINE(HAVE_FCITX, 1, [ ])
  2540. SOURCES="$SOURCES $srcdir/src/core/linux/SDL_fcitx.c"
  2541. fi
  2542. AC_MSG_RESULT($have_fcitx)
  2543. fi
  2544. }
  2545. dnl See if we can use the Touchscreen input library
  2546. CheckTslib()
  2547. {
  2548. AC_ARG_ENABLE(input-tslib,
  2549. AS_HELP_STRING([--enable-input-tslib], [use the Touchscreen library for input [[default=yes]]]),
  2550. , enable_input_tslib=yes)
  2551. if test x$enable_input_tslib = xyes; then
  2552. AC_MSG_CHECKING(for Touchscreen library support)
  2553. enable_input_tslib=no
  2554. AC_TRY_COMPILE([
  2555. #include "tslib.h"
  2556. ],[
  2557. ],[
  2558. enable_input_tslib=yes
  2559. ])
  2560. AC_MSG_RESULT($enable_input_tslib)
  2561. if test x$enable_input_tslib = xyes; then
  2562. AC_DEFINE(SDL_INPUT_TSLIB, 1, [ ])
  2563. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lts"
  2564. SUMMARY_input="${SUMMARY_input} ts"
  2565. fi
  2566. fi
  2567. }
  2568. dnl See what type of thread model to use on Linux and Solaris
  2569. CheckPTHREAD()
  2570. {
  2571. dnl Check for pthread support
  2572. AC_ARG_ENABLE(pthreads,
  2573. AS_HELP_STRING([--enable-pthreads], [use POSIX threads for multi-threading [[default=yes]]]),
  2574. , enable_pthreads=yes)
  2575. dnl This is used on Linux for glibc binary compatibility (Doh!)
  2576. AC_ARG_ENABLE(pthread-sem,
  2577. AS_HELP_STRING([--enable-pthread-sem], [use pthread semaphores [[default=yes]]]),
  2578. , enable_pthread_sem=yes)
  2579. case "$host" in
  2580. *-*-android*)
  2581. pthread_cflags="-D_REENTRANT -D_THREAD_SAFE"
  2582. pthread_lib=""
  2583. ;;
  2584. *-*-linux*|*-*-uclinux*)
  2585. pthread_cflags="-D_REENTRANT"
  2586. pthread_lib="-lpthread"
  2587. ;;
  2588. *-*-bsdi*)
  2589. pthread_cflags="-D_REENTRANT -D_THREAD_SAFE"
  2590. pthread_lib=""
  2591. ;;
  2592. *-*-darwin*)
  2593. pthread_cflags="-D_THREAD_SAFE"
  2594. # causes Carbon.p complaints?
  2595. # pthread_cflags="-D_REENTRANT -D_THREAD_SAFE"
  2596. ;;
  2597. *-*-freebsd*|*-*-dragonfly*)
  2598. pthread_cflags="-D_REENTRANT -D_THREAD_SAFE"
  2599. pthread_lib="-pthread"
  2600. ;;
  2601. *-*-netbsd*)
  2602. pthread_cflags="-D_REENTRANT -D_THREAD_SAFE"
  2603. pthread_lib="-lpthread"
  2604. ;;
  2605. *-*-openbsd*)
  2606. pthread_cflags="-D_REENTRANT"
  2607. pthread_lib="-pthread"
  2608. ;;
  2609. *-*-solaris2.9)
  2610. # From Solaris 9+, posix4's preferred name is rt.
  2611. pthread_cflags="-D_REENTRANT"
  2612. pthread_lib="-lpthread -lrt"
  2613. ;;
  2614. *-*-solaris2.10)
  2615. # Solaris 10+ merged pthread into libc.
  2616. pthread_cflags="-D_REENTRANT"
  2617. pthread_lib="-lrt"
  2618. ;;
  2619. *-*-solaris*)
  2620. # Solaris 11+ merged rt into libc.
  2621. pthread_cflags="-D_REENTRANT"
  2622. pthread_lib=""
  2623. ;;
  2624. *-*-sysv5*)
  2625. pthread_cflags="-D_REENTRANT -Kthread"
  2626. pthread_lib=""
  2627. ;;
  2628. *-*-aix*)
  2629. pthread_cflags="-D_REENTRANT -mthreads"
  2630. pthread_lib="-lpthread"
  2631. ;;
  2632. *-*-hpux11*)
  2633. pthread_cflags="-D_REENTRANT"
  2634. pthread_lib="-L/usr/lib -lpthread"
  2635. ;;
  2636. *-*-haiku*)
  2637. pthread_cflags="-D_REENTRANT"
  2638. pthread_lib=""
  2639. ;;
  2640. *-*-nto*)
  2641. pthread_cflags="-D_REENTRANT"
  2642. pthread_lib=""
  2643. ;;
  2644. *)
  2645. pthread_cflags="-D_REENTRANT"
  2646. pthread_lib="-lpthread"
  2647. ;;
  2648. esac
  2649. if test x$enable_threads = xyes -a x$enable_pthreads = xyes; then
  2650. # Save the original compiler flags and libraries
  2651. ac_save_cflags="$CFLAGS"; ac_save_libs="$LIBS"
  2652. # Add the pthread compiler flags and libraries
  2653. CFLAGS="$CFLAGS $pthread_cflags"; LIBS="$LIBS $pthread_lib"
  2654. # Check to see if we have pthread support on this system
  2655. AC_MSG_CHECKING(for pthreads)
  2656. use_pthreads=no
  2657. AC_TRY_LINK([
  2658. #include <pthread.h>
  2659. ],[
  2660. pthread_attr_t type;
  2661. pthread_attr_init(&type);
  2662. ],[
  2663. use_pthreads=yes
  2664. ])
  2665. AC_MSG_RESULT($use_pthreads)
  2666. # Restore the compiler flags and libraries
  2667. CFLAGS="$ac_save_cflags"; LIBS="$ac_save_libs"
  2668. # Do futher testing if we have pthread support...
  2669. if test x$use_pthreads = xyes; then
  2670. AC_DEFINE(SDL_THREAD_PTHREAD, 1, [ ])
  2671. EXTRA_CFLAGS="$EXTRA_CFLAGS $pthread_cflags"
  2672. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $pthread_lib"
  2673. SDL_CFLAGS="$SDL_CFLAGS $pthread_cflags"
  2674. # Save the original compiler flags and libraries
  2675. ac_save_cflags="$CFLAGS"; ac_save_libs="$LIBS"
  2676. # Add the pthread compiler flags and libraries
  2677. CFLAGS="$CFLAGS $pthread_cflags"; LIBS="$LIBS $pthread_lib"
  2678. # Check to see if recursive mutexes are available
  2679. AC_MSG_CHECKING(for recursive mutexes)
  2680. has_recursive_mutexes=no
  2681. if test x$has_recursive_mutexes = xno; then
  2682. AC_TRY_LINK([
  2683. #define _GNU_SOURCE 1
  2684. #include <pthread.h>
  2685. ],[
  2686. pthread_mutexattr_t attr;
  2687. pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
  2688. ],[
  2689. has_recursive_mutexes=yes
  2690. AC_DEFINE(SDL_THREAD_PTHREAD_RECURSIVE_MUTEX, 1, [ ])
  2691. ])
  2692. fi
  2693. if test x$has_recursive_mutexes = xno; then
  2694. AC_TRY_LINK([
  2695. #define _GNU_SOURCE 1
  2696. #include <pthread.h>
  2697. ],[
  2698. pthread_mutexattr_t attr;
  2699. pthread_mutexattr_setkind_np(&attr, PTHREAD_MUTEX_RECURSIVE_NP);
  2700. ],[
  2701. has_recursive_mutexes=yes
  2702. AC_DEFINE(SDL_THREAD_PTHREAD_RECURSIVE_MUTEX_NP, 1, [ ])
  2703. ])
  2704. fi
  2705. AC_MSG_RESULT($has_recursive_mutexes)
  2706. # Check to see if pthread semaphore support is missing
  2707. if test x$enable_pthread_sem = xyes; then
  2708. AC_MSG_CHECKING(for pthread semaphores)
  2709. have_pthread_sem=no
  2710. AC_TRY_COMPILE([
  2711. #include <pthread.h>
  2712. #include <semaphore.h>
  2713. ],[
  2714. ],[
  2715. have_pthread_sem=yes
  2716. ])
  2717. AC_MSG_RESULT($have_pthread_sem)
  2718. fi
  2719. if test x$have_pthread_sem = xyes; then
  2720. AC_MSG_CHECKING(for sem_timedwait)
  2721. have_sem_timedwait=no
  2722. AC_TRY_LINK([
  2723. #include <pthread.h>
  2724. #include <semaphore.h>
  2725. ],[
  2726. sem_timedwait(NULL, NULL);
  2727. ],[
  2728. have_sem_timedwait=yes
  2729. AC_DEFINE([HAVE_SEM_TIMEDWAIT], 1, [ ])
  2730. ])
  2731. AC_MSG_RESULT($have_sem_timedwait)
  2732. fi
  2733. AC_CHECK_HEADER(pthread_np.h, have_pthread_np_h=yes, have_pthread_np_h=no, [ #include <pthread.h> ])
  2734. if test x$have_pthread_np_h = xyes; then
  2735. AC_DEFINE(HAVE_PTHREAD_NP_H, 1, [ ])
  2736. fi
  2737. # Check to see if pthread naming is available
  2738. AC_MSG_CHECKING(for pthread_setname_np)
  2739. AC_TRY_LINK_FUNC(pthread_setname_np, [
  2740. has_pthread_setname_np=yes
  2741. AC_DEFINE(HAVE_PTHREAD_SETNAME_NP, 1, [ ])
  2742. ],[
  2743. has_pthread_setname_np=no
  2744. ])
  2745. AC_MSG_RESULT($has_pthread_setname_np)
  2746. AC_MSG_CHECKING(for pthread_set_name_np)
  2747. AC_TRY_LINK_FUNC(pthread_set_name_np, [
  2748. has_pthread_set_name_np=yes
  2749. AC_DEFINE(HAVE_PTHREAD_SET_NAME_NP, 1, [ ])
  2750. ],[
  2751. has_pthread_set_name_np=no
  2752. ])
  2753. AC_MSG_RESULT($has_pthread_set_name_np)
  2754. # Restore the compiler flags and libraries
  2755. CFLAGS="$ac_save_cflags"; LIBS="$ac_save_libs"
  2756. # Basic thread creation functions
  2757. SOURCES="$SOURCES $srcdir/src/thread/pthread/SDL_systhread.c"
  2758. # Semaphores
  2759. # We can fake these with mutexes and condition variables if necessary
  2760. if test x$have_pthread_sem = xyes; then
  2761. SOURCES="$SOURCES $srcdir/src/thread/pthread/SDL_syssem.c"
  2762. else
  2763. SOURCES="$SOURCES $srcdir/src/thread/generic/SDL_syssem.c"
  2764. fi
  2765. # Mutexes
  2766. # We can fake these with semaphores if necessary
  2767. SOURCES="$SOURCES $srcdir/src/thread/pthread/SDL_sysmutex.c"
  2768. # Condition variables
  2769. # We can fake these with semaphores and mutexes if necessary
  2770. SOURCES="$SOURCES $srcdir/src/thread/pthread/SDL_syscond.c"
  2771. # Thread local storage
  2772. SOURCES="$SOURCES $srcdir/src/thread/pthread/SDL_systls.c"
  2773. have_threads=yes
  2774. fi
  2775. fi
  2776. }
  2777. dnl Determine whether the compiler can produce Windows executables
  2778. CheckWINDOWS()
  2779. {
  2780. AC_MSG_CHECKING(Windows compiler)
  2781. have_win32_gcc=no
  2782. AC_TRY_COMPILE([
  2783. #include <windows.h>
  2784. ],[
  2785. ],[
  2786. have_win32_gcc=yes
  2787. ])
  2788. AC_MSG_RESULT($have_win32_gcc)
  2789. if test x$have_win32_gcc != xyes; then
  2790. AC_MSG_ERROR([
  2791. *** Your compiler ($CC) does not produce Windows executables!
  2792. ])
  2793. fi
  2794. AC_MSG_CHECKING(Windows CE)
  2795. have_wince=no
  2796. AC_TRY_COMPILE([
  2797. #if !defined(_WIN32_WCE) && !defined(__MINGW32CE__)
  2798. #error This is not Windows CE
  2799. #endif
  2800. ],[
  2801. ],[
  2802. have_wince=yes
  2803. AC_MSG_ERROR([
  2804. *** Sorry, Windows CE is no longer supported.
  2805. ])
  2806. ])
  2807. AC_MSG_RESULT($have_wince)
  2808. # This fixes Windows stack alignment with newer GCC
  2809. CheckStackBoundary
  2810. }
  2811. dnl Find the DirectX includes and libraries
  2812. CheckDIRECTX()
  2813. {
  2814. AC_ARG_ENABLE(directx,
  2815. AS_HELP_STRING([--enable-directx], [use DirectX for Windows audio/video [[default=yes]]]),
  2816. , enable_directx=yes)
  2817. if test x$enable_directx = xyes; then
  2818. AC_CHECK_HEADER(d3d9.h, have_d3d=yes)
  2819. AC_CHECK_HEADER(d3d11_1.h, have_d3d11=yes)
  2820. AC_CHECK_HEADER(ddraw.h, have_ddraw=yes)
  2821. AC_CHECK_HEADER(dsound.h, have_dsound=yes)
  2822. AC_CHECK_HEADER(dinput.h, have_dinput=yes)
  2823. AC_CHECK_HEADER(dxgi.h, have_dxgi=yes)
  2824. AC_CHECK_HEADER(xinput.h, have_xinput=yes)
  2825. AC_TRY_COMPILE([
  2826. #include <windows.h>
  2827. #include <xinput.h>
  2828. XINPUT_GAMEPAD_EX x1;
  2829. ],[],[have_xinput_gamepadex=yes])
  2830. AC_TRY_COMPILE([
  2831. #include <windows.h>
  2832. #include <xinput.h>
  2833. XINPUT_STATE_EX s1;
  2834. ],[],[have_xinput_stateex=yes])
  2835. if test x$have_ddraw = xyes; then
  2836. AC_DEFINE(HAVE_DDRAW_H, 1, [ ])
  2837. fi
  2838. if test x$have_dinput = xyes; then
  2839. AC_DEFINE(HAVE_DINPUT_H, 1, [ ])
  2840. fi
  2841. if test x$have_dsound = xyes; then
  2842. AC_DEFINE(HAVE_DSOUND_H, 1, [ ])
  2843. fi
  2844. if test x$have_dxgi = xyes; then
  2845. AC_DEFINE(HAVE_DXGI_H, 1, [ ])
  2846. fi
  2847. if test x$have_xinput = xyes; then
  2848. AC_DEFINE(HAVE_XINPUT_H, 1, [ ])
  2849. fi
  2850. if test x$have_xinput_gamepadex = xyes; then
  2851. AC_DEFINE(HAVE_XINPUT_GAMEPAD_EX, 1, [ ])
  2852. fi
  2853. if test x$have_xinput_stateex = xyes; then
  2854. AC_DEFINE(HAVE_XINPUT_STATE_EX, 1, [ ])
  2855. fi
  2856. # FIXME: latest Cygwin finds dinput headers, but we die on other win32 headers.
  2857. # FIXME: ...so force it off for now.
  2858. case "$host" in
  2859. *-*-cygwin*)
  2860. have_dinput=false
  2861. ;;
  2862. esac
  2863. fi
  2864. AC_CHECK_HEADER(mmdeviceapi.h, have_wasapi=yes)
  2865. if test x$have_wasapi = xyes; then
  2866. AC_DEFINE(HAVE_MMDEVICEAPI_H, 1, [ ])
  2867. fi
  2868. AC_CHECK_HEADER(audioclient.h,,have_wasapi=no)
  2869. if test x$have_wasapi = xyes; then
  2870. AC_DEFINE(HAVE_AUDIOCLIENT_H, 1, [ ])
  2871. fi
  2872. AC_ARG_ENABLE(wasapi,
  2873. AS_HELP_STRING([--enable-wasapi], [use the Windows WASAPI audio driver [[default=yes]]]),
  2874. , enable_wasapi=yes)
  2875. }
  2876. dnl Check for the dlfcn.h interface for dynamically loading objects
  2877. CheckDLOPEN()
  2878. {
  2879. AC_ARG_ENABLE(sdl-dlopen,
  2880. AS_HELP_STRING([--enable-sdl-dlopen], [use dlopen for shared object loading [[default=yes]]]),
  2881. , enable_sdl_dlopen=yes)
  2882. if test x$enable_sdl_dlopen = xyes; then
  2883. AC_MSG_CHECKING(for dlopen)
  2884. have_dlopen=no
  2885. AC_TRY_COMPILE([
  2886. #include <dlfcn.h>
  2887. ],[
  2888. void *handle = dlopen("", RTLD_NOW);
  2889. const char *loaderror = (char *) dlerror();
  2890. ],[
  2891. have_dlopen=yes
  2892. ])
  2893. AC_MSG_RESULT($have_dlopen)
  2894. if test x$have_dlopen = xyes; then
  2895. AC_CHECK_LIB(c, dlopen, EXTRA_LDFLAGS="$EXTRA_LDFLAGS",
  2896. AC_CHECK_LIB(dl, dlopen, EXTRA_LDFLAGS="$EXTRA_LDFLAGS -ldl",
  2897. AC_CHECK_LIB(ltdl, dlopen, EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lltdl")))
  2898. AC_DEFINE(SDL_LOADSO_DLOPEN, 1, [ ])
  2899. SOURCES="$SOURCES $srcdir/src/loadso/dlopen/*.c"
  2900. have_loadso=yes
  2901. fi
  2902. fi
  2903. }
  2904. dnl Check for the usbhid(3) library on *BSD
  2905. CheckUSBHID()
  2906. {
  2907. case "$host" in
  2908. *-*-*bsd*)
  2909. if test x$enable_joystick = xyes; then
  2910. AC_CHECK_LIB(usbhid, hid_init, have_libusbhid=yes)
  2911. if test x$have_libusbhid = xyes; then
  2912. AC_CHECK_HEADER(usbhid.h, [USB_CFLAGS="-DHAVE_USBHID_H"])
  2913. AC_CHECK_HEADER(libusbhid.h, [USB_CFLAGS="-DHAVE_LIBUSBHID_H"])
  2914. USB_LIBS="$USB_LIBS -lusbhid"
  2915. else
  2916. AC_CHECK_HEADER(usb.h, [USB_CFLAGS="-DHAVE_USB_H"])
  2917. AC_CHECK_HEADER(libusb.h, [USB_CFLAGS="-DHAVE_LIBUSB_H"])
  2918. AC_CHECK_LIB(usb, hid_init, [USB_LIBS="$USB_LIBS -lusb"])
  2919. fi
  2920. save_CFLAGS="$CFLAGS"
  2921. CFLAGS="$CFLAGS $USB_CFLAGS"
  2922. AC_MSG_CHECKING(for usbhid)
  2923. have_usbhid=no
  2924. AC_TRY_COMPILE([
  2925. #include <sys/types.h>
  2926. #if defined(HAVE_USB_H)
  2927. #include <usb.h>
  2928. #endif
  2929. #ifdef __DragonFly__
  2930. # include <bus/usb/usb.h>
  2931. # include <bus/usb/usbhid.h>
  2932. #else
  2933. # include <dev/usb/usb.h>
  2934. # include <dev/usb/usbhid.h>
  2935. #endif
  2936. #if defined(HAVE_USBHID_H)
  2937. #include <usbhid.h>
  2938. #elif defined(HAVE_LIBUSB_H)
  2939. #include <libusb.h>
  2940. #elif defined(HAVE_LIBUSBHID_H)
  2941. #include <libusbhid.h>
  2942. #endif
  2943. ],[
  2944. struct report_desc *repdesc;
  2945. struct usb_ctl_report *repbuf;
  2946. hid_kind_t hidkind;
  2947. ],[
  2948. have_usbhid=yes
  2949. ])
  2950. AC_MSG_RESULT($have_usbhid)
  2951. if test x$have_usbhid = xyes; then
  2952. AC_MSG_CHECKING(for ucr_data member of usb_ctl_report)
  2953. have_usbhid_ucr_data=no
  2954. AC_TRY_COMPILE([
  2955. #include <sys/types.h>
  2956. #if defined(HAVE_USB_H)
  2957. #include <usb.h>
  2958. #endif
  2959. #ifdef __DragonFly__
  2960. # include <bus/usb/usb.h>
  2961. # include <bus/usb/usbhid.h>
  2962. #else
  2963. # include <dev/usb/usb.h>
  2964. # include <dev/usb/usbhid.h>
  2965. #endif
  2966. #if defined(HAVE_USBHID_H)
  2967. #include <usbhid.h>
  2968. #elif defined(HAVE_LIBUSB_H)
  2969. #include <libusb.h>
  2970. #elif defined(HAVE_LIBUSBHID_H)
  2971. #include <libusbhid.h>
  2972. #endif
  2973. ],[
  2974. struct usb_ctl_report buf;
  2975. if (buf.ucr_data) { }
  2976. ],[
  2977. have_usbhid_ucr_data=yes
  2978. ])
  2979. if test x$have_usbhid_ucr_data = xyes; then
  2980. USB_CFLAGS="$USB_CFLAGS -DUSBHID_UCR_DATA"
  2981. fi
  2982. AC_MSG_RESULT($have_usbhid_ucr_data)
  2983. AC_MSG_CHECKING(for new usbhid API)
  2984. have_usbhid_new=no
  2985. AC_TRY_COMPILE([
  2986. #include <sys/types.h>
  2987. #if defined(HAVE_USB_H)
  2988. #include <usb.h>
  2989. #endif
  2990. #ifdef __DragonFly__
  2991. #include <bus/usb/usb.h>
  2992. #include <bus/usb/usbhid.h>
  2993. #else
  2994. #include <dev/usb/usb.h>
  2995. #include <dev/usb/usbhid.h>
  2996. #endif
  2997. #if defined(HAVE_USBHID_H)
  2998. #include <usbhid.h>
  2999. #elif defined(HAVE_LIBUSB_H)
  3000. #include <libusb.h>
  3001. #elif defined(HAVE_LIBUSBHID_H)
  3002. #include <libusbhid.h>
  3003. #endif
  3004. ],[
  3005. report_desc_t d;
  3006. hid_start_parse(d, 1, 1);
  3007. ],[
  3008. have_usbhid_new=yes
  3009. ])
  3010. if test x$have_usbhid_new = xyes; then
  3011. USB_CFLAGS="$USB_CFLAGS -DUSBHID_NEW"
  3012. fi
  3013. AC_MSG_RESULT($have_usbhid_new)
  3014. AC_MSG_CHECKING(for struct joystick in machine/joystick.h)
  3015. have_machine_joystick=no
  3016. AC_TRY_COMPILE([
  3017. #include <machine/joystick.h>
  3018. ],[
  3019. struct joystick t;
  3020. ],[
  3021. have_machine_joystick=yes
  3022. ])
  3023. if test x$have_machine_joystick = xyes; then
  3024. AC_DEFINE(SDL_JOYSTICK_USBHID_MACHINE_JOYSTICK_H, 1, [ ])
  3025. fi
  3026. AC_MSG_RESULT($have_machine_joystick)
  3027. AC_DEFINE(SDL_JOYSTICK_USBHID, 1, [ ])
  3028. SOURCES="$SOURCES $srcdir/src/joystick/bsd/*.c"
  3029. EXTRA_CFLAGS="$EXTRA_CFLAGS $USB_CFLAGS"
  3030. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $USB_LIBS"
  3031. have_joystick=yes
  3032. fi
  3033. CFLAGS="$save_CFLAGS"
  3034. fi
  3035. ;;
  3036. esac
  3037. }
  3038. dnl Check for HIDAPI joystick drivers
  3039. CheckHIDAPI()
  3040. {
  3041. # The hidraw support doesn't catch Xbox, PS4 and Nintendo controllers,
  3042. # so we'll just use libusb when it's available.
  3043. case "$host" in
  3044. # libusb does not support iOS
  3045. *-ios-* )
  3046. skiplibusb=yes
  3047. ;;
  3048. # On the other hand, *BSD specifically uses libusb only
  3049. *-*-*bsd* )
  3050. onlylibusb=yes
  3051. ;;
  3052. # RAWINPUT is only available on Win32, but can be enabled if HIDAPI is
  3053. *-*-cygwin* | *-*-mingw32*)
  3054. userawinput=yes
  3055. ;;
  3056. esac
  3057. AC_ARG_ENABLE(hidapi,
  3058. AS_HELP_STRING([--enable-hidapi], [use HIDAPI for low level joystick drivers [[default=no]]]),
  3059. , enable_hidapi=no)
  3060. if test x$enable_joystick = xyes -a x$enable_hidapi = xyes; then
  3061. if test x$skiplibusb = xyes; then
  3062. hidapi_support=yes
  3063. else
  3064. PKG_CHECK_MODULES([LIBUSB], [libusb-1.0], have_libusb=yes, have_libusb=no)
  3065. save_CFLAGS="$CFLAGS"
  3066. CFLAGS="$save_CFLAGS $LIBUSB_CFLAGS"
  3067. AC_CHECK_HEADER(libusb.h, have_libusb_h=yes)
  3068. CFLAGS="$save_CFLAGS"
  3069. if test x$have_libusb_h = xyes; then
  3070. hidapi_support=yes
  3071. elif test x$onlylibusb = xyes; then
  3072. hidapi_support=no
  3073. else
  3074. hidapi_support=yes
  3075. fi
  3076. fi
  3077. if test x$hidapi_support = xyes; then
  3078. AC_DEFINE(SDL_JOYSTICK_HIDAPI, 1, [ ])
  3079. if test x$userawinput = xyes; then
  3080. AC_DEFINE(SDL_JOYSTICK_RAWINPUT, 1, [ ])
  3081. fi
  3082. EXTRA_CFLAGS="$EXTRA_CFLAGS -I$srcdir/src/hidapi/hidapi"
  3083. SOURCES="$SOURCES $srcdir/src/joystick/hidapi/*.c"
  3084. SOURCES="$SOURCES $srcdir/src/hidapi/SDL_hidapi.c"
  3085. if test x$have_libusb_h = xyes; then
  3086. EXTRA_CFLAGS="$EXTRA_CFLAGS $LIBUSB_CFLAGS"
  3087. if test x$onlylibusb = xyes; then
  3088. SOURCES="$SOURCES $srcdir/src/hidapi/libusb/hid.c"
  3089. EXTRA_LDFLAGS="$EXTRA_LDFLAGS $LIBUSB_LIBS"
  3090. else
  3091. if test x$have_loadso != xyes; then
  3092. AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic libusb loading])
  3093. fi
  3094. # libusb is loaded dynamically, so don't add it to LDFLAGS
  3095. libusb_lib=""
  3096. case "$host" in
  3097. *-*-darwin* )
  3098. libusb_lib="libusb-1.0.0.dylib"
  3099. ;;
  3100. *-*-cygwin* | *-*-mingw32* )
  3101. libusb_lib="libusb-1.0.dll"
  3102. ;;
  3103. esac
  3104. if test x$libusb_lib = x; then
  3105. libusb_lib=[`find_lib "libusb-1.0.so.*" "" | sed 's/.*\/\(.*\)/\1/; q'`]
  3106. fi
  3107. AC_DEFINE_UNQUOTED(SDL_LIBUSB_DYNAMIC, "$libusb_lib", [ ])
  3108. fi
  3109. fi
  3110. fi
  3111. AC_MSG_CHECKING(for hidapi support)
  3112. AC_MSG_RESULT($hidapi_support)
  3113. fi
  3114. }
  3115. dnl Check for clock_gettime()
  3116. CheckClockGettime()
  3117. {
  3118. AC_ARG_ENABLE(clock_gettime,
  3119. AS_HELP_STRING([--enable-clock_gettime], [use clock_gettime() instead of gettimeofday() on UNIX [[default=yes]]]),
  3120. , enable_clock_gettime=yes)
  3121. if test x$enable_clock_gettime = xyes; then
  3122. AC_CHECK_LIB(rt, clock_gettime, have_clock_gettime=yes)
  3123. if test x$have_clock_gettime = xyes; then
  3124. AC_DEFINE(HAVE_CLOCK_GETTIME, 1, [ ])
  3125. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lrt"
  3126. else
  3127. AC_CHECK_LIB(c, clock_gettime, have_clock_gettime=yes)
  3128. if test x$have_clock_gettime = xyes; then
  3129. AC_DEFINE(HAVE_CLOCK_GETTIME, 1, [ ])
  3130. EXTRA_LDFLAGS="$EXTRA_LDFLAGS"
  3131. fi
  3132. fi
  3133. fi
  3134. }
  3135. dnl Check for a valid linux/version.h
  3136. CheckLinuxVersion()
  3137. {
  3138. AC_CHECK_HEADER(linux/version.h, have_linux_version_h=yes)
  3139. if test x$have_linux_version_h = xyes; then
  3140. EXTRA_CFLAGS="$EXTRA_CFLAGS -DHAVE_LINUX_VERSION_H"
  3141. fi
  3142. }
  3143. dnl Check if we want to use RPATH
  3144. CheckRPATH()
  3145. {
  3146. AC_ARG_ENABLE(rpath,
  3147. AS_HELP_STRING([--enable-rpath], [use an rpath when linking SDL [[default=yes]]]),
  3148. , enable_rpath=yes)
  3149. }
  3150. dnl Check if we want to use custom signals to fake iOS/Android's backgrounding
  3151. dnl events. These could be useful if you're building a custom embedded
  3152. dnl environment, etc, but most people don't need this.
  3153. CheckEventSignals()
  3154. {
  3155. AC_ARG_ENABLE(backgrounding-signal,
  3156. AS_HELP_STRING([--enable-backgrounding-signal], [number to use for magic backgrounding signal or 'no' [[default=no]]]),
  3157. , enable_backgrounding_signal=no)
  3158. if test x$enable_backgrounding_signal != xno; then
  3159. EXTRA_CFLAGS="$EXTRA_CFLAGS -DSDL_BACKGROUNDING_SIGNAL=$enable_backgrounding_signal"
  3160. fi
  3161. AC_ARG_ENABLE(foregrounding-signal,
  3162. AS_HELP_STRING([--enable-foregrounding-signal], [number to use for magic foregrounding signal or 'no' [[default=no]]]),
  3163. , enable_foregrounding_signal=no)
  3164. if test x$enable_foregrounding_signal != xno; then
  3165. EXTRA_CFLAGS="$EXTRA_CFLAGS -DSDL_FOREGROUNDING_SIGNAL=$enable_foregrounding_signal"
  3166. fi
  3167. }
  3168. dnl Set up the Virtual joystick driver.
  3169. CheckVirtualJoystick()
  3170. {
  3171. AC_ARG_ENABLE(joystick-virtual,
  3172. AS_HELP_STRING([--enable-joystick-virtual], [enable virtual joystick APIs [[default=yes]]]),
  3173. , enable_joystick_virtual=yes)
  3174. if test x$enable_joystick = xyes -a x$enable_joystick_virtual = xyes; then
  3175. AC_DEFINE(SDL_JOYSTICK_VIRTUAL, 1, [ ])
  3176. SOURCES="$SOURCES $srcdir/src/joystick/virtual/*.c"
  3177. have_joystick_virtual=yes
  3178. fi
  3179. }
  3180. dnl Do this on all platforms, before everything else (other things might want to override it).
  3181. CheckWarnAll
  3182. CheckNoStrictAliasing
  3183. dnl Do this for every platform, but for some it doesn't mean anything, but better to catch it here anyhow.
  3184. CheckEventSignals
  3185. have_locale=no
  3186. dnl Set up the configuration based on the host platform!
  3187. case "$host" in
  3188. *-*-linux*|*-*-uclinux*|*-*-gnu*|*-*-k*bsd*-gnu|*-*-bsdi*|*-*-freebsd*|*-*-dragonfly*|*-*-netbsd*|*-*-openbsd*|*-*-sysv5*|*-*-solaris*|*-*-hpux*|*-*-aix*|*-*-minix*|*-*-nto*)
  3189. case "$host" in
  3190. *-*-android*)
  3191. # Android
  3192. ARCH=android
  3193. ANDROID_CFLAGS="-DGL_GLEXT_PROTOTYPES"
  3194. CFLAGS="$CFLAGS $ANDROID_CFLAGS"
  3195. SDL_CFLAGS="$SDL_CFLAGS $ANDROID_CFLAGS"
  3196. EXTRA_CFLAGS="$EXTRA_CFLAGS $ANDROID_CFLAGS"
  3197. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -ldl -lGLESv1_CM -lGLESv2 -llog -landroid"
  3198. SDLMAIN_SOURCES="$srcdir/src/main/android/*.c"
  3199. if test x$enable_video = xyes; then
  3200. SOURCES="$SOURCES $srcdir/src/core/android/*.c $srcdir/src/video/android/*.c"
  3201. # FIXME: confdefs? Not AC_DEFINE?
  3202. $as_echo "#define SDL_VIDEO_DRIVER_ANDROID 1" >>confdefs.h
  3203. SUMMARY_video="${SUMMARY_video} android"
  3204. fi
  3205. ;;
  3206. *-*-linux*) ARCH=linux ;;
  3207. *-*-uclinux*) ARCH=linux ;;
  3208. *-*-kfreebsd*-gnu) ARCH=kfreebsd-gnu ;;
  3209. *-*-knetbsd*-gnu) ARCH=knetbsd-gnu ;;
  3210. *-*-kopenbsd*-gnu) ARCH=kopenbsd-gnu ;;
  3211. *-*-gnu*) ARCH=gnu ;; # must be last of the gnu variants
  3212. *-*-bsdi*) ARCH=bsdi ;;
  3213. *-*-freebsd*) ARCH=freebsd ;;
  3214. *-*-dragonfly*) ARCH=freebsd ;;
  3215. *-*-netbsd*) ARCH=netbsd ;;
  3216. *-*-openbsd*) ARCH=openbsd ;;
  3217. *-*-sysv5*) ARCH=sysv5 ;;
  3218. *-*-solaris*) ARCH=solaris ;;
  3219. *-*-hpux*) ARCH=hpux ;;
  3220. *-*-aix*) ARCH=aix ;;
  3221. *-*-minix*) ARCH=minix ;;
  3222. *-*-nto*) ARCH=nto
  3223. CheckQNXVideo
  3224. ;;
  3225. esac
  3226. CheckVisibilityHidden
  3227. CheckDeclarationAfterStatement
  3228. CheckDummyVideo
  3229. CheckDiskAudio
  3230. CheckDummyAudio
  3231. CheckDLOPEN
  3232. CheckARM
  3233. CheckNEON
  3234. CheckOSS
  3235. CheckALSA
  3236. CheckPulseAudio
  3237. CheckJACK
  3238. CheckARTSC
  3239. CheckESD
  3240. CheckNAS
  3241. CheckSNDIO
  3242. CheckFusionSound
  3243. CheckLibSampleRate
  3244. # Need to check for Raspberry PI first and add platform specific compiler flags, otherwise the test for GLES fails!
  3245. CheckRPI
  3246. CheckX11
  3247. CheckDirectFB
  3248. CheckKMSDRM
  3249. CheckOpenGLX11
  3250. CheckOpenGLESX11
  3251. CheckVulkan
  3252. CheckWayland
  3253. CheckInputEvents
  3254. CheckLibUDev
  3255. CheckDBus
  3256. CheckIME
  3257. CheckIBus
  3258. CheckFcitx
  3259. case $ARCH in
  3260. linux)
  3261. CheckInputKD
  3262. ;;
  3263. esac
  3264. CheckTslib
  3265. CheckUSBHID
  3266. CheckHIDAPI
  3267. CheckPTHREAD
  3268. CheckClockGettime
  3269. CheckLinuxVersion
  3270. CheckRPATH
  3271. CheckVivanteVideo
  3272. SOURCES="$SOURCES $srcdir/src/locale/unix/*.c"
  3273. have_locale=yes
  3274. # Set up files for the audio library
  3275. if test x$enable_audio = xyes; then
  3276. case $ARCH in
  3277. sysv5|solaris|hpux)
  3278. AC_DEFINE(SDL_AUDIO_DRIVER_SUNAUDIO, 1, [ ])
  3279. SOURCES="$SOURCES $srcdir/src/audio/sun/*.c"
  3280. SUMMARY_audio="${SUMMARY_audio} sun"
  3281. have_audio=yes
  3282. ;;
  3283. netbsd) # Don't use this on OpenBSD, it's busted.
  3284. AC_DEFINE(SDL_AUDIO_DRIVER_NETBSD, 1, [ ])
  3285. SOURCES="$SOURCES $srcdir/src/audio/netbsd/*.c"
  3286. SUMMARY_audio="${SUMMARY_audio} netbsd"
  3287. have_audio=yes
  3288. ;;
  3289. aix)
  3290. AC_DEFINE(SDL_AUDIO_DRIVER_PAUDIO, 1, [ ])
  3291. SOURCES="$SOURCES $srcdir/src/audio/paudio/*.c"
  3292. SUMMARY_audio="${SUMMARY_audio} paudio"
  3293. have_audio=yes
  3294. ;;
  3295. android)
  3296. AC_DEFINE(SDL_AUDIO_DRIVER_ANDROID, 1, [ ])
  3297. SOURCES="$SOURCES $srcdir/src/audio/android/*.c"
  3298. SUMMARY_audio="${SUMMARY_audio} android"
  3299. have_audio=yes
  3300. ;;
  3301. nto)
  3302. CheckQNXAudio
  3303. ;;
  3304. esac
  3305. fi
  3306. # Set up files for the joystick library
  3307. if test x$enable_joystick = xyes; then
  3308. case $ARCH in
  3309. linux)
  3310. AC_DEFINE(SDL_JOYSTICK_LINUX, 1, [ ])
  3311. SOURCES="$SOURCES $srcdir/src/joystick/linux/*.c"
  3312. SOURCES="$SOURCES $srcdir/src/joystick/steam/*.c"
  3313. have_joystick=yes
  3314. ;;
  3315. android)
  3316. AC_DEFINE(SDL_JOYSTICK_ANDROID, 1, [ ])
  3317. SOURCES="$SOURCES $srcdir/src/joystick/android/*.c"
  3318. SOURCES="$SOURCES $srcdir/src/joystick/steam/*.c"
  3319. have_joystick=yes
  3320. ;;
  3321. esac
  3322. fi
  3323. # Set up files for the haptic library
  3324. if test x$enable_haptic = xyes; then
  3325. case $ARCH in
  3326. linux)
  3327. if test x$use_input_events = xyes; then
  3328. AC_DEFINE(SDL_HAPTIC_LINUX, 1, [ ])
  3329. SOURCES="$SOURCES $srcdir/src/haptic/linux/*.c"
  3330. have_haptic=yes
  3331. fi
  3332. ;;
  3333. android)
  3334. AC_DEFINE(SDL_HAPTIC_ANDROID, 1, [ ])
  3335. SOURCES="$SOURCES $srcdir/src/haptic/android/*.c"
  3336. have_haptic=yes
  3337. ;;
  3338. esac
  3339. fi
  3340. # Set up files for the sensor library
  3341. if test x$enable_sensor = xyes; then
  3342. case $ARCH in
  3343. android)
  3344. AC_DEFINE(SDL_SENSOR_ANDROID, 1, [ ])
  3345. SOURCES="$SOURCES $srcdir/src/sensor/android/*.c"
  3346. have_sensor=yes
  3347. ;;
  3348. esac
  3349. fi
  3350. # Set up files for the power library
  3351. if test x$enable_power = xyes; then
  3352. case $ARCH in
  3353. linux)
  3354. AC_DEFINE(SDL_POWER_LINUX, 1, [ ])
  3355. SOURCES="$SOURCES $srcdir/src/power/linux/*.c"
  3356. have_power=yes
  3357. ;;
  3358. android)
  3359. AC_DEFINE(SDL_POWER_ANDROID, 1, [ ])
  3360. SOURCES="$SOURCES $srcdir/src/power/android/*.c"
  3361. have_power=yes
  3362. ;;
  3363. esac
  3364. fi
  3365. # Set up files for the filesystem library
  3366. if test x$enable_filesystem = xyes; then
  3367. case $ARCH in
  3368. android)
  3369. AC_DEFINE(SDL_FILESYSTEM_ANDROID, 1, [ ])
  3370. SOURCES="$SOURCES $srcdir/src/filesystem/android/*.c"
  3371. have_filesystem=yes
  3372. ;;
  3373. *)
  3374. AC_DEFINE(SDL_FILESYSTEM_UNIX, 1, [ ])
  3375. SOURCES="$SOURCES $srcdir/src/filesystem/unix/*.c"
  3376. have_filesystem=yes
  3377. ;;
  3378. esac
  3379. fi
  3380. # Set up files for the timer library
  3381. if test x$enable_timers = xyes; then
  3382. AC_DEFINE(SDL_TIMER_UNIX, 1, [ ])
  3383. SOURCES="$SOURCES $srcdir/src/timer/unix/*.c"
  3384. have_timers=yes
  3385. fi
  3386. # Set up files for udev hotplugging support
  3387. if test x$enable_libudev = xyes && test x$have_libudev_h_hdr = xyes; then
  3388. SOURCES="$SOURCES $srcdir/src/core/linux/SDL_udev.c"
  3389. fi
  3390. # Set up files for evdev input
  3391. if test x$use_input_events = xyes; then
  3392. SOURCES="$SOURCES $srcdir/src/core/linux/SDL_evdev*.c"
  3393. fi
  3394. # Set up other core UNIX files
  3395. SOURCES="$SOURCES $srcdir/src/core/linux/SDL_threadprio.c"
  3396. SOURCES="$SOURCES $srcdir/src/core/unix/*.c"
  3397. ;;
  3398. *-*-cygwin* | *-*-mingw32*)
  3399. ARCH=win32
  3400. if test "$build" != "$host"; then # cross-compiling
  3401. # Default cross-compile location
  3402. ac_default_prefix=/usr/local/cross-tools/$host
  3403. else
  3404. # Look for the location of the tools and install there
  3405. if test "$BUILD_PREFIX" != ""; then
  3406. ac_default_prefix=$BUILD_PREFIX
  3407. fi
  3408. fi
  3409. CheckDeclarationAfterStatement
  3410. CheckDummyVideo
  3411. CheckDiskAudio
  3412. CheckDummyAudio
  3413. CheckWINDOWS
  3414. CheckWINDOWSGL
  3415. CheckWINDOWSGLES
  3416. CheckVulkan
  3417. CheckDIRECTX
  3418. CheckHIDAPI
  3419. # Set up the core platform files
  3420. SOURCES="$SOURCES $srcdir/src/core/windows/*.c"
  3421. # Use the Windows locale APIs.
  3422. SOURCES="$SOURCES $srcdir/src/locale/windows/*.c"
  3423. have_locale=yes
  3424. # Set up files for the video library
  3425. if test x$enable_video = xyes; then
  3426. AC_DEFINE(SDL_VIDEO_DRIVER_WINDOWS, 1, [ ])
  3427. SOURCES="$SOURCES $srcdir/src/video/windows/*.c"
  3428. have_video=yes
  3429. AC_ARG_ENABLE(render-d3d,
  3430. AS_HELP_STRING([--enable-render-d3d], [enable the Direct3D render driver [[default=yes]]]),
  3431. , enable_render_d3d=yes)
  3432. if test x$enable_render_d3d = xyes -a x$have_d3d = xyes; then
  3433. AC_DEFINE(SDL_VIDEO_RENDER_D3D, 1, [ ])
  3434. SUMMARY_video="${SUMMARY_video} d3d9"
  3435. fi
  3436. if test x$enable_render_d3d = xyes -a x$have_d3d11 = xyes; then
  3437. AC_DEFINE(SDL_VIDEO_RENDER_D3D11, 1, [ ])
  3438. SUMMARY_video="${SUMMARY_video} d3d11"
  3439. fi
  3440. fi
  3441. # Set up files for the audio library
  3442. if test x$enable_audio = xyes; then
  3443. AC_DEFINE(SDL_AUDIO_DRIVER_WINMM, 1, [ ])
  3444. SUMMARY_audio="${SUMMARY_audio} winmm"
  3445. SOURCES="$SOURCES $srcdir/src/audio/winmm/*.c"
  3446. if test x$have_dsound = xyes; then
  3447. AC_DEFINE(SDL_AUDIO_DRIVER_DSOUND, 1, [ ])
  3448. SUMMARY_audio="${SUMMARY_audio} directsound"
  3449. SOURCES="$SOURCES $srcdir/src/audio/directsound/*.c"
  3450. fi
  3451. if test x$have_wasapi = xyes -a x$enable_wasapi = xyes; then
  3452. AC_DEFINE(SDL_AUDIO_DRIVER_WASAPI, 1, [ ])
  3453. SUMMARY_audio="${SUMMARY_audio} wasapi"
  3454. SOURCES="$SOURCES $srcdir/src/audio/wasapi/*.c"
  3455. fi
  3456. have_audio=yes
  3457. fi
  3458. # Set up files for the joystick library
  3459. if test x$enable_joystick = xyes; then
  3460. if test x$have_dinput = xyes -o x$have_xinput = xyes; then
  3461. if test x$have_xinput = xyes; then
  3462. AC_DEFINE(SDL_JOYSTICK_XINPUT, 1, [ ])
  3463. fi
  3464. if test x$have_dinput = xyes; then
  3465. AC_DEFINE(SDL_JOYSTICK_DINPUT, 1, [ ])
  3466. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -ldinput8 -ldxguid -ldxerr8"
  3467. fi
  3468. else
  3469. AC_DEFINE(SDL_JOYSTICK_WINMM, 1, [ ])
  3470. fi
  3471. SOURCES="$SOURCES $srcdir/src/joystick/windows/*.c"
  3472. have_joystick=yes
  3473. fi
  3474. if test x$enable_haptic = xyes; then
  3475. if test x$have_dinput = xyes -o x$have_xinput = xyes; then
  3476. if test x$have_xinput = xyes; then
  3477. AC_DEFINE(SDL_HAPTIC_XINPUT, 1, [ ])
  3478. fi
  3479. if test x$have_dinput = xyes; then
  3480. AC_DEFINE(SDL_HAPTIC_DINPUT, 1, [ ])
  3481. fi
  3482. SOURCES="$SOURCES $srcdir/src/haptic/windows/*.c"
  3483. have_haptic=yes
  3484. fi
  3485. fi
  3486. # Set up files for the sensor library
  3487. if test x$enable_sensor = xyes; then
  3488. AC_DEFINE(SDL_SENSOR_WINDOWS, 1, [ ])
  3489. SOURCES="$SOURCES $srcdir/src/sensor/windows/*.c"
  3490. have_sensor=yes
  3491. fi
  3492. # Set up files for the power library
  3493. if test x$enable_power = xyes; then
  3494. AC_DEFINE(SDL_POWER_WINDOWS, 1, [ ])
  3495. SOURCES="$SOURCES $srcdir/src/power/windows/SDL_syspower.c"
  3496. have_power=yes
  3497. fi
  3498. # Set up files for the filesystem library
  3499. if test x$enable_filesystem = xyes; then
  3500. AC_DEFINE(SDL_FILESYSTEM_WINDOWS, 1, [ ])
  3501. SOURCES="$SOURCES $srcdir/src/filesystem/windows/SDL_sysfilesystem.c"
  3502. have_filesystem=yes
  3503. fi
  3504. # Set up files for the thread library
  3505. if test x$enable_threads = xyes; then
  3506. AC_DEFINE(SDL_THREAD_WINDOWS, 1, [ ])
  3507. SOURCES="$SOURCES $srcdir/src/thread/windows/*.c"
  3508. SOURCES="$SOURCES $srcdir/src/thread/generic/SDL_syscond.c"
  3509. have_threads=yes
  3510. fi
  3511. # Set up files for the timer library
  3512. if test x$enable_timers = xyes; then
  3513. AC_DEFINE(SDL_TIMER_WINDOWS, 1, [ ])
  3514. SOURCES="$SOURCES $srcdir/src/timer/windows/*.c"
  3515. have_timers=yes
  3516. fi
  3517. # Set up files for the shared object loading library
  3518. if test x$enable_loadso = xyes; then
  3519. AC_DEFINE(SDL_LOADSO_WINDOWS, 1, [ ])
  3520. SOURCES="$SOURCES $srcdir/src/loadso/windows/*.c"
  3521. have_loadso=yes
  3522. fi
  3523. # Set up the system libraries we need
  3524. if test -f /lib/w32api/libuuid.a; then
  3525. LIBUUID=/lib/w32api/libuuid.a
  3526. else
  3527. LIBUUID=-luuid
  3528. fi
  3529. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -luser32 -lgdi32 -lwinmm -limm32 -lole32 -loleaut32 -lshell32 -lsetupapi -lversion $LIBUUID -static-libgcc"
  3530. # The Windows platform requires special setup
  3531. VERSION_SOURCES="$srcdir/src/main/windows/*.rc"
  3532. SDLMAIN_SOURCES="$srcdir/src/main/windows/*.c"
  3533. SDL_CFLAGS="$SDL_CFLAGS -Dmain=SDL_main"
  3534. SDL_LIBS="-lSDL2main $SDL_LIBS -mwindows"
  3535. # Check to see if this is a mingw or cygwin build
  3536. have_mingw32=
  3537. AC_CHECK_LIB(mingw32, main, [have_mingw32=yes])
  3538. if test x$have_mingw32 = xyes; then
  3539. SDL_LIBS="-lmingw32 $SDL_LIBS"
  3540. else
  3541. SDL_LIBS="-lcygwin $SDL_LIBS"
  3542. fi
  3543. ;;
  3544. dnl BeOS support removed after SDL 2.0.1. Haiku still works. --ryan.
  3545. *-*-beos*)
  3546. AC_MSG_ERROR([
  3547. *** BeOS support has been removed as of SDL 2.0.2.
  3548. ])
  3549. ;;
  3550. *-*-haiku*)
  3551. ARCH=haiku
  3552. ac_default_prefix=/boot/system
  3553. CheckDummyVideo
  3554. CheckDiskAudio
  3555. CheckDummyAudio
  3556. CheckDLOPEN
  3557. CheckHaikuVideo
  3558. CheckHaikuGL
  3559. CheckPTHREAD
  3560. # Set up files for the audio library
  3561. if test x$enable_audio = xyes; then
  3562. AC_DEFINE(SDL_AUDIO_DRIVER_HAIKU, 1, [ ])
  3563. SOURCES="$SOURCES $srcdir/src/audio/haiku/*.cc"
  3564. SUMMARY_audio="${SUMMARY_audio} haiku"
  3565. have_audio=yes
  3566. fi
  3567. # Set up files for the joystick library
  3568. if test x$enable_joystick = xyes; then
  3569. AC_DEFINE(SDL_JOYSTICK_HAIKU, 1, [ ])
  3570. SOURCES="$SOURCES $srcdir/src/joystick/haiku/*.cc"
  3571. have_joystick=yes
  3572. fi
  3573. # Set up files for the timer library
  3574. if test x$enable_timers = xyes; then
  3575. AC_DEFINE(SDL_TIMER_HAIKU, 1, [ ])
  3576. SOURCES="$SOURCES $srcdir/src/timer/haiku/*.c"
  3577. have_timers=yes
  3578. fi
  3579. # Set up files for the system power library
  3580. if test x$enable_power = xyes; then
  3581. AC_DEFINE(SDL_POWER_HAIKU, 1, [ ])
  3582. SOURCES="$SOURCES $srcdir/src/power/haiku/*.c"
  3583. have_power=yes
  3584. fi
  3585. # Set up files for the system filesystem library
  3586. if test x$enable_filesystem = xyes; then
  3587. AC_DEFINE(SDL_FILESYSTEM_HAIKU, 1, [ ])
  3588. SOURCES="$SOURCES $srcdir/src/filesystem/haiku/*.cc"
  3589. have_filesystem=yes
  3590. fi
  3591. # Set up files for the locale library
  3592. SOURCES="$SOURCES $srcdir/src/locale/haiku/*.cc"
  3593. have_locale=yes
  3594. # The Haiku platform requires special setup.
  3595. SOURCES="$srcdir/src/main/haiku/*.cc $SOURCES"
  3596. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lroot -lbe -lmedia -lgame -ldevice -ltextencoding"
  3597. # Haiku's x86 spins use libstdc++.r4.so (for binary compat?), but
  3598. # other spins, like x86-64, use a more standard "libstdc++.so.*"
  3599. AC_CHECK_FILE("/boot/system/lib/libstdc++.r4.so", EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lstdc++.r4", EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lstdc++")
  3600. ;;
  3601. *-ios-*)
  3602. ARCH=ios
  3603. CheckVisibilityHidden
  3604. CheckDeclarationAfterStatement
  3605. CheckDummyVideo
  3606. CheckDiskAudio
  3607. CheckDummyAudio
  3608. CheckDLOPEN
  3609. CheckMETAL
  3610. CheckVulkan
  3611. CheckPTHREAD
  3612. # Set up files for the locale library
  3613. SOURCES="$SOURCES $srcdir/src/locale/macosx/*.m"
  3614. have_locale=yes
  3615. # Set up files for the audio library
  3616. if test x$enable_audio = xyes; then
  3617. AC_DEFINE(SDL_AUDIO_DRIVER_COREAUDIO, 1, [ ])
  3618. SOURCES="$SOURCES $srcdir/src/audio/coreaudio/*.m"
  3619. SUMMARY_audio="${SUMMARY_audio} coreaudio"
  3620. have_audio=yes
  3621. fi
  3622. # Set up files for the joystick library
  3623. if test x$enable_joystick = xyes; then
  3624. AC_DEFINE(SDL_JOYSTICK_MFI, 1, [ ])
  3625. SOURCES="$SOURCES $srcdir/src/joystick/iphoneos/*.m"
  3626. SOURCES="$SOURCES $srcdir/src/joystick/steam/*.c"
  3627. have_joystick=yes
  3628. else
  3629. # Need this code for accelerometer as joystick support
  3630. SOURCES="$SOURCES $srcdir/src/joystick/iphoneos/*.m"
  3631. fi
  3632. # Set up files for the haptic library
  3633. #if test x$enable_haptic = xyes; then
  3634. # SOURCES="$SOURCES $srcdir/src/haptic/darwin/*.c"
  3635. # have_haptic=yes
  3636. # EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,ForceFeedback"
  3637. #fi
  3638. # Set up files for the sensor library
  3639. if test x$enable_sensor = xyes; then
  3640. AC_DEFINE(SDL_SENSOR_COREMOTION, 1, [ ])
  3641. SOURCES="$SOURCES $srcdir/src/sensor/coremotion/*.m"
  3642. have_sensor=yes
  3643. fi
  3644. # Set up files for the power library
  3645. if test x$enable_power = xyes; then
  3646. AC_DEFINE(SDL_POWER_UIKIT, 1, [ ])
  3647. SOURCES="$SOURCES $srcdir/src/power/uikit/*.m"
  3648. have_power=yes
  3649. fi
  3650. # Set up files for the filesystem library
  3651. if test x$enable_filesystem = xyes; then
  3652. SOURCES="$SOURCES $srcdir/src/filesystem/cocoa/*.m"
  3653. have_filesystem=yes
  3654. fi
  3655. # Set up additional files for the file library
  3656. if test x$enable_file = xyes; then
  3657. AC_DEFINE(SDL_FILESYSTEM_COCOA, 1, [ ])
  3658. SOURCES="$SOURCES $srcdir/src/file/cocoa/*.m"
  3659. fi
  3660. # Set up files for the timer library
  3661. if test x$enable_timers = xyes; then
  3662. AC_DEFINE(SDL_TIMER_UNIX, 1, [ ])
  3663. SOURCES="$SOURCES $srcdir/src/timer/unix/*.c"
  3664. have_timers=yes
  3665. fi
  3666. # Set up other core UNIX files
  3667. SOURCES="$SOURCES $srcdir/src/core/unix/*.c"
  3668. # The iOS platform requires special setup.
  3669. AC_DEFINE(SDL_VIDEO_DRIVER_UIKIT, 1, [ ])
  3670. AC_DEFINE(SDL_VIDEO_OPENGL_ES2, 1, [ ])
  3671. AC_DEFINE(SDL_VIDEO_OPENGL_ES, 1, [ ])
  3672. AC_DEFINE(SDL_VIDEO_RENDER_OGL_ES, 1, [ ])
  3673. AC_DEFINE(SDL_VIDEO_RENDER_OGL_ES2, 1, [ ])
  3674. SOURCES="$SOURCES $srcdir/src/video/uikit/*.m"
  3675. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lm -liconv -lobjc"
  3676. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,AVFoundation"
  3677. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,AudioToolbox"
  3678. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,CoreAudio"
  3679. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,CoreGraphics"
  3680. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,CoreMotion"
  3681. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,Foundation"
  3682. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,GameController"
  3683. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,OpenGLES"
  3684. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,QuartzCore"
  3685. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,UIKit"
  3686. if test x$enable_video_metal = xyes -o x$enable_video_vulkan = xyes; then
  3687. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,Metal"
  3688. fi
  3689. ;;
  3690. *-*-darwin* )
  3691. # This could be either full "Mac OS X", or plain "Darwin" which is
  3692. # just the OS X kernel sans upper layers like Carbon and Cocoa.
  3693. # Next line is broken, and a few files below require Mac OS X (full)
  3694. ARCH=macosx
  3695. # Mac OS X builds with both the Carbon and OSX APIs at the moment
  3696. EXTRA_CFLAGS="$EXTRA_CFLAGS -DTARGET_API_MAC_CARBON"
  3697. EXTRA_CFLAGS="$EXTRA_CFLAGS -DTARGET_API_MAC_OSX"
  3698. CheckVisibilityHidden
  3699. CheckDeclarationAfterStatement
  3700. CheckDummyVideo
  3701. CheckDiskAudio
  3702. CheckDummyAudio
  3703. CheckDLOPEN
  3704. CheckCOCOA
  3705. CheckMETAL
  3706. CheckX11
  3707. CheckMacGL
  3708. CheckMacGLES
  3709. CheckOpenGLX11
  3710. CheckVulkan
  3711. CheckPTHREAD
  3712. CheckHIDAPI
  3713. # Set up files for the locale library
  3714. SOURCES="$SOURCES $srcdir/src/locale/macosx/*.m"
  3715. have_locale=yes
  3716. # Set up files for the audio library
  3717. if test x$enable_audio = xyes; then
  3718. AC_DEFINE(SDL_AUDIO_DRIVER_COREAUDIO, 1, [ ])
  3719. SOURCES="$SOURCES $srcdir/src/audio/coreaudio/*.m"
  3720. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,CoreAudio -Wl,-framework,AudioToolbox"
  3721. SUMMARY_audio="${SUMMARY_audio} coreaudio"
  3722. have_audio=yes
  3723. fi
  3724. # Set up files for the joystick library
  3725. if test x$enable_joystick = xyes; then
  3726. AC_DEFINE(SDL_JOYSTICK_IOKIT, 1, [ ])
  3727. SOURCES="$SOURCES $srcdir/src/joystick/darwin/*.c"
  3728. have_joystick=yes
  3729. fi
  3730. # Set up files for the haptic library
  3731. if test x$enable_haptic = xyes; then
  3732. AC_DEFINE(SDL_HAPTIC_IOKIT, 1, [ ])
  3733. SOURCES="$SOURCES $srcdir/src/haptic/darwin/*.c"
  3734. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,ForceFeedback"
  3735. have_haptic=yes
  3736. fi
  3737. # Set up files for the power library
  3738. if test x$enable_power = xyes; then
  3739. AC_DEFINE(SDL_POWER_MACOSX, 1, [ ])
  3740. SOURCES="$SOURCES $srcdir/src/power/macosx/*.c"
  3741. have_power=yes
  3742. fi
  3743. # Set up files for the filesystem library
  3744. if test x$enable_filesystem = xyes; then
  3745. AC_DEFINE(SDL_FILESYSTEM_COCOA, 1, [ ])
  3746. SOURCES="$SOURCES $srcdir/src/filesystem/cocoa/*.m"
  3747. have_filesystem=yes
  3748. fi
  3749. # Set up files for the timer library
  3750. if test x$enable_timers = xyes; then
  3751. AC_DEFINE(SDL_TIMER_UNIX, 1, [ ])
  3752. SOURCES="$SOURCES $srcdir/src/timer/unix/*.c"
  3753. have_timers=yes
  3754. fi
  3755. # Set up additional files for the file library
  3756. if test x$enable_file = xyes; then
  3757. SOURCES="$SOURCES $srcdir/src/file/cocoa/*.m"
  3758. fi
  3759. # Set up other core UNIX files
  3760. SOURCES="$SOURCES $srcdir/src/core/unix/*.c"
  3761. # The Mac OS X platform requires special setup.
  3762. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lobjc"
  3763. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,CoreVideo"
  3764. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,Cocoa"
  3765. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,Carbon"
  3766. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,IOKit"
  3767. if test x$enable_video_metal = xyes -o x$enable_video_vulkan = xyes; then
  3768. EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-weak_framework,QuartzCore -Wl,-weak_framework,Metal"
  3769. fi
  3770. ;;
  3771. *-nacl|*-pnacl)
  3772. ARCH=nacl
  3773. CheckNativeClient
  3774. CheckDummyAudio
  3775. CheckDummyVideo
  3776. CheckInputEvents
  3777. CheckPTHREAD
  3778. # Set up files for the timer library
  3779. if test x$enable_timers = xyes; then
  3780. AC_DEFINE(SDL_TIMER_UNIX, 1, [ ])
  3781. SOURCES="$SOURCES $srcdir/src/timer/unix/*.c"
  3782. have_timers=yes
  3783. fi
  3784. if test x$enable_filesystem = xyes; then
  3785. AC_DEFINE(SDL_FILESYSTEM_NACL, 1, [ ])
  3786. SOURCES="$SOURCES $srcdir/src/filesystem/nacl/*.c"
  3787. have_filesystem=yes
  3788. fi
  3789. ;;
  3790. *-*-emscripten* )
  3791. if test x$enable_video = xyes; then
  3792. AC_DEFINE(SDL_VIDEO_DRIVER_EMSCRIPTEN, 1, [ ])
  3793. SOURCES="$SOURCES $srcdir/src/video/emscripten/*.c"
  3794. have_video=yes
  3795. SUMMARY_video="${SUMMARY_video} emscripten"
  3796. fi
  3797. if test x$enable_audio = xyes; then
  3798. AC_DEFINE(SDL_AUDIO_DRIVER_EMSCRIPTEN, 1, [ ])
  3799. SOURCES="$SOURCES $srcdir/src/audio/emscripten/*.c"
  3800. have_audio=yes
  3801. SUMMARY_audio="${SUMMARY_audio} emscripten"
  3802. fi
  3803. CheckVisibilityHidden
  3804. CheckDeclarationAfterStatement
  3805. CheckDummyVideo
  3806. CheckDiskAudio
  3807. CheckDummyAudio
  3808. CheckDLOPEN
  3809. CheckClockGettime
  3810. CheckEmscriptenGLES
  3811. # Set up files for the power library
  3812. if test x$enable_power = xyes; then
  3813. AC_DEFINE(SDL_POWER_EMSCRIPTEN, 1, [ ])
  3814. SOURCES="$SOURCES $srcdir/src/power/emscripten/*.c"
  3815. have_power=yes
  3816. fi
  3817. # Set up files for the power library
  3818. if test x$enable_joystick = xyes; then
  3819. AC_DEFINE(SDL_JOYSTICK_EMSCRIPTEN, 1, [ ])
  3820. SOURCES="$SOURCES $srcdir/src/joystick/emscripten/*.c"
  3821. have_joystick=yes
  3822. fi
  3823. # Set up files for the filesystem library
  3824. if test x$enable_filesystem = xyes; then
  3825. AC_DEFINE(SDL_FILESYSTEM_EMSCRIPTEN, 1, [ ])
  3826. SOURCES="$SOURCES $srcdir/src/filesystem/emscripten/*.c"
  3827. have_filesystem=yes
  3828. fi
  3829. # Set up files for the timer library
  3830. if test x$enable_timers = xyes; then
  3831. AC_DEFINE(SDL_TIMER_UNIX, 1, [ ])
  3832. SOURCES="$SOURCES $srcdir/src/timer/unix/*.c"
  3833. have_timers=yes
  3834. fi
  3835. # Set up files for the locale library
  3836. SOURCES="$SOURCES $srcdir/src/locale/emscripten/*.c"
  3837. have_locale=yes
  3838. ;;
  3839. *-*-riscos*)
  3840. ARCH=riscos
  3841. CheckVisibilityHidden
  3842. CheckDeclarationAfterStatement
  3843. CheckDummyVideo
  3844. CheckDiskAudio
  3845. CheckDummyAudio
  3846. CheckDLOPEN
  3847. CheckOSS
  3848. CheckPTHREAD
  3849. CheckClockGettime
  3850. # Set up files for the timer library
  3851. if test x$enable_timers = xyes; then
  3852. AC_DEFINE(SDL_TIMER_UNIX, 1, [ ])
  3853. SOURCES="$SOURCES $srcdir/src/timer/unix/*.c"
  3854. have_timers=yes
  3855. fi
  3856. ;;
  3857. *)
  3858. AC_MSG_ERROR([
  3859. *** Unsupported host: Please add to configure.ac
  3860. ])
  3861. ;;
  3862. esac
  3863. dnl Permit use of virtual joystick APIs on any platform (subject to configure options)
  3864. CheckVirtualJoystick
  3865. # Check whether to install sdl2-config
  3866. AC_MSG_CHECKING(whether to install sdl2-config)
  3867. AC_ARG_ENABLE([sdl2-config],
  3868. AS_HELP_STRING([--enable-sdl2-config], [Install sdl2-config [default=yes]]),
  3869. [case "${enableval}" in
  3870. yes) enable_sdl2_config="TRUE" ;;
  3871. no) enable_sdl2_config="FALSE" ;;
  3872. *) AC_MSG_ERROR([bad value '${enableval}' for --enable-sdl2-config]) ;;
  3873. esac], [enable_sdl2_config="TRUE"])
  3874. if test "$enable_sdl2_config" = "TRUE"; then
  3875. AC_MSG_RESULT(yes)
  3876. else
  3877. AC_MSG_RESULT(no)
  3878. fi
  3879. AC_SUBST([INSTALL_SDL2_CONFIG], [$enable_sdl2_config])
  3880. # Verify that we have all the platform specific files we need
  3881. if test x$have_locale != xyes; then
  3882. SOURCES="$SOURCES $srcdir/src/locale/dummy/*.c"
  3883. fi
  3884. if test x$have_joystick != xyes; then
  3885. if test x$enable_joystick = xyes; then
  3886. AC_DEFINE(SDL_JOYSTICK_DUMMY, 1, [ ])
  3887. fi
  3888. SOURCES="$SOURCES $srcdir/src/joystick/dummy/*.c"
  3889. fi
  3890. if test x$have_haptic != xyes; then
  3891. if test x$enable_haptic = xyes; then
  3892. AC_DEFINE(SDL_HAPTIC_DUMMY, 1, [ ])
  3893. fi
  3894. SOURCES="$SOURCES $srcdir/src/haptic/dummy/*.c"
  3895. fi
  3896. if test x$have_sensor != xyes; then
  3897. if test x$enable_sensor = xyes; then
  3898. AC_DEFINE(SDL_SENSOR_DUMMY, 1, [ ])
  3899. fi
  3900. SOURCES="$SOURCES $srcdir/src/sensor/dummy/*.c"
  3901. fi
  3902. if test x$have_threads != xyes; then
  3903. if test x$enable_threads = xyes; then
  3904. AC_DEFINE(SDL_THREADS_DISABLED, 1, [ ])
  3905. fi
  3906. SOURCES="$SOURCES $srcdir/src/thread/generic/*.c"
  3907. fi
  3908. if test x$have_timers != xyes; then
  3909. if test x$enable_timers = xyes; then
  3910. AC_DEFINE(SDL_TIMERS_DISABLED, 1, [ ])
  3911. fi
  3912. SOURCES="$SOURCES $srcdir/src/timer/dummy/*.c"
  3913. fi
  3914. if test x$have_filesystem != xyes; then
  3915. if test x$enable_filesystem = xyes; then
  3916. AC_DEFINE(SDL_FILESYSTEM_DISABLED, 1, [ ])
  3917. fi
  3918. SOURCES="$SOURCES $srcdir/src/filesystem/dummy/*.c"
  3919. fi
  3920. if test x$have_loadso != xyes; then
  3921. if test x$enable_loadso = xyes; then
  3922. AC_DEFINE(SDL_LOADSO_DISABLED, 1, [ ])
  3923. fi
  3924. SOURCES="$SOURCES $srcdir/src/loadso/dummy/*.c"
  3925. fi
  3926. if test x$SDLMAIN_SOURCES = x; then
  3927. SDLMAIN_SOURCES="$srcdir/src/main/dummy/*.c"
  3928. fi
  3929. SDLTEST_SOURCES="$srcdir/src/test/*.c"
  3930. if test x$video_wayland = xyes; then
  3931. WAYLAND_PROTOCOLS=`cd $srcdir/wayland-protocols ; for p in *.xml ; do echo -n "\$p" |sed 's,\\.xml\$, ,g' ; done`
  3932. WAYLAND_PROTOCOLS_SOURCES=`for p in $WAYLAND_PROTOCOLS ; do echo -n "\\$(gen)/\$p-protocol.c " ; done`
  3933. WAYLAND_PROTOCOLS_HEADERS=`for p in $WAYLAND_PROTOCOLS ; do echo -n "\\$(gen)/\$p-client-protocol.h " ; done`
  3934. GEN_SOURCES="$GEN_SOURCES $WAYLAND_PROTOCOLS_SOURCES"
  3935. GEN_HEADERS="$GEN_HEADERS $WAYLAND_PROTOCOLS_HEADERS"
  3936. WAYLAND_PROTOCOLS_DEPENDS=`for p in $WAYLAND_PROTOCOLS ; do\
  3937. echo ;\
  3938. echo "\\$(gen)/\$p-client-protocol.h: \\$(srcdir)/wayland-protocols/\$p.xml" ;\
  3939. echo " @\\$(SHELL) \\$(auxdir)/mkinstalldirs \\$(gen)" ;\
  3940. echo " \\$(RUN_CMD_GEN)\\$(WAYLAND_SCANNER) client-header \\$< \\$@" ;\
  3941. echo ;\
  3942. echo "\\$(gen)/\$p-protocol.c: \\$(srcdir)/wayland-protocols/\$p.xml" ;\
  3943. echo " @\\$(SHELL) \\$(auxdir)/mkinstalldirs \\$(gen)" ;\
  3944. echo " \\$(RUN_CMD_GEN)\\$(WAYLAND_SCANNER) code \\$< \\$@" ;\
  3945. echo ;\
  3946. echo "\\$(objects)/\$p-protocol.lo: \\$(gen)/\$p-protocol.c \\$(gen)/\$p-client-protocol.h" ;\
  3947. echo " \\$(RUN_CMD_CC)\\$(LIBTOOL) --tag=CC --mode=compile \\$(CC) \\$(CFLAGS) \\$(EXTRA_CFLAGS) $DEPENDENCY_TRACKING_OPTIONS -c \\$< -o \\$@" ;\
  3948. done ;\
  3949. echo ;\
  3950. for s in $WAYLAND_SOURCES ; do echo -n "\$s:" ; for p in $WAYLAND_PROTOCOLS ; do echo -n " \\$(gen)/\$p-client-protocol.h" ; done ; echo ; done ; echo`
  3951. fi
  3952. OBJECTS=`echo $SOURCES`
  3953. DEPENDS=`echo $SOURCES | tr ' ' '\n'`
  3954. for EXT in asm cc m c S; do
  3955. OBJECTS=`echo "$OBJECTS" | sed 's,[[^ ]]*/\([[^ ]]*\)\.'$EXT',$(objects)/\1.lo,g'`
  3956. DEPENDS=`echo "$DEPENDS" | sed "s,^\\([[^ ]]*\\)/\\([[^ ]]*\\)\\.$EXT\\$,\\\\
  3957. \\$(objects)/\\2.lo: \\1/\\2.$EXT \\$(objects)/.created\\\\
  3958. \\$(RUN_CMD_CC)\\$(LIBTOOL) --tag=CC --mode=compile \\$(CC) \\$(CFLAGS) \\$(EXTRA_CFLAGS) $DEPENDENCY_TRACKING_OPTIONS -c \\$< -o \\$@,g"`
  3959. done
  3960. GEN_OBJECTS=`echo "$GEN_SOURCES" | sed 's,[[^ ]]*/\([[^ ]]*\)\.c,$(objects)/\1.lo,g'`
  3961. VERSION_OBJECTS=`echo $VERSION_SOURCES`
  3962. VERSION_DEPENDS=`echo $VERSION_SOURCES`
  3963. VERSION_OBJECTS=`echo "$VERSION_OBJECTS" | sed 's,[[^ ]]*/\([[^ ]]*\)\.rc,$(objects)/\1.lo,g'`
  3964. VERSION_DEPENDS=`echo "$VERSION_DEPENDS" | sed "s,\\([[^ ]]*\\)/\\([[^ ]]*\\)\\.rc,\\\\
  3965. \\$(objects)/\\2.lo: \\1/\\2.rc \\$(objects)/.created\\\\
  3966. \\$(RUN_CMD_RC)\\$(LIBTOOL) --mode=compile --tag=RC \\$(RC) -i \\$< -o \\$@,g"`
  3967. SDLMAIN_OBJECTS=`echo $SDLMAIN_SOURCES`
  3968. SDLMAIN_DEPENDS=`echo $SDLMAIN_SOURCES`
  3969. SDLMAIN_OBJECTS=`echo "$SDLMAIN_OBJECTS" | sed 's,[[^ ]]*/\([[^ ]]*\)\.c,$(objects)/\1.lo,g'`
  3970. SDLMAIN_DEPENDS=`echo "$SDLMAIN_DEPENDS" | sed "s,\\([[^ ]]*\\)/\\([[^ ]]*\\)\\.c,\\\\
  3971. \\$(objects)/\\2.lo: \\1/\\2.c \\$(objects)/.created\\\\
  3972. \\$(RUN_CMD_CC)\\$(LIBTOOL) --tag=CC --mode=compile \\$(CC) \\$(CFLAGS) \\$(EXTRA_CFLAGS) $DEPENDENCY_TRACKING_OPTIONS -c \\$< -o \\$@,g"`
  3973. SDLTEST_OBJECTS=`echo $SDLTEST_SOURCES`
  3974. SDLTEST_DEPENDS=`echo $SDLTEST_SOURCES`
  3975. SDLTEST_OBJECTS=`echo "$SDLTEST_OBJECTS" | sed 's,[[^ ]]*/\([[^ ]]*\)\.c,$(objects)/\1.lo,g'`
  3976. SDLTEST_DEPENDS=`echo "$SDLTEST_DEPENDS" | sed "s,\\([[^ ]]*\\)/\\([[^ ]]*\\)\\.c,\\\\
  3977. \\$(objects)/\\2.lo: \\1/\\2.c \\$(objects)/.created\\\\
  3978. \\$(RUN_CMD_CC)\\$(LIBTOOL) --tag=CC --mode=compile \\$(CC) \\$(CFLAGS) \\$(EXTRA_CFLAGS) $DEPENDENCY_TRACKING_OPTIONS -c \\$< -o \\$@,g"`
  3979. # Set runtime shared library paths as needed
  3980. if test "x$enable_rpath" = "xyes" -a "x$enable_shared" = "xyes"; then
  3981. if test $ARCH = bsdi -o $ARCH = freebsd -o $ARCH = linux -o $ARCH = netbsd; then
  3982. SDL_RLD_FLAGS="-Wl,-rpath,\${libdir}"
  3983. AC_MSG_CHECKING(for linker option --enable-new-dtags)
  3984. have_enable_new_dtags=no
  3985. save_LDFLAGS="$LDFLAGS"
  3986. LDFLAGS="$LDFLAGS -Wl,--enable-new-dtags"
  3987. AC_TRY_LINK([
  3988. ],[
  3989. ],[
  3990. have_enable_new_dtags=yes
  3991. SDL_RLD_FLAGS="$SDL_RLD_FLAGS -Wl,--enable-new-dtags"
  3992. ])
  3993. LDFLAGS="$save_LDFLAGS"
  3994. AC_MSG_RESULT($have_enable_new_dtags)
  3995. fi
  3996. if test $ARCH = solaris; then
  3997. SDL_RLD_FLAGS="-R\${libdir}"
  3998. fi
  3999. else
  4000. SDL_RLD_FLAGS=""
  4001. fi
  4002. SDL_STATIC_LIBS="$EXTRA_LDFLAGS"
  4003. dnl Expand the cflags and libraries needed by apps using SDL
  4004. AC_SUBST(SDL_CFLAGS)
  4005. AC_SUBST(SDL_LIBS)
  4006. AC_SUBST(SDL_STATIC_LIBS)
  4007. AC_SUBST(SDL_RLD_FLAGS)
  4008. if test x$enable_shared = xyes; then
  4009. PKG_CONFIG_LIBS_PRIV="
  4010. Libs.private:"
  4011. ENABLE_SHARED_TRUE=
  4012. ENABLE_SHARED_FALSE="#"
  4013. else
  4014. PKG_CONFIG_LIBS_PRIV=
  4015. ENABLE_SHARED_TRUE="#"
  4016. ENABLE_SHARED_FALSE=
  4017. fi
  4018. if test x$enable_static = xyes; then
  4019. ENABLE_STATIC_TRUE=
  4020. ENABLE_STATIC_FALSE="#"
  4021. else
  4022. ENABLE_STATIC_TRUE="#"
  4023. ENABLE_STATIC_FALSE=
  4024. fi
  4025. AC_SUBST(PKG_CONFIG_LIBS_PRIV)
  4026. AC_SUBST(ENABLE_SHARED_TRUE)
  4027. AC_SUBST(ENABLE_SHARED_FALSE)
  4028. AC_SUBST(ENABLE_STATIC_TRUE)
  4029. AC_SUBST(ENABLE_STATIC_FALSE)
  4030. dnl Expand the sources and objects needed to build the library
  4031. AC_SUBST(ac_aux_dir)
  4032. AC_SUBST(INCLUDE)
  4033. AC_SUBST(OBJECTS)
  4034. AC_SUBST(GEN_HEADERS)
  4035. AC_SUBST(GEN_OBJECTS)
  4036. AC_SUBST(VERSION_OBJECTS)
  4037. AC_SUBST(SDLMAIN_OBJECTS)
  4038. AC_SUBST(SDLTEST_OBJECTS)
  4039. AC_SUBST(BUILD_CFLAGS)
  4040. AC_SUBST(EXTRA_CFLAGS)
  4041. AC_SUBST(BUILD_LDFLAGS)
  4042. AC_SUBST(EXTRA_LDFLAGS)
  4043. AC_SUBST(WAYLAND_SCANNER)
  4044. cat >Makefile.rules <<__EOF__
  4045. # Build rules for objects
  4046. -include \$(OBJECTS:.lo=.d)
  4047. # Special dependency for SDL.c, since it depends on SDL_revision.h
  4048. $srcdir/src/SDL.c: update-revision
  4049. $DEPENDS
  4050. $VERSION_DEPENDS
  4051. $SDLMAIN_DEPENDS
  4052. $SDLTEST_DEPENDS
  4053. $WAYLAND_PROTOCOLS_DEPENDS
  4054. __EOF__
  4055. AC_CONFIG_FILES([
  4056. Makefile:Makefile.in:Makefile.rules sdl2-config sdl2-config.cmake sdl2-config-version.cmake SDL2.spec sdl2.pc
  4057. ])
  4058. AC_CONFIG_COMMANDS([sdl2_config],[chmod a+x sdl2-config])
  4059. SUMMARY="SDL2 Configure Summary:\n"
  4060. if test x$enable_shared = xyes; then
  4061. SUMMARY="${SUMMARY}Building Shared Libraries\n"
  4062. fi
  4063. if test x$enable_static = xyes; then
  4064. SUMMARY="${SUMMARY}Building Static Libraries\n"
  4065. fi
  4066. SUMMARY="${SUMMARY}Enabled modules :${SUMMARY_modules}\n"
  4067. SUMMARY="${SUMMARY}Assembly Math :${SUMMARY_math}\n"
  4068. SUMMARY="${SUMMARY}Audio drivers :${SUMMARY_audio}\n"
  4069. SUMMARY="${SUMMARY}Video drivers :${SUMMARY_video}\n"
  4070. if test x$have_x = xyes; then
  4071. SUMMARY="${SUMMARY}X11 libraries :${SUMMARY_video_x11}\n"
  4072. fi
  4073. SUMMARY="${SUMMARY}Input drivers :${SUMMARY_input}\n"
  4074. if test x$have_joystick_virtual = xyes; then
  4075. SUMMARY="${SUMMARY}Enable virtual joystick APIs : YES\n"
  4076. else
  4077. SUMMARY="${SUMMARY}Enable virtual joystick APIs : NO\n"
  4078. fi
  4079. if test x$have_samplerate_h_hdr = xyes; then
  4080. SUMMARY="${SUMMARY}Using libsamplerate : YES\n"
  4081. else
  4082. SUMMARY="${SUMMARY}Using libsamplerate : NO\n"
  4083. fi
  4084. if test x$have_libudev_h_hdr = xyes; then
  4085. SUMMARY="${SUMMARY}Using libudev : YES\n"
  4086. else
  4087. SUMMARY="${SUMMARY}Using libudev : NO\n"
  4088. fi
  4089. if test x$have_dbus_dbus_h_hdr = xyes; then
  4090. SUMMARY="${SUMMARY}Using dbus : YES\n"
  4091. else
  4092. SUMMARY="${SUMMARY}Using dbus : NO\n"
  4093. fi
  4094. if test x$enable_ime = xyes; then
  4095. SUMMARY="${SUMMARY}Using ime : YES\n"
  4096. else
  4097. SUMMARY="${SUMMARY}Using ime : NO\n"
  4098. fi
  4099. if test x$have_ibus_ibus_h_hdr = xyes; then
  4100. SUMMARY="${SUMMARY}Using ibus : YES\n"
  4101. else
  4102. SUMMARY="${SUMMARY}Using ibus : NO\n"
  4103. fi
  4104. if test x$have_fcitx = xyes; then
  4105. SUMMARY="${SUMMARY}Using fcitx : YES\n"
  4106. else
  4107. SUMMARY="${SUMMARY}Using fcitx : NO\n"
  4108. fi
  4109. if test x$WARN_ABOUT_ARM_SIMD_ASM_MIT = xyes; then
  4110. SUMMARY="${SUMMARY}\nSDL is being built with ARM SIMD optimizations, which\n"
  4111. SUMMARY="${SUMMARY}uses code licensed under the MIT license. If this is a\n"
  4112. SUMMARY="${SUMMARY}problem, please disable that code by rerunning the\n"
  4113. SUMMARY="${SUMMARY}configure script with:\n"
  4114. SUMMARY="${SUMMARY}\n --disable-arm-simd\n"
  4115. fi
  4116. if test x$WARN_ABOUT_ARM_NEON_ASM_MIT = xyes; then
  4117. SUMMARY="${SUMMARY}\nSDL is being built with ARM NEON optimizations, which\n"
  4118. SUMMARY="${SUMMARY}uses code licensed under the MIT license. If this is a\n"
  4119. SUMMARY="${SUMMARY}problem, please disable that code by rerunning the\n"
  4120. SUMMARY="${SUMMARY}configure script with:\n"
  4121. SUMMARY="${SUMMARY}\n --disable-arm-neon\n"
  4122. fi
  4123. AC_CONFIG_COMMANDS([summary], [echo -en "$SUMMARY"], [SUMMARY="$SUMMARY"])
  4124. AC_OUTPUT