build: Fix the Win32 platform test for GLES1

We want to bail out if trying to configure Cogl with GLES1 on Windows.
Not the opposite.
This commit is contained in:
Damien Lespiau 2011-05-12 14:26:54 +01:00
parent 25cd2e12f9
commit 0ac8135b87

View File

@ -307,7 +307,7 @@ AC_ARG_ENABLE(
)
AS_IF([test "x$enable_gles1" = "xyes"],
[
AS_IF([test "x$platform_win32" != "xyes"],
AS_IF([test "x$platform_win32" = "xyes"],
[AC_MSG_ERROR([GLES 1 not available for win32])])
DRIVER_COUNT=$((DRIVER_COUNT + 1))