diff options
author | Michael Adam <obnox@samba.org> | 2008-02-06 15:05:28 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-02-06 18:16:22 +0100 |
commit | 0e5344b53bcc16c4260cb805fcc58a74acba0b3a (patch) | |
tree | 53d55435073f0d64c57e41b8f6a29246edac0f80 | |
parent | a4436154b8ce446e84e6c07bd9c69edfafe1b68c (diff) | |
download | samba-0e5344b53bcc16c4260cb805fcc58a74acba0b3a.tar.gz samba-0e5344b53bcc16c4260cb805fcc58a74acba0b3a.tar.xz samba-0e5344b53bcc16c4260cb805fcc58a74acba0b3a.zip |
Don't use the deprecated form of AC_INIT.
Fill in the project name and email address instead.
Michael
(This used to be commit c2b0c2f2af287bbe8e09bf7467de581691d09014)
-rw-r--r-- | source3/configure.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/source3/configure.in b/source3/configure.in index 4bfb1db02e8..7ed29fe902e 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -2,7 +2,10 @@ dnl Process this file with autoconf to produce a configure script. dnl We must use autotools 2.53 or above AC_PREREQ(2.53) -AC_INIT(include/includes.h) + +AC_INIT([Samba],[3],[samba-technical@samba.org]) + +AC_CONFIG_SRCDIR([include/includes.h]) AC_CONFIG_HEADER(include/config.h) AC_DEFINE(CONFIG_H_IS_FROM_SAMBA,1,[Marker for samba's config.h]) |