diff options
-rw-r--r-- | indra/llrender/llfontfreetypesvg.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/indra/llrender/llfontfreetypesvg.cpp b/indra/llrender/llfontfreetypesvg.cpp index 95cb9eca16..6e2e755a18 100644 --- a/indra/llrender/llfontfreetypesvg.cpp +++ b/indra/llrender/llfontfreetypesvg.cpp @@ -34,9 +34,17 @@ #endif #define NANOSVG_IMPLEMENTATION +#if LL_FREEBSD #include <nanosvg.h> +#else +#include <nanosvg/nanosvg.h> +#endif #define NANOSVGRAST_IMPLEMENTATION +#if LL_FREEBSD #include <nanosvgrast.h> +#else +#include <nanosvg/nanosvgrast.h> +#endif #if LL_WINDOWS #pragma warning (pop) |