Merged revisions 301220 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.6.2

........
  r301220 | pabelanger | 2011-01-09 16:38:24 -0500 (Sun, 09 Jan 2011) | 14 lines
  
  SOUND_CACHE_DIR now defaults to empty
  
  Sounds files included in the Asterisk tarball were being ignored and
  re-downloaded.  Users wanting to cache the files can still override the setting
  using the --with-sounds-cache option.
  
  (closes issue #18589)
  Reported by: pabelanger
  Patches:
        issue18589.patch uploaded by pabelanger (license 224)
        Tested by: pabelanger
  
  Review: https://reviewboard.asterisk.org/r/1074/
........


git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@301221 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Paul Belanger
2011-01-09 21:40:34 +00:00
parent d5fa54dee5
commit 30ff299d39
3 changed files with 4 additions and 4 deletions

4
configure vendored
View File

@@ -10925,7 +10925,7 @@ if test "${with_sounds_cache+set}" = set; then :
;;
*)
if test "x${withval}" = "x"; then
SOUNDS_CACHE_DIR="${HOME}/.asterisk_sounds_cache"
:
else
SOUNDS_CACHE_DIR="${withval}"
fi
@@ -10933,7 +10933,7 @@ if test "${with_sounds_cache+set}" = set; then :
esac
else
SOUNDS_CACHE_DIR="${HOME}/.asterisk_sounds_cache"
:
fi