From: Vadim Zeitlin Date: Thu, 17 Jun 2010 22:30:22 +0000 (+0000) Subject: Don't use excessive quoting with AC_DEFINE_UNQUOTED in WX_CHECK_FUNCS. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/ee4f5418ff46fb51b32314d10117ab4b4b3e8372?ds=inline Don't use excessive quoting with AC_DEFINE_UNQUOTED in WX_CHECK_FUNCS. This provokes warnings from autoconf 2.65 and seems to be unnecessary even with the previous versions. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64619 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/acinclude.m4 b/acinclude.m4 index 915fa40067..13973994d3 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -247,7 +247,7 @@ AC_DEFUN([WX_CHECK_FUNCS], if eval test \$wx_cv_func_$wx_func = yes then - AC_DEFINE_UNQUOTED([AS_TR_CPP([HAVE_$wx_func])]) + AC_DEFINE_UNQUOTED(AS_TR_CPP([HAVE_$wx_func])) $2 else :