mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 08:21:25 +00:00
send informal protocols found by AGSOutput to AGSIndex
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@20090 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
896ff24db8
commit
b3192d68d5
1 changed files with 7 additions and 1 deletions
|
@ -643,6 +643,7 @@ main(int argc, char **argv, char **env)
|
||||||
NSString *opt;
|
NSString *opt;
|
||||||
NSSet *argSet;
|
NSSet *argSet;
|
||||||
NSArray *argsGiven;
|
NSArray *argsGiven;
|
||||||
|
NSArray *informalProtocols = nil;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Overall process in this file is as follows:
|
Overall process in this file is as follows:
|
||||||
|
@ -1390,7 +1391,7 @@ main(int argc, char **argv, char **env)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Only produce linkage if the up link is not empty.
|
* Only produce linkage if the up link is not empty.
|
||||||
* Don't add an up link if this *is* the up link document.
|
* Do not add an up link if this *is* the up link document.
|
||||||
*/
|
*/
|
||||||
if ([up length] > 0 && [up isEqual: file] == NO)
|
if ([up length] > 0 && [up isEqual: file] == NO)
|
||||||
{
|
{
|
||||||
|
@ -1426,6 +1427,7 @@ main(int argc, char **argv, char **env)
|
||||||
[gFiles addObject: [hfile lastPathComponent]];
|
[gFiles addObject: [hfile lastPathComponent]];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
informalProtocols = RETAIN([output informalProtocols]);
|
||||||
#if GS_WITH_GC == 0
|
#if GS_WITH_GC == 0
|
||||||
DESTROY(pool);
|
DESTROY(pool);
|
||||||
#endif
|
#endif
|
||||||
|
@ -1540,6 +1542,10 @@ main(int argc, char **argv, char **env)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (informalProtocols != nil) {
|
||||||
|
[projectRefs addInformalProtocols: informalProtocols];
|
||||||
|
DESTROY(informalProtocols);
|
||||||
|
}
|
||||||
#if GS_WITH_GC == 0
|
#if GS_WITH_GC == 0
|
||||||
DESTROY(arp);
|
DESTROY(arp);
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue