| 
									
										
										
										
											2008-10-20 04:59:04 +00:00
										 |  |  | # Check for a package using $2-config. Similar to AST_EXT_LIB_CHECK, | 
					
						
							|  |  |  | # but use $2-config to determine cflags and libraries to use. | 
					
						
							|  |  |  | # $3 and $4 can be used to replace --cflags and --libs in the request | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # AST_EXT_TOOL_CHECK([package], [tool name], [--cflags], [--libs], [includes], [expression]) | 
					
						
							|  |  |  | AC_DEFUN([AST_EXT_TOOL_CHECK], | 
					
						
							|  |  |  | [ | 
					
						
							|  |  |  |     if test "x${PBX_$1}" != "x1" -a "${USE_$1}" != "no"; then | 
					
						
							|  |  |  | 	PBX_$1=0 | 
					
						
							| 
									
										
										
										
											2010-06-23 20:53:48 +00:00
										 |  |  | 	AC_PATH_TOOL(CONFIG_$1, $2, No, [${$1_DIR}/bin:$PATH]) | 
					
						
							| 
									
										
										
										
											2008-10-20 04:59:04 +00:00
										 |  |  | 	if test ! "x${CONFIG_$1}" = xNo; then | 
					
						
							|  |  |  | 	    if test x"$3" = x ; then A=--cflags ; else A="$3" ; fi | 
					
						
							|  |  |  | 	    $1_INCLUDE=$(${CONFIG_$1} $A) | 
					
						
							|  |  |  | 	    if test x"$4" = x ; then A=--libs ; else A="$4" ; fi | 
					
						
							|  |  |  | 	    $1_LIB=$(${CONFIG_$1} $A) | 
					
						
							|  |  |  | 	    if test x"$5" != x ; then | 
					
						
							|  |  |  | 		saved_cppflags="${CPPFLAGS}" | 
					
						
							|  |  |  | 		if test "x${$1_DIR}" != "x"; then | 
					
						
							|  |  |  | 		    $1_INCLUDE="-I${$1_DIR}/include" | 
					
						
							|  |  |  | 		fi | 
					
						
							|  |  |  | 		CPPFLAGS="${CPPFLAGS} ${$1_INCLUDE}" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-04 18:42:56 +00:00
										 |  |  | 		saved_libs="${LIBS}" | 
					
						
							|  |  |  | 		LIBS="${$1_LIB}" | 
					
						
							| 
									
										
										
										
											2008-10-20 04:59:04 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		AC_LINK_IFELSE( | 
					
						
							|  |  |  | 		    [ AC_LANG_PROGRAM( [ $5 ], | 
					
						
							|  |  |  | 				       [ $6; ] | 
					
						
							|  |  |  | 				       )], | 
					
						
							|  |  |  | 		    [   PBX_$1=1 | 
					
						
							|  |  |  | 			AC_DEFINE([HAVE_$1], 1, [Define if your system has the $1 headers.]) | 
					
						
							|  |  |  | 		    ], | 
					
						
							|  |  |  | 		    [] | 
					
						
							|  |  |  | 		) | 
					
						
							|  |  |  | 		CPPFLAGS="${saved_cppflags}" | 
					
						
							| 
									
										
										
										
											2009-05-04 18:42:56 +00:00
										 |  |  | 		LIBS="${saved_libs}" | 
					
						
							| 
									
										
										
										
											2008-10-20 04:59:04 +00:00
										 |  |  | 	    else | 
					
						
							|  |  |  | 		PBX_$1=1 | 
					
						
							|  |  |  | 		AC_DEFINE([HAVE_$1], 1, [Define if your system has the $1 libraries.]) | 
					
						
							|  |  |  | 	    fi | 
					
						
							|  |  |  | 	fi | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  | ]) |