Commit b9d3a552 authored by monty@hundin.mysql.fi's avatar monty@hundin.mysql.fi
Browse files

Update needed for SuSE 7.3

Update for autoconf 2.52
parent a880ec94
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -35,7 +35,6 @@ EXTRA_DIST = FINISH.sh \
			compile-pentium-myodbc \
			compile-pentium-mysqlfs-debug \
			compile-pentium-pgcc \
			compile-pentium-symbols \
			compile-solaris-sparc \
			compile-solaris-sparc-debug \
			compile-solaris-sparc-fortre \
+2 −2
Original line number Diff line number Diff line
@@ -52,8 +52,8 @@ debug_cflags="-DEXTRA_DEBUG -DFORCE_INIT_OF_VARS -DSAFEMALLOC -DSAFE_MUTEX -O1"

base_cxxflags="-felide-constructors -fno-exceptions -fno-rtti"

base_configs="--prefix=/usr/local/mysql --enable-assembler --with-extra-charsets=complex --enable-thread-safe-client --with-mysqld-ldflags=-all-static \
 --with-client-ldflags=-all-static"
base_configs="--prefix=/usr/local/mysql --enable-assembler --with-extra-charsets=complex --enable-thread-safe-client"
static_link="--with-mysqld-ldflags=-all-static --with-client-ldflags=-all-static"
alpha_configs=""	# Not used yet
pentium_configs=""
sparc_configs=""
+1 −1
Original line number Diff line number Diff line
@@ -4,6 +4,6 @@ path=`dirname $0`
. "$path/SETUP.sh"

extra_flags="$alpha_cflags $fast_cflags"
extra_configs="$alpha_configs"
extra_configs="$alpha_configs $static_link"

. "$path/FINISH.sh"
+1 −3
Original line number Diff line number Diff line
@@ -4,9 +4,7 @@ path=`dirname $0`
. "$path/SETUP.sh"

extra_flags="$pentium_cflags $fast_cflags"
extra_configs="$pentium_configs"
extra_configs="$pentium_configs $static_link"
strip=yes

extra_configs="$extra_configs"

. "$path/FINISH.sh"
+1 −1
Original line number Diff line number Diff line
@@ -4,6 +4,6 @@ path=`dirname $0`
. "$path/SETUP.sh"

extra_flags="$pentium_cflags $debug_cflags"
extra_configs="$pentium_configs $debug_configs --without-berkeley-db"
extra_configs="$pentium_configs $debug_configs --without-berkeley-db $static_link"

. "$path/FINISH.sh"
Loading