[srvx-commits] CVS: services/src config.h.in,1.27,1.28 recdb.c,1.33,1.34 recdb.h,1.16,1.17 tools.c,1
Brought to you by:
entrope
From: Entrope <en...@us...> - 2001-10-03 00:57:49
|
Update of /cvsroot/srvx/services/src In directory usw-pr-cvs1:/tmp/cvs-serv19385/src Modified Files: config.h.in recdb.c recdb.h tools.c Log Message: get rid of further uses of HAVE_ansihdr_H, and document the list of accepted ANSI headers Index: config.h.in =================================================================== RCS file: /cvsroot/srvx/services/src/config.h.in,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -r1.27 -r1.28 *** config.h.in 2001/10/02 16:04:36 1.27 --- config.h.in 2001/10/03 00:57:46 1.28 *************** *** 40,46 **** #undef HAVE_BCOPY - /* Define if you have the <ctype.h> header file. */ - #undef HAVE_CTYPE_H - /* Define if you have the `dcgettext' function. */ #undef HAVE_DCGETTEXT --- 40,43 ---- *************** *** 52,58 **** #undef HAVE_DMALLOC_H - /* Define if you have the <errno.h> header file. */ - #undef HAVE_ERRNO_H - /* Define if you have the <fcntl.h> header file. */ #undef HAVE_FCNTL_H --- 49,52 ---- *************** *** 139,145 **** #undef HAVE_MALLOC_H - /* Define if you have the <math.h> header file. */ - #undef HAVE_MATH_H - /* Define if you have the `memcpy' function. */ #undef HAVE_MEMCPY --- 133,136 ---- *************** *** 202,208 **** #undef HAVE_SETENV - /* Define if you have the <setjmp.h> header file. */ - #undef HAVE_SETJMP_H - /* Define if you have the `setlocale' function. */ #undef HAVE_SETLOCALE --- 193,196 ---- *************** *** 211,217 **** #undef HAVE_SETRLIMIT - /* Define if you have the <signal.h> header file. */ - #undef HAVE_SIGNAL_H - /* Define if struct sockaddr_in contains a sin_len field */ #undef HAVE_SIN_LEN --- 199,202 ---- *************** *** 220,226 **** #undef HAVE_SOCKET - /* Define if you have the <stdarg.h> header file. */ - #undef HAVE_STDARG_H - /* Define if you have the <stddef.h> header file. */ #undef HAVE_STDDEF_H --- 205,208 ---- *************** *** 229,235 **** #undef HAVE_STDINT_H - /* Define if you have the <stdio.h> header file. */ - #undef HAVE_STDIO_H - /* Define if you have the <stdlib.h> header file. */ #undef HAVE_STDLIB_H --- 211,214 ---- *************** *** 312,318 **** /* Define if you have the <sys/types.h> header file. */ #undef HAVE_SYS_TYPES_H - - /* Define if you have the <time.h> header file. */ - #undef HAVE_TIME_H /* Define if you have the `tsearch' function. */ --- 291,294 ---- Index: recdb.c =================================================================== RCS file: /cvsroot/srvx/services/src/recdb.c,v retrieving revision 1.33 retrieving revision 1.34 diff -C2 -r1.33 -r1.34 *** recdb.c 2001/10/02 16:04:36 1.33 --- recdb.c 2001/10/03 00:57:46 1.34 *************** *** 20,35 **** #include "config.h" - #ifdef HAVE_CTYPE_H #include <ctype.h> - #endif - #ifdef HAVE_SETJMP_H #include <setjmp.h> - #endif - #ifdef HAVE_STDIO_H #include <stdio.h> - #endif - #ifdef HAVE_STDLIB_H #include <stdlib.h> ! #endif #include "dict.h" #include "recdb.h" --- 20,28 ---- #include "config.h" #include <ctype.h> #include <setjmp.h> #include <stdio.h> #include <stdlib.h> ! #include "dict.h" #include "recdb.h" Index: recdb.h =================================================================== RCS file: /cvsroot/srvx/services/src/recdb.h,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -r1.16 -r1.17 *** recdb.h 2001/03/30 21:20:10 1.16 --- recdb.h 2001/10/03 00:57:46 1.17 *************** *** 24,33 **** #include "config.h" - #ifdef HAVE_STDIO_H #include <stdio.h> - #endif - #ifdef HAVE_STRING_H #include <string.h> - #endif #include "dict.h" --- 24,29 ---- Index: tools.c =================================================================== RCS file: /cvsroot/srvx/services/src/tools.c,v retrieving revision 1.96 retrieving revision 1.97 diff -C2 -r1.96 -r1.97 *** tools.c 2001/09/27 21:58:07 1.96 --- tools.c 2001/10/03 00:57:46 1.97 *************** *** 20,43 **** #include "config.h" - #ifdef HAVE_CTYPE_H #include <ctype.h> - #endif - #ifdef HAVE_NETDB_H - #include <netdb.h> - #endif - #ifdef HAVE_STDIO_H #include <stdio.h> - #endif - #ifdef HAVE_STDLIB_H #include <stdlib.h> - #endif - #ifdef HAVE_STRING_H #include <string.h> #endif #ifdef HAVE_SYS_TYPES_H #include <sys/types.h> - #endif - #ifdef HAVE_TIME_H - #include <time.h> #endif #ifdef HAVE_SYS_SOCKET_H --- 20,33 ---- #include "config.h" #include <ctype.h> #include <stdio.h> #include <stdlib.h> #include <string.h> + #include <time.h> + #ifdef HAVE_NETDB_H + #include <netdb.h> #endif #ifdef HAVE_SYS_TYPES_H #include <sys/types.h> #endif #ifdef HAVE_SYS_SOCKET_H |