mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Merge mysql.com:/home/kent/bk/config_h/mysql-5.0-build
into mysql.com:/home/kent/bk/config_h/mysql-5.1-build config/ac-macros/misc.m4: Auto merged configure.in: Auto merged include/Makefile.am: Auto merged mysql-test/std_data/cacert.pem: Auto merged mysql-test/std_data/client-cert.pem: Auto merged mysql-test/std_data/client-key.pem: Auto merged mysql-test/std_data/server-cert.pem: Auto merged mysql-test/std_data/server-key.pem: Auto merged mysys/my_pthread.c: Auto merged scripts/make_binary_distribution.sh: Auto merged BitKeeper/deleted/.del-Makefile.am~de166d6fcac3b9b6: Auto merged
This commit is contained in:
@ -5,8 +5,8 @@
|
|||||||
ASRC = $(srcdir)/vi.c $(srcdir)/emacs.c $(srcdir)/common.c
|
ASRC = $(srcdir)/vi.c $(srcdir)/emacs.c $(srcdir)/common.c
|
||||||
AHDR = vi.h emacs.h common.h
|
AHDR = vi.h emacs.h common.h
|
||||||
|
|
||||||
INCLUDES = -I$(top_builddir)/include -I$(top_srcdir)/include \
|
# Make sure to include stuff from this directory first, to get right "config.h"
|
||||||
-I$(srcdir)/../.. -I..
|
INCLUDES = -I. -I$(top_builddir)/include -I$(top_srcdir)/include
|
||||||
|
|
||||||
noinst_LIBRARIES = libedit.a
|
noinst_LIBRARIES = libedit.a
|
||||||
|
|
||||||
|
@ -638,7 +638,6 @@ AC_SUBST(CXX_VERSION)
|
|||||||
])
|
])
|
||||||
|
|
||||||
AC_DEFUN([MYSQL_PROG_AR], [
|
AC_DEFUN([MYSQL_PROG_AR], [
|
||||||
AC_REQUIRE([MYSQL_CHECK_CXX_VERSION])
|
|
||||||
case $CXX_VERSION in
|
case $CXX_VERSION in
|
||||||
MIPSpro*)
|
MIPSpro*)
|
||||||
AR=$CXX
|
AR=$CXX
|
||||||
|
@ -11,7 +11,7 @@ AC_CANONICAL_SYSTEM
|
|||||||
# When changing major version number please also check switch statement
|
# When changing major version number please also check switch statement
|
||||||
# in mysqlbinlog::check_master_version().
|
# in mysqlbinlog::check_master_version().
|
||||||
AM_INIT_AUTOMAKE(mysql, 5.1.21-beta)
|
AM_INIT_AUTOMAKE(mysql, 5.1.21-beta)
|
||||||
AM_CONFIG_HEADER(config.h)
|
AM_CONFIG_HEADER([include/config.h:config.h.in])
|
||||||
|
|
||||||
PROTOCOL_VERSION=10
|
PROTOCOL_VERSION=10
|
||||||
DOT_FRM_VERSION=6
|
DOT_FRM_VERSION=6
|
||||||
|
@ -53,8 +53,11 @@ link_sources:
|
|||||||
@yassl_h_ln_cmd@
|
@yassl_h_ln_cmd@
|
||||||
echo timestamp > link_sources
|
echo timestamp > link_sources
|
||||||
|
|
||||||
my_config.h: ../config.h
|
# We want both "my_config.h" and "config.h" that are identical, as
|
||||||
$(CP) ../config.h my_config.h
|
# MySQL sources assumes the name "my_config.h", and 3rd party sources
|
||||||
|
# assumes the name "config.h".
|
||||||
|
my_config.h: config.h
|
||||||
|
$(CP) config.h my_config.h
|
||||||
|
|
||||||
# These files should not be included in distributions since they are
|
# These files should not be included in distributions since they are
|
||||||
# generated by configure from the .h.in files
|
# generated by configure from the .h.in files
|
||||||
|
@ -28,9 +28,6 @@ EXTRA_DIST = $(EXTRA_SCRIPTS) suite
|
|||||||
GENSCRIPTS = mysql-test-run-shell install_test_db mtr mysql-test-run
|
GENSCRIPTS = mysql-test-run-shell install_test_db mtr mysql-test-run
|
||||||
PRESCRIPTS = mysql-test-run.pl mysql-stress-test.pl
|
PRESCRIPTS = mysql-test-run.pl mysql-stress-test.pl
|
||||||
test_SCRIPTS = $(GENSCRIPTS) $(PRESCRIPTS)
|
test_SCRIPTS = $(GENSCRIPTS) $(PRESCRIPTS)
|
||||||
test_DATA = std_data/client-key.pem std_data/client-cert.pem \
|
|
||||||
std_data/cacert.pem std_data/server-cert.pem \
|
|
||||||
std_data/server-key.pem
|
|
||||||
CLEANFILES = $(GENSCRIPTS)
|
CLEANFILES = $(GENSCRIPTS)
|
||||||
|
|
||||||
INCLUDES = -I$(top_builddir)/include -I$(top_srcdir)/include -I..
|
INCLUDES = -I$(top_builddir)/include -I$(top_srcdir)/include -I..
|
||||||
|
@ -274,7 +274,7 @@ if [ $BASE_SYSTEM = "netware" ] ; then
|
|||||||
rm -f $BASE/lib/*.la
|
rm -f $BASE/lib/*.la
|
||||||
fi
|
fi
|
||||||
|
|
||||||
copyfileto $BASE/include config.h include/*
|
copyfileto $BASE/include include/*
|
||||||
|
|
||||||
rm -f $BASE/include/Makefile* $BASE/include/*.in $BASE/include/config-win.h
|
rm -f $BASE/include/Makefile* $BASE/include/*.in $BASE/include/config-win.h
|
||||||
if [ $BASE_SYSTEM != "netware" ] ; then
|
if [ $BASE_SYSTEM != "netware" ] ; then
|
||||||
|
Reference in New Issue
Block a user