vlc | branch: master | Rafaël Carré <[email protected]> | Thu Jan 26 20:13:05 2012 -0500| [e88bb34fb3ad72112176af9b389d6eea676a9418] | committer: Rafaël Carré
Qt4: fix windows build include config.h from headers > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e88bb34fb3ad72112176af9b389d6eea676a9418 --- modules/gui/qt4/adapters/seekpoints.hpp | 4 ++++ modules/gui/qt4/dialogs/external.hpp | 4 ++++ modules/gui/qt4/util/input_slider.hpp | 4 ++++ modules/gui/qt4/variables.hpp | 4 ++++ 4 files changed, 16 insertions(+), 0 deletions(-) diff --git a/modules/gui/qt4/adapters/seekpoints.hpp b/modules/gui/qt4/adapters/seekpoints.hpp index 96ec7b1..0083989 100644 --- a/modules/gui/qt4/adapters/seekpoints.hpp +++ b/modules/gui/qt4/adapters/seekpoints.hpp @@ -22,6 +22,10 @@ #ifndef SEEKPOINTS_HPP #define SEEKPOINTS_HPP +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include <vlc_common.h> #include <vlc_interface.h> #include <vlc_input.h> diff --git a/modules/gui/qt4/dialogs/external.hpp b/modules/gui/qt4/dialogs/external.hpp index 44b0a2a..f0470d9 100644 --- a/modules/gui/qt4/dialogs/external.hpp +++ b/modules/gui/qt4/dialogs/external.hpp @@ -21,6 +21,10 @@ #ifndef QVLC_DIALOGS_EXTERNAL_H_ #define QVLC_DIALOGS_EXTERNAL_H_ 1 +#ifdef HAVE_CONFIG_H +# include <config.h> +#endif + #include <QObject> #include <vlc_common.h> #include "variables.hpp" diff --git a/modules/gui/qt4/util/input_slider.hpp b/modules/gui/qt4/util/input_slider.hpp index 9fb08be..237bcac 100644 --- a/modules/gui/qt4/util/input_slider.hpp +++ b/modules/gui/qt4/util/input_slider.hpp @@ -26,6 +26,10 @@ #ifndef _INPUTSLIDER_H_ #define _INPUTSLIDER_H_ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include <vlc_common.h> #include "timetooltip.hpp" diff --git a/modules/gui/qt4/variables.hpp b/modules/gui/qt4/variables.hpp index 9fe5fb4..99c9859 100644 --- a/modules/gui/qt4/variables.hpp +++ b/modules/gui/qt4/variables.hpp @@ -21,6 +21,10 @@ #ifndef QVLC_VARIABLES_H_ #define QVLC_VARIABLES_H_ 1 +#ifdef HAVE_CONFIG_H +# include <config.h> +#endif + #include <QObject> #include <vlc_common.h> _______________________________________________ vlc-commits mailing list [email protected] http://mailman.videolan.org/listinfo/vlc-commits
