Skip to content
Snippets Groups Projects
Commit ecf3c1a3 authored by Tilghman Lesher's avatar Tilghman Lesher
Browse files

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
parent 5504173b
Branches
Tags
No related merge requests found
#! /bin/sh #! /bin/sh
# From configure.ac Revision: 298819 . # From configure.ac Revision: 298961 .
# Guess values for system-dependent variables and create Makefiles. # Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.65 for asterisk trunk. # Generated by GNU Autoconf 2.65 for asterisk trunk.
# #
...@@ -4721,10 +4721,10 @@ case "${host_os}" in ...@@ -4721,10 +4721,10 @@ case "${host_os}" in
darwin*) darwin*)
   
if test ${prefix} = 'NONE'; then if test ${prefix} = 'NONE'; then
astlibdir=/Library/Application Support/Asterisk/Modules astlibdir='/Library/Application Support/Asterisk/Modules'
astvarlibdir=/Library/Application Support/Asterisk astvarlibdir='/Library/Application Support/Asterisk'
astlogdir=/Library/Logs/Asterisk astlogdir=/Library/Logs/Asterisk
astvarrundir=/Library/Application Support/Asterisk/Run astvarrundir='/Library/Application Support/Asterisk/Run'
fi fi
   
$as_echo "#define AST_POLL_COMPAT 1" >>confdefs.h $as_echo "#define AST_POLL_COMPAT 1" >>confdefs.h
......
...@@ -89,10 +89,10 @@ case "${host_os}" in ...@@ -89,10 +89,10 @@ case "${host_os}" in
darwin*) darwin*)
AC_PREFIX_DEFAULT([/usr/local]) AC_PREFIX_DEFAULT([/usr/local])
if test ${prefix} = 'NONE'; then if test ${prefix} = 'NONE'; then
astlibdir=/Library/Application Support/Asterisk/Modules astlibdir='/Library/Application Support/Asterisk/Modules'
astvarlibdir=/Library/Application Support/Asterisk astvarlibdir='/Library/Application Support/Asterisk'
astlogdir=/Library/Logs/Asterisk astlogdir=/Library/Logs/Asterisk
astvarrundir=/Library/Application Support/Asterisk/Run astvarrundir='/Library/Application Support/Asterisk/Run'
fi fi
AC_DEFINE([AST_POLL_COMPAT], 1, [Define to 1 if internal poll should be used.]) 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.]) AC_DEFINE([_DARWIN_UNLIMITED_SELECT], 1, [Define to 1 if running on Darwin.])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment