[asterisk-bugs] [JIRA] (ASTERISK-20749) Cannot enable res_timing_kqueue via "make menuselect"

Matt Jordan (JIRA) noreply at issues.asterisk.org
Tue Dec 4 08:25:45 CST 2012


    [ https://issues.asterisk.org/jira/browse/ASTERISK-20749?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=200386#comment-200386 ] 

Matt Jordan commented on ASTERISK-20749:
----------------------------------------

This does appear to be an error in the configure script.  Your configure log demonstrated that it failed to find launchd on your system; however, PBX_LAUNCHD was still set to true.  The relevant portion of the configure script is below:

{noformat}
PBX_LAUNCHD=0
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
fi
AC_SUBST(PBX_LAUNCHD)
{noformat}

That should probably be:

{noformat}
PBX_LAUNCHD=0
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.]))
  if test "${HAVE_SBIN_LAUNCHD}" = 1; then
    PBX_LAUNCHD=1
  fi
fi
AC_SUBST(PBX_LAUNCHD)
{noformat}
                
> Cannot enable res_timing_kqueue via "make menuselect"
> -----------------------------------------------------
>
>                 Key: ASTERISK-20749
>                 URL: https://issues.asterisk.org/jira/browse/ASTERISK-20749
>             Project: Asterisk
>          Issue Type: Bug
>      Security Level: None
>          Components: Core/BuildSystem
>    Affects Versions: 11.0.1
>         Environment: FreeBSD 9.1 (clean - installed just to report this bug). Latest Asterisk downloaded from web site.
>            Reporter: Oleg Baranov
>            Assignee: Oleg Baranov
>            Severity: Minor
>         Attachments: config.log
>
>
> res_timing_kqueue is marked as conflicting with launchd which does not even exist in FreeBSD.
> Taking the dependency out of menuselect-tree file workarounds the issue.
> {noformat}
>                        **************************************************
>                            Asterisk Module and Build Option Selection
>                        **************************************************
>                                        Press 'h' for help.
>                                       XXX res_xmpp
>                                           --- extended ---
>                                       [*] res_ael_share
>                                       XXX res_config_ldap
>                                       XXX res_config_pgsql
>                                       XXX res_config_sqlite
>                                       XXX res_corosync
>                                       XXX res_fax_spandsp
>                                       [*] res_http_websocket
>                                       [*] res_phoneprov
>                                       [ ] res_pktccops
>                                       XXX res_snmp
>                                       XXX res_timing_kqueue
>                                       [*] res_timing_pthread
>                                           --- deprecated ---
>                                       XXX res_jabber
>                                 KQueue Timing Interface
>                                 Depends on: kqueue(E)
>                                 Conflicts with: launchd(E)
>                                 Support Level: extended
> {noformat}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira



More information about the asterisk-bugs mailing list