* configure.ac: Fix configure for mingw

* configure: Regenerated
        Patch by Marcian Lytwyn <marcian.lytwyn@advcsi.com>


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@38600 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Fred Kiefer 2015-06-04 22:26:55 +00:00
parent 23b53d84c0
commit e02d5747cf
3 changed files with 9 additions and 3 deletions

View file

@ -1,4 +1,10 @@
2015-05-26: Sebastian Reitenbach <sebastia@l00-bugdead-prods.de>
2015-06-05 Fred Kiefer <FredKiefer@gmx.de>
* configure.ac: Fix configure for mingw
* configure: Regenerated
Patch by Marcian Lytwyn <marcian.lytwyn@advcsi.com>
2015-05-26 Sebastian Reitenbach <sebastia@l00-bugdead-prods.de>
* Source/cairo/CairoGState.m
abs -> fabs

2
configure vendored
View file

@ -5752,7 +5752,7 @@ $as_echo_n "checking for wgl... " >&6; }
int
main ()
{
int main() { wglCreateContext(0); }
wglCreateContext(0);
;
return 0;
}

View file

@ -409,7 +409,7 @@ if test "x$enable_wgl" = "xyes"; then
save_libs="$LIBS"
LIBS="$WGL_LIBS"
AC_TRY_LINK([#include <windows.h>], [int main() { wglCreateContext(0); }],
AC_TRY_LINK([#include <windows.h>], [ wglCreateContext(0); ],
[use_wgl=yes], [use_wgl=no])
LIBS="$save_libs"
AC_MSG_RESULT([$use_wgl])