 7ae8d27bbe
			
		
	
	7ae8d27bbe
	
	
	
		
			
			port number. git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@15401 ec53bebd-3082-4978-b11e-865c3cabbd6b
		
			
				
	
	
		
			27 lines
		
	
	
		
			713 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			713 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| dnl $Id$
 | |
| dnl
 | |
| dnl test if getaddrinfo can handle numeric services
 | |
| 
 | |
| AC_DEFUN([rk_BROKEN_GETADDRINFO],[
 | |
| AC_CACHE_CHECK([if getaddrinfo handles numeric services], ac_cv_func_getaddrinfo_numserv,
 | |
| AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <stdio.h>
 | |
| #include <sys/types.h>
 | |
| #include <sys/socket.h>
 | |
| #include <netdb.h>
 | |
| 
 | |
| int
 | |
| main(int argc, char **argv)
 | |
| {
 | |
| 	struct addrinfo hints, *ai;
 | |
| 	memset(&hints, 0, sizeof(hints));
 | |
| 	hints.ai_flags = AI_PASSIVE;
 | |
| 	hints.ai_socktype = SOCK_STREAM;
 | |
| 	hints.ai_family = PF_UNSPEC;
 | |
| 	if(getaddrinfo(NULL, "17", &hints, &ai) != 0)
 | |
| 		return 1;
 | |
| 	if(getaddrinfo(NULL, "0", &hints, &ai) != 0)
 | |
| 		return 1;
 | |
| 	return 0;
 | |
| }
 | |
| ]])],[ac_cv_func_getaddrinfo_numserv=yes],[ac_cv_func_getaddrinfo_numserv=no]))])
 |