1 /* 2 * Copyright 2001-2004 Brandon Long 3 * All Rights Reserved. 4 * 5 * ClearSilver Templating System 6 * 7 * This code is made available under the terms of the ClearSilver License. 8 * http://www.clearsilver.net/license.hdf 9 * 10 */ 11 12 /* 13 * config file 14 */ 15 16 #ifndef __CS_CONFIG_H_ 17 #define __CS_CONFIG_H_ 1 18 19 @TOP@ 20 21 /* Enable support for HTML Compression (still must be enabled at run time) */ 22 #undef HTML_COMPRESSION 23 24 /* Enable support for X Remote CGI Debugging */ 25 #undef ENABLE_REMOTE_DEBUG 26 27 /********* SYSTEM CONFIG ***************************************************/ 28 /* autoconf/configure should figure all of these out for you */ 29 30 /* Does your system have the snprintf() call? */ 31 #undef HAVE_SNPRINTF 32 33 /* Does your system have the vsnprintf() call? */ 34 #undef HAVE_VSNPRINTF 35 36 /* Does your system have the strtok_r() call? */ 37 #undef HAVE_STRTOK_R 38 39 /* Does your system have the localtime_r() call? */ 40 #undef HAVE_LOCALTIME_R 41 42 /* Does your system have the gmtime_r() call? */ 43 #undef HAVE_GMTIME_R 44 45 /* Does your system have the mkstemp() call? */ 46 #undef HAVE_MKSTEMP 47 48 /* Does your system have regex.h */ 49 #undef HAVE_REGEX 50 51 /* Does your system have pthreads? */ 52 #undef HAVE_PTHREADS 53 54 /* Does your system have lockf ? */ 55 #undef HAVE_LOCKF 56 57 /* Does your system have Berkeley DB v2 ? */ 58 #undef HAVE_DB2 59 60 /* Enable support for gettext message translation */ 61 #undef ENABLE_GETTEXT 62 63 @BOTTOM@ 64 65 #endif /* __CS_CONFIG_H_ */ 66