Submitted By: Timothy Redaelli - drittz I made some patches to make it compile under FreeBSD using gethostbyaddr_r when supported. git-svn-id: https://pupnp.svn.sourceforge.net/svnroot/pupnp/trunk@165 119443c7-1b9e-41f8-b6fc-b9c35fce742c
		
			
				
	
	
		
			16 lines
		
	
	
		
			233 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			233 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
rm -fr autom4te.cache
 | 
						|
 | 
						|
# Equivalent to 
 | 
						|
#	aclocal 
 | 
						|
#	autoheader 
 | 
						|
#	automake --add-missing --copy
 | 
						|
#	autoconf
 | 
						|
 | 
						|
autoreconf --force --install -Wall -Wno-obsolete $* || exit 1
 | 
						|
 | 
						|
echo "Now run ./configure and then make."
 | 
						|
exit 0
 | 
						|
 |