[Box Backup-dev] COMMIT r305 - in box/chris/win32/type-changes: . lib/common lib/win32

boxbackup-dev at fluffy.co.uk boxbackup-dev at fluffy.co.uk
Fri Jan 6 19:47:13 GMT 2006


Author: chris
Date: 2006-01-06 19:46:58 +0000 (Fri, 06 Jan 2006)
New Revision: 305

Removed:
   box/chris/win32/type-changes/lib/win32/config.h.win32
Modified:
   box/chris/win32/type-changes/configure.ac
   box/chris/win32/type-changes/lib/common/BoxPlatform.h
   box/chris/win32/type-changes/lib/common/CollectInBufferStream.cpp
   box/chris/win32/type-changes/lib/common/DebugMemLeakFinder.cpp
   box/chris/win32/type-changes/lib/common/EventWatchFilesystemObject.cpp
   box/chris/win32/type-changes/lib/common/ExcludeList.h
   box/chris/win32/type-changes/lib/common/FdGetLine.cpp
   box/chris/win32/type-changes/lib/common/FileStream.h
   box/chris/win32/type-changes/lib/common/Guards.h
   box/chris/win32/type-changes/lib/common/MemBlockStream.cpp
   box/chris/win32/type-changes/lib/common/NamedLock.cpp
   box/chris/win32/type-changes/lib/common/ReadGatherStream.cpp
   box/chris/win32/type-changes/lib/common/StreamableMemBlock.cpp
   box/chris/win32/type-changes/lib/common/Test.h
   box/chris/win32/type-changes/lib/common/UnixUser.cpp
   box/chris/win32/type-changes/lib/common/WaitForEvent.cpp
Log:
* Many files
- Undo more type casts to separate out the tricky changes


Modified: box/chris/win32/type-changes/configure.ac
===================================================================
--- box/chris/win32/type-changes/configure.ac	2006-01-06 19:21:16 UTC (rev 304)
+++ box/chris/win32/type-changes/configure.ac	2006-01-06 19:46:58 UTC (rev 305)
@@ -65,7 +65,7 @@
 AC_HEADER_DIRENT
 AC_HEADER_STDC
 AC_HEADER_SYS_WAIT
-AC_CHECK_HEADERS([execinfo.h netinet/in.h regex.h sys/types.h sys/xattr.h pwd.h])
+AC_CHECK_HEADERS([execinfo.h netinet/in.h regex.h sys/types.h sys/xattr.h])
 
 
 ### Checks for typedefs, structures, and compiler characteristics.

Modified: box/chris/win32/type-changes/lib/common/BoxPlatform.h
===================================================================
--- box/chris/win32/type-changes/lib/common/BoxPlatform.h	2006-01-06 19:21:16 UTC (rev 304)
+++ box/chris/win32/type-changes/lib/common/BoxPlatform.h	2006-01-06 19:46:58 UTC (rev 305)
@@ -73,11 +73,13 @@
 	typedef unsigned __int32 u_int32_t;
 	typedef unsigned __int64 u_int64_t;
 
-	#define HAVE_U_INT8_T
-	#define HAVE_U_INT16_T
-	#define HAVE_U_INT32_T
-	#define HAVE_U_INT64_T
+	#define HAVE_UINT8_T
+	#define HAVE_UINT16_T
+	#define HAVE_UINT32_T
+	#define HAVE_UINT64_T
 
+	typedef unsigned int uid_t;
+	typedef unsigned int gid_t;
 	typedef int pid_t;
 #endif // WIN32 && !__MINGW32__
 

Modified: box/chris/win32/type-changes/lib/common/CollectInBufferStream.cpp
===================================================================
--- box/chris/win32/type-changes/lib/common/CollectInBufferStream.cpp	2006-01-06 19:21:16 UTC (rev 304)
+++ box/chris/win32/type-changes/lib/common/CollectInBufferStream.cpp	2006-01-06 19:46:58 UTC (rev 305)
@@ -63,7 +63,7 @@
 	// Adjust to number of bytes left
 	if(NBytes > (mBytesInBuffer - mReadPosition))
 	{
-		NBytes = (int)(mBytesInBuffer - mReadPosition);
+		NBytes = (mBytesInBuffer - mReadPosition);
 	}
 	ASSERT(NBytes >= 0);
 	if(NBytes <= 0) return 0;	// careful now

