From d5851c8bf98dd3cd6a313b87a4c91ff84c0aee9a Mon Sep 17 00:00:00 2001 From: Chun-wei Fan Date: Wed, 16 May 2012 18:35:27 +0800 Subject: [PATCH] Visual C++ support: Fix clutter.def generation Some Windows-specific functions were not exported due to this problem. --- build/win32/vs9/clutter.vsprops | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/win32/vs9/clutter.vsprops b/build/win32/vs9/clutter.vsprops index aa7c3a5..87afc1c 100644 --- a/build/win32/vs9/clutter.vsprops +++ b/build/win32/vs9/clutter.vsprops @@ -275,14 +275,14 @@ copy ..\..\..\clutter\cally\cally-util.h $(OutDir)\include\clutter-$(ClutterApiV Name="GenerateClutterDef" Value=" echo EXPORTS > ..\..\..\clutter\clutter.def - cl -EP -DHAVE_CAIRO -DHAVE_CLUTTER_WIN32 -DCLUTTER_ENABLE_EXPERIMENTAL_API ..\..\..\clutter\clutter.symbols >> ..\..\..\clutter\clutter.def + cl -EP -DHAVE_CAIRO -DCLUTTER_WINDOWING_WIN32 -DCLUTTER_ENABLE_EXPERIMENTAL_API ..\..\..\clutter\clutter.symbols >> ..\..\..\clutter\clutter.def " />