diff options
author | Björn-Egil Dahlberg <[email protected]> | 2012-04-27 19:13:15 +0200 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2012-04-27 19:13:15 +0200 |
commit | 57dffc2e9adffd5834a18f837b7d06edf8de8e92 (patch) | |
tree | bba3769ccaef5b763d2c68ea915cc569ee25f634 /lib/wx/configure.in | |
parent | f73c09acbb61425e26093c44889ebce3582c0280 (diff) | |
parent | 806798d6beda18ddec29b7f4ed09b3ea6d75c532 (diff) | |
download | otp-57dffc2e9adffd5834a18f837b7d06edf8de8e92.tar.gz otp-57dffc2e9adffd5834a18f837b7d06edf8de8e92.tar.bz2 otp-57dffc2e9adffd5834a18f837b7d06edf8de8e92.zip |
Merge branch 'egil/fix-compiler-warnings' into maint
* egil/fix-compiler-warnings:
erl_docgen: Do not overflow images for pdf doc gen
kernel: Fix missing documentation link anchors
megaco: Fix parallel make for behaviours
inets: Fix parallel make for behaviours
ssh: Fix parallel make for behaviours
eunit: Fix parallel make for behaviours
ssl: Fix parallel make for behaviours
wx: configure.in needs AC_LANG_SOURCE
gs: Suppress ignored result warning
erts: Remove unused variable
Diffstat (limited to 'lib/wx/configure.in')
-rwxr-xr-x | lib/wx/configure.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/wx/configure.in b/lib/wx/configure.in index b27e114a3d..8e5f696bc7 100755 --- a/lib/wx/configure.in +++ b/lib/wx/configure.in @@ -571,7 +571,7 @@ if test X"$WX_HAVE_STATIC_LIBS" = X"true" ; then LIBS=$WX_LIBS_STATIC fi -AC_LINK_IFELSE([ +AC_LINK_IFELSE([AC_LANG_SOURCE([ #ifdef WIN32 # include <windows.h> # include <gl/gl.h> @@ -583,6 +583,7 @@ AC_LINK_IFELSE([ #include "wx/wx.h" #include "wx/stc/stc.h" #include "wx/glcanvas.h" + ]) class MyApp : public wxApp { |