From b54f53743ec0db0931d369c2b68f1cf72962b454 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Thu, 21 Feb 2013 15:27:03 +0100 Subject: [PATCH] Platform: expose MAGNUM_USE_HARFBUZZ in magnum-info utility. --- src/Platform/magnum-info.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/Platform/magnum-info.cpp b/src/Platform/magnum-info.cpp index 8418c8283..f3477c265 100644 --- a/src/Platform/magnum-info.cpp +++ b/src/Platform/magnum-info.cpp @@ -41,6 +41,9 @@ MagnumInfo::MagnumInfo(int& argc, char** argv): WindowlessGlxApplication(argc, a { Debug d; d << "Compilation flags:"; + #ifdef CORRADE_GCC46_COMPATIBILITY + d << "CORRADE_GCC46_COMPATIBILITY"; + #endif #ifdef MAGNUM_TARGET_GLES d << "MAGNUM_TARGET_GLES"; #endif @@ -53,8 +56,8 @@ MagnumInfo::MagnumInfo(int& argc, char** argv): WindowlessGlxApplication(argc, a #ifdef MAGNUM_TARGET_NACL d << "MAGNUM_TARGET_NACL"; #endif - #ifdef CORRADE_GCC46_COMPATIBILITY - d << "CORRADE_GCC46_COMPATIBILITY"; + #ifdef MAGNUM_USE_HARFBUZZ + d << "MAGNUM_USE_HARFBUZZ"; #endif } Debug() << "";