diff options
author | Herb Lewis <herb@samba.org> | 2002-02-07 20:09:17 +0000 |
---|---|---|
committer | Herb Lewis <herb@samba.org> | 2002-02-07 20:09:17 +0000 |
commit | e7944643f7ca84efcb26073792d71f7b35be1f05 (patch) | |
tree | 83d977e990c47aedad9221af7f9622d8d4ec1780 /packaging/SGI | |
parent | fb444a546effe22e2a7c314a10473f0680be0cc6 (diff) | |
download | samba-e7944643f7ca84efcb26073792d71f7b35be1f05.tar.gz samba-e7944643f7ca84efcb26073792d71f7b35be1f05.tar.bz2 samba-e7944643f7ca84efcb26073792d71f7b35be1f05.zip |
quite errors about unnecessary const casting - don't build libnss_wins.so
(This used to be commit 8ae0abb174aec0c76d6900b08914535d0a2d425c)
Diffstat (limited to 'packaging/SGI')
-rwxr-xr-x | packaging/SGI/mkrelease.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packaging/SGI/mkrelease.sh b/packaging/SGI/mkrelease.sh index 889dcf1ae8..1a565a73e7 100755 --- a/packaging/SGI/mkrelease.sh +++ b/packaging/SGI/mkrelease.sh @@ -67,7 +67,7 @@ echo Making binaries echo "===================== Making Profile versions =======================" make clean make headers -make -P "CFLAGS=-O -g3 -D WITH_PROFILE" bin/smbd bin/nmbd +make -P "CFLAGS=-O -g3 -woff 1188 -D WITH_PROFILE" bin/smbd bin/nmbd errstat=$? if [ $errstat -ne 0 ]; then echo "Error $errstat building profile sources\n"; @@ -79,7 +79,7 @@ mv bin/nmbd bin/nmbd.profile echo "===================== Making No Quota versions =======================" make clean make headers -make -P "CFLAGS=-O -g3 -D QUOTAOBJS=smbd/noquotas.o" bin/smbd +make -P "CFLAGS=-O -g3 -woff 1188 -D QUOTAOBJS=smbd/noquotas.o" bin/smbd errstat=$? if [ $errstat -ne 0 ]; then echo "Error $errstat building noquota sources\n"; @@ -88,7 +88,7 @@ fi mv bin/smbd bin/smbd.noquota echo "===================== Making Regular versions =======================" -make -P "CFLAGS=-O -g3" all nsswitch/libnss_wins.so +make -P "CFLAGS=-O -g3 -woff 1188" all errstat=$? if [ $errstat -ne 0 ]; then echo "Error $errstat building sources\n"; |