1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-05 21:57:51 +03:00

should not have been checked in. My fault

This commit is contained in:
Gerald Carter -
parent 99feae7b5b
commit af0efeeccf

View File

@ -1,36 +0,0 @@
#!/bin/sh
umask 022
## Build options
CONFIGUREOPT="--enable-debug --enable-developer --with-pam --with-libsmbclient=no --with-static-modules"
export CONFIGUREOPT
./autogen.sh
case "$1" in
dmalloc)
env CFLAGS="-Wall" ./configure \
--enable-dmalloc \
$CONFIGUREOPT
;;
insure)
env CFLAGS="-g" CC="insure" ./configure \
$CONFIGUREOPT
;;
ccache)
env CFLAGS="-Wall" CC="ccache gcc" ./configure \
$CONFIGUREOPT
;;
*)
env CFLAGS="-Wall" ./configure \
$CONFIGUREOPT
;;
esac
## disable optimization
sed 's/-O //g' Makefile | sed 's/-O2 //g' > Makefile.new; /bin/mv -f Makefile.new Makefile
## build
make proto
make all modules