Fix documentation generation error

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@21885 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-Macdonald 2005-10-27 07:41:04 +00:00
parent 622d4be9ae
commit 6fd11aeb72
2 changed files with 10 additions and 4 deletions

View file

@ -1,3 +1,9 @@
2005-10-27 Richard Frith-Macdonald <rfm@gnu.org>
* Tools/AGSParser.m: Fix error setting version numbers for the
various standards. Was causing generation of html erroneously
saying that things were in neither openstep nor macos-x
2005-10-26 Richard Frith-Macdonald <rfm@gnu.org>
* Source/NSPathUtilities.m: Drop 'make' style config file parsing

View file

@ -3507,22 +3507,22 @@ fail:
else if ([top objectForKey: @"NotOpenStep"]
&& [top objectForKey: @"NotMacOS-X"])
{
vInfo = @" gvadd=\"0.0\""; // GNUstep
vInfo = @" gvadd=\"0.0.0\""; // GNUstep
}
else if ([top objectForKey: @"NotOpenStep"]
&& ![top objectForKey: @"NotMacOS-X"])
{
vInfo = @" ovadd=\"10.0\""; // MacOS-X
vInfo = @" ovadd=\"10.0.0\""; // MacOS-X
}
else if (![top objectForKey: @"NotOpenStep"]
&& [top objectForKey: @"NotMacOS-X"])
{
vInfo = @" ovadd=\"0.0\" ovrem=\"4.0\""; // OpenStep only
vInfo = @" ovadd=\"1.0.0\" ovrem=\"4.0.0\""; // OpenStep only
}
else if ([top objectForKey: @"OpenStep"]
&& ![top objectForKey: @"NotMacOS-X"])
{
vInfo = @" ovadd=\"0.0\""; // OpenStep
vInfo = @" ovadd=\"1.0.0\""; // OpenStep
}
if (vInfo != nil)
{