[asterisk-bugs] [Asterisk 0014720]: make install can't install sounds file on Mac OS X 10.5

Asterisk Bug Tracker noreply at bugs.digium.com
Mon Mar 23 01:02:13 CDT 2009


The following issue has been SUBMITTED. 
====================================================================== 
http://bugs.digium.com/view.php?id=14720 
====================================================================== 
Reported By:                macli
Assigned To:                
====================================================================== 
Project:                    Asterisk
Issue ID:                   14720
Category:                   General
Reproducibility:            always
Severity:                   minor
Priority:                   normal
Status:                     new
Asterisk Version:           1.6.1-rc1 
Regression:                 No 
SVN Branch (only for SVN checkouts, not tarball releases): 1.6.1 
SVN Revision (number only!):  
Request Review:              
====================================================================== 
Date Submitted:             2009-03-23 01:02 CDT
Last Modified:              2009-03-23 01:02 CDT
====================================================================== 
Summary:                    make install can't install sounds file on Mac OS X
10.5
Description: 
On my Mac OS X 10.5, wget and fetch is not installed by default, but curl
is installed by default, During make install, there is  error message 
indicating sounds file could not installed and stopped the installation
process, I could make menuselect to not install sounds file , and  finish
the installation process, but I think It would be nice that the
installation process can be as smooth as possible, so I provided following
configure.ac patch to add curl as alternative download program.

--- configure.ac.orig   2009-03-22 21:49:46.000000000 -0700
+++ configure.ac        2009-03-22 22:48:13.000000000 -0700
@@ -162,13 +162,16 @@
 AC_PATH_PROG([LN], [ln], :)
 AC_PATH_PROG([DOT], [dot], :)
 AC_PATH_PROG([WGET], [wget], :)
+AC_PATH_PROG([FETCH], [fetch], [:])
+AC_PATH_PROG([CURL], [curl], [:])
 AC_PATH_PROG([RUBBER], [rubber], :)
 AC_PATH_PROG([KPATHSEA], [kpsewhich], :)
 if test "${WGET}" != ":" ; then
   DOWNLOAD=${WGET}
-else
-  AC_PATH_PROG([FETCH], [fetch], [:])
+elif test "${FETCH}" != ":" ; then
   DOWNLOAD=${FETCH}
+else
+  DOWNLOAD=${CURL}
 fi
 AC_SUBST(DOWNLOAD)


====================================================================== 

Issue History 
Date Modified    Username       Field                    Change               
====================================================================== 
2009-03-23 01:02 macli          Asterisk Version          => 1.6.1-rc1       
2009-03-23 01:02 macli          Regression                => No              
2009-03-23 01:02 macli          SVN Branch (only for SVN checkouts, not tarball
releases) => 1.6.1           
======================================================================




More information about the asterisk-bugs mailing list