summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2010-12-26 21:17:02 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2010-12-26 21:17:02 +0000
commitecf3c1a322b407e24ebb2aadd74c25aaad3bf36a (patch)
treede7100056298a19111c63df9193b4158e00e3b35 /configure.ac
parent5504173bf8e95ebdfbe86774b76abf7946dbbaa6 (diff)
Merged revisions 299752 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.8 ........ r299752 | tilghman | 2010-12-26 15:15:58 -0600 (Sun, 26 Dec 2010) | 2 lines Properly quote path on Darwin. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@299754 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index 593b5c747..447580f4d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -89,10 +89,10 @@ case "${host_os}" in
darwin*)
AC_PREFIX_DEFAULT([/usr/local])
if test ${prefix} = 'NONE'; then
- astlibdir=/Library/Application Support/Asterisk/Modules
- astvarlibdir=/Library/Application Support/Asterisk
+ astlibdir='/Library/Application Support/Asterisk/Modules'
+ astvarlibdir='/Library/Application Support/Asterisk'
astlogdir=/Library/Logs/Asterisk
- astvarrundir=/Library/Application Support/Asterisk/Run
+ astvarrundir='/Library/Application Support/Asterisk/Run'
fi
AC_DEFINE([AST_POLL_COMPAT], 1, [Define to 1 if internal poll should be used.])
AC_DEFINE([_DARWIN_UNLIMITED_SELECT], 1, [Define to 1 if running on Darwin.])