1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-10 16:43:33 +02:00

Make sure the search string is unique

This commit is contained in:
Leland Lucius
2015-07-28 18:26:08 -05:00
parent 01c0592917
commit 45dc52644d
2 changed files with 4 additions and 4 deletions

View File

@@ -15593,12 +15593,12 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
#include <wx/wx.h>
#if defined(__WXGTK3__)
yes
wxWidgets built with GTK3
#endif
_ACEOF
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
$EGREP "yes" >/dev/null 2>&1; then :
$EGREP "wxWidgets built with GTK3" >/dev/null 2>&1; then :
enable_gtk3=yes
else
enable_gtk3=no

View File

@@ -72,10 +72,10 @@ AC_SUBST([WX_LIBS])
AC_MSG_CHECKING([for gtk3 use in wxWidgets])
CPPFLAGS="${WX_CXXFLAGS}"
AC_EGREP_CPP(yes,
AC_EGREP_CPP(wxWidgets built with GTK3,
[#include <wx/wx.h>
#if defined(__WXGTK3__)
yes
wxWidgets built with GTK3
#endif
], enable_gtk3=yes, enable_gtk3=no)