[Jifty-commit] r2820 - jifty/trunk

jifty-commit at lists.jifty.org jifty-commit at lists.jifty.org
Thu Feb 22 22:38:11 EST 2007


Author: ternus
Date: Thu Feb 22 22:38:10 2007
New Revision: 2820

Modified:
   jifty/trunk/Makefile.PL

Log:
YAML.pm is currently required even if YAML::Syck is present.
The Makefile now requires YAML even if you have a C compiler 
and are installing YAML::Syck.



Modified: jifty/trunk/Makefile.PL
==============================================================================
--- jifty/trunk/Makefile.PL	(original)
+++ jifty/trunk/Makefile.PL	Thu Feb 22 22:38:10 2007
@@ -70,6 +70,9 @@
 if (can_cc()) {
     # Always require the Syck bindings if a C compiler is available
     requires('YAML::Syck' => 0.71);
+    requires('YAML' => 0.35); 	# Use YAML::Dump for the moment since YAML.pm segfaults on
+				# reading stupidly long (~20K characters) double-quoted
+				# strings, and we need to produce YAML.pm-readable output.
     requires('JSON::Syck' => 0.15);
 }
 else {


More information about the Jifty-commit mailing list