mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 05:52:27 +01:00
24 lines
257 B
Text
24 lines
257 B
Text
|
#! /bin/sh
|
||
|
|
||
|
# debug
|
||
|
#set -x
|
||
|
|
||
|
# stop on errors
|
||
|
set -e
|
||
|
|
||
|
path=`dirname $0`
|
||
|
. $path/compile-netware-START
|
||
|
|
||
|
suffix="max-debug"
|
||
|
|
||
|
extra_configs=" \
|
||
|
--with-innodb \
|
||
|
--with-debug=full \
|
||
|
--with-embedded-server \
|
||
|
--with-openssl \
|
||
|
"
|
||
|
|
||
|
. $path/compile-netware-END
|
||
|
|
||
|
|