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

@ -1,3 +1,8 @@
2003-01-14 Adam Fedor <fedor@gnu.org>
* Source/NSSound.m ([NSSound +gsnd]): Rename daemon to gnustep_sndd
* Tools/gsnd/GNUmakefile: Idem.
Thu Jan 9 05:17:22 2003 Nicola Pero <n.pero@mi.flashnet.it>
* Source/NSApplication.m ([-_appIconInit]): If no app icon has

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]);

View file

@ -27,17 +27,17 @@ GNUSTEP_MAKEFILES = $(GNUSTEP_SYSTEM_ROOT)/Makefiles
include $(GNUSTEP_MAKEFILES)/common.make
# The applications to be compiled
TOOL_NAME = gsnd
TOOL_NAME = gnustep_sndd
# The source files to be compiled
gsnd_OBJC_FILES = gsnd.m
gnustep_sndd_OBJC_FILES = gsnd.m
ifeq (mingw32, $(GNUSTEP_TARGET_OS))
gsnd_C_FILES = portaudio/pa_common/pa_lib.c \
gnustep_sndd_C_FILES = portaudio/pa_common/pa_lib.c \
portaudio/pa_win_ds/dsound_wrapper.c \
portaudio/pa_win_ds/pa_dsound.c
else
gsnd_C_FILES = portaudio/pa_common/pa_lib.c \
gnustep_sndd_C_FILES = portaudio/pa_common/pa_lib.c \
portaudio/pa_unix_oss/pa_unix_oss.c \
portaudio/pa_common/pa_trace.c
endif