formatting

SVN revision: 39091
This commit is contained in:
Vincent Torri 2009-02-19 08:15:23 +00:00
parent a56a138a2c
commit 16a444cb28
1 changed files with 20 additions and 17 deletions

View File

@ -50,7 +50,7 @@ requirement_edje=""
AC_ARG_ENABLE([edje-cc],
[AC_HELP_STRING([--disable-edje-cc], [disable building of edje_cc])],
[
if test x"$enableval" = x"yes" ; then
if test "x${enableval}" = "xyes" ; then
have_edje_cc="yes"
else
have_edje_cc="no"
@ -123,6 +123,18 @@ fi
AC_SUBST(vimdir)
### Checks for programs
AC_PROG_CC
# doxygen program for documentation building
EFL_CHECK_DOXYGEN([build_doc="yes"], [build_doc="no"])
# python
AM_PATH_PYTHON([2.5], , [:])
AM_CONDITIONAL([HAVE_PYTHON], [test "$PYTHON" != : ])
### Checks for libraries
@ -133,10 +145,10 @@ PKG_PROG_PKG_CONFIG
EFL_EDJE_BUILD=""
case "$host_os" in
mingw* | cegcc*)
PKG_CHECK_MODULES([EVIL], [evil])
AC_DEFINE(HAVE_EVIL, 1, [Set to 1 if Evil library is installed])
requirement_edje="evil ${requirement_edje}"
EFL_EDJE_BUILD="-DEFL_EDJE_BUILD"
PKG_CHECK_MODULES([EVIL], [evil])
AC_DEFINE(HAVE_EVIL, 1, [Set to 1 if Evil library is installed])
requirement_edje="evil ${requirement_edje}"
EFL_EDJE_BUILD="-DEFL_EDJE_BUILD"
;;
esac
AC_SUBST(EFL_EDJE_BUILD)
@ -167,18 +179,6 @@ fi
### Checks for header files
AC_CHECK_HEADERS([locale.h])
### Checks for programs
AC_PROG_CC
# doxygen program for documentation building
EFL_CHECK_DOXYGEN([build_doc="yes"], [build_doc="no"])
# python
AM_PATH_PYTHON([2.5], , [:])
AM_CONDITIONAL([HAVE_PYTHON], [test "$PYTHON" != : ])
### Checks for types
@ -202,6 +202,9 @@ case "$host_os" in
;;
esac
### Checks for linker characteristics
lt_enable_auto_import=""
case "$host_os" in
mingw* | cegcc*)