From af0efeeccfc6f4bc78c6baafd2bded404cc2a551 Mon Sep 17 00:00:00 2001 From: Gerald Carter Date: Thu, 17 Jul 2003 01:58:36 +0000 Subject: [PATCH] should not have been checked in. My fault --- source/build-me | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100755 source/build-me diff --git a/source/build-me b/source/build-me deleted file mode 100755 index a5d3f32f704..00000000000 --- a/source/build-me +++ /dev/null @@ -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 -- 2.11.4.GIT