Harmonize rw_prog_cxx_works macro across projects
authorMichael Jeanson <mjeanson@efficios.com>
Tue, 16 Apr 2019 20:43:46 +0000 (16:43 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Wed, 24 Apr 2019 22:38:06 +0000 (18:38 -0400)
Signed-off-by: Michael Jeanson <mjeanson@efficios.com>
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
configure.ac
m4/rw_prog_cxx_works.m4

index 256b522274007ecba3f9aa1ba35443cebe4ee19a..0327bc6a0e1f060500efe4e8035031850a67af17 100644 (file)
@@ -22,7 +22,7 @@ AC_SYS_LARGEFILE
 AC_PROG_CC
 AC_PROG_CC_STDC
 AC_PROG_CXX
-rw_PROG_CXX_WORKS
+RW_PROG_CXX_WORKS
 AM_CONDITIONAL([CXX_WORKS], [test "x$rw_cv_prog_cxx_works" = "xyes"])
 
 LTTNG_CHECK_SDT_WORKS
index 1950d94d08692ac607e4284eb513b687f73da245..f3d6bde6b1c4675ee41778615699bb12c208ec2e 100644 (file)
@@ -1,37 +1,50 @@
-# rw_PROG_CXX_WORKS
+# SYNOPSIS
 #
-# Check whether the C++ compiler works. There's a bit of oversight in
-# autoconf that will set the C++ compiler to g++ if no compiler is found,
-# even if g++ is not present! So we need an extra test to make sure that
-# the compiler works.
-# Script copied from the lttng-ust project.
+#   RW_PROG_CXX_WORKS
 #
-AC_DEFUN([rw_PROG_CXX_WORKS], [
+# DESCRIPTION
+#
+#   RW_PROG_CXX_WORKS checks whether the C++ compiler works.
+#
+#   There's a bit of oversight in autoconf that will set the C++ compiler to
+#   g++ if no compiler is found, even if g++ is not present! So we need an
+#   extra test to make sure that the compiler works.
+#
+# LICENSE
+#
+#   Copying and distribution of this file, with or without modification, are
+#   permitted in any medium without royalty provided the copyright notice
+#   and this notice are preserved. This file is offered as-is, without any
+#   warranty.
+
+#serial 1
+
+AC_DEFUN([RW_PROG_CXX_WORKS], [
 AC_REQUIRE([AC_PROG_CXX])
 AC_CACHE_CHECK([whether the C++ compiler works],
-   [rw_cv_prog_cxx_works],
-   [AC_LANG_PUSH([C++])
+       [rw_cv_prog_cxx_works],
+       [AC_LANG_PUSH([C++])
 
-   AC_LINK_IFELSE([AC_LANG_PROGRAM([], [])], [
-       check_cxx_designated_initializers=yes
-   ], [
-       rw_cv_prog_cxx_works=no
-   ])
+       AC_LINK_IFELSE([AC_LANG_PROGRAM([], [])], [
+               check_cxx_designated_initializers=yes
+       ], [
+               rw_cv_prog_cxx_works=no
+       ])
 
-   AS_IF([test "x$check_cxx_designated_initializers" = "xyes"], [
-       AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
-           struct foo { int a; int b; };
-           void fct(void)
-           {
-               struct foo f = { .a = 0, .b = 1 };
-           }
-       ]])], [
-           rw_cv_prog_cxx_works=yes
-       ], [
-           rw_cv_prog_cxx_works=no
-       ])
-   ])
+       AS_IF([test "x$check_cxx_designated_initializers" = "xyes"], [
+               AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
+                       struct foo { int a; int b; };
+                       void fct(void)
+                       {
+                               struct foo f = { .a = 0, .b = 1 };
+                       }
+               ]])], [
+                       rw_cv_prog_cxx_works=yes
+               ], [
+                       rw_cv_prog_cxx_works=no
+               ])
+       ])
 
-   AC_LANG_POP([C++])
+       AC_LANG_POP([C++])
 ])
 ])
This page took 0.026672 seconds and 4 git commands to generate.