From 6f65d24796a0aaca0c20f4c074aa71e39f38e68d Mon Sep 17 00:00:00 2001 From: Hans Ulrich Niedermann Date: Tue, 18 Feb 2020 21:18:55 +0100 Subject: Make sure both C and C++ programs including gphoto2 headers compile Check that programs including libgphoto2 headers compile when compiled for a number of different language standards: C: ansi c99 c11 C++: ansi c++98 c++11 c++14 c++17 For each of these language standards, if the compiler does not compile an empty example program, we do not test whether compiling with the gphoto2/*.h headers included works. This will work with GCC as the compiler, and also should work with CLANG as the compiler as CLANG is mostly compatible in these matters. On other compilers, the test compile of the empty program should fail, and thus no checks with the gphoto2/*.h headers included will be performed. C90/ANSI C apparently does not define __STDC_VERSION__, so the C source code needed to be changed to become ANSI C compatible. In C++ pedantic compilation source, we now use actual C++ code instead of relying on C code working when compiled as C++ code. In Travis CI, we now actually require both C and C++. --- gphoto-m4/gp-pedantic-compiler-flags.m4 | 123 ++++++++++++++++++++++++++++++++ 1 file changed, 123 insertions(+) create mode 100644 gphoto-m4/gp-pedantic-compiler-flags.m4 (limited to 'gphoto-m4') diff --git a/gphoto-m4/gp-pedantic-compiler-flags.m4 b/gphoto-m4/gp-pedantic-compiler-flags.m4 new file mode 100644 index 000000000..bb5adfc71 --- /dev/null +++ b/gphoto-m4/gp-pedantic-compiler-flags.m4 @@ -0,0 +1,123 @@ +dnl #################################################################### +dnl GP_PEDANTIC_COMPILER_FLAGS & Co. +dnl #################################################################### +dnl +m4_pattern_forbid([_GP_])dnl +dnl +dnl +dnl #################################################################### +dnl _GP_CONDITIONAL_COMPILE_FLAGS(FLAG_VAR, FLAGS) +dnl #################################################################### +AC_DEFUN([_GP_CONDITIONAL_COMPILE_FLAGS], [dnl +# BEGIN $0($@) +AS_VAR_IF([$1], [], [dnl + $1="$2" +], [dnl + $1="[$]{$1} $2" +]) +AC_MSG_CHECKING([whether $1="[$]$1" compiles]) +AC_COMPILE_IFELSE([m4_case([$1], [CFLAGS], [dnl +AC_LANG_SOURCE([[ +#include +int main(int argc, char *argv[]) +{ + int i; + /* Use argc and argv to prevent warning about unused function params */ + for (i=0; i +int main(int argc, char *argv[]) +{ + int i; + /* Use argc and argv to prevent warning about unused function params */ + for (i=0; i