1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
/*
* "$Id: config.h.in,v 1.5 1999/01/07 18:03:17 mike Exp mike $"
*
* Configuration file for HTMLDOC.
* @configure_input@
*
* Copyright 1997-1999 by Michael Sweet.
*
* HTMLDOC is distributed under the terms of the GNU General Public License
* which is described in the file "COPYING-2.0".
*/
/*
* Do we have various libraries?
*/
#undef HAVE_LIBFLTK
#undef HAVE_LIBJPEG
#undef HAVE_LIBPNG
#undef HAVE_LIBZ
/*
* Do we have some of the "standard" string functions?
*/
#undef HAVE_STRDUP
#undef HAVE_STRCASECMP
#undef HAVE_STRNCASECMP
/*
* What is the version number for this software?
*/
#define SVERSION "1.7"
/*
* Limits for the output "engines"...
*/
#define MAX_CHAPTERS 100
#define MAX_COLUMNS 20
#define MAX_HEADINGS 10000
#define MAX_IMAGES 1000
#define MAX_LINKS 20000
#define MAX_OBJECTS (10 * MAX_PAGES)
#define MAX_PAGES 5000
#define MAX_ROWS 1000
/*
* End of "$Id: config.h.in,v 1.5 1999/01/07 18:03:17 mike Exp mike $".
*/
|