Skip to content

Commit 40d93c7

Browse files
author
Alexander Nozdrin
committed
Manual merge from mysql-trunk-merge.
Conflicts: - configure.in
2 parents 9d55dab + 480663e commit 40d93c7

File tree

1 file changed

+14
-8
lines changed

1 file changed

+14
-8
lines changed

configure.in

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,23 @@ dnl Process this file with autoconf to produce a configure script.
1616
# along with this program; if not, write to the Free Software
1717
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
1818

19-
AC_PREREQ(2.52)dnl Minimum Autoconf version required.
19+
# Minimum Autoconf version required.
20+
AC_PREREQ(2.59)
2021

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.
2623
# When changing major version number please also check switch statement
2724
# 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])
3036

3137
# Request support for automake silent-rules if available.
3238
# Default to verbose output. One can use the configure-time

0 commit comments

Comments
 (0)