Suppress noise during configure
[citadel.git] / citadel / configure
index c2efb64276e14afa3c2c41dfa259f43a7e99457f..ad136e3ac1b2ed79061c1688d1e648c2efc7e43b 100755 (executable)
@@ -73,11 +73,12 @@ int main(int argc, char **argv) {
        exit(0);
 }
 !
-$CC $CFLAGS $CPPFLAGS $tempcc -o $tempfile $LDFLAGS -lssl -lcrypto && $tempfile && {
+$CC $CFLAGS $CPPFLAGS $tempcc -o $tempfile $LDFLAGS -lssl -lcrypto && $tempfile >/dev/null 2>&1 && {
        CFLAGS=${CFLAGS}' -DHAVE_OPENSSL'
        LDFLAGS=${LDFLAGS}' -lssl -lcrypto -lz'
 } || {
        echo Citadel Server requires OpenSSL which is not present.
+       rm -f $tempfile $tempcc 2>/dev/null
        exit 2
 }
 
@@ -99,7 +100,7 @@ int main(int argc, char **argv) {
 }
 !
 
-$CC $CFLAGS $CPPFLAGS $tempcc -o $tempfile && {
+$CC $CFLAGS $CPPFLAGS $tempcc -o $tempfile >/dev/null 2>&1 && {
        ICONV='yes'
        echo iconv.h is present and requires no additional libraries
 } || {
@@ -109,6 +110,7 @@ $CC $CFLAGS $CPPFLAGS $tempcc -o $tempfile && {
                LDFLAGS=${LDFLAGS}' -liconv'
        } || {
                echo Citadel Server requires iconv character set conversion.
+               rm -f $tempfile $tempcc 2>/dev/null
                exit 1
        }
 }
@@ -130,12 +132,14 @@ int main(int argc, char **argv) {
 }
 !
 
-$CC $CFLAGS $CPPFLAGS $tempcc -lresolv -o $tempfile && {
+$CC $CFLAGS $CPPFLAGS $tempcc -lresolv -o $tempfile >/dev/null 2>&1 && {
        LRESOLV='-lresolv'
 } || {
        LRESOLV=''
 }
 
+rm -f $tempfile $tempcc 2>/dev/null
+
 
 ########################################################################
 # Test for -lintl
@@ -153,12 +157,14 @@ int main(int argc, char **argv) {
 }
 !
 
-$CC $CFLAGS $CPPFLAGS $tempcc -lintl -o $tempfile && {
+$CC $CFLAGS $CPPFLAGS $tempcc -lintl -o $tempfile >/dev/null 2>&1 && {
        LINTL='-lintl'
 } || {
        LINTL=''
 }
 
+rm -f $tempfile $tempcc 2>/dev/null
+
 
 ########################################################################
 # Are we on Linux with -lcrypt and PAMmy stuff?
@@ -176,12 +182,14 @@ int main(int argc, char **argv) {
 }
 !
 
-$CC $CFLAGS $CPPFLAGS $tempcc -lcrypt -o $tempfile && {
+$CC $CFLAGS $CPPFLAGS $tempcc -lcrypt -o $tempfile >/dev/null 2>&1 && {
        CHKPW='chkpw chkpwd'
 } || {
        CHKPW=''
 }
 
+rm -f $tempfile $tempcc 2>/dev/null
+
 
 ########################################################################
 # This is needed to link Berkeley DB.  We will add more here later.