summaryrefslogtreecommitdiff
path: root/app/openvpn/m4/ax_varargs.m4
diff options
context:
space:
mode:
authorParménides GV <parmegv@sdf.org>2015-06-04 19:20:15 +0200
committerParménides GV <parmegv@sdf.org>2015-06-04 19:20:15 +0200
commit27594eeae6f40a402bc3110f06d57975168e74e3 (patch)
treecdabf6571e6f4ff07205fd6921d8095539a1fcdc /app/openvpn/m4/ax_varargs.m4
parent8dc4f58d96892fbfd83094fb85b1d17656035290 (diff)
ics-openvpn as a submodule! beautiful
ics-openvpn is now officially on GitHub, and they track openssl and openvpn as submodules, so it's easier to update everything. Just a git submodule update --recursive. I've also set up soft links to native modules from ics-openvpn in app, so that we don't copy files in Gradle (which was causing problems with the submodules .git* files, not being copied). That makes the repo cleaner.
Diffstat (limited to 'app/openvpn/m4/ax_varargs.m4')
-rw-r--r--app/openvpn/m4/ax_varargs.m477
1 files changed, 0 insertions, 77 deletions
diff --git a/app/openvpn/m4/ax_varargs.m4 b/app/openvpn/m4/ax_varargs.m4
deleted file mode 100644
index c295d21f..00000000
--- a/app/openvpn/m4/ax_varargs.m4
+++ /dev/null
@@ -1,77 +0,0 @@
-dnl @synopsis AX_CPP_VARARG_MACRO_GCC
-dnl
-dnl Test if the preprocessor understands GNU GCC-style vararg macros.
-dnl If it does, defines HAVE_CPP_VARARG_MACRO_GCC to 1.
-dnl
-dnl @version
-dnl @author James Yonan <jim@yonan.net>, Matthias Andree <matthias.andree@web.de>
-AC_DEFUN([AX_CPP_VARARG_MACRO_GCC], [dnl
- AS_VAR_PUSHDEF([VAR], [ax_cv_cpp_vararg_macro_gcc])dnl
- AC_CACHE_CHECK(
- [for GNU GCC vararg macro support],
- [VAR],
- [AC_COMPILE_IFELSE(
- [AC_LANG_PROGRAM(
- [[
-#define macro(a, b...) func(a, b)
-int func(int a, int b, int c);
- ]],
- [[
-int i = macro(1, 2, 3);
- ]]
- )],
- [VAR=yes],
- [VAR=no]
- )]
- )dnl
-
- AS_VAR_IF(
- [VAR],
- [yes],
- [AC_DEFINE(
- [HAVE_CPP_VARARG_MACRO_GCC],
- [1],
- [Define to 1 if your compiler supports GNU GCC-style variadic macros]
- )]
- )dnl
- AS_VAR_POPDEF([VAR])dnl
-])
-
-dnl @synopsis AX_CPP_VARARG_MACRO_ISO
-dnl
-dnl Test if the preprocessor understands ISO C 1999 vararg macros.
-dnl If it does, defines HAVE_CPP_VARARG_MACRO_ISO to 1.
-dnl
-dnl @version
-dnl @author James Yonan <jim@yonan.net>, Matthias Andree <matthias.andree@web.de>
-AC_DEFUN([AX_CPP_VARARG_MACRO_ISO], [dnl
- AS_VAR_PUSHDEF([VAR],[ax_cv_cpp_vararg_macro_iso])dnl
- AC_CACHE_CHECK(
- [for ISO C 1999 vararg macro support],
- [VAR],
- [AC_COMPILE_IFELSE(
- [AC_LANG_PROGRAM(
- [[
-#define macro(a, ...) func(a, __VA_ARGS__)
-int func(int a, int b, int c);
- ]],
- [[
-int i = macro(1, 2, 3);
- ]]
- )],
- [VAR=yes],
- [VAR=no]
- )]
- )dnl
-
- AS_VAR_IF(
- [VAR],
- [yes],
- [AC_DEFINE(
- [HAVE_CPP_VARARG_MACRO_ISO],
- [1],
- [Define to 1 if your compiler supports ISO C99 variadic macros]
- )]
- )dnl
- AS_VAR_POPDEF([VAR])dnl
-])