🛠️🐜 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.

4856 lines
180 KiB

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