Author: rjung
Date: Wed Feb 26 12:52:05 2014
New Revision: 1572035

URL: http://svn.apache.org/r1572035
Log:
Fix another auto tools warning by switching to
the recommened macro use for auto tools initialization.
I couldn't make the variable sytnax work though
but since they were only used on the following line,
using verbatim values should be OK.

Modified:
    tomcat/jk/trunk/native/configure.ac

Modified: tomcat/jk/trunk/native/configure.ac
URL: 
http://svn.apache.org/viewvc/tomcat/jk/trunk/native/configure.ac?rev=1572035&r1=1572034&r2=1572035&view=diff
==============================================================================
--- tomcat/jk/trunk/native/configure.ac (original)
+++ tomcat/jk/trunk/native/configure.ac Wed Feb 26 12:52:05 2014
@@ -18,17 +18,19 @@ dnl Process this file with autoconf to p
 dnl
 AC_REVISION($Id$)dnl
 
-AC_PREREQ(2.13)
-AC_INIT(common/jk_worker.h)
+dnl Minimum autoconf version
+AC_PREREQ(2.59)
+
+dnl package and version.
+dnl synchronization with common/jk_version.h ?
+AC_INIT([mod_jk], [1.2.38])
+
+AC_CONFIG_SRCDIR([common/jk_worker.h])
 AC_CONFIG_HEADER(common/config.h)
 AC_CONFIG_AUX_DIR(scripts/build/unix)
 AC_CANONICAL_SYSTEM
 
-dnl package and version. (synchronization with common/jk_version.h ?)
-PACKAGE=mod_jk
-VERSION=1.2.38
-
-AM_INIT_AUTOMAKE(${PACKAGE}, ${VERSION})
+AM_INIT_AUTOMAKE
 
 dnl
 dnl Include our own M4 macros



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to