[Pkg-jed-commit] [SCM] Debian packaging of JED branch, jo-upstream-fixes, updated. 3bb27317d2e41070ee40080b18e63f569c2ac79e

Jörg Sommer joerg at alea.gnuu.de
Thu May 29 19:51:21 UTC 2008


The following commit has been merged in the jo-upstream-fixes branch:
commit 11a89f7a5509db290f541ad2dc13362153284f10
Author: Jörg Sommer <joerg at alea.gnuu.de>
Date:   Thu May 29 20:07:31 2008 +0200

    Updated AC_INIT and AC_OUTPUT
    
    The old usage of AC_INIT and AC_OUTPUT is obsolate; see section 15.4 in
    the autoconf documentation. This update was generated by autoupdate.
    
    The version field of AC_INIT is left unspecified, because the verion is
    controlled via src/version.h, which doesn't require an update of
    configure for each new version.

diff --git a/autoconf/configure.ac b/autoconf/configure.ac
index 12aeec8..c3913f9 100644
--- a/autoconf/configure.ac
+++ b/autoconf/configure.ac
@@ -3,7 +3,8 @@ dnl
 dnl   This file requires m4 macros that I define in my acsite.m4 file.
 dnl   You can obtain this file from <ftp://space.mit.edu/pub/davis/acsite.m4>.
 dnl
-AC_INIT(src/ledit.c)
+AC_INIT([Jed],[unknown_version],[jed-users at jedsoft.org])
+AC_CONFIG_SRCDIR([src/ledit.c])
 JD_INIT
 
 AC_CONFIG_AUX_DIR(autoconf)
@@ -90,7 +91,8 @@ JD_GET_MODULES(src/modules.unx)
 JD_CREATE_MODULE_ORULES
 
 AC_CONFIG_HEADER(src/sysconf.h:src/config.hin)
-AC_OUTPUT(Makefile:autoconf/Makefile.in src/Makefile)
+AC_CONFIG_FILES([Makefile:autoconf/Makefile.in src/Makefile])
+AC_OUTPUT
 
 dnl JD_CREATE_ORULE(jprocess)
 dnl JD_CREATE_ORULE(chkslang)

-- 
Debian packaging of JED



More information about the Pkg-jed-commit mailing list