Rename gsnd to gnustep_sndd

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@15599 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2003-01-15 03:17:45 +00:00
parent 972d2bdf45
commit 85d90ce9d3
3 changed files with 14 additions and 9 deletions

View file

@ -176,26 +176,26 @@ static id<GSSoundSvr> the_server = nil;
cmd = RETAIN([[NSSearchPathForDirectoriesInDomains(
GSToolsDirectory, NSSystemDomainMask, YES)
objectAtIndex: 0]
stringByAppendingPathComponent: @"gsnd"]);
stringByAppendingPathComponent: @"gnustep_sndd"]);
#else
cmd = RETAIN([[@GNUSTEP_INSTALL_PREFIX
stringByAppendingPathComponent: @"Tools"]
stringByAppendingPathComponent: @"gsnd"]);
stringByAppendingPathComponent: @"gnustep_sndd"]);
#endif
}
if (recursion == YES || cmd == nil)
{
NSLog(@"Unable to contact sound server - "
@"please ensure that gsnd is running for %@.", description);
@"please ensure that gnustep_sndd is running for %@.", description);
return nil;
}
else
{
NSLog(@"\nI couldn't contact the sound server for %@ -\n"
@"so I'm attempting to to start one - which will take a few seconds.\n"
@"Trying to launch gsnd from %@ or a machine/operating-system subdirectory.\n"
@"It is recommended that you start the sound server (gsnd) when\n"
@"Trying to launch gnustep_sndd from %@ or a machine/operating-system subdirectory.\n"
@"It is recommended that you start the sound server (gnustep_sndd) when\n"
@"your windowing system is started up.\n", description,
[cmd stringByDeletingLastPathComponent]);