sd/Library_sd.mk | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-)
New commits: commit 6285e9da02445cace8a25d5318c01419ad3d717e Author: Tor Lillqvist <[email protected]> Date: Thu Aug 30 12:57:59 2012 +0300 Use gio only on Linux Change-Id: Ice64f084a04b879ccaec66f9a679f82ab9001547 diff --git a/sd/Library_sd.mk b/sd/Library_sd.mk index c009ed9..35d9002 100644 --- a/sd/Library_sd.mk +++ b/sd/Library_sd.mk @@ -107,10 +107,15 @@ $(eval $(call gb_Library_use_libraries,sd,\ )) $(eval $(call gb_Library_use_externals,sd,\ - gio \ libxml2 \ )) +ifeq ($(OS),LINUX) +$(eval $(call gb_Library_use_externals,sd,\ + gio \ +)) +endif + ifeq ($(OS),WNT) $(eval $(call gb_Library_use_libraries,sd,\ ws2_32 \ _______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
