diff options
author | Gabriele Svelto <gabriele.svelto@gmail.com> | 2012-04-26 09:17:23 +0200 |
---|---|---|
committer | Martin Sustrik <sustrik@250bpm.com> | 2012-04-27 10:41:10 +0200 |
commit | 5b468252036fdbadfab00df743c35a415fbb2adb (patch) | |
tree | 835ad625e5ff23dd6bbcd20d2bba4fb66e9a18fe /tests | |
parent | 2602a776e520ff12769cac152559b0bf33d5f70f (diff) |
Replaced obsolete autoconf and automake macros
This patch cleans up a number of obsolete constructs in the build
system, these include:
- Replacing AC_TRY_RUN with AC_RUN_IFELSE for the SOCK_CLOEXEC test
- Using AC_CONFIG_HEADERS instead of AM_CONFIG_HEADER
- Using LT_INIT with the win32-dll parameter instead of the obsolete
AC_PROG_LIBTOOL and AC_LIBTOOL_WIN32_DLL macros
- Removing the unused and obsolete AC_TYPE_SIGNAL check
- Removing the unused alloca.h header check
- Replacing the deprecated INCLUDES macro with AM_CPPFLAGS
Signed-off-by: Gabriele Svelto <gabriele.svelto@gmail.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index 47a880b..4e08ae7 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -1,5 +1,5 @@ -INCLUDES = -I$(top_builddir)/include \ - -I$(top_srcdir)/include +AM_CPPFLAGS = -I$(top_builddir)/include \ + -I$(top_srcdir)/include LDADD = $(top_builddir)/src/libxs.la |