[asterisk-commits] mjordan: branch 11 r381848 - in /branches/11: ./ configure configure.ac
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Feb 21 16:48:18 CST 2013
Author: mjordan
Date: Thu Feb 21 16:48:14 2013
New Revision: 381848
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=381848
Log:
Properly detect launchd
Asterisk was a little too pro-active in claiming that it found launchd. On
systems without launchd - such as FreeBSD - this resulted in certain items
in Asterisk that conflict with launchd to not be selectable, such as
res_timing_kqueue.
(closes issue ASTERISK-20749)
Reported by: Oleg Baranov
........
Merged revisions 381847 from http://svn.asterisk.org/svn/asterisk/branches/1.8
Modified:
branches/11/ (props changed)
branches/11/configure
branches/11/configure.ac
Propchange: branches/11/
------------------------------------------------------------------------------
Binary property 'branch-1.8-merged' - no diff available.
Modified: branches/11/configure.ac
URL: http://svnview.digium.com/svn/asterisk/branches/11/configure.ac?view=diff&rev=381848&r1=381847&r2=381848
==============================================================================
--- branches/11/configure.ac (original)
+++ branches/11/configure.ac Thu Feb 21 16:48:14 2013
@@ -2303,7 +2303,9 @@
if test "${cross_compiling}" = "no";
then
AC_CHECK_FILE(/sbin/launchd, AC_DEFINE([HAVE_SBIN_LAUNCHD], 1, [Define to 1 if your system has /sbin/launchd.]))
- PBX_LAUNCHD=1
+ if test "${HAVE_SBIN_LAUNCHD}" = 1; then
+ PBX_LAUNCHD=1
+ fi
fi
AC_SUBST(PBX_LAUNCHD)
More information about the asterisk-commits
mailing list