mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
b3851363ba
Build-tools/Do-compile: Fixed indentation configure.in: Added patches from Novell Added C_EXTRA_FLAGS as an easy way to pass flags to both CFLAGS and CXXFLAGS extra/perror.c: Fixed error number reporting to not report 'Unknown error' include/my_global.h: Defines to make NETWARE patches cleaner include/thr_alarm.h: Fixed wrong macro netware/mysql_install_db.c: Indentation fix
22 lines
223 B
Bash
Executable file
22 lines
223 B
Bash
Executable file
#! /bin/sh
|
|
|
|
# debug
|
|
#set -x
|
|
|
|
# stop on errors
|
|
set -e
|
|
|
|
|
|
path=`dirname $0`
|
|
. $path/compile-netware-START
|
|
|
|
suffix="standard"
|
|
|
|
extra_configs=" \
|
|
--with-innodb \
|
|
--enable-thread-safe-client \
|
|
"
|
|
|
|
. $path/compile-netware-END
|
|
|
|
|