diff options
author | Jeff Layton <jlayton@redhat.com> | 2010-03-20 07:49:44 -0400 |
---|---|---|
committer | Jeff Layton <jlayton@redhat.com> | 2010-03-20 07:49:44 -0400 |
commit | 330cb93bc946d61825e227b5cac27234be584abb (patch) | |
tree | 214d55c34cebd4af67894e0c0fa595c0bf47e244 /configure.ac | |
parent | 4d8902296bbb8d877bdfe70847a9a29b6cb21186 (diff) | |
download | cifs-utils-330cb93bc946d61825e227b5cac27234be584abb.tar.gz cifs-utils-330cb93bc946d61825e227b5cac27234be584abb.tar.bz2 cifs-utils-330cb93bc946d61825e227b5cac27234be584abb.zip |
cifs-utils: switch to using autoconf package version
Rather than using a hardcoded version string, use the VERSION macro
that autoconf provides. This will help make it clear what version
is actually being used in bug reports when someone runs
"mount.cifs -V" or "cifs.upcall --version".
Also, clean up AC_INIT and AM_INIT_AUTOMAKE macros.
Signed-off-by: Jeff Layton <jlayton@redhat.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 4048549..6951ca4 100644 --- a/configure.ac +++ b/configure.ac @@ -1,12 +1,12 @@ # -*- Autoconf -*- # Process this file with autoconf to produce a configure script. -AC_INIT([cifs-utils], [4.0], [jlayton@samba.org]) +AC_INIT([cifs-utils], [4.1rc1], [jlayton@samba.org], [cifs-utils], [http://samba.org/linux-cifs/cifs-utils/]) AC_CONFIG_SRCDIR([replace.h]) AC_CONFIG_HEADERS([config.h]) AC_CONFIG_FILES([Makefile]) -AM_INIT_AUTOMAKE([cifs-utils], [4.0]) +AM_INIT_AUTOMAKE # "with" options AC_ARG_ENABLE(cifsupcall, |