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:
4
lib-src/FileDialog/configure
vendored
4
lib-src/FileDialog/configure
vendored
@@ -15593,12 +15593,12 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
|||||||
/* end confdefs.h. */
|
/* end confdefs.h. */
|
||||||
#include <wx/wx.h>
|
#include <wx/wx.h>
|
||||||
#if defined(__WXGTK3__)
|
#if defined(__WXGTK3__)
|
||||||
yes
|
wxWidgets built with GTK3
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
_ACEOF
|
_ACEOF
|
||||||
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
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
|
enable_gtk3=yes
|
||||||
else
|
else
|
||||||
enable_gtk3=no
|
enable_gtk3=no
|
||||||
|
@@ -72,10 +72,10 @@ AC_SUBST([WX_LIBS])
|
|||||||
|
|
||||||
AC_MSG_CHECKING([for gtk3 use in wxWidgets])
|
AC_MSG_CHECKING([for gtk3 use in wxWidgets])
|
||||||
CPPFLAGS="${WX_CXXFLAGS}"
|
CPPFLAGS="${WX_CXXFLAGS}"
|
||||||
AC_EGREP_CPP(yes,
|
AC_EGREP_CPP(wxWidgets built with GTK3,
|
||||||
[#include <wx/wx.h>
|
[#include <wx/wx.h>
|
||||||
#if defined(__WXGTK3__)
|
#if defined(__WXGTK3__)
|
||||||
yes
|
wxWidgets built with GTK3
|
||||||
#endif
|
#endif
|
||||||
], enable_gtk3=yes, enable_gtk3=no)
|
], enable_gtk3=yes, enable_gtk3=no)
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user