* ecore: Fix header check position according to Vincent Torri recommandation.

SVN revision: 41568
This commit is contained in:
Cedric BAIL 2009-08-03 11:50:07 +00:00
parent faf1a51fee
commit 9a056bed3a
1 changed files with 7 additions and 7 deletions

View File

@ -197,13 +197,6 @@ requirements_ecore_x=""
requirements_ecore_win32=""
requirements_ecore_wince=""
# basic pthread support
AC_CHECK_HEADER(pthread.h,
[
AC_DEFINE(BUILD_PTHREAD, 1, [Build thread worker])
]
)
### Additional options to configure
# abstract sockets (ecore_con.c)
@ -671,6 +664,13 @@ fi
AC_SUBST(quartz_ldflags)
# basic pthread support
AC_CHECK_HEADER(pthread.h,
[
AC_DEFINE(BUILD_PTHREAD, 1, [Build thread worker])
]
)
### Checks for types
AC_CHECK_SIZEOF(int, 4)
AC_CHECK_SIZEOF(long, 4)