mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			256 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			256 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 \
 | 
						|
	--with-archive-storage-engine \
 | 
						|
	"
 | 
						|
 | 
						|
. $path/compile-netware-END
 | 
						|
 | 
						|
 |