Modified: box/chris/win32/type-changes/lib/common/DebugMemLeakFinder.cpp
===================================================================
--- box/chris/win32/type-changes/lib/common/DebugMemLeakFinder.cpp	2006-01-06 19:21:16 UTC (rev 304)
+++ box/chris/win32/type-changes/lib/common/DebugMemLeakFinder.cpp	2006-01-06 19:46:58 UTC (rev 305)
@@ -16,11 +16,8 @@
 #undef realloc
 #undef free
 
-#ifdef HAVE_UNISTD_H
-	#include <unistd.h>
-#endif
-
 #include <map>
+#include <unistd.h>
 #include <stdio.h>
 #include <string.h>
 #include <set>

Modified: box/chris/win32/type-changes/lib/common/EventWatchFilesystemObject.cpp
===================================================================
--- box/chris/win32/type-changes/lib/common/EventWatchFilesystemObject.cpp	2006-01-06 19:21:16 UTC (rev 304)
+++ box/chris/win32/type-changes/lib/common/EventWatchFilesystemObject.cpp	2006-01-06 19:46:58 UTC (rev 305)
@@ -10,11 +10,8 @@
 #include "Box.h"
 
 #include <fcntl.h>
+#include <unistd.h>
 
-#ifdef HAVE_UNISTD_H
-	#include <unistd.h>
-#endif
-
 #include "EventWatchFilesystemObject.h"
 #include "autogen_CommonException.h"
 

Modified: box/chris/win32/type-changes/lib/common/ExcludeList.h
===================================================================
--- box/chris/win32/type-changes/lib/common/ExcludeList.h	2006-01-06 19:21:16 UTC (rev 304)
+++ box/chris/win32/type-changes/lib/common/ExcludeList.h	2006-01-06 19:46:58 UTC (rev 305)
@@ -43,11 +43,10 @@
 	bool IsExcluded(const std::string &rTest) const;
 	
 	// Mainly for tests
-	unsigned int SizeOfDefiniteList() const 
-		{return (unsigned int)mDefinite.size();}
+	unsigned int SizeOfDefiniteList() const {return mDefinite.size();}
 	unsigned int SizeOfRegexList() const
 #ifdef HAVE_REGEX_H
-		{return (unsigned int)mRegex.size();}
+		{return mRegex.size();}
 #else
 		{return 0;}
 #endif

Modified: box/chris/win32/type-changes/lib/common/FdGetLine.cpp
===================================================================
--- box/chris/win32/type-changes/lib/common/FdGetLine.cpp	2006-01-06 19:21:16 UTC (rev 304)
+++ box/chris/win32/type-changes/lib/common/FdGetLine.cpp	2006-01-06 19:46:58 UTC (rev 305)
@@ -10,11 +10,8 @@
 #include "Box.h"
 
 #include <sys/types.h>
+#include <unistd.h>
 
-#ifdef HAVE_UNISTD_H
-	#include <unistd.h>
-#endif
-
 #include "FdGetLine.h"
 #include "CommonException.h"
 

Modified: box/chris/win32/type-changes/lib/common/FileStream.h
===================================================================
--- box/chris/win32/type-changes/lib/common/FileStream.h	2006-01-06 19:21:16 UTC (rev 304)
+++ box/chris/win32/type-changes/lib/common/FileStream.h	2006-01-06 19:46:58 UTC (rev 305)
@@ -15,11 +15,8 @@
 #include <fcntl.h>
 #include <stdlib.h>
 #include <sys/stat.h>
+#include <unistd.h>
 
-#ifdef HAVE_UNISTD_H
-	#include <unistd.h>
-#endif
-
 #ifdef WIN32
 	#define INVALID_FILE NULL
 	typedef HANDLE tOSFileHandle;

Modified: box/chris/win32/type-changes/lib/common/Guards.h
===================================================================
--- box/chris/win32/type-changes/lib/common/Guards.h	2006-01-06 19:21:16 UTC (rev 304)
+++ box/chris/win32/type-changes/lib/common/Guards.h	2006-01-06 19:46:58 UTC (rev 305)
@@ -13,13 +13,10 @@
 
 #include "Box.h"
 
