aboutsummaryrefslogtreecommitdiff
path: root/externals/gridflow/bundled/Base/config.h
diff options
context:
space:
mode:
authorN.N. <matju@users.sourceforge.net>2009-10-18 20:01:19 +0000
committerN.N. <matju@users.sourceforge.net>2009-10-18 20:01:19 +0000
commitccddec68116fc6403858ebfa13d4a7b1aa3d5278 (patch)
tree6b90e41b15bbf2440afa76d53cc436debf5b5c5b /externals/gridflow/bundled/Base/config.h
parenta1fb215b39535805aa19608185d5e52c0f524b42 (diff)
hi gridflow 0.9.5
svn path=/trunk/; revision=12611
Diffstat (limited to 'externals/gridflow/bundled/Base/config.h')
-rw-r--r--externals/gridflow/bundled/Base/config.h65
1 files changed, 65 insertions, 0 deletions
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_ */