mirror of
https://github.com/MariaDB/server.git
synced 2025-03-05 02:33:21 +01:00

Replaced hardcoded sover reference with variable. Removed references to added manpages. --- BUG#27769 Cleaned up some things to make building the packages go a little smoother. --- debian/rules really does need to be called from the source root. --- Fixed two problems with the build caused by adding debian to the source tree --- Left off the debian/ prefix to the Makefile filter. --- BUG#27769 - MySQL should include debian packaging dir Changed substitution variables to match already existing autoconf vars. Generate debian/control and debian/defs.mk from autoconf now, since we run that to make a source package. --- Corrected incorrect variable name --- Renamed template files to have shorter names. --- Moved generation of debian/control to dist-hook so make clean won't eat it. --- A few final changes to make debs build from a source tarball dist.
12 lines
567 B
Makefile
12 lines
567 B
Makefile
MYSQL_BUILD_OPTS=--with-comment='MySQL Server (custom)' --with-server-suffix='-custom'
|
|
MYSQL_BUILD_CXXFLAGS=-DBIG_JOINS=1 -felide-constructors -fno-rtti -O2
|
|
MYSQL_BUILD_CFLAGS=-DBIG_JOINS=1 -O2
|
|
MYSQL_BUILD_CC=gcc
|
|
MYSQL_BUILD_CXX=gcc
|
|
# These two never pick up the flavor when we persist settings
|
|
VER=@MYSQL_BASE_VERSION@
|
|
OLDVER=@MYSQL_PREVIOUS_BASE_VERSION@
|
|
MYSQL_BASE_VERSION=@MYSQL_BASE_VERSION@
|
|
MYSQL_PREVIOUS_BASE_VERSION=@MYSQL_PREVIOUS_BASE_VERSION@
|
|
SHARED_LIB_MAJOR_VERSION=@SHARED_LIB_MAJOR_VERSION@
|
|
NDB_SHARED_LIB_MAJOR_VERSION=@NDB_SHARED_LIB_MAJOR_VERSION@
|