summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorcyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864>2008-12-29 09:02:03 +0000
committercyberbotx <cyberbotx@5417fbe8-f217-4b02-8779-1006273d7864>2008-12-29 09:02:03 +0000
commite0c10d684e412a71f9da9bafdde728c94ae9e8aa (patch)
tree54516efce454ea71c6c8f9c9b0d40fb66cffec69 /include
parent6a2c0a7785a3b60e57e796d7d148c25314fec9d3 (diff)
Reverting my last 2 commits in an attempt to fix my own screwball mistake.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1873 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'include')
-rw-r--r--include/Makefile20
-rw-r--r--include/sysconf.h.in122
2 files changed, 0 insertions, 142 deletions
diff --git a/include/Makefile b/include/Makefile
deleted file mode 100644
index d4d8f5952..000000000
--- a/include/Makefile
+++ /dev/null
@@ -1,20 +0,0 @@
-
-all: services.h extern.h pseudo.h version.h
-
-version.h: Makefile version.sh services.h pseudo.h messages.h $(SRCS)
- sh version.sh ../version.log $@
-
-services.h: sysconf.h config.h extern.h
- touch $@
-
-extern.h: slist.h
- touch $@
-
-pseudo.h: commands.h timeout.h encrypt.h datafiles.h slist.h
- touch $@
-
-clean:
- (rm -f language.h)
-
-distclean: clean
- (rm -f sysconf.h version.h)
diff --git a/include/sysconf.h.in b/include/sysconf.h.in
deleted file mode 100644
index 5acfa3d74..000000000
--- a/include/sysconf.h.in
+++ /dev/null
@@ -1,122 +0,0 @@
-#ifndef _SYSCONF_H_
-#define _SYSCONF_H_
-
-#undef DEFUMASK
-#undef HAVE_SYS_TYPES_H
-#undef HAVE_STDINT_H
-#undef HAVE_STDDEF_H
-#undef HAVE_BACKTRACE
-#undef HAVE_GETHOSTBYNAME
-#undef HAVE_GETTIMEOFDAY
-#undef HAVE_SETGRENT
-#undef HAVE_STRCASECMP
-#undef HAVE_STRICMP
-#undef HAVE_STRINGS_H
-#undef HAVE_STRLCAT
-#undef HAVE_STRLCPY
-#undef HAVE_SYS_SELECT_H
-#undef HAVE_UMASK
-#undef HAVE_VA_LIST_AS_ARRAY
-#undef RUNGROUP
-#define SERVICES_BIN "services"
-
-#undef HAVE_UINT8_T
-#undef HAVE_U_INT8_T
-#undef HAVE_INT16_T
-#undef HAVE_UINT16_T
-#undef HAVE_U_INT16_T
-#undef HAVE_INT32_T
-#undef HAVE_UINT32_T
-#undef HAVE_U_INT32_T
-
-#ifdef HAVE_SYS_TYPES_H
-# include <sys/types.h>
-#endif
-#ifdef HAVE_STDINT_H
-# include <stdint.h>
-#endif
-#ifdef HAVE_STDDEF_H
-# include <stddef.h>
-#endif
-
-#ifdef HAVE_UINT8_T
-typedef uint8_t uint8;
-#else
-# ifdef HAVE_U_INT8_T
-typedef u_int8_t uint8;
-# else
-# ifdef _WIN32
-typedef unsigned __int8 uint8;
-# else
-typedef unsigned short uint8;
-# endif
-# endif
-#endif
-
-#ifdef HAVE_INT16_T
-typedef int16_t int16;
-#else
-# ifdef _WIN32
-typedef signed __int16 int16;
-# else
-typedef int int16;
-# endif
-#endif
-
-#ifdef HAVE_UINT16_T
-typedef uint16_t uint16;
-#else
-# ifdef HAVE_U_INT16_T
-typedef u_int16_t uint16;
-# else
-# ifdef _WIN32
-typedef unsigned __int16 uint16;
-# else
-typedef unsigned int uint16;
-# endif
-# endif
-#endif
-
-#ifdef HAVE_INT32_T
-typedef int32_t int32;
-#else
-# ifdef _WIN32
-typedef signed __int32 int32;
-# else
-typedef long int32;
-# endif
-#endif
-
-#ifdef HAVE_UINT32_T
-typedef uint32_t uint32;
-#else
-# ifdef HAVE_U_INT32_T
-typedef u_int32_t uint32;
-# else
-# ifdef _WIN32
-typedef unsigned __int32 uint32;
-# else
-typedef unsigned long uint32;
-# endif
-# endif
-#endif
-
-#ifdef _WIN32
-# ifdef MSVCPP
-# define snprintf _snprintf
-# endif
-# define popen _popen
-# define pclose _pclose
-# define ftruncate _chsize
-# ifdef MSVCPP
-# define PATH_MAX MAX_PATH
-# endif
-# define MAXPATHLEN MAX_PATH
-# define bzero(buf, size) memset(buf, 0, size)
-# ifdef MSVCPP
-# define strcasecmp stricmp
-# endif
-# define sleep(x) Sleep(x * 1000)
-#endif
-
-#endif