mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
15 lines
316 B
Bash
Executable file
15 lines
316 B
Bash
Executable file
#! /bin/sh
|
|
|
|
path=`dirname $0`
|
|
. "$path/SETUP.sh"
|
|
|
|
extra_flags="$pentium_cflags $fast_cflags -g"
|
|
extra_configs="$pentium_configs"
|
|
|
|
# Use the optimized version if it exists
|
|
if test -d /usr/local/BerkeleyDB-opt/
|
|
then
|
|
extra_configs="$extra_configs --with-berkeley-db=/usr/local/BerkeleyDB-opt/"
|
|
fi
|
|
|
|
. "$path/FINISH.sh"
|