diff options
author | Björn-Egil Dahlberg <[email protected]> | 2012-04-20 18:42:55 +0200 |
---|---|---|
committer | Björn-Egil Dahlberg <[email protected]> | 2012-04-27 19:11:56 +0200 |
commit | 05e43f5b90a11222993d2e64a9f7c9a5c86c9598 (patch) | |
tree | fec666aaf8f127efb11229736fed2898206927a8 /lib | |
parent | d66aa79613e1bc4bdb494425cf693eb652a9e424 (diff) | |
download | otp-05e43f5b90a11222993d2e64a9f7c9a5c86c9598.tar.gz otp-05e43f5b90a11222993d2e64a9f7c9a5c86c9598.tar.bz2 otp-05e43f5b90a11222993d2e64a9f7c9a5c86c9598.zip |
wx: configure.in needs AC_LANG_SOURCE
Diffstat (limited to 'lib')
-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 { |