musicmud-2.1.6/data/
musicmud-2.1.6/data/help/
musicmud-2.1.6/data/policy/
musicmud-2.1.6/data/wild/
musicmud-2.1.6/data/world/
musicmud-2.1.6/doc/
musicmud-2.1.6/src/ident/
musicmud-2.1.6/src/lua/
musicmud-2.1.6/src/lua/include/
musicmud-2.1.6/src/lua/src/lib/
musicmud-2.1.6/src/lua/src/lua/
musicmud-2.1.6/src/lua/src/luac/
#ifndef CONFIG_H
#define CONFIG_H

#define MUD_DEFPORT 6666

#include "../configure.h"

#ifndef HAVE_ZLIB
#define NOCOMPRESS
#endif

#include "paths.h"

#ifndef DONT_NEED_TYPEINFO
#include <typeinfo>
#endif

#ifndef _REENTRANT
#define _REENTRANT
#endif

#undef CONFIG_POP_SERVER
#undef CONFIG_IDENT
#undef CONFIG_TRHEAD

#define CONFIG_PIPE_IDENT

#ifndef HAVE_SOCKLEN_T
typedef int socklen_t;
#endif

#define INVSLOTS 1
#define WORNFROM 1

#ifndef HAVE_STRCASESTR
const char *strcasestr(const char *, const char *);
#endif

#endif