From bddaaaec54dbca452a9d49715bcec45aa832d6f4 Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Wed, 26 Sep 2012 09:27:59 -0700 Subject: [PATCH] Add git_version.h and config_windows0.h --- aegisub/build/git_version.h | 3 +++ aegisub/src/config/config_windows0.h | 8 ++++---- 2 files changed, 7 insertions(+), 4 deletions(-) create mode 100644 aegisub/build/git_version.h diff --git a/aegisub/build/git_version.h b/aegisub/build/git_version.h new file mode 100644 index 000000000..86db42140 --- /dev/null +++ b/aegisub/build/git_version.h @@ -0,0 +1,3 @@ +#define BUILD_GIT_VERSION_NUMBER 7009 +#define BUILD_GIT_VERSION_STRING "3.0.0_RC_2" +#define TAGGED_RELEASE 1 diff --git a/aegisub/src/config/config_windows0.h b/aegisub/src/config/config_windows0.h index 0237aadab..3653910aa 100644 --- a/aegisub/src/config/config_windows0.h +++ b/aegisub/src/config/config_windows0.h @@ -66,7 +66,7 @@ // Enable FFMS2 video and audio providers // Requires: FFMS2 SDK -//#define WITH_FFMS2 +#define WITH_FFMS2 #ifdef WITH_FFMS2 #pragma comment(lib, "ffms2.lib") #endif @@ -107,7 +107,7 @@ // FFTW is a very fast library for computing the discrete fourier transform, but is a bit // tricky to get working on Windows, and has the additional problem of being GPL licensed. // Enable this option to use FFTW to get faster rendering of the audio spectrogram -//#define WITH_FFTW3 +#define WITH_FFTW3 #ifdef WITH_FFTW3 #pragma comment(lib,libfftw.lib) #endif @@ -130,14 +130,14 @@ // Enable FontConfig // Requires: fontconfig -//#define WITH_FONTCONFIG +#define WITH_FONTCONFIG #ifdef WITH_FONTCONFIG #pragma comment(lib,"libfontconfig.lib") #endif // Enable libass // Requires: libass -//#define WITH_LIBASS +#define WITH_LIBASS #ifdef WITH_LIBASS #pragma comment(lib, "libass.lib") #endif