From 896cfc112b35f301565a17f0aa00ffa8c878c2d4 Mon Sep 17 00:00:00 2001 From: Amar Takhar Date: Wed, 5 Mar 2008 16:50:14 +0000 Subject: [PATCH] Wrap ass/ass.h with __WINDOWS__ as the UNIX build uses the system version. Originally committed to SVN as r1904. --- aegisub/subtitles_provider_libass.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/aegisub/subtitles_provider_libass.h b/aegisub/subtitles_provider_libass.h index fc2c6e5f4..0cdb0ccc3 100644 --- a/aegisub/subtitles_provider_libass.h +++ b/aegisub/subtitles_provider_libass.h @@ -43,7 +43,12 @@ extern "C" { #ifdef __VISUALC__ #include "stdint.h" #endif + +#ifdef __WINDOWS__ #include "../libass/ass.h" +#else +#include "ass/ass.h" +#endif }