diff options
author | Gerald Carter <jerry@samba.org> | 2003-08-19 04:28:16 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2003-08-19 04:28:16 +0000 |
commit | 6283057f37d1aef24f5f41613587901c4eb94739 (patch) | |
tree | 725c068ad7578875614ed003a45b8d177e3ba570 /packaging/Caldera/OpenServer/Compile | |
parent | 49e66508f271c5d548a045a1297652ed5b03494c (diff) | |
download | samba-6283057f37d1aef24f5f41613587901c4eb94739.tar.gz samba-6283057f37d1aef24f5f41613587901c4eb94739.tar.bz2 samba-6283057f37d1aef24f5f41613587901c4eb94739.zip |
no maintainer. Will be in the Attic if ever needed. No point
in claiming support for these packagaing files if we don't
even know if they build.
(This used to be commit b87357c11bf7cbaeb1b90aaf67c9b2ba64f65783)
Diffstat (limited to 'packaging/Caldera/OpenServer/Compile')
-rwxr-xr-x | packaging/Caldera/OpenServer/Compile | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/packaging/Caldera/OpenServer/Compile b/packaging/Caldera/OpenServer/Compile deleted file mode 100755 index cba414ec74..0000000000 --- a/packaging/Caldera/OpenServer/Compile +++ /dev/null @@ -1,48 +0,0 @@ -#!/bin/ksh -# -# invoke with -n as the first argument to get this script to tell -# you what it would do without doing anything -# - -V= -[ "$1" = "-n" ] && V=echo - -CC="gcc -I/usr/local/include -L/usr/local/lib" -CFLAGS="-O3 -I/usr/local/include -L/usr/local/lib" -CXX="g++" -CXXFLAGS="-O3 -I/usr/local/include/stl -I/usr/local/include -L/usr/local/lib" -RANLIB=true -MAKE=/usr/local/bin/make -if [ "$V" = "echo" ] -then - echo "exporting the following shell variables:" - echo "CC=$CC" - echo "CXX=$CXX" - echo "RANLIB=$RANLIB" - echo "MAKE=$MAKE" - echo "CFLAGS=$CFLAGS" - echo "CXXFLAGS=$CXXFLAGS" -else - export CC CXX RANLIB MAKE CFLAGS CXXFLAGS -fi - -if [ "$V" = "echo" ] -then - echo "cd ../../../source" - echo "rm -f mout-1 mout-2 mout-3 mout-4" - echo "make all 2>&1 | tee mout-1" - echo "make smbfilter smbtorture debug2html 2>&1 | tee mout-2" - echo "make bin/smbspool smbwrapper bin/wbinfo 2>&1 | tee mout-3" - echo "make masktest locktest locktest2 2>&1 | tee mout-3" -else - cd ../../../source - rm -f mout-1 mout-2 mout-3 mout-4 - make all 2>&1 | tee mout-1 - make smbfilter smbtorture debug2html 2>&1 | tee mout-2 - make bin/smbspool smbwrapper bin/wbinfo 2>&1 | tee mout-3 - make masktest locktest locktest2 2>&1 | tee mout-3 -fi -# -# Not building : -# nsswitch - no <nss.h> -# rpctorture - improper use of client_info struct, dunno |