]> git.saurik.com Git - wxWidgets.git/commitdiff
use C++ compiler for all getsockopt() tests, not just one of them to fix compilation...
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 7 Apr 2007 13:18:56 +0000 (13:18 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 7 Apr 2007 13:18:56 +0000 (13:18 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45298 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

configure.in

index 8e16c76493533348271fbc69c3dbdd6d83fa7743..f8ce2d75ece07739a2dbf9529dce14a88a106c53 100644 (file)
@@ -6295,6 +6295,12 @@ if test "$wxUSE_SOCKETS" = "yes" ; then
         AC_CACHE_CHECK([what is the type of the fifth argument of getsockopt],
                        wx_cv_type_getsockopt5,
             [
         AC_CACHE_CHECK([what is the type of the fifth argument of getsockopt],
                        wx_cv_type_getsockopt5,
             [
+                dnl Note that the rules for compatibility of pointers
+                dnl are somewhat different between C and C++, so code 
+                dnl that fails in C++ may not even give a warning about
+                dnl converting between incompatible pointer types in C.
+                dnl So this test needs to be done in C++ mode.
+                AC_LANG_PUSH(C++)
                 AC_TRY_COMPILE(
                     [
                         #include <sys/types.h>
                 AC_TRY_COMPILE(
                     [
                         #include <sys/types.h>
@@ -6306,12 +6312,6 @@ if test "$wxUSE_SOCKETS" = "yes" ; then
                     ],
                     wx_cv_type_getsockopt5=socklen_t,
                     [
                     ],
                     wx_cv_type_getsockopt5=socklen_t,
                     [
-                        dnl Note that the rules for compatibility of pointers
-                        dnl are somewhat different between C and C++, so code 
-                        dnl that fails in C++ may not even give a warning about
-                        dnl converting between incompatible pointer types in C.
-                        dnl So this test needs to be done in C++ mode.
-                        AC_LANG_PUSH(C++)
                         AC_TRY_COMPILE(
                             [
                                 #include <sys/types.h>
                         AC_TRY_COMPILE(
                             [
                                 #include <sys/types.h>
@@ -6335,9 +6335,9 @@ if test "$wxUSE_SOCKETS" = "yes" ; then
                                 wx_cv_type_getsockopt5=unknown
                             )
                         )
                                 wx_cv_type_getsockopt5=unknown
                             )
                         )
-                        AC_LANG_POP()
                     ]
                 )
                     ]
                 )
+                AC_LANG_POP()
             ])
 
         if test "$wx_cv_type_getsockopt5" = "unknown"; then
             ])
 
         if test "$wx_cv_type_getsockopt5" = "unknown"; then