diff options
author | bluezery <ohpowel@gmail.com> | 2014-07-03 17:32:10 +0900 |
---|---|---|
committer | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2014-07-03 17:32:10 +0900 |
commit | 368058cdc71e6f8f042f6326d01e0b3327c6e744 (patch) | |
tree | 53b574445b597b0ff7df2e4b4b9b626c97cbcb47 /configure.ac | |
parent | 2447bc35566d48d8a6c959ab065ea5f567fa4cee (diff) |
configure.ac: Remove obsolete macros
Summary:
AC_HELP_STRING --> AS_HELP_STRING
AC_TRY_COMPILE --> AC_COMPILE_IFELSE + AC_LAGN_PROGRAM
those are deprecated for almost 10 years
autoupdate tool do this automatcally.
@fix
Reviewers: raster, cedric, stefan_schmidt
CC: cedric
Differential Revision: https://phab.enlightenment.org/D1088
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 178 |
1 files changed, 63 insertions, 115 deletions
diff --git a/configure.ac b/configure.ac index 9ca05dc6b4..69cd418073 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -32,7 +32,7 @@ EFL_ENABLE_EO_API_SUPPORT | |||
32 | EFL_ENABLE_BETA_API_SUPPORT | 32 | EFL_ENABLE_BETA_API_SUPPORT |
33 | 33 | ||
34 | AC_ARG_WITH([api], | 34 | AC_ARG_WITH([api], |
35 | [AC_HELP_STRING([--with-api=@<:@eo/legacy/both@:>@], [Select the EFL API Model @<:@default=both@:>@])], | 35 | [AS_HELP_STRING([--with-api=@<:@eo/legacy/both@:>@],[Select the EFL API Model @<:@default=both@:>@])], |
36 | [efl_api=${withval}], | 36 | [efl_api=${withval}], |
37 | [efl_api="both"]) | 37 | [efl_api="both"]) |
38 | 38 | ||
@@ -59,8 +59,7 @@ AC_SUBST(EFL_API_EO_DEF) | |||
59 | 59 | ||
60 | # string to identify the build | 60 | # string to identify the build |
61 | AC_ARG_WITH([id], | 61 | AC_ARG_WITH([id], |
62 | [AC_HELP_STRING([--with-id=BUILD_ID], | 62 | [AS_HELP_STRING([--with-id=BUILD_ID],[Specify a string to identify the build (vendor, maintainer, etc). |
63 | [Specify a string to identify the build (vendor, maintainer, etc). | ||
64 | @<:@default=none@:>@])], | 63 | @<:@default=none@:>@])], |
65 | [EFL_BUILD_ID="${withval}"], | 64 | [EFL_BUILD_ID="${withval}"], |
66 | [EFL_BUILD_ID="none"]) | 65 | [EFL_BUILD_ID="none"]) |
@@ -68,8 +67,7 @@ AC_SUBST(EFL_BUILD_ID) | |||
68 | 67 | ||
69 | # profile | 68 | # profile |
70 | AC_ARG_WITH([profile], | 69 | AC_ARG_WITH([profile], |
71 | [AC_HELP_STRING([--with-profile=PROFILE], | 70 | [AS_HELP_STRING([--with-profile=PROFILE],[use the predefined build profile, one of: dev, debug and release. |
72 | [use the predefined build profile, one of: dev, debug and release. | ||
73 | @<:@default=dev@:>@])], | 71 | @<:@default=dev@:>@])], |
74 | [build_profile=${withval}], | 72 | [build_profile=${withval}], |
75 | [build_profile=def_build_profile]) | 73 | [build_profile=def_build_profile]) |
@@ -92,8 +90,7 @@ esac | |||
92 | # TODO: add some build "profile" (server, full, etc...) | 90 | # TODO: add some build "profile" (server, full, etc...) |
93 | 91 | ||
94 | AC_ARG_WITH([crypto], | 92 | AC_ARG_WITH([crypto], |
95 | [AC_HELP_STRING([--with-crypto=CRYPTO], | 93 | [AS_HELP_STRING([--with-crypto=CRYPTO],[use the predefined build crypto, one of: |
96 | [use the predefined build crypto, one of: | ||
97 | openssl, gnutls or none. | 94 | openssl, gnutls or none. |
98 | @<:@default=openssl@:>@])], | 95 | @<:@default=openssl@:>@])], |
99 | [build_crypto=${withval}], | 96 | [build_crypto=${withval}], |
@@ -108,8 +105,7 @@ case "${build_crypto}" in | |||
108 | esac | 105 | esac |
109 | 106 | ||
110 | AC_ARG_WITH([tests], | 107 | AC_ARG_WITH([tests], |
111 | [AC_HELP_STRING([--with-tests=none|regular|coverage], | 108 | [AS_HELP_STRING([--with-tests=none|regular|coverage],[choose testing method: regular, coverage or none. |
112 | [choose testing method: regular, coverage or none. | ||
113 | @<:@default=none@:>@])], | 109 | @<:@default=none@:>@])], |
114 | [build_tests=${withval}], | 110 | [build_tests=${withval}], |
115 | [build_tests=auto]) | 111 | [build_tests=auto]) |
@@ -138,8 +134,7 @@ esac | |||
138 | 134 | ||
139 | dbusservicedir="${datadir}/dbus-1/services" | 135 | dbusservicedir="${datadir}/dbus-1/services" |
140 | AC_ARG_WITH([dbus-services], | 136 | AC_ARG_WITH([dbus-services], |
141 | [AC_HELP_STRING([--with-dbus-services=DBUS_SERVICES], | 137 | [AS_HELP_STRING([--with-dbus-services=DBUS_SERVICES],[specify a directory to store dbus service files.])], |
142 | [specify a directory to store dbus service files.])], | ||
143 | [dbusservicedir=$withval]) | 138 | [dbusservicedir=$withval]) |
144 | AC_SUBST(dbusservicedir) | 139 | AC_SUBST(dbusservicedir) |
145 | 140 | ||
@@ -366,8 +361,7 @@ AM_CONDITIONAL([HAVE_CRYPTO_OPENSSL], [test "${build_crypto}" = "openssl"]) | |||
366 | # check for lua old | 361 | # check for lua old |
367 | want_lua_old="no" | 362 | want_lua_old="no" |
368 | AC_ARG_ENABLE([lua-old], | 363 | AC_ARG_ENABLE([lua-old], |
369 | [AC_HELP_STRING([--enable-lua-old], | 364 | [AS_HELP_STRING([--enable-lua-old],[Enable interpreted Lua support (5.1 or 5.2). @<:@default=disabled@:>@])], |
370 | [Enable interpreted Lua support (5.1 or 5.2). @<:@default=disabled@:>@])], | ||
371 | [ | 365 | [ |
372 | if test "x${enableval}" = "xyes" ; then | 366 | if test "x${enableval}" = "xyes" ; then |
373 | want_lua_old="yes" | 367 | want_lua_old="yes" |
@@ -448,10 +442,8 @@ case "${build_profile}" in | |||
448 | AC_MSG_CHECKING([whether -Wshadow generates spurious warnings]) | 442 | AC_MSG_CHECKING([whether -Wshadow generates spurious warnings]) |
449 | CFLAGS_save="${CFLAGS}" | 443 | CFLAGS_save="${CFLAGS}" |
450 | CFLAGS="${CFLAGS} -Werror -Wshadow" | 444 | CFLAGS="${CFLAGS} -Werror -Wshadow" |
451 | AC_TRY_COMPILE([int x;], [int x = 0; (void)x;], | 445 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[int x;]], [[int x = 0; (void)x;]])],[AC_MSG_RESULT([no]) |
452 | [AC_MSG_RESULT([no]) | 446 | EFL_CHECK_COMPILER_FLAGS([EFL], [-Wshadow])],[AC_MSG_RESULT([yes])]) |
453 | EFL_CHECK_COMPILER_FLAGS([EFL], [-Wshadow])], | ||
454 | [AC_MSG_RESULT([yes])]) | ||
455 | CFLAGS="${CFLAGS_save}" | 447 | CFLAGS="${CFLAGS_save}" |
456 | ;; | 448 | ;; |
457 | 449 | ||
@@ -477,7 +469,7 @@ build_cpu_neon="no" | |||
477 | 469 | ||
478 | want_neon="yes" | 470 | want_neon="yes" |
479 | AC_ARG_ENABLE([neon], | 471 | AC_ARG_ENABLE([neon], |
480 | [AC_HELP_STRING([--disable-neon], [disable neon support @<:@default=enable@:>@])], | 472 | [AS_HELP_STRING([--disable-neon],[disable neon support @<:@default=enable@:>@])], |
481 | [ | 473 | [ |
482 | if test "x${enableval}" = "xyes"; then | 474 | if test "x${enableval}" = "xyes"; then |
483 | want_neon="yes" | 475 | want_neon="yes" |
@@ -555,15 +547,12 @@ case $host_cpu in | |||
555 | AC_MSG_CHECKING([whether to use NEON instructions]) | 547 | AC_MSG_CHECKING([whether to use NEON instructions]) |
556 | CFLAGS_save="${CFLAGS}" | 548 | CFLAGS_save="${CFLAGS}" |
557 | CFLAGS="${CFLAGS} -mfpu=neon -ftree-vectorize" | 549 | CFLAGS="${CFLAGS} -mfpu=neon -ftree-vectorize" |
558 | AC_TRY_COMPILE([#include <arm_neon.h>], | 550 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <arm_neon.h>]], [[asm volatile ("vqadd.u8 d0, d1, d0\n")]])],[ |
559 | [asm volatile ("vqadd.u8 d0, d1, d0\n")], | ||
560 | [ | ||
561 | AC_MSG_RESULT([yes]) | 551 | AC_MSG_RESULT([yes]) |
562 | AC_DEFINE([BUILD_NEON], [1], [Build NEON Code]) | 552 | AC_DEFINE([BUILD_NEON], [1], [Build NEON Code]) |
563 | build_cpu_neon="yes" | 553 | build_cpu_neon="yes" |
564 | NEON_CFLAGS="-mfpu=neon" | 554 | NEON_CFLAGS="-mfpu=neon" |
565 | ], | 555 | ],[ |
566 | [ | ||
567 | AC_MSG_RESULT([no]) | 556 | AC_MSG_RESULT([no]) |
568 | build_cpu_neon="no" | 557 | build_cpu_neon="no" |
569 | ]) | 558 | ]) |
@@ -611,7 +600,7 @@ AC_DEFINE_IF([HAVE_ATFILE_SOURCE], | |||
611 | ###################### EFL ###################### | 600 | ###################### EFL ###################### |
612 | build_gui="yes" | 601 | build_gui="yes" |
613 | AC_ARG_ENABLE([gui], | 602 | AC_ARG_ENABLE([gui], |
614 | [AC_HELP_STRING([--disable-gui], [disable GUI libraries @<:@default=enable@:>@])], | 603 | [AS_HELP_STRING([--disable-gui],[disable GUI libraries @<:@default=enable@:>@])], |
615 | [ | 604 | [ |
616 | if test "x${enableval}" = "xyes"; then | 605 | if test "x${enableval}" = "xyes"; then |
617 | build_gui="yes" | 606 | build_gui="yes" |
@@ -623,8 +612,7 @@ AC_ARG_ENABLE([gui], | |||
623 | AM_CONDITIONAL([BUILD_GUI], [test "x${build_gui}" = "xyes"]) | 612 | AM_CONDITIONAL([BUILD_GUI], [test "x${build_gui}" = "xyes"]) |
624 | 613 | ||
625 | AC_ARG_ENABLE([systemd], | 614 | AC_ARG_ENABLE([systemd], |
626 | [AC_HELP_STRING([--enable-systemd], | 615 | [AS_HELP_STRING([--enable-systemd],[Enable systemd support. @<:@default=disabled@:>@])], |
627 | [Enable systemd support. @<:@default=disabled@:>@])], | ||
628 | [ | 616 | [ |
629 | if test "x${enableval}" = "xyes" ; then | 617 | if test "x${enableval}" = "xyes" ; then |
630 | want_systemd="yes" | 618 | want_systemd="yes" |
@@ -642,8 +630,7 @@ fi | |||
642 | AC_SUBST(systemd_dbus_prefix) | 630 | AC_SUBST(systemd_dbus_prefix) |
643 | 631 | ||
644 | AC_ARG_WITH([systemdunitdir], | 632 | AC_ARG_WITH([systemdunitdir], |
645 | AC_HELP_STRING([--with-systemdunitdir=DIR], | 633 | AS_HELP_STRING([--with-systemdunitdir=DIR],[path to systemd user services directory]), |
646 | [path to systemd user services directory]), | ||
647 | [USER_SESSION_DIR=${withval}]) | 634 | [USER_SESSION_DIR=${withval}]) |
648 | if test "$want_systemd" == "no"; then | 635 | if test "$want_systemd" == "no"; then |
649 | have_systemd_user_session="no" | 636 | have_systemd_user_session="no" |
@@ -832,7 +819,7 @@ AC_DEFINE_IF([EINA_STRINGSHARE_USAGE], | |||
832 | 819 | ||
833 | ### Additional options to configure | 820 | ### Additional options to configure |
834 | AC_ARG_ENABLE([magic-debug], | 821 | AC_ARG_ENABLE([magic-debug], |
835 | [AC_HELP_STRING([--disable-magic-debug], [disable magic debug of eina structure @<:@default=enabled@:>@])], | 822 | [AS_HELP_STRING([--disable-magic-debug],[disable magic debug of eina structure @<:@default=enabled@:>@])], |
836 | [ | 823 | [ |
837 | if test "x${enableval}" = "xyes" ; then | 824 | if test "x${enableval}" = "xyes" ; then |
838 | have_magic_debug="yes" | 825 | have_magic_debug="yes" |
@@ -855,8 +842,7 @@ EFL_ADD_LIBS([EINA], [-lm]) | |||
855 | 842 | ||
856 | # Valgrind | 843 | # Valgrind |
857 | AC_ARG_ENABLE([valgrind], | 844 | AC_ARG_ENABLE([valgrind], |
858 | [AC_HELP_STRING([--disable-valgrind], | 845 | [AS_HELP_STRING([--disable-valgrind],[enable valgrind mempool declaration. @<:@default=disabled@:>@])], |
859 | [enable valgrind mempool declaration. @<:@default=disabled@:>@])], | ||
860 | [ | 846 | [ |
861 | if test "x${enableval}" = "xyes" ; then | 847 | if test "x${enableval}" = "xyes" ; then |
862 | want_valgrind="yes" | 848 | want_valgrind="yes" |
@@ -977,8 +963,7 @@ EFL_LIB_START([Eina_Cxx]) | |||
977 | EFL_CXX_COMPILE_STDCXX_11([ext]) | 963 | EFL_CXX_COMPILE_STDCXX_11([ext]) |
978 | want_cxx11="yes" | 964 | want_cxx11="yes" |
979 | AC_ARG_ENABLE([c++11], | 965 | AC_ARG_ENABLE([c++11], |
980 | [AC_HELP_STRING([--disable-c++11], | 966 | [AS_HELP_STRING([--disable-c++11],[disable C++11 bindings. @<:@default=enabled@:>@])], |
981 | [disable C++11 bindings. @<:@default=enabled@:>@])], | ||
982 | [want_cxx11="${enableval}"]) | 967 | [want_cxx11="${enableval}"]) |
983 | 968 | ||
984 | if test "x${HAVE_CXX11}" = "x1" -a "x${want_cxx11}" = "xyes"; then | 969 | if test "x${HAVE_CXX11}" = "x1" -a "x${want_cxx11}" = "xyes"; then |
@@ -1171,8 +1156,7 @@ EFL_LIB_START_OPTIONAL([Evas], [test "x${build_gui}" = "xyes"]) | |||
1171 | 1156 | ||
1172 | # X11 | 1157 | # X11 |
1173 | AC_ARG_WITH([x11], | 1158 | AC_ARG_WITH([x11], |
1174 | [AC_HELP_STRING([--with-x11=xlib|xcb|none], | 1159 | [AS_HELP_STRING([--with-x11=xlib|xcb|none],[X11 method to use: xlib, xcb or none])]) |
1175 | [X11 method to use: xlib, xcb or none])]) | ||
1176 | 1160 | ||
1177 | if test "x${have_windows}" = "xyes" || test "x${have_ps3}" = "xyes"; then | 1161 | if test "x${have_windows}" = "xyes" || test "x${have_ps3}" = "xyes"; then |
1178 | with_x11="none" | 1162 | with_x11="none" |
@@ -1204,8 +1188,7 @@ esac | |||
1204 | 1188 | ||
1205 | # OpenGL | 1189 | # OpenGL |
1206 | AC_ARG_WITH([opengl], | 1190 | AC_ARG_WITH([opengl], |
1207 | [AC_HELP_STRING([--with-opengl=full|es|none], | 1191 | [AS_HELP_STRING([--with-opengl=full|es|none],[OpenGL method to use: full, es or none])]) |
1208 | [OpenGL method to use: full, es or none])]) | ||
1209 | 1192 | ||
1210 | if test "x${have_windows}" = "xyes" || test "x${have_ps3}" = "xyes"; then | 1193 | if test "x${have_windows}" = "xyes" || test "x${have_ps3}" = "xyes"; then |
1211 | with_opengl="none" | 1194 | with_opengl="none" |
@@ -1231,8 +1214,7 @@ fi | |||
1231 | 1214 | ||
1232 | # Wayland | 1215 | # Wayland |
1233 | AC_ARG_ENABLE([wayland], | 1216 | AC_ARG_ENABLE([wayland], |
1234 | [AC_HELP_STRING([--enable-wayland], | 1217 | [AS_HELP_STRING([--enable-wayland],[enable wayland display server. @<:@default=disabled@:>@])], |
1235 | [enable wayland display server. @<:@default=disabled@:>@])], | ||
1236 | [ | 1218 | [ |
1237 | if test "x${enableval}" = "xyes" ; then | 1219 | if test "x${enableval}" = "xyes" ; then |
1238 | want_wayland="yes" | 1220 | want_wayland="yes" |
@@ -1248,8 +1230,7 @@ fi | |||
1248 | 1230 | ||
1249 | # Fb | 1231 | # Fb |
1250 | AC_ARG_ENABLE([fb], | 1232 | AC_ARG_ENABLE([fb], |
1251 | [AC_HELP_STRING([--enable-fb], | 1233 | [AS_HELP_STRING([--enable-fb],[enable raw Framebuffer access. @<:@default=disabled@:>@])], |
1252 | [enable raw Framebuffer access. @<:@default=disabled@:>@])], | ||
1253 | [ | 1234 | [ |
1254 | if test "x${enableval}" = "xyes" ; then | 1235 | if test "x${enableval}" = "xyes" ; then |
1255 | want_fb="yes" | 1236 | want_fb="yes" |
@@ -1261,8 +1242,7 @@ AC_ARG_ENABLE([fb], | |||
1261 | 1242 | ||
1262 | # SDL | 1243 | # SDL |
1263 | AC_ARG_ENABLE([sdl], | 1244 | AC_ARG_ENABLE([sdl], |
1264 | [AC_HELP_STRING([--enable-sdl], | 1245 | [AS_HELP_STRING([--enable-sdl],[enable SDL support. @<:@default=disabled@:>@])], |
1265 | [enable SDL support. @<:@default=disabled@:>@])], | ||
1266 | [ | 1246 | [ |
1267 | if test "x${enableval}" = "xyes" ; then | 1247 | if test "x${enableval}" = "xyes" ; then |
1268 | want_sdl="yes" | 1248 | want_sdl="yes" |
@@ -1289,8 +1269,7 @@ fi | |||
1289 | 1269 | ||
1290 | # Cocoa | 1270 | # Cocoa |
1291 | AC_ARG_ENABLE([cocoa], | 1271 | AC_ARG_ENABLE([cocoa], |
1292 | [AC_HELP_STRING([--enable-cocoa], | 1272 | [AS_HELP_STRING([--enable-cocoa],[enable MacOS X Cocoa . @<:@default=disabled@:>@])], |
1293 | [enable MacOS X Cocoa . @<:@default=disabled@:>@])], | ||
1294 | [ | 1273 | [ |
1295 | if test "x${enableval}" = "xyes" ; then | 1274 | if test "x${enableval}" = "xyes" ; then |
1296 | want_cocoa="yes" | 1275 | want_cocoa="yes" |
@@ -1341,8 +1320,7 @@ AC_SUBST(cocoa_ldflags) | |||
1341 | 1320 | ||
1342 | # Drm | 1321 | # Drm |
1343 | AC_ARG_ENABLE([drm], | 1322 | AC_ARG_ENABLE([drm], |
1344 | [AC_HELP_STRING([--enable-drm], | 1323 | [AS_HELP_STRING([--enable-drm],[enable drm engine. @<:@default=disabled@:>@])], |
1345 | [enable drm engine. @<:@default=disabled@:>@])], | ||
1346 | [ | 1324 | [ |
1347 | if test "x${enableval}" = "xyes" ; then | 1325 | if test "x${enableval}" = "xyes" ; then |
1348 | want_drm="yes" | 1326 | want_drm="yes" |
@@ -1354,8 +1332,7 @@ AC_ARG_ENABLE([drm], | |||
1354 | 1332 | ||
1355 | want_drm_hw_accel="no" | 1333 | want_drm_hw_accel="no" |
1356 | AC_ARG_ENABLE([drm-hw-accel], | 1334 | AC_ARG_ENABLE([drm-hw-accel], |
1357 | [AC_HELP_STRING([--enable-drm-hw-accel], | 1335 | [AS_HELP_STRING([--enable-drm-hw-accel],[enable drm hardware acceleration. @<:@default=disabled@:>@])], |
1358 | [enable drm hardware acceleration. @<:@default=disabled@:>@])], | ||
1359 | [ | 1336 | [ |
1360 | if test "x${enableval}" = "xyes" ; then | 1337 | if test "x${enableval}" = "xyes" ; then |
1361 | want_drm_hw_accel="yes" | 1338 | want_drm_hw_accel="yes" |
@@ -1368,8 +1345,7 @@ AC_ARG_ENABLE([drm-hw-accel], | |||
1368 | 1345 | ||
1369 | # Fontconfig | 1346 | # Fontconfig |
1370 | AC_ARG_ENABLE([fontconfig], | 1347 | AC_ARG_ENABLE([fontconfig], |
1371 | [AC_HELP_STRING([--disable-fontconfig], | 1348 | [AS_HELP_STRING([--disable-fontconfig],[disable fontconfig for finding fonts. @<:@default=enabled@:>@])], |
1372 | [disable fontconfig for finding fonts. @<:@default=enabled@:>@])], | ||
1373 | [ | 1349 | [ |
1374 | if test "x${enableval}" = "xyes" ; then | 1350 | if test "x${enableval}" = "xyes" ; then |
1375 | want_fontconfig="yes" | 1351 | want_fontconfig="yes" |
@@ -1382,8 +1358,7 @@ AC_ARG_ENABLE([fontconfig], | |||
1382 | 1358 | ||
1383 | # Fribidi | 1359 | # Fribidi |
1384 | AC_ARG_ENABLE([fribidi], | 1360 | AC_ARG_ENABLE([fribidi], |
1385 | [AC_HELP_STRING([--disable-fribidi], | 1361 | [AS_HELP_STRING([--disable-fribidi],[disable bidirectional text support. @<:@default=enabled@:>@])], |
1386 | [disable bidirectional text support. @<:@default=enabled@:>@])], | ||
1387 | [ | 1362 | [ |
1388 | if test "x${enableval}" = "xyes" ; then | 1363 | if test "x${enableval}" = "xyes" ; then |
1389 | want_fribidi="yes" | 1364 | want_fribidi="yes" |
@@ -1396,8 +1371,7 @@ AC_ARG_ENABLE([fribidi], | |||
1396 | 1371 | ||
1397 | # Eo Id | 1372 | # Eo Id |
1398 | AC_ARG_ENABLE([eo_id], | 1373 | AC_ARG_ENABLE([eo_id], |
1399 | [AC_HELP_STRING([--disable-eo-id], | 1374 | [AS_HELP_STRING([--disable-eo-id],[disable Eo indirection. @<:@default=enabled@:>@])], |
1400 | [disable Eo indirection. @<:@default=enabled@:>@])], | ||
1401 | [ | 1375 | [ |
1402 | if test "x${enableval}" = "xyes" ; then | 1376 | if test "x${enableval}" = "xyes" ; then |
1403 | want_eo_id="yes" | 1377 | want_eo_id="yes" |
@@ -1410,8 +1384,7 @@ AC_ARG_ENABLE([eo_id], | |||
1410 | 1384 | ||
1411 | # Harfbuzz | 1385 | # Harfbuzz |
1412 | AC_ARG_ENABLE([harfbuzz], | 1386 | AC_ARG_ENABLE([harfbuzz], |
1413 | [AC_HELP_STRING([--enable-harfbuzz], | 1387 | [AS_HELP_STRING([--enable-harfbuzz],[enable complex text shaping and layouting support. @<:@default=disabled@:>@])], |
1414 | [enable complex text shaping and layouting support. @<:@default=disabled@:>@])], | ||
1415 | [ | 1388 | [ |
1416 | if test "x${enableval}" = "xyes" ; then | 1389 | if test "x${enableval}" = "xyes" ; then |
1417 | want_harfbuzz="yes" | 1390 | want_harfbuzz="yes" |
@@ -1423,8 +1396,7 @@ AC_ARG_ENABLE([harfbuzz], | |||
1423 | 1396 | ||
1424 | # Egl | 1397 | # Egl |
1425 | AC_ARG_ENABLE([egl], | 1398 | AC_ARG_ENABLE([egl], |
1426 | [AC_HELP_STRING([--enable-egl], | 1399 | [AS_HELP_STRING([--enable-egl],[enable EGL rendering. @<:@default=disabled@:>@])], |
1427 | [enable EGL rendering. @<:@default=disabled@:>@])], | ||
1428 | [ | 1400 | [ |
1429 | if test "x${enableval}" = "xyes" ; then | 1401 | if test "x${enableval}" = "xyes" ; then |
1430 | want_egl="yes" | 1402 | want_egl="yes" |
@@ -1436,8 +1408,7 @@ AC_ARG_ENABLE([egl], | |||
1436 | 1408 | ||
1437 | # Pixman | 1409 | # Pixman |
1438 | AC_ARG_ENABLE([pixman], | 1410 | AC_ARG_ENABLE([pixman], |
1439 | [AC_HELP_STRING([--enable-pixman], | 1411 | [AS_HELP_STRING([--enable-pixman],[enable pixman for software rendering. @<:@default=disabled@:>@])], |
1440 | [enable pixman for software rendering. @<:@default=disabled@:>@])], | ||
1441 | [ | 1412 | [ |
1442 | if test "x${enableval}" = "xyes" ; then | 1413 | if test "x${enableval}" = "xyes" ; then |
1443 | want_pixman="yes" | 1414 | want_pixman="yes" |
@@ -1449,8 +1420,7 @@ AC_ARG_ENABLE([pixman], | |||
1449 | [want_pixman="no"]) | 1420 | [want_pixman="no"]) |
1450 | 1421 | ||
1451 | AC_ARG_ENABLE([pixman-font], | 1422 | AC_ARG_ENABLE([pixman-font], |
1452 | [AC_HELP_STRING([--enable-pixman-font], | 1423 | [AS_HELP_STRING([--enable-pixman-font],[Allow pixman to render fonts. @<:@default=disabled@:>@])], |
1453 | [Allow pixman to render fonts. @<:@default=disabled@:>@])], | ||
1454 | [ | 1424 | [ |
1455 | if test "x${enableval}" = "xyes" ; then | 1425 | if test "x${enableval}" = "xyes" ; then |
1456 | have_pixman_font="yes" | 1426 | have_pixman_font="yes" |
@@ -1461,8 +1431,7 @@ AC_ARG_ENABLE([pixman-font], | |||
1461 | [have_pixman_font="no"]) | 1431 | [have_pixman_font="no"]) |
1462 | 1432 | ||
1463 | AC_ARG_ENABLE([pixman-rect], | 1433 | AC_ARG_ENABLE([pixman-rect], |
1464 | [AC_HELP_STRING([--enable-pixman-rect], | 1434 | [AS_HELP_STRING([--enable-pixman-rect],[Allow pixman to render rects. @<:@default=disabled@:>@])], |
1465 | [Allow pixman to render rects. @<:@default=disabled@:>@])], | ||
1466 | [ | 1435 | [ |
1467 | if test "x${enableval}" = "xyes" ; then | 1436 | if test "x${enableval}" = "xyes" ; then |
1468 | have_pixman_rect="yes" | 1437 | have_pixman_rect="yes" |
@@ -1473,8 +1442,7 @@ AC_ARG_ENABLE([pixman-rect], | |||
1473 | [have_pixman_rect="no"]) | 1442 | [have_pixman_rect="no"]) |
1474 | 1443 | ||
1475 | AC_ARG_ENABLE([pixman-line], | 1444 | AC_ARG_ENABLE([pixman-line], |
1476 | [AC_HELP_STRING([--enable-pixman-line], | 1445 | [AS_HELP_STRING([--enable-pixman-line],[Allow pixman to render lines. @<:@default=disabled@:>@])], |
1477 | [Allow pixman to render lines. @<:@default=disabled@:>@])], | ||
1478 | [ | 1446 | [ |
1479 | if test "x${enableval}" = "xyes" ; then | 1447 | if test "x${enableval}" = "xyes" ; then |
1480 | have_pixman_line="yes" | 1448 | have_pixman_line="yes" |
@@ -1485,8 +1453,7 @@ AC_ARG_ENABLE([pixman-line], | |||
1485 | [have_pixman_line="no"]) | 1453 | [have_pixman_line="no"]) |
1486 | 1454 | ||
1487 | AC_ARG_ENABLE(pixman-poly, | 1455 | AC_ARG_ENABLE(pixman-poly, |
1488 | AC_HELP_STRING([--enable-pixman-poly], | 1456 | AS_HELP_STRING([--enable-pixman-poly],[Allow pixman to render polys. @<:@default=disabled@:>@]), |
1489 | [Allow pixman to render polys. @<:@default=disabled@:>@]), | ||
1490 | [ | 1457 | [ |
1491 | if test "x${enableval}" = "xyes" ; then | 1458 | if test "x${enableval}" = "xyes" ; then |
1492 | have_pixman_poly="yes" | 1459 | have_pixman_poly="yes" |
@@ -1497,8 +1464,7 @@ AC_ARG_ENABLE(pixman-poly, | |||
1497 | [have_pixman_poly="no"]) | 1464 | [have_pixman_poly="no"]) |
1498 | 1465 | ||
1499 | AC_ARG_ENABLE([pixman-image], | 1466 | AC_ARG_ENABLE([pixman-image], |
1500 | [AC_HELP_STRING([--enable-pixman-image], | 1467 | [AS_HELP_STRING([--enable-pixman-image],[Allow pixman to render images. @<:@default=disabled@:>@])], |
1501 | [Allow pixman to render images. @<:@default=disabled@:>@])], | ||
1502 | [ | 1468 | [ |
1503 | if test "x${enableval}" = "xyes" ; then | 1469 | if test "x${enableval}" = "xyes" ; then |
1504 | have_pixman_image="yes" | 1470 | have_pixman_image="yes" |
@@ -1509,8 +1475,7 @@ AC_ARG_ENABLE([pixman-image], | |||
1509 | [have_pixman_image="no"]) | 1475 | [have_pixman_image="no"]) |
1510 | 1476 | ||
1511 | AC_ARG_ENABLE([pixman-image-scale-sample], | 1477 | AC_ARG_ENABLE([pixman-image-scale-sample], |
1512 | [AC_HELP_STRING([--enable-pixman-image-scale-sample], | 1478 | [AS_HELP_STRING([--enable-pixman-image-scale-sample],[Allow pixman to render sampled scaled images. @<:@default=disabled@:>@])], |
1513 | [Allow pixman to render sampled scaled images. @<:@default=disabled@:>@])], | ||
1514 | [ | 1479 | [ |
1515 | if test "x${enableval}" = "xyes" ; then | 1480 | if test "x${enableval}" = "xyes" ; then |
1516 | have_pixman_image_scale_sample="yes" | 1481 | have_pixman_image_scale_sample="yes" |
@@ -1522,8 +1487,7 @@ AC_ARG_ENABLE([pixman-image-scale-sample], | |||
1522 | 1487 | ||
1523 | # Tile rotate | 1488 | # Tile rotate |
1524 | AC_ARG_ENABLE([tile-rotate], | 1489 | AC_ARG_ENABLE([tile-rotate], |
1525 | [AC_HELP_STRING([--enable-tile-rotate], | 1490 | [AS_HELP_STRING([--enable-tile-rotate],[Enable tiled rotate algorithm. @<:@default=disabled@:>@])], |
1526 | [Enable tiled rotate algorithm. @<:@default=disabled@:>@])], | ||
1527 | [ | 1491 | [ |
1528 | if test "x${enableval}" = "xyes" ; then | 1492 | if test "x${enableval}" = "xyes" ; then |
1529 | have_tile_rotate="yes" | 1493 | have_tile_rotate="yes" |
@@ -1904,8 +1868,7 @@ AC_CHECK_LIB([m], [lround], | |||
1904 | # Evas cserve2 | 1868 | # Evas cserve2 |
1905 | 1869 | ||
1906 | AC_ARG_ENABLE([cserve], | 1870 | AC_ARG_ENABLE([cserve], |
1907 | [AC_HELP_STRING([--enable-cserve], | 1871 | [AS_HELP_STRING([--enable-cserve],[enable shared cache server (cserve2). @<:@default=enabled@:>@])], |
1908 | [enable shared cache server (cserve2). @<:@default=enabled@:>@])], | ||
1909 | [ | 1872 | [ |
1910 | if test "x${enableval}" = "xyes" ; then | 1873 | if test "x${enableval}" = "xyes" ; then |
1911 | want_evas_cserve2="yes" | 1874 | want_evas_cserve2="yes" |
@@ -1952,8 +1915,7 @@ fi | |||
1952 | ## dither options | 1915 | ## dither options |
1953 | 1916 | ||
1954 | AC_ARG_WITH([evas-dither-mask], | 1917 | AC_ARG_WITH([evas-dither-mask], |
1955 | [AC_HELP_STRING([--with-evas-dither-mask=TYPE], | 1918 | [AS_HELP_STRING([--with-evas-dither-mask=TYPE],[use the specified dither mask to convert bitdepths in Evas, one of: big, small, line or none. |
1956 | [use the specified dither mask to convert bitdepths in Evas, one of: big, small, line or none. | ||
1957 | @<:@default=big@:>@])], | 1919 | @<:@default=big@:>@])], |
1958 | [build_evas_dither_mask=${withval}], | 1920 | [build_evas_dither_mask=${withval}], |
1959 | [build_evas_dither_mask=big]) | 1921 | [build_evas_dither_mask=big]) |
@@ -2118,8 +2080,7 @@ EFL_LIB_START([Ecore]) | |||
2118 | # glib | 2080 | # glib |
2119 | 2081 | ||
2120 | AC_ARG_WITH([glib], | 2082 | AC_ARG_WITH([glib], |
2121 | [AC_HELP_STRING([--with-glib=yes|no|always], | 2083 | [AS_HELP_STRING([--with-glib=yes|no|always],[add glib support. @<:@default=enabled@:>@])], |
2122 | [add glib support. @<:@default=enabled@:>@])], | ||
2123 | [ | 2084 | [ |
2124 | if test "x${withval}" = "xyes" ; then | 2085 | if test "x${withval}" = "xyes" ; then |
2125 | with_glib="yes" | 2086 | with_glib="yes" |
@@ -2134,8 +2095,7 @@ AC_ARG_WITH([glib], | |||
2134 | [with_glib="yes"]) | 2095 | [with_glib="yes"]) |
2135 | 2096 | ||
2136 | AC_ARG_ENABLE([g-main-loop], | 2097 | AC_ARG_ENABLE([g-main-loop], |
2137 | [AC_HELP_STRING([--enable-g-main-loop], | 2098 | [AS_HELP_STRING([--enable-g-main-loop],[enable ecore_main_loop based on g_main_loop. @<:@default=disabled@:>@])], |
2138 | [enable ecore_main_loop based on g_main_loop. @<:@default=disabled@:>@])], | ||
2139 | [ | 2099 | [ |
2140 | if test "x${enableval}" = "xyes" ; then | 2100 | if test "x${enableval}" = "xyes" ; then |
2141 | want_g_main_loop="yes" | 2101 | want_g_main_loop="yes" |
@@ -2147,8 +2107,7 @@ AC_ARG_ENABLE([g-main-loop], | |||
2147 | [want_g_main_loop="no"]) | 2107 | [want_g_main_loop="no"]) |
2148 | 2108 | ||
2149 | AC_ARG_ENABLE([gstreamer], | 2109 | AC_ARG_ENABLE([gstreamer], |
2150 | [AC_HELP_STRING([--enable-gstreamer], | 2110 | [AS_HELP_STRING([--enable-gstreamer],[enable gstreamer 0.10 support. @<:@default=disabled@:>@])], |
2151 | [enable gstreamer 0.10 support. @<:@default=disabled@:>@])], | ||
2152 | [ | 2111 | [ |
2153 | if test "x${enableval}" = "xyes" ; then | 2112 | if test "x${enableval}" = "xyes" ; then |
2154 | want_gstreamer="yes" | 2113 | want_gstreamer="yes" |
@@ -2160,8 +2119,7 @@ AC_ARG_ENABLE([gstreamer], | |||
2160 | [want_gstreamer="no"]) | 2119 | [want_gstreamer="no"]) |
2161 | 2120 | ||
2162 | AC_ARG_ENABLE([gstreamer1], | 2121 | AC_ARG_ENABLE([gstreamer1], |
2163 | [AC_HELP_STRING([--disable-gstreamer1], | 2122 | [AS_HELP_STRING([--disable-gstreamer1],[disable gstreamer 1.0 support. @<:@default=enabled@:>@])], |
2164 | [disable gstreamer 1.0 support. @<:@default=enabled@:>@])], | ||
2165 | [ | 2123 | [ |
2166 | if test "x${enableval}" = "xyes" ; then | 2124 | if test "x${enableval}" = "xyes" ; then |
2167 | want_gstreamer1="yes" | 2125 | want_gstreamer1="yes" |
@@ -2176,8 +2134,7 @@ if test "x${build_gui}" = "xno"; then | |||
2176 | fi | 2134 | fi |
2177 | 2135 | ||
2178 | AC_ARG_ENABLE([tizen], | 2136 | AC_ARG_ENABLE([tizen], |
2179 | [AC_HELP_STRING([--enable-tizen], | 2137 | [AS_HELP_STRING([--enable-tizen],[enable tizen support. @<:@default=disabled@:>@])], |
2180 | [enable tizen support. @<:@default=disabled@:>@])], | ||
2181 | [ | 2138 | [ |
2182 | if test "x${enableval}" = "xyes" ; then | 2139 | if test "x${enableval}" = "xyes" ; then |
2183 | want_tizen="yes" | 2140 | want_tizen="yes" |
@@ -2699,8 +2656,7 @@ EFL_LIB_START_OPTIONAL([Ecore_FB], [test "${want_fb}" = "yes"]) | |||
2699 | 2656 | ||
2700 | ### Additional options to configure | 2657 | ### Additional options to configure |
2701 | AC_ARG_ENABLE([tslib], | 2658 | AC_ARG_ENABLE([tslib], |
2702 | [AC_HELP_STRING([--disable-tslib], | 2659 | [AS_HELP_STRING([--disable-tslib],[disable tslib for touchscreen events.])], |
2703 | [disable tslib for touchscreen events.])], | ||
2704 | [ | 2660 | [ |
2705 | if test "x${enableval}" = "xyes" ; then | 2661 | if test "x${enableval}" = "xyes" ; then |
2706 | want_tslib="yes" | 2662 | want_tslib="yes" |
@@ -2897,8 +2853,7 @@ EFL_LIB_END_OPTIONAL([Ecore_Drm]) | |||
2897 | #### Ecore_Audio | 2853 | #### Ecore_Audio |
2898 | 2854 | ||
2899 | AC_ARG_ENABLE([audio], | 2855 | AC_ARG_ENABLE([audio], |
2900 | [AC_HELP_STRING([--disable-audio], | 2856 | [AS_HELP_STRING([--disable-audio],[disable audio support. @<:@default=enabled@:>@])], |
2901 | [disable audio support. @<:@default=enabled@:>@])], | ||
2902 | [ | 2857 | [ |
2903 | if test "x${enableval}" = "xyes" ; then | 2858 | if test "x${enableval}" = "xyes" ; then |
2904 | want_audio="yes" | 2859 | want_audio="yes" |
@@ -2926,8 +2881,7 @@ want_alsa="no" | |||
2926 | want_sndfile="yes" | 2881 | want_sndfile="yes" |
2927 | 2882 | ||
2928 | AC_ARG_ENABLE([pulseaudio], | 2883 | AC_ARG_ENABLE([pulseaudio], |
2929 | [AC_HELP_STRING([--disable-pulseaudio], | 2884 | [AS_HELP_STRING([--disable-pulseaudio],[disable pulseaudio sound support. @<:@default=enabled@:>@])], |
2930 | [disable pulseaudio sound support. @<:@default=enabled@:>@])], | ||
2931 | [ | 2885 | [ |
2932 | if test "x${enableval}" = "xyes" ; then | 2886 | if test "x${enableval}" = "xyes" ; then |
2933 | want_pulseaudio="yes" | 2887 | want_pulseaudio="yes" |
@@ -3035,8 +2989,7 @@ EFL_LIB_START([Ecore_Avahi]) | |||
3035 | want_avahi="yes" | 2989 | want_avahi="yes" |
3036 | 2990 | ||
3037 | AC_ARG_ENABLE([avahi], | 2991 | AC_ARG_ENABLE([avahi], |
3038 | [AC_HELP_STRING([--disable-avahi], | 2992 | [AS_HELP_STRING([--disable-avahi],[disable avahi support. @<:@default=enabled@:>@])], |
3039 | [disable avahi support. @<:@default=enabled@:>@])], | ||
3040 | [ | 2993 | [ |
3041 | if test "x${enableval}" = "xyes" ; then | 2994 | if test "x${enableval}" = "xyes" ; then |
3042 | want_avahi="yes" | 2995 | want_avahi="yes" |
@@ -3122,7 +3075,7 @@ EFL_LIB_START_OPTIONAL([Ecore_X], [test "${want_x11_any}" = "yes"]) | |||
3122 | ### Additional options to configure | 3075 | ### Additional options to configure |
3123 | 3076 | ||
3124 | AC_ARG_ENABLE([gesture], | 3077 | AC_ARG_ENABLE([gesture], |
3125 | [AC_HELP_STRING([--enable-gesture], [enable X11 Gesture extension support])], | 3078 | [AS_HELP_STRING([--enable-gesture],[enable X11 Gesture extension support])], |
3126 | [ | 3079 | [ |
3127 | if test "x${enableval}" = "xyes" ; then | 3080 | if test "x${enableval}" = "xyes" ; then |
3128 | want_gesture="yes" | 3081 | want_gesture="yes" |
@@ -3133,7 +3086,7 @@ AC_ARG_ENABLE([gesture], | |||
3133 | [want_gesture="no"]) | 3086 | [want_gesture="no"]) |
3134 | 3087 | ||
3135 | AC_ARG_ENABLE([xpresent], | 3088 | AC_ARG_ENABLE([xpresent], |
3136 | [AC_HELP_STRING([--enable-xpresent], [enable X11 XPresent extension support])], | 3089 | [AS_HELP_STRING([--enable-xpresent],[enable X11 XPresent extension support])], |
3137 | [ | 3090 | [ |
3138 | if test "x${enableval}" = "xyes" ; then | 3091 | if test "x${enableval}" = "xyes" ; then |
3139 | want_xpresent="yes" | 3092 | want_xpresent="yes" |
@@ -3144,7 +3097,7 @@ AC_ARG_ENABLE([xpresent], | |||
3144 | [want_xpresent="no"]) | 3097 | [want_xpresent="no"]) |
3145 | 3098 | ||
3146 | AC_ARG_ENABLE([xinput2], | 3099 | AC_ARG_ENABLE([xinput2], |
3147 | [AC_HELP_STRING([--disable-xinput2], [disable X11 XInput v2.x support])], | 3100 | [AS_HELP_STRING([--disable-xinput2],[disable X11 XInput v2.x support])], |
3148 | [ | 3101 | [ |
3149 | if test "x${enableval}" = "xyes" ; then | 3102 | if test "x${enableval}" = "xyes" ; then |
3150 | want_xinput2="yes" | 3103 | want_xinput2="yes" |
@@ -3156,7 +3109,7 @@ AC_ARG_ENABLE([xinput2], | |||
3156 | [want_xinput2="yes"]) | 3109 | [want_xinput2="yes"]) |
3157 | 3110 | ||
3158 | AC_ARG_ENABLE([xinput22], | 3111 | AC_ARG_ENABLE([xinput22], |
3159 | [AC_HELP_STRING([--enable-xinput22], [enable X11 XInput v2.2+ support])], | 3112 | [AS_HELP_STRING([--enable-xinput22],[enable X11 XInput v2.2+ support])], |
3160 | [ | 3113 | [ |
3161 | if test "x${enableval}" = "xyes" ; then | 3114 | if test "x${enableval}" = "xyes" ; then |
3162 | want_xinput22="yes" | 3115 | want_xinput22="yes" |
@@ -3167,7 +3120,7 @@ AC_ARG_ENABLE([xinput22], | |||
3167 | [want_xinput22="no"]) | 3120 | [want_xinput22="no"]) |
3168 | 3121 | ||
3169 | AC_ARG_ENABLE([xim], | 3122 | AC_ARG_ENABLE([xim], |
3170 | [AC_HELP_STRING([--disable-xim], [disable X Input Method.])], | 3123 | [AS_HELP_STRING([--disable-xim],[disable X Input Method.])], |
3171 | [ | 3124 | [ |
3172 | if test "x${enableval}" = "xyes" ; then | 3125 | if test "x${enableval}" = "xyes" ; then |
3173 | want_xim="yes" | 3126 | want_xim="yes" |
@@ -3179,7 +3132,7 @@ AC_ARG_ENABLE([xim], | |||
3179 | [want_xim="yes"]) | 3132 | [want_xim="yes"]) |
3180 | 3133 | ||
3181 | AC_ARG_ENABLE([scim], | 3134 | AC_ARG_ENABLE([scim], |
3182 | [AC_HELP_STRING([--disable-scim], [disable SCIM.])], | 3135 | [AS_HELP_STRING([--disable-scim],[disable SCIM.])], |
3183 | [ | 3136 | [ |
3184 | if test "x${enableval}" = "xyes" ; then | 3137 | if test "x${enableval}" = "xyes" ; then |
3185 | want_scim="yes" | 3138 | want_scim="yes" |
@@ -3191,7 +3144,7 @@ AC_ARG_ENABLE([scim], | |||
3191 | [want_scim="yes"]) | 3144 | [want_scim="yes"]) |
3192 | 3145 | ||
3193 | AC_ARG_ENABLE([ibus], | 3146 | AC_ARG_ENABLE([ibus], |
3194 | [AC_HELP_STRING([--disable-ibus], [disable IBUS.])], | 3147 | [AS_HELP_STRING([--disable-ibus],[disable IBUS.])], |
3195 | [ | 3148 | [ |
3196 | if test "x${enableval}" = "xyes" ; then | 3149 | if test "x${enableval}" = "xyes" ; then |
3197 | want_ibus="yes" | 3150 | want_ibus="yes" |
@@ -3600,8 +3553,7 @@ EFL_INTERNAL_DEPEND_PKG([EEZE], [eet]) | |||
3600 | EFL_DEPEND_PKG([EEZE], [UDEV], [libudev >= 148]) | 3553 | EFL_DEPEND_PKG([EEZE], [UDEV], [libudev >= 148]) |
3601 | 3554 | ||
3602 | AC_ARG_ENABLE([libmount], | 3555 | AC_ARG_ENABLE([libmount], |
3603 | [AC_HELP_STRING([--disable-libmount], | 3556 | [AS_HELP_STRING([--disable-libmount],[disable libmount support. @<:@default=enabled@:>@])], |
3604 | [disable libmount support. @<:@default=enabled@:>@])], | ||
3605 | [ | 3557 | [ |
3606 | if test "x${enableval}" = "xyes" ; then | 3558 | if test "x${enableval}" = "xyes" ; then |
3607 | want_libmount="yes" | 3559 | want_libmount="yes" |
@@ -3989,8 +3941,7 @@ EFL_LIB_END([Efreet]) | |||
3989 | 3941 | ||
3990 | #### EPhysics | 3942 | #### EPhysics |
3991 | AC_ARG_ENABLE([physics], | 3943 | AC_ARG_ENABLE([physics], |
3992 | [AC_HELP_STRING([--disable-physics], | 3944 | [AS_HELP_STRING([--disable-physics],[disable physics effects and support. @<:@default=enabled@:>@])], |
3993 | [disable physics effects and support. @<:@default=enabled@:>@])], | ||
3994 | [ | 3945 | [ |
3995 | if test "x${enableval}" = "xyes" ; then | 3946 | if test "x${enableval}" = "xyes" ; then |
3996 | want_physics="yes" | 3947 | want_physics="yes" |
@@ -4049,8 +4000,7 @@ EFL_LIB_START_OPTIONAL([Edje], [test "x${build_gui}" = "xyes"]) | |||
4049 | ### Default values | 4000 | ### Default values |
4050 | want_multisense="yes" | 4001 | want_multisense="yes" |
4051 | AC_ARG_ENABLE([multisense], | 4002 | AC_ARG_ENABLE([multisense], |
4052 | [AC_HELP_STRING([--enable-multisense], | 4003 | [AS_HELP_STRING([--enable-multisense],[Enable multisense support. @<:@default=enabled@:>@])], |
4053 | [Enable multisense support. @<:@default=enabled@:>@])], | ||
4054 | [ | 4004 | [ |
4055 | if test "x${enableval}" = "xyes" ; then | 4005 | if test "x${enableval}" = "xyes" ; then |
4056 | want_multisense="yes" | 4006 | want_multisense="yes" |
@@ -4169,8 +4119,7 @@ fi | |||
4169 | 4119 | ||
4170 | ### Additional options to configure | 4120 | ### Additional options to configure |
4171 | AC_ARG_ENABLE([xine], | 4121 | AC_ARG_ENABLE([xine], |
4172 | [AC_HELP_STRING([--enable-xine], | 4122 | [AS_HELP_STRING([--enable-xine],[enable xine support. @<:@default=disabled@:>@])], |
4173 | [enable xine support. @<:@default=disabled@:>@])], | ||
4174 | [ | 4123 | [ |
4175 | if test "x${enableval}" = "xyes" ; then | 4124 | if test "x${enableval}" = "xyes" ; then |
4176 | want_xine="yes" | 4125 | want_xine="yes" |
@@ -4181,7 +4130,7 @@ AC_ARG_ENABLE([xine], | |||
4181 | [want_xine="no"]) | 4130 | [want_xine="no"]) |
4182 | 4131 | ||
4183 | AC_ARG_ENABLE([v4l2], | 4132 | AC_ARG_ENABLE([v4l2], |
4184 | [AC_HELP_STRING([--enable-v4l2], [enable v4l2 support.])], | 4133 | [AS_HELP_STRING([--enable-v4l2],[enable v4l2 support.])], |
4185 | [ | 4134 | [ |
4186 | if test "x${enableval}" = "xyes" ; then | 4135 | if test "x${enableval}" = "xyes" ; then |
4187 | want_v4l2="yes" | 4136 | want_v4l2="yes" |
@@ -4389,8 +4338,7 @@ EFL_LIB_END_OPTIONAL([Elua]) | |||
4389 | #### End of Elua | 4338 | #### End of Elua |
4390 | 4339 | ||
4391 | AC_ARG_ENABLE([always-build-examples], | 4340 | AC_ARG_ENABLE([always-build-examples], |
4392 | [AC_HELP_STRING([--enable-always-build-examples], | 4341 | [AS_HELP_STRING([--enable-always-build-examples],[always build examples. @<:@default=disabled@:>@])], |
4393 | [always build examples. @<:@default=disabled@:>@])], | ||
4394 | [ | 4342 | [ |
4395 | if test "x${enableval}" = "xyes" ; then | 4343 | if test "x${enableval}" = "xyes" ; then |
4396 | want_always_build_examples="yes" | 4344 | want_always_build_examples="yes" |