Enlightenment CVS committal Author : doursse Project : e17 Module : proto/evil
Dir : e17/proto/evil Modified Files: ChangeLog configure.ac Log Message: * configure.ac: * src/bin/Makefile.am: * src/lib/Makefile.am: * src/lib/dlfcn/Makefile.am: * src/lib/mman/Makefile.am: use -Wl,--enable-auto-import with cegcc fix warning with newest autoconf * src/lib/dlfcn/dlfcn.c: (string_to_wchar): include wchar.h and fix warnings * src/lib/mman/mman.c: use relative path to include sys/mman.h =================================================================== RCS file: /cvs/e/e17/proto/evil/ChangeLog,v retrieving revision 1.8 retrieving revision 1.9 diff -u -3 -r1.8 -r1.9 --- ChangeLog 28 Mar 2008 17:05:16 -0000 1.8 +++ ChangeLog 22 Apr 2008 22:53:54 -0000 1.9 @@ -1,3 +1,19 @@ +2008-04-23 Vincent Torri <doursse at users dot sf dot net> + + * configure.ac: + * src/bin/Makefile.am: + * src/lib/Makefile.am: + * src/lib/dlfcn/Makefile.am: + * src/lib/mman/Makefile.am: + use -Wl,--enable-auto-import with cegcc + fix warning with newest autoconf + + * src/lib/dlfcn/dlfcn.c: (string_to_wchar): + include wchar.h and fix warnings + + * src/lib/mman/mman.c: + use relative path to include sys/mman.h + 2008-03-28 Vincent Torri <doursse at users dot sf dot net> * src/lib/Evil.h: =================================================================== RCS file: /cvs/e/e17/proto/evil/configure.ac,v retrieving revision 1.3 retrieving revision 1.4 diff -u -3 -r1.3 -r1.4 --- configure.ac 13 Mar 2008 17:46:53 -0000 1.3 +++ configure.ac 22 Apr 2008 22:53:54 -0000 1.4 @@ -10,6 +10,7 @@ dnl for each platform. win32_libs="" win32_cflags="" +lt_enable_auto_import="" case "$host_os" in mingw|mingw32) win32_libs="-lole32 -luuid -lws2_32" @@ -17,6 +18,7 @@ cegcc) win32_cflags="-mwin32" win32_libs="-lws2" + lt_enable_auto_import="-Wl,--enable-auto-import" ;; mingw32ce) win32_libs="-lws2" @@ -27,6 +29,7 @@ esac AC_SUBST(win32_cflags) AC_SUBST(win32_libs) +AC_SUBST(lt_enable_auto_import) dnl needed for correct definition of EAPI AC_DEFINE(EFL_EVIL_BUILD, 1, [Define to mention that evil is built]) @@ -51,19 +54,19 @@ AC_C_CONST AC_MSG_CHECKING([for __attribute__]) -AC_CACHE_VAL(have___attribute__, +AC_CACHE_VAL(_cv_have___attribute__, [ AC_TRY_COMPILE([#include <stdlib.h>], [int func(int x); int foo(int x __attribute__ ((unused))) { exit(1); }], - [have___attribute__="yes"], - [have___attribute__="no"]) + [_cv_have___attribute__="yes"], + [_cv_have___attribute__="no"]) ] ) -if test "x${have___attribute__}" = "xyes" ; then +if test "x${_cv_have___attribute__}" = "xyes" ; then AC_DEFINE(HAVE___ATTRIBUTE__, 1, [Define to 1 if your compiler has __attribute__]) fi -AC_MSG_RESULT(${have___attribute__}) +AC_MSG_RESULT(${_cv_have___attribute__}) AC_CONFIG_FILES([ ------------------------------------------------------------------------- This SF.net email is sponsored by the 2008 JavaOne(SM) Conference Don't miss this year's exciting event. There's still time to save $100. Use priority code J8TL2D2. http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs