summaryrefslogtreecommitdiff
path: root/source4/build/m4/smb_cc_features.m4
diff options
context:
space:
mode:
Diffstat (limited to 'source4/build/m4/smb_cc_features.m4')
-rw-r--r--source4/build/m4/smb_cc_features.m429
1 files changed, 0 insertions, 29 deletions
diff --git a/source4/build/m4/smb_cc_features.m4 b/source4/build/m4/smb_cc_features.m4
deleted file mode 100644
index 4044e9615e..0000000000
--- a/source4/build/m4/smb_cc_features.m4
+++ /dev/null
@@ -1,29 +0,0 @@
-dnl SMB Compiler Capability Checks
-dnl -------------------------------------------------------
-dnl Copyright (C) Stefan (metze) Metzmacher 2004,2005
-dnl Released under the GNU GPL
-dnl -------------------------------------------------------
-dnl
-
-############################################
-# Check if the compiler handles c99 struct initialization.
-# Usage: SMB_CC_SUPPORTS_C99_STRUCT_INIT(success-action,failure-action)
-
-AC_DEFUN([SMB_CC_SUPPORTS_C99_STRUCT_INIT],
-[
-AC_MSG_CHECKING(for C99 designated initializers)
-AC_TRY_COMPILE([
- #include <stdio.h>],
- [
- struct foo {
- int x;
- char y;
- } ;
- struct foo bar = {
- .y = 'X',
- .x = 1
- };
- ],
-[AC_MSG_RESULT(yes); $1],[AC_MSG_RESULT(no); $2])
-])
-