Adjusted the vs9-to-vs8 converter so that status messages won't mix with its converted output.

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@13082 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
ultramage 2008-08-15 11:53:49 +00:00
parent dcc2cdb5da
commit 2e677dbb88

View File

@ -1,14 +1,14 @@
<?php
// Visual Studio 9 to Visual Studio 8 project file converter
// author : theultramage
// version: 4. august 2008
// version: 15. august 2008
?>
<?php
echo "VS9 to VS8 project file converter"."\n";
echo "---------------------------------"."\n";
fprintf(STDERR, "VS9 to VS8 project file converter"."\n");
fprintf(STDERR, "---------------------------------"."\n");
if( @$_SERVER["argc"] < 2 )
{
echo "Usage: {$_SERVER["argv"][0]} file.vcproj"."\n";
fprintf(STDERR, "Usage: {$_SERVER["argv"][0]} file.vcproj"."\n");
exit();
}
@ -17,15 +17,15 @@
if( $data === FALSE )
die("invalid input file '".$input."'");
echo "Converting {$input}...";
fprintf(STDERR, "Converting {$input}...");
foreach( $data as $line )
{
if( strstr($line,'Version="9,00"') !== FALSE )
echo "\t".'Version="8,00"'."\n";
fprintf(STDOUT, "\t".'Version="8,00"'."\n");
else
if( strstr($line,'Version="9.00"') !== FALSE )
echo "\t".'Version="8.00"'."\n";
fprintf(STDOUT, "\t".'Version="8.00"'."\n");
else
if( strstr($line,'TargetFrameworkVersion') !== FALSE )
;
@ -36,8 +36,8 @@
if( strstr($line,'DataExecutionPrevention') !== FALSE )
;
else // default
echo $line;
fprintf(STDOUT, $line);
}
echo "done."."\n";
fprintf(STDERR, "done."."\n");
?>