Merge pull request #100 from vcrhonek/shttpd-1.42-missing

Add missing shttpd header file

Leftover from shttpd 1.42 update
diff --git a/src/server/shttpd/defs.h b/src/server/shttpd/defs.h
index f2d4adf..6541cdf 100644
--- a/src/server/shttpd/defs.h
+++ b/src/server/shttpd/defs.h
@@ -18,7 +18,7 @@
 #include "io.h"
 #include "md5.h"
 #include "u/libu.h"
-#include "config.h"
+#include "shttpd_config.h"
 #include "shttpd.h"
 
 #define	NELEMS(ar)	(sizeof(ar) / sizeof(ar[0]))
diff --git a/src/server/shttpd/shttpd_config.h b/src/server/shttpd/shttpd_config.h
new file mode 100644
index 0000000..49d2ecd
--- /dev/null
+++ b/src/server/shttpd/shttpd_config.h
@@ -0,0 +1,29 @@
+/*
+ * Copyright (c) 2004-2005 Sergey Lyubka <valenok@gmail.com>
+ * All rights reserved
+ *
+ * "THE BEER-WARE LICENSE" (Revision 42):
+ * Sergey Lyubka wrote this file.  As long as you retain this notice you
+ * can do whatever you want with this stuff. If we meet some day, and you think
+ * this stuff is worth it, you can buy me a beer in return.
+ */
+
+#ifndef CONFIG_HEADER_DEFINED
+#define	CONFIG_HEADER_DEFINED
+
+#define	SHTTPD_VERSION	"1.42"		/* Version			*/
+#define	CONFIG_FILE	"shttpd.conf"	/* Configuration file		*/
+#define	HTPASSWD	".htpasswd"	/* Passwords file name		*/
+#define	URI_MAX		16384		/* Default max request size	*/
+#define	LISTENING_PORTS	"80"		/* Default listening ports	*/
+#define	INDEX_FILES	"index.html,index.htm,index.php,index.cgi"
+#define	CGI_EXT		"cgi,pl,php"	/* Default CGI extensions	*/
+#define	SSI_EXT		"shtml,shtm"	/* Default SSI extensions	*/
+#define	REALM		"mydomain.com"	/* Default authentication realm	*/
+#define	DELIM_CHARS	","		/* Separators for lists		*/
+#define	EXPIRE_TIME	3600		/* Expiration time, seconds	*/
+#define	ENV_MAX		4096		/* Size of environment block	*/
+#define	CGI_ENV_VARS	64		/* Maximum vars passed to CGI	*/
+#define	SERVICE_NAME	"SHTTPD " VERSION	/* NT service name	*/
+
+#endif /* CONFIG_HEADER_DEFINED */