diff options
author | Xavier Roche <xroche@users.noreply.github.com> | 2013-04-26 06:00:26 +0000 |
---|---|---|
committer | Xavier Roche <xroche@users.noreply.github.com> | 2013-04-26 06:00:26 +0000 |
commit | 7d8af8b5d5ad0fefc5ba3c5b45b75affe6d80db5 (patch) | |
tree | f54217b1aec19e1570738c40d45004b127124686 | |
parent | 78173ef8190a1d5f9bab28053b0c274329533e59 (diff) |
Fixed AM_CONFIG_HEADER vs. AC_CONFIG_HEADERS (Sebastian Pipping)
-rw-r--r-- | aclocal.m4 | 12 | ||||
-rw-r--r-- | configure.in | 2 |
2 files changed, 1 insertions, 13 deletions
@@ -340,18 +340,6 @@ AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) ]) -# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005 -# Free Software Foundation, Inc. -# -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# serial 8 - -# AM_CONFIG_HEADER is obsolete. It has been replaced by AC_CONFIG_HEADERS. -AU_DEFUN([AM_CONFIG_HEADER], [AC_CONFIG_HEADERS($@)]) - # Do all the work for Automake. -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 diff --git a/configure.in b/configure.in index bc077af..16b84a8 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@ AC_INIT(src/httrack.c) AC_CONFIG_MACRO_DIR([m4]) -AM_CONFIG_HEADER(config.h) +AC_CONFIG_HEADERS(config.h) AM_INIT_AUTOMAKE(httrack, 3.47.5) VERSION_INFO="2:47:0" AM_MAINTAINER_MODE |