From ccddec68116fc6403858ebfa13d4a7b1aa3d5278 Mon Sep 17 00:00:00 2001 From: "N.N." Date: Sun, 18 Oct 2009 20:01:19 +0000 Subject: hi gridflow 0.9.5 svn path=/trunk/; revision=12611 --- externals/gridflow/bundled/Base/config.h | 65 ++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 externals/gridflow/bundled/Base/config.h (limited to 'externals/gridflow/bundled/Base/config.h') diff --git a/externals/gridflow/bundled/Base/config.h b/externals/gridflow/bundled/Base/config.h new file mode 100644 index 00000000..bd2a823c --- /dev/null +++ b/externals/gridflow/bundled/Base/config.h @@ -0,0 +1,65 @@ +/* configuration-file */ +#ifndef HAVE_BASE_CONFIG_H_ +#define HAVE_BASE_CONFIG_H_ + +#ifdef _MSC_VER +# ifndef __WIN32__ +# define __WIN32__ +# endif +#endif + +#ifdef __WIN32__ +# ifndef NT +# define NT +# endif +# ifndef MSW +# define MSW +# endif +# ifndef WIN32_LEAN_AND_MEAN +# define WIN32_LEAN_AND_MEAN +# endif +#endif + + + +#ifdef HAVE_CONFIG_GENERIC_H + +# include "Base/configGeneric.h" + +#else /* includes system-specific files */ + +# ifdef __linux__ +# include "Base/configLinux.h" +# endif + +# ifdef __APPLE__ +//# include "Base/configDarwin.h" +# define HAVE_QUICKTIME +# endif + +# ifdef __WIN32__ +# include "Base/configNT.h" +# endif +#endif + +#ifdef NEW_VIDEOFILM +# ifndef FILM_NEW +# define FILM_NEW +# endif +# ifndef VIDEO_NEW +# define VIDEO_NEW +# endif +#endif + +#ifdef HAVE_LIBFTGL +# define FTGL +#endif + +#ifdef HAVE_FFMPEG +# define HAVE_LIBAVCODEC +# define HAVE_LIBAVFORMAT +#elif defined (HAVE_LIBAVCODEC) && defined (HAVE_LIBAVFORMAT) +# define HAVE_FFMPEG +#endif + +#endif /* HAVE_BASE_CONFIG_H_ */ -- cgit v1.2.1