-#ifdef HAVE_UNISTD_H
-	#include <unistd.h>
-#endif
-
 #include <fcntl.h>
 #include <stdlib.h>
 #include <sys/stat.h>
+#include <unistd.h>
 #include <new>
 
 #include "CommonException.h"

Modified: box/chris/win32/type-changes/lib/common/MemBlockStream.cpp
===================================================================
--- box/chris/win32/type-changes/lib/common/MemBlockStream.cpp	2006-01-06 19:21:16 UTC (rev 304)
+++ box/chris/win32/type-changes/lib/common/MemBlockStream.cpp	2006-01-06 19:46:58 UTC (rev 305)
@@ -113,7 +113,7 @@
 	// Adjust to number of bytes left
 	if(NBytes > (mBytesInBuffer - mReadPosition))
 	{
-		NBytes = (int)(mBytesInBuffer - mReadPosition);
+		NBytes = (mBytesInBuffer - mReadPosition);
 	}
 	ASSERT(NBytes >= 0);
 	if(NBytes <= 0) return 0;	// careful now

Modified: box/chris/win32/type-changes/lib/common/NamedLock.cpp
===================================================================
--- box/chris/win32/type-changes/lib/common/NamedLock.cpp	2006-01-06 19:21:16 UTC (rev 304)
+++ box/chris/win32/type-changes/lib/common/NamedLock.cpp	2006-01-06 19:46:58 UTC (rev 305)
@@ -11,11 +11,7 @@
 
 #include <fcntl.h>
 #include <errno.h>
-
-#ifdef HAVE_UNISTD_H
-	#include <unistd.h>
-#endif
-
+#include <unistd.h>
 #ifdef HAVE_FLOCK
 	#include <sys/file.h>
 #endif

Modified: box/chris/win32/type-changes/lib/common/ReadGatherStream.cpp
===================================================================
--- box/chris/win32/type-changes/lib/common/ReadGatherStream.cpp	2006-01-06 19:21:16 UTC (rev 304)
+++ box/chris/win32/type-changes/lib/common/ReadGatherStream.cpp	2006-01-06 19:46:58 UTC (rev 305)
@@ -69,7 +69,7 @@
 	ASSERT(pStream != 0);
 
 	// Just add the component to the list, returning it's index.
-	int index = (int)mComponents.size();
+	int index = mComponents.size();
 	mComponents.push_back(pStream);
 	return index;
 }
@@ -145,8 +145,7 @@
 		if(mPositionInCurrentBlock < mBlocks[mCurrentBlock].mLength)
 		{
 			// Read!
-			int s = (int)(mBlocks[mCurrentBlock].mLength - 
-				mPositionInCurrentBlock);
+			int s = mBlocks[mCurrentBlock].mLength - mPositionInCurrentBlock;
 			if(s > bytesToRead) s = bytesToRead;
 			
 			int r = mComponents[mBlocks[mCurrentBlock].mComponent]->Read(buffer, s, Timeout);

Modified: box/chris/win32/type-changes/lib/common/StreamableMemBlock.cpp
===================================================================
--- box/chris/win32/type-changes/lib/common/StreamableMemBlock.cpp	2006-01-06 19:21:16 UTC (rev 304)
+++ box/chris/win32/type-changes/lib/common/StreamableMemBlock.cpp	2006-01-06 19:46:58 UTC (rev 305)
@@ -115,7 +115,7 @@
 	}
 	
 	// Allocate a new block (this way to be exception safe)
