[Date Prev][Date Next][Thread Prev][Thread Next][Thread Index]

[XaraXtreme-commits] Commit Complete



Commit by  : alex
Repository : xara
Revision   : 1602
Date       : Sat Jul 29 17:35:38 BST 2006

Changed paths:
   M /Trunk/XaraLX/filters/SVGFilter/configure.in

Fix peculiarity in build system when makefile.am changed without configure.in in SVGfilter and building locally, during full moon


Diff:
Index: Trunk/XaraLX/filters/SVGFilter/configure.in
===================================================================
--- Trunk/XaraLX/filters/SVGFilter/configure.in	(revision 1601)
+++ Trunk/XaraLX/filters/SVGFilter/configure.in	(revision 1602)
@@ -41,6 +41,18 @@
     fi
 ])
 
+# Where filters-enable is set, we should take it we have been configured as part
+# of the entire package
+AC_ARG_ENABLE(filters,
+              AS_HELP_STRING([--enable-filters],
+                             [Enable build of the filters]),
+              FiltersEnable="$enableval", FiltersEnable="no")
+
+# Force XarLibEnable on if we are to build the filters
+if test "$FiltersEnable" = "yes"; then
+	export LOCAL_XARLIB_OVERRIDE=yes
+fi
+
 if test "$LOCAL_XARLIB_OVERRIDE" == "yes" ; then
 	LocalXarLibEnable="yes"
 	AC_MSG_WARN("Using local (non-installed) XarLib despite any configuration to the contrary")


Xara