*** src/Makefile.am.ORIG Wed Aug 26 14:46:10 2009 --- src/Makefile.am Wed Aug 26 14:46:30 2009 *************** *** 57,68 **** common/libdebug.h libcommon.h: Makefile mkdir -p common ! cp -u $(srcdir)/types/libtypes.h common/ ! cp -u $(srcdir)/getopt/libgetopt.h common/ ! cp -u $(srcdir)/utils/libutils.h common/ ! cp -u $(srcdir)/string/libstring.h common/ ! cp -u $(srcdir)/debug/libdebug.h common/ ! cp -u $(srcdir)/list/liblist.h common/ ! cp -u $(srcdir)/memtrace/libmemtrace.h common/ CLEANFILES = *~ .*.swp .*.swo output* *.gcov *.gprof *.gcno *.gcda *.a common/*.h common --- 57,68 ---- common/libdebug.h libcommon.h: Makefile mkdir -p common ! cp $(srcdir)/types/libtypes.h common/ ! cp $(srcdir)/getopt/libgetopt.h common/ ! cp $(srcdir)/utils/libutils.h common/ ! cp $(srcdir)/string/libstring.h common/ ! cp $(srcdir)/debug/libdebug.h common/ ! cp $(srcdir)/list/liblist.h common/ ! cp $(srcdir)/memtrace/libmemtrace.h common/ CLEANFILES = *~ .*.swp .*.swo output* *.gcov *.gprof *.gcno *.gcda *.a common/*.h common *** src/debug/libdebug.h.ORIG Wed Aug 26 14:41:35 2009 --- src/debug/libdebug.h Wed Aug 26 14:41:47 2009 *************** *** 40,46 **** --- 40,48 ---- #include #include #include + #ifndef _AIX #include + #endif #include #include #include *** src/debug/libdebug_kill.c.ORIG Wed Aug 26 14:42:58 2009 --- src/debug/libdebug_kill.c Wed Aug 26 14:43:10 2009 *************** *** 12,18 **** --- 12,20 ---- #include "debug_private.h" #include "stdarg.h" #include + #ifndef _AIX #include + #endif /* ** This function is used when the program has to be killed. Useful for *** configure.ac.ORIG Mon Aug 17 18:33:55 2009 --- configure.ac Wed Aug 26 14:39:38 2009 *************** *** 40,46 **** ############################################################################# # Checking libraries presence # ############################################################################# ! AC_CHECK_LIB(m, powf, [], AC_MSG_ERROR([Cannot find libm match library ! Check your installation !]), []) ############################################################################# # Support for compiler capacity to manage warning flags # --- 40,46 ---- ############################################################################# # Checking libraries presence # ############################################################################# ! AC_CHECK_LIB(m, pow, [], AC_MSG_ERROR([Cannot find libm match library ! Check your installation !]), []) ############################################################################# # Support for compiler capacity to manage warning flags # *************** *** 66,79 **** [-Wwrite-strings], [-Wuninitialized], [-Winit-self], - [-fno-common ], [-pedantic], [-Wshadow], [-Wunsafe-loop-optimizations], - [-std=c99], [-Wnested-externs]]) ! CFLAGS="$CFLAGS -O2 $DEBUG -DLINUX -D_XOPEN_SOURCE=600 -DMEMTRACE -std=c99 $WARNING_CFLAGS" ############################################################################# # Support for static lib creation # --- 66,77 ---- [-Wwrite-strings], [-Wuninitialized], [-Winit-self], [-pedantic], [-Wshadow], [-Wunsafe-loop-optimizations], [-Wnested-externs]]) ! CFLAGS="$CFLAGS -O2 $DEBUG -DLINUX -D_XOPEN_SOURCE=600 -DMEMTRACE $WARNING_CFLAGS" ############################################################################# # Support for static lib creation #