| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- #ifndef _EGG_CONFIG_H
- #define _EGG_CONFIG_H
- @TOP@
- /*
- * acconfig.h
- * template file autoheader uses when building config.h.in
- *
- */
- /* Define if you want to enable IPv6 support. */
- #undef HAVE_IPV6
- /* Define if you have support for socklen_t. */
- #undef HAVE_SOCKLEN_T
- /* Define if modules will work on your system */
- #undef MODULES_OK
- /* Define if running on hpux that supports dynamic linking */
- #undef HPUX_HACKS
- /* Define if running on hpux 10.x */
- #undef HPUX10_HACKS
- /* Define if running on OSF/1 platform. */
- #undef OSF1_HACKS
- /* Define to use Eggdrop's snprintf functions without regard to HAVE_SNPRINTF. */
- #undef BROKEN_SNPRINTF
- /* Define if running on OSF/1 platform. */
- #undef STOP_UAC
- /* Define if running on sunos 4.0 *sigh* */
- #undef DLOPEN_1
- /* Define if running on NeXT Step */
- #undef BORGCUBES
- /* Define if running under cygwin */
- #undef CYGWIN_HACKS
- /* Define if you have a version of libsafe with a broken sscanf */
- #undef LIBSAFE_HACKS
- /* Define if we need dlopen (for module support) */
- #undef HAVE_DLOPEN
- /* Define for pre Tcl 7.5 compat */
- #undef HAVE_PRE7_5_TCL
- /* Define for Tcl that has Tcl_Free() (7.5p1 and later) */
- #undef HAVE_TCL_FREE
- /* Define for Tcl that has threads */
- #undef HAVE_TCL_THREADS
- /* Defines the current eggdrop version */
- #undef EGG_VERSION
- /* Define if you have the `ipv6' support. */
- #define USE_IPV6
- @BOTTOM@
- #endif /* !_EGG_CONFIG_H */
|