ref: 31aeca142b98bd794167a31c741bf73b191d6adb
parent: f9e3d8813674fe45ec12a3b75f5ab9024747a41d
author: giles <giles@ded80894-8fb9-0310-811b-c03f3676ab4d>
date: Fri Jul 12 21:04:32 EDT 2002
Don't use shell expansions in the init macro arguments; autoconf now provides m4 macros for that. git-svn-id: http://svn.ghostscript.com/jbig2dec/trunk@135 ded80894-8fb9-0310-811b-c03f3676ab4d
--- a/configure.ac
+++ b/configure.ac
@@ -1,16 +1,13 @@
# Process this file with autoconf to produce a configure script.
-package=jbig2dec
-version=0.1
-
-AC_INIT([$package], [$version], [jbig2-dev@ghostscript.com])
+AC_INIT([jbig2dec], [0.1], [jbig2-dev@ghostscript.com])
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: 1.5 $])
+AC_REVISION([$Revision: 1.6 $])
# Checks for programs.
AC_PROG_CC