build: don't execute tests/summary.c
authorGustavo Zacarias <gustavo@zacarias.com.ar>
Thu, 30 Jan 2014 20:59:48 +0000 (17:59 -0300)
committerAndrew Bartlett <abartlet@samba.org>
Tue, 11 Feb 2014 23:37:31 +0000 (12:37 +1300)
tests/summary.c will never be able to be executed when cross compiling.
Use #error and #warning directives to fail or warn accordingly when
compiling it.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Kamen Mazdrashki <kamenim@samba.org>
tests/summary.c
wscript

index 27f7d4d061902df5bc9f69a6b6240ea49fa4b726..0843ee2cc9156dfdf5bdd50cea23951962df2bcf 100644 (file)
@@ -5,27 +5,23 @@ void exit(int);
 int main()
 {
 #if !defined(HAVE_FCNTL_LOCK)
-       printf("ERROR: No locking available. Running Samba would be unsafe\n");
-       exit(1);
+#error "ERROR: No locking available. Running Samba would be unsafe"
 #endif
 
 #if !(defined(HAVE_IFACE_GETIFADDRS) || defined(HAVE_IFACE_IFCONF) || defined(HAVE_IFACE_IFREQ) || defined(HAVE_IFACE_AIX))
-       printf("WARNING: No automated network interface determination\n");
+#warning "WARNING: No automated network interface determination"
 #endif
 
 #if !(defined(USE_SETEUID) || defined(USE_SETREUID) || defined(USE_SETRESUID) || defined(USE_SETUIDX) || defined(USE_LINUX_THREAD_CREDENTIALS))
-       printf("ERROR: no seteuid method available\n");
-       exit(1);
+#error "ERROR: no seteuid method available"
 #endif
 
 #if !(defined(STAT_STATVFS) || defined(STAT_STATFS3_OSF1) || defined(STAT_STATFS2_BSIZE) || defined(STAT_STATFS4) || defined(STAT_STATFS2_FSIZE) || defined(STAT_STATFS2_FS_DATA))
-       printf("ERROR: No disk free routine!\n");
-       exit(1);
+#error "ERROR: No disk free routine!"
 #endif
 
 #if !((defined(HAVE_RANDOM) || defined(HAVE_RAND)) && (defined(HAVE_SRANDOM) || defined(HAVE_SRAND)))
-    printf("ERROR: No random or srandom routine!\n");
-    exit(1);
+#error "ERROR: No random or srandom routine!"
 #endif
 
        exit(0);
diff --git a/wscript b/wscript
index 47b7b50639fda67bd8bd13ba8a7eeed55dfee330..26431a45bdcaa75ef0f4c856a5d316a0245c15fa 100644 (file)
--- a/wscript
+++ b/wscript
@@ -170,7 +170,6 @@ def configure(conf):
     if not conf.CHECK_CODE('#include "tests/summary.c"',
                            define='SUMMARY_PASSES',
                            addmain=False,
-                           execute=True,
                            msg='Checking configure summary'):
         raise Utils.WafError('configure summary failed')