Changeset 1015
- Timestamp:
- 05/21/05 15:10:16 (3 years ago)
- Files:
-
- trunk/support/autoconf.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/support/autoconf.php
r1012 r1015 1 <pre>2 1 <?php 3 2 … … 25 24 function println_red($text) 26 25 { 27 echo "<span style='color: red;'>{$text}</span>\n"; 26 // echo "<span style='color: red;'>{$text}</span>\n"; 27 echo "{$text}\n"; 28 28 } 29 29 function println_orange($text) 30 30 { 31 echo "<span style='color: orange;'>{$text}</span>\n"; 31 // echo "<span style='color: orange;'>{$text}</span>\n"; 32 echo "{$text}\n"; 32 33 } 33 34 function scan_for_utility($name, $executable, $utilityname, $required = true, $recommended_msg = '') … … 50 51 { 51 52 echo "{$name} found at {$path}.\n"; 52 add_option_to_configfile($utilityname, $path);53 add_option_to_configfile($utilityname, "'{$path}'"); 53 54 } 54 55 } … … 129 130 $magick_base = dirname($magick); 130 131 echo "ImageMagick found in {$magick_base}.\n"; 131 add_option_to_configfile('utility_imagemagick_base', " {$magick_base}/");132 add_option_to_configfile('utility_imagemagick_base', "'{$magick_base}/'"); 132 133 } 133 134 … … 156 157 ?> 157 158 ---------------------------------------------------------------------------- 158 </pre>
