| 
									
										
										
										
											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], | 
					
						
							|  |  |  | [ | 
					
						
							| 
									
										
										
										
											2014-07-18 00:10:16 +00:00
										 |  |  | 	AC_REQUIRE([AST_PROG_SED])dnl | 
					
						
							| 
									
										
										
										
											2014-06-20 21:59:08 +00:00
										 |  |  | 	if test "x${PBX_$1}" != "x1" -a "${USE_$1}" != "no"; then | 
					
						
							|  |  |  | 		PBX_$1=0 | 
					
						
							|  |  |  | 		AC_PATH_TOOL(CONFIG_$1, $2, No, [${$1_DIR}/bin:$PATH]) | 
					
						
							|  |  |  | 		if test ! "x${CONFIG_$1}" = xNo; then | 
					
						
							| 
									
										
										
										
											2017-11-17 11:38:48 -05:00
										 |  |  | 			$1_INCLUDE=$(${CONFIG_$1} m4_default([$3],[--cflags])) | 
					
						
							| 
									
										
										
										
											2018-04-04 11:02:06 -04:00
										 |  |  | 			$1_INCLUDE=$(echo ${$1_INCLUDE} | $SED -e "s|-I|-I${$1_DIR}|g" -e "s|-std=c99||g") | 
					
						
							| 
									
										
										
										
											2014-06-20 21:59:08 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-17 11:38:48 -05:00
										 |  |  | 			$1_LIB=$(${CONFIG_$1} m4_default([$4],[--libs])) | 
					
						
							| 
									
										
										
										
											2014-06-20 21:59:08 +00:00
										 |  |  | 			$1_LIB=$(echo ${$1_LIB} | $SED -e "s|-L|-L${$1_DIR}|g") | 
					
						
							| 
									
										
										
										
											2008-10-20 04:59:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-11-17 11:38:48 -05:00
										 |  |  | 			m4_ifval([$5], [ | 
					
						
							| 
									
										
										
										
											2014-06-20 21:59:08 +00:00
										 |  |  | 				saved_cppflags="${CPPFLAGS}" | 
					
						
							|  |  |  | 				CPPFLAGS="${CPPFLAGS} ${$1_INCLUDE}" | 
					
						
							| 
									
										
										
										
											2008-10-20 04:59:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-20 21:59:08 +00:00
										 |  |  | 				saved_libs="${LIBS}" | 
					
						
							|  |  |  | 				LIBS=${$1_LIB} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				AC_LINK_IFELSE( | 
					
						
							|  |  |  | 					[ AC_LANG_PROGRAM( [ $5 ], [ $6; ])], | 
					
						
							|  |  |  | 					[ PBX_$1=1 AC_DEFINE([HAVE_$1], 1, | 
					
						
							| 
									
										
										
										
											2017-11-17 11:38:48 -05:00
										 |  |  | 						[Define if your system has the $1 libraries.])], | 
					
						
							| 
									
										
										
										
											2014-06-20 21:59:08 +00:00
										 |  |  | 					[] | 
					
						
							|  |  |  | 				) | 
					
						
							|  |  |  | 				CPPFLAGS="${saved_cppflags}" | 
					
						
							|  |  |  | 				LIBS="${saved_libs}" | 
					
						
							| 
									
										
										
										
											2017-11-17 11:38:48 -05:00
										 |  |  | 			], [ | 
					
						
							| 
									
										
										
										
											2014-06-20 21:59:08 +00:00
										 |  |  | 				PBX_$1=1 | 
					
						
							|  |  |  | 				AC_DEFINE([HAVE_$1], 1, [Define if your system has the $1 libraries.]) | 
					
						
							| 
									
										
										
										
											2017-11-17 11:38:48 -05:00
										 |  |  | 			]) | 
					
						
							| 
									
										
										
										
											2014-06-20 21:59:08 +00:00
										 |  |  | 		fi | 
					
						
							| 
									
										
										
										
											2008-10-20 04:59:04 +00:00
										 |  |  | 	fi | 
					
						
							|  |  |  | ]) |