diff options
author | Steve Price <steve@FreeBSD.org> | 1999-06-06 16:38:43 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 1999-06-06 16:38:43 +0000 |
commit | 1f9a89c9b6fa3e6844f4898e2925d3e2f3a96535 (patch) | |
tree | ea6049bcbe38a54cd7409acde3a0c39b82b435d4 /audio/wsoundprefs/files/patch-ac | |
parent | Just in case someone wants to turn on floppyd support, fixup the (diff) |
Add another path to look for the sound sets.
PR: 11940
Submitted by: maintainer
Notes
Notes:
svn path=/head/; revision=19246
Diffstat (limited to 'audio/wsoundprefs/files/patch-ac')
-rw-r--r-- | audio/wsoundprefs/files/patch-ac | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/audio/wsoundprefs/files/patch-ac b/audio/wsoundprefs/files/patch-ac new file mode 100644 index 000000000000..f9cd6cb76e96 --- /dev/null +++ b/audio/wsoundprefs/files/patch-ac @@ -0,0 +1,18 @@ +--- src/SoundPaths.c.orig Sun May 30 00:08:59 1999 ++++ src/SoundPaths.c Sun May 30 00:13:22 1999 +@@ -82,6 +82,7 @@ + wwarning(_("bad value in option SoundPath. Using default path list")); + addPathToList(panel->sndL, -1, "~/GNUstep/Library/WindowMaker/Sounds"); + addPathToList(panel->sndL, -1, "/usr/local/share/WindowMaker/Sounds"); ++ addPathToList(panel->sndL, -1, "/usr/X11R6/share/WindowMaker/Sounds"); + } else { + for (i=0; i<PLGetNumberOfElements(array); i++) { + val = PLGetArrayElement(array, i); +@@ -95,6 +96,7 @@ + wwarning(_("bad value in option SoundSetPath. Using default path list")); + addPathToList(panel->sndsetL, -1, "~/GNUstep/Library/WindowMaker/SoundSets"); + addPathToList(panel->sndsetL, -1, "/usr/local/share/WindowMaker/SoundSets"); ++ addPathToList(panel->sndsetL, -1, "/usr/X11R6/share/WindowMaker/SoundSets"); + } else { + for (i=0; i<PLGetNumberOfElements(array); i++) { + val = PLGetArrayElement(array, i); |