mirror of
				https://github.com/coturn/coturn.git
				synced 2025-11-04 00:41:02 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			361 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			361 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
#
 | 
						|
# This is a script for RFC 5769 STUN protocol check.
 | 
						|
# It checks whether the main code was compiled correctly.
 | 
						|
#
 | 
						|
 | 
						|
if [ -d examples ] ; then
 | 
						|
       cd examples
 | 
						|
fi
 | 
						|
 | 
						|
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/usr/local/lib/
 | 
						|
export DYLD_LIBRARY_PATH=${DYLD_LIBRARY_PATH}:/usr/local/lib/
 | 
						|
 | 
						|
PATH=examples/bin/:bin/:../bin:${PATH} turnutils_rfc5769check $@
 |