jbig2dec

Ralph Giles <[email protected]> Fri, 12 Jul 2002 18:04:34 -0700
Newsgroups gmane.comp.printing.ghostscript.jbig2dec.cvs
Message-ID <[email protected]>
Update of /cvsroot/jbig2dec/jbig2dec
In directory usw-pr-cvs1:/tmp/cvs-serv7647

Modified Files:
	configure.ac 
Log Message:
Don't use shell expansions in the init macro arguments; autoconf now provides m4 macros for that.


Index: configure.ac
===================================================================
RCS file: /cvsroot/jbig2dec/jbig2dec/configure.ac,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- configure.ac	8 Jul 2002 14:10:27 -0000	1.5
+++ configure.ac	13 Jul 2002 01:04:32 -0000	1.6
@@ -1,13 +1,10 @@
 # Process this file with autoconf to produce a configure script.
 
-package=jbig2dec
-version=0.1
-
-AC_INIT([$package], [$version], [[email protected]])
+AC_INIT([jbig2dec], [0.1], [[email protected]])
 AC_PREREQ(2.52)
 AC_CONFIG_SRCDIR([jbig2dec.c])
 
-AM_INIT_AUTOMAKE([$package], [$version])
+AM_INIT_AUTOMAKE([AC_PACKAGE_NAME], [AC_PACKAGE_VERSION])
 AM_CONFIG_HEADER(config.h)
 
 AC_REVISION([$Revision$])