mirror of
				https://github.com/strongswan/strongswan.git
				synced 2025-11-04 00:00:51 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			282 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			282 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
LIBTOOLIZE=`which glibtoolize 2>/dev/null`
 | 
						|
case "$LIBTOOLIZE" in
 | 
						|
	/* )	;;
 | 
						|
	*  )	LIBTOOLIZE=`which libtoolize 2>/dev/null`
 | 
						|
		case "$LIBTOOLIZE" in
 | 
						|
			/* )	;;
 | 
						|
			*  )	LIBTOOLIZE=libtoolize
 | 
						|
				;;
 | 
						|
		esac
 | 
						|
		;;
 | 
						|
esac
 | 
						|
 | 
						|
$LIBTOOLIZE --force &&
 | 
						|
aclocal &&
 | 
						|
automake -a &&
 | 
						|
autoconf
 | 
						|
 |