mirror of
				https://github.com/asterisk/asterisk.git
				synced 2025-10-31 10:47:18 +00:00 
			
		
		
		
	Asterisk requires GNU C extensions. On some systems certain libraries may incorrectly push -std=c99 into CFLAGS, thus breaking the build. This change causes that flag to be stripped so the Asterisk build is not broken by those libraries. This change is made for both pkgconfig and tool based libraries. ASTERISK-27629 #close Change-Id: I13389613b194abbac77becf90cd950dc168704db
		
			
				
	
	
		
			17 lines
		
	
	
		
			481 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			481 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # Check for pkg-config component $2:
 | |
| # AST_PKG_CONFIG_CHECK([package], [component])
 | |
| AC_DEFUN([AST_PKG_CONFIG_CHECK],
 | |
| [
 | |
|    if test "x${PBX_$1}" != "x1" -a "${USE_$1}" != "no"; then
 | |
|       PKG_CHECK_MODULES($1, $2, [
 | |
|             PBX_$1=1
 | |
|             $1_INCLUDE=$(echo ${$1_CFLAGS} | $SED -e "s|-std=c99||g")
 | |
|             $1_LIB="$$1_LIBS"
 | |
|             AC_DEFINE([HAVE_$1], 1, [Define if your system has the $1 libraries.])
 | |
|          ], [
 | |
|             PBX_$1=0
 | |
|          ]
 | |
|       )
 | |
|    fi
 | |
| ])
 |