@@ -16,17 +16,23 @@ dnl Process this file with autoconf to produce a configure script.
16
16
# along with this program; if not, write to the Free Software
17
17
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18
18
19
- AC_PREREQ(2.52)dnl Minimum Autoconf version required.
19
+ # Minimum Autoconf version required.
20
+ AC_PREREQ(2.59)
20
21
21
- AC_INIT(sql/mysqld.cc)
22
- AC_CANONICAL_SYSTEM
23
- # The Docs Makefile.am parses this line!
24
- # remember to also update version.c in ndb
25
- #
22
+ # Remember to also update version.c in ndb.
26
23
# When changing major version number please also check switch statement
27
24
# in client/mysqlbinlog.cc:check_master_version().
28
- AM_INIT_AUTOMAKE(mysql, 5.5.99-m3)
29
- AM_CONFIG_HEADER([include/config.h:config.h.in])
25
+ AC_INIT([MySQL Server], [5.5.99-m3], [], [mysql])
26
+ AC_CONFIG_SRCDIR([sql/mysqld.cc])
27
+ AC_CANONICAL_SYSTEM
28
+ # USTAR format gives us the possibility to store longer path names in
29
+ # TAR files, the path name is split into two parts, a 155 chacater
30
+ # first part and a 100 character second part.
31
+ AM_INIT_AUTOMAKE([1.9 tar-ustar])
32
+ LT_INIT
33
+ LT_PREREQ([1.5.6])
34
+
35
+ AM_CONFIG_HEADER([include/config.h])
30
36
31
37
# Request support for automake silent-rules if available.
32
38
# Default to verbose output. One can use the configure-time
0 commit comments