-	char *pblock = (char*)malloc((size_t)size);
+	char *pblock = (char*)malloc(size);
 	if(pblock == 0)
 	{
 		throw std::bad_alloc();
@@ -124,7 +124,7 @@
 	try
 	{
 		// Read in
-		if(!rStream.ReadFullBuffer(pblock, (int)size, 0 /* not interested in bytes read if this fails */))
+		if(!rStream.ReadFullBuffer(pblock, size, 0 /* not interested in bytes read if this fails */))
 		{
 			THROW_EXCEPTION(CommonException, StreamableMemBlockIncompleteRead)
 		}
@@ -141,7 +141,7 @@
 	// store...
 	ASSERT(mpBuffer == 0);
 	mpBuffer = pblock;
-	mSize = (int)size;
+	mSize = size;
 }
 
 

Modified: box/chris/win32/type-changes/lib/common/Test.h
===================================================================
--- box/chris/win32/type-changes/lib/common/Test.h	2006-01-06 19:21:16 UTC (rev 304)
+++ box/chris/win32/type-changes/lib/common/Test.h	2006-01-06 19:46:58 UTC (rev 305)
@@ -16,11 +16,8 @@
 #include <sys/stat.h>
 #include <stdlib.h>
 #include <signal.h>
+#include <unistd.h>
 
-#ifdef HAVE_UNISTD_H
-	#include <unistd.h>
-#endif
-
 #include <stdio.h>
  
 extern int failures;

Modified: box/chris/win32/type-changes/lib/common/UnixUser.cpp
===================================================================
--- box/chris/win32/type-changes/lib/common/UnixUser.cpp	2006-01-06 19:21:16 UTC (rev 304)
+++ box/chris/win32/type-changes/lib/common/UnixUser.cpp	2006-01-06 19:46:58 UTC (rev 305)
@@ -9,13 +9,11 @@
 
 #include "Box.h"
 
-#ifdef HAVE_PWD_H
-	#include <pwd.h>
+#ifndef WIN32
+#include <pwd.h>
 #endif
 
-#ifdef HAVE_UNISTD_H
-	#include <unistd.h>
-#endif
+#include <unistd.h>
 
 #include "UnixUser.h"
 #include "CommonException.h"

Modified: box/chris/win32/type-changes/lib/common/WaitForEvent.cpp
===================================================================
--- box/chris/win32/type-changes/lib/common/WaitForEvent.cpp	2006-01-06 19:21:16 UTC (rev 304)
+++ box/chris/win32/type-changes/lib/common/WaitForEvent.cpp	2006-01-06 19:46:58 UTC (rev 305)
@@ -9,10 +9,7 @@
 
 #include "Box.h"
 
-#ifdef HAVE_UNISTD_H
-	#include <unistd.h>
-#endif
-
+#include <unistd.h>
 #include <errno.h>
 #include <string.h>
 
@@ -163,7 +160,7 @@
 	}
 	
 	// Poll!
