Skip to content

Commit 480663e

Browse files
author
Kent Boortz
committed
Changes to be able to create source TAR packages with longer
path names than 99 characters, using the USTAR format of the resulting source TAR. To be able to specify the use of USTAR when creating the source TAR, we needed both to update the GNU autotools version requirements slightly, and update the initiation of the tools to use more modern constructs.
1 parent 2c44919 commit 480663e

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
@@ -1,17 +1,23 @@
11
dnl -*- ksh -*-
22
dnl Process this file with autoconf to produce a configure script.
33

4-
AC_PREREQ(2.52)dnl Minimum Autoconf version required.
4+
# Minimum Autoconf version required.
5+
AC_PREREQ(2.59)
56

6-
AC_INIT(sql/mysqld.cc)
7-
AC_CANONICAL_SYSTEM
8-
# The Docs Makefile.am parses this line!
9-
# remember to also update version.c in ndb
10-
#
7+
# Remember to also update version.c in ndb.
118
# When changing major version number please also check switch statement
129
# in mysqlbinlog::check_master_version().
13-
AM_INIT_AUTOMAKE(mysql, 5.1.43)
14-
AM_CONFIG_HEADER([include/config.h:config.h.in])
10+
AC_INIT([MySQL Server], [5.1.43], [], [mysql])
11+
AC_CONFIG_SRCDIR([sql/mysqld.cc])
12+
AC_CANONICAL_SYSTEM
13+
# USTAR format gives us the possibility to store longer path names in
14+
# TAR files, the path name is split into two parts, a 155 chacater
15+
# first part and a 100 character second part.
16+
AM_INIT_AUTOMAKE([1.9 tar-ustar])
17+
LT_INIT
18+
LT_PREREQ([1.5.6])
19+
20+
AM_CONFIG_HEADER([include/config.h])
1521

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

0 commit comments

Comments
 (0)