-	switch(::poll(mpPollInfo, (unsigned int)mItems.size(), mTimeout))
+	switch(::poll(mpPollInfo, mItems.size(), mTimeout))
 	{
 	case -1:
 		// Interrupted system calls aren't an error, just equivalent to a timeout

Deleted: box/chris/win32/type-changes/lib/win32/config.h.win32
===================================================================
--- box/chris/win32/type-changes/lib/win32/config.h.win32	2006-01-06 19:21:16 UTC (rev 304)
+++ box/chris/win32/type-changes/lib/win32/config.h.win32	2006-01-06 19:46:58 UTC (rev 305)
@@ -1,342 +0,0 @@
-/* lib/common/config.h.  Generated by configure.  */
-/* lib/common/config.h.in.  Generated from configure.ac by autoheader.  */
-
-/* Define to 1 if the `closedir' function returns void instead of `int'. */
-/* #undef CLOSEDIR_VOID */
-
-/* Define to the location of the Berkeley DB 1.85 header */
-/* #undef DB_HEADER */
-
-/* Define to 1 if non-aligned int16 access will fail */
-/* #undef HAVE_ALIGNED_ONLY_INT16 */
-
-/* Define to 1 if non-aligned int32 access will fail */
-/* #undef HAVE_ALIGNED_ONLY_INT32 */
-
-/* Define to 1 if non-aligned int64 access will fail */
-/* #undef HAVE_ALIGNED_ONLY_INT64 */
-
-/* Define to 1 if Berkeley DB is available */
-/* #undef HAVE_DB */
-
-/* Define to 1 if you have the <db1/db.h> header file. */
-/* #undef HAVE_DB1_DB_H */
-
-/* Define to 1 if you have the <db3/db_185.h> header file. */
-/* #undef HAVE_DB3_DB_185_H */
-
-/* Define to 1 if you have the <db4/db_185.h> header file. */
-/* #undef HAVE_DB4_DB_185_H */
-
-/* Define to 1 if you have the <db_185.h> header file. */
-/* #undef HAVE_DB_185_H */
-
-/* Define to 1 if you have the <db.h> header file. */
-/* #undef HAVE_DB_H */
-
-/* Define to 1 if you have the declaration of `F_SETLK', and to 0 if you
-   don't. */
-#define HAVE_DECL_F_SETLK 0
-
-/* Define to 1 if you have the declaration of `INFTIM', and to 0 if you don't.
-   */
-#define HAVE_DECL_INFTIM 0
-
-/* Define to 1 if you have the declaration of `O_EXLOCK', and to 0 if you
-   don't. */
-#define HAVE_DECL_O_EXLOCK 0
-
-/* Define to 1 if you have the declaration of `SO_PEERCRED', and to 0 if you
-   don't. */
-#define HAVE_DECL_SO_PEERCRED 0
-
-/* Define to 1 if #define of pragmas works */
-/* #undef HAVE_DEFINE_PRAGMA */
-
-/* Define to 1 if you have the <dirent.h> header file, and it defines `DIR'.
-   */
-#define HAVE_DIRENT_H 1
-
-/* define if the compiler supports exceptions */
-#define HAVE_EXCEPTIONS 
-
-/* Define to 1 if you have the <execinfo.h> header file. */
-/* #undef HAVE_EXECINFO_H */
-
-/* Define to 1 if you have the `flock' function. */
-/* #undef HAVE_FLOCK */
-
-/* Define to 1 if you have the `getmntent' function. */
-/* #undef HAVE_GETMNTENT */
-
-/* Define to 1 if you have the `getpeereid' function. */
-/* #undef HAVE_GETPEEREID */
-
-/* Define to 1 if you have the <history.h> header file. */
-/* #undef HAVE_HISTORY_H */
-
-/* Define to 1 if you have the <inttypes.h> header file. */
-/* #undef HAVE_INTTYPES_H */
-
-/* Define to 1 if you have the `kqueue' function. */
-/* #undef HAVE_KQUEUE */
-
-/* Define to 1 large file support is in use */
-/* #undef HAVE_LARGE_FILE_SUPPORT */
-
-/* Define to 1 if you have the `lchown' function. */
-/* #undef HAVE_LCHOWN */
-
-/* Define to 1 if you have the `crypto' library (-lcrypto). */
-#define HAVE_LIBCRYPTO 1
-
-/* Define if you have a readline compatible library */
-/* #undef HAVE_LIBREADLINE */
-
-/* Define to 1 if you have the `ssl' library (-lssl). */
-#define HAVE_LIBSSL 1
-
-/* Define to 1 if you have the `z' library (-lz). */
-#define HAVE_LIBZ 1
-
-/* Define to 1 if syscall lseek requires a dummy middle parameter */
-/* #undef HAVE_LSEEK_DUMMY_PARAM */
-
-/* Define to 1 if you have the <memory.h> header file. */
-#define HAVE_MEMORY_H 1
-
-/* Define to 1 if you have the <mntent.h> header file. */
-/* #undef HAVE_MNTENT_H */
-
-/* Define to 1 if this platform supports mounts */
-/* #undef HAVE_MOUNTS */
-
-/* define if the compiler implements namespaces */
-#define HAVE_NAMESPACES 
-
-/* Define to 1 if you have the <ndir.h> header file, and it defines `DIR'. */
-/* #undef HAVE_NDIR_H */
-
-/* Define to 1 if you have the <netinet/in.h> header file. */
-/* #undef HAVE_NETINET_IN_H */
-
-/* Define to 1 if SSL is pre-0.9.7 */
-/* #undef HAVE_OLD_SSL */
-
-/* Define to 1 if you have the <openssl/ssl.h> header file. */
-#define HAVE_OPENSSL_SSL_H 1
-
-/* Define to 1 (and set RANDOM_DEVICE) if a random device is available */
-/* #undef HAVE_RANDOM_DEVICE */
-
-/* Define to 1 if you have the <readline.h> header file. */
-/* #undef HAVE_READLINE_H */
-
-/* Define if your readline library has \`add_history' */
-/* #undef HAVE_READLINE_HISTORY */
-
-/* Define to 1 if you have the <readline/history.h> header file. */
-/* #undef HAVE_READLINE_HISTORY_H */
-
-/* Define to 1 if you have the <readline/readline.h> header file. */
-/* #undef HAVE_READLINE_READLINE_H */
-
-/* Define to 1 if you have the <regex.h> header file. */
-/* #undef HAVE_REGEX_H */
-
-/* Define to 1 if you have the `setproctitle' function. */
-/* #undef HAVE_SETPROCTITLE */
-
-/* Define to 1 if SSL is available */
-#define HAVE_SSL 1
-
-/* Define to 1 if you have the `statfs' function. */
-/* #undef HAVE_STATFS */
-
-/* Define to 1 if `stat' has the bug that it succeeds when given the
-   zero-length file name argument. */
-/* #undef HAVE_STAT_EMPTY_STRING_BUG */
-
-/* Define to 1 if stdbool.h conforms to C99. */
-#define HAVE_STDBOOL_H 1
-
-/* Define to 1 if you have the <stdint.h> header file. */
-/* #undef HAVE_STDINT_H */
-
-/* Define to 1 if you have the <stdlib.h> header file. */
-#define HAVE_STDLIB_H 1
-
-/* Define to 1 if you have the <strings.h> header file. */
-#define HAVE_STRINGS_H 1
-
-/* Define to 1 if you have the <string.h> header file. */
-#define HAVE_STRING_H 1
-
-/* Define to 1 if `d_type' is member of `struct dirent'. */
-/* #undef HAVE_STRUCT_DIRENT_D_TYPE */
-
-/* Define to 1 if `mnt_dir' is member of `struct mntent'. */
-/* #undef HAVE_STRUCT_MNTENT_MNT_DIR */
-
-/* Define to 1 if `mnt_mountp' is member of `struct mnttab'. */
-/* #undef HAVE_STRUCT_MNTTAB_MNT_MOUNTP */
-
-/* Define to 1 if `sin_len' is member of `struct sockaddr_in'. */
-/* #undef HAVE_STRUCT_SOCKADDR_IN_SIN_LEN */
-
-/* Define to 1 if `f_mntonname' is member of `struct statfs'. */
-/* #undef HAVE_STRUCT_STATFS_F_MNTONNAME */
-
-/* Define to 1 if `st_flags' is member of `struct stat'. */
-/* #undef HAVE_STRUCT_STAT_ST_FLAGS */
-
-/* Define to 1 if `st_mtimespec' is member of `struct stat'. */
-/* #undef HAVE_STRUCT_STAT_ST_MTIMESPEC */
-
-/* Define to 1 if you have the `syscall' function. */
-/* #undef HAVE_SYSCALL */
-
-/* Define to 1 if you have the <sys/dir.h> header file, and it defines `DIR'.
-   */
-/* #undef HAVE_SYS_DIR_H */
-
-/* Define to 1 if you have the <sys/mnttab.h> header file. */
-/* #undef HAVE_SYS_MNTTAB_H */
-
-/* Define to 1 if you have the <sys/mount.h> header file. */
-/* #undef HAVE_SYS_MOUNT_H */
-
-/* Define to 1 if you have the <sys/ndir.h> header file, and it defines `DIR'.
-   */
-/* #undef HAVE_SYS_NDIR_H */
-
-/* Define to 1 if you have the <sys/stat.h> header file. */
-#define HAVE_SYS_STAT_H 1
-
-/* Define to 1 if you have the <sys/syscall.h> header file. */
-/* #undef HAVE_SYS_SYSCALL_H */
-
-/* Define to 1 if you have the <sys/types.h> header file. */
-#define HAVE_SYS_TYPES_H 1
-
-/* Define to 1 if you have <sys/wait.h> that is POSIX.1 compatible. */
-/* #undef HAVE_SYS_WAIT_H */
-
-/* Define to 1 if you have the <sys/xattr.h> header file. */
-/* #undef HAVE_SYS_XATTR_H */
-
-/* Define to 1 if the system has the type `uint16_t'. */
-// #define HAVE_UINT16_T 1
-
-/* Define to 1 if the system has the type `uint32_t'. */
-// #define HAVE_UINT32_T 1
-
-/* Define to 1 if the system has the type `uint64_t'. */
-// #define HAVE_UINT64_T 1
-
-/* Define to 1 if the system has the type `uint8_t'. */
-// #define HAVE_UINT8_T 1
-
-/* Define to 1 if you have the <unistd.h> header file. */
-// #define HAVE_UNISTD_H 1
-
-/* Define to 1 if the system has the type `u_int16_t'. */
-/* #undef HAVE_U_INT16_T */
-
-/* Define to 1 if the system has the type `u_int32_t'. */
-/* #undef HAVE_U_INT32_T */
-
-/* Define to 1 if the system has the type `u_int64_t'. */
-/* #undef HAVE_U_INT64_T */
-
-/* Define to 1 if the system has the type `u_int8_t'. */
-/* #undef HAVE_U_INT8_T */
-
-/* Define to 1 if struct dirent.d_type is valid */
-/* #undef HAVE_VALID_DIRENT_D_TYPE */
-
-/* Define to 1 if the system has the type `_Bool'. */
-/* #undef HAVE__BOOL */
-
-/* Define to 1 if you have the `__syscall' function. */
-/* #undef HAVE___SYSCALL */
-
-/* Define to 1 if __syscall is available but needs a definition */
-/* #undef HAVE___SYSCALL_NEED_DEFN */
-
-/* max value of long long calculated by configure */
-/* #undef LLONG_MAX */
-
-/* min value of long long calculated by configure */
-/* #undef LLONG_MIN */
-
-/* Define to 1 if `lstat' dereferences a symlink specified with a trailing
-   slash. */
-/* #undef LSTAT_FOLLOWS_SLASHED_SYMLINK */
-
-/* Define to the address where bug reports for this package should be sent. */
-#define PACKAGE_BUGREPORT "box at fluffy.co.uk"
-
-/* Define to the full name of this package. */
-#define PACKAGE_NAME "Box Backup"
-
-/* Define to the full name and version of this package. */
-#define PACKAGE_STRING "Box Backup 0.09"
-
-/* Define to the one symbol short name of this package. */
-#define PACKAGE_TARNAME "box-backup"
-
-/* Define to the version of this package. */
-#define PACKAGE_VERSION "0.09"
-
-/* Define to the filename of the random device (and set HAVE_RANDOM_DEVICE) */
-/* #undef RANDOM_DEVICE */
-
-/* Define as the return type of signal handlers (`int' or `void'). */
-#define RETSIGTYPE void
-
-/* Define to 1 if you have the ANSI C header files. */
-#define STDC_HEADERS 1
-
-/* TMP directory name */
-#define TEMP_DIRECTORY_NAME "/tmp"
-
-/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
-#define TIME_WITH_SYS_TIME 1
-
-/* Define to 1 if your <sys/time.h> declares `struct tm'. */
-/* #undef TM_IN_SYS_TIME */
-
-/* Define to 1 if your processor stores words with the most significant byte
-   first (like Motorola and SPARC, unlike Intel and VAX). */
-/* #undef WORDS_BIGENDIAN */
-
-/* Number of bits in a file offset, on hosts where this is settable. */
-/* #undef _FILE_OFFSET_BITS */
-
-/* Define for large files, on AIX-style hosts. */
-/* #undef _LARGE_FILES */
-
-/* Define to 1 if __USE_MALLOC is required work around STL memory leaks */
-/* #undef __USE_MALLOC */
-
-/* Define to empty if `const' does not conform to ANSI C. */
-/* #undef const */
-
-/* Define to `int' if <sys/types.h> doesn't define. */
-#define gid_t int
-
-/* Define to `int' if <sys/types.h> does not define. */
-/* #undef mode_t */
-
-/* Define to `long' if <sys/types.h> does not define. */
-/* #undef off_t */
-
-/* Define to `int' if <sys/types.h> does not define. */
-/* #undef pid_t */
-
-/* Define to `unsigned' if <sys/types.h> does not define. */
-/* #undef size_t */
-
-/* Define to `int' if <sys/types.h> doesn't define. */
-#define uid_t int




More information about the Boxbackup-dev mailing list