summaryrefslogtreecommitdiff
path: root/mysqlcppconn/config.h
diff options
context:
space:
mode:
authorKhaled Hosny <khaledhosny@eglug.org>2013-10-18 22:57:07 +0200
committerDavid Tardon <dtardon@redhat.com>2013-10-19 07:47:22 +0000
commit7495d220dd17c14fb48b384e117fcfa54d18cdac (patch)
treeda69c061c82c4cdb6393cc2eb3d8bf788ec05fde /mysqlcppconn/config.h
parent9e89f7ccf873c14b425d37ef2e65bb7dfc75491e (diff)
fdo#70393: move mysqlcppconn to a subdir of external
Change-Id: I5945fa432a9371854e25454feabcafabed7f7b7d Reviewed-on: https://gerrit.libreoffice.org/6346 Reviewed-by: David Tardon <dtardon@redhat.com> Tested-by: David Tardon <dtardon@redhat.com>
Diffstat (limited to 'mysqlcppconn/config.h')
-rw-r--r--mysqlcppconn/config.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/mysqlcppconn/config.h b/mysqlcppconn/config.h
deleted file mode 100644
index 7736c611f7be..000000000000
--- a/mysqlcppconn/config.h
+++ /dev/null
@@ -1,39 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-#include <sal/types.h>
-
-#define HAVE_FUNCTION_STRTOL 1
-#define HAVE_FUNCTION_STRTOUL 1
-#define HAVE_FUNCTION_STRTOL 1
-#define HAVE_FUNCTION_STRTOULL 1
-
-#if defined(MACOSX) || defined(SOLARIS) || defined(LINUX) || (defined _MSC_VER && _MSC_VER >= 1600)
- #define HAVE_STDINT_H
-#ifndef _MSC_VER
- #define HAVE_INTTYPES_H
-#endif
-#endif
-
-#ifdef HAVE_STDINT_H
-#include <stdint.h>
-#endif
-
-#ifdef HAVE_INTTYPES_H
-#include <inttypes.h>
-#endif
-
-#if !defined(HAVE_STDINT_H) && !defined(HAVE_INTTYPES_H)
-
-// if we do not have the standard C99 integer types, then define them based on the respective SAL types
-#if !defined(_SYS_TYPES_H)
-typedef sal_Int8 int8_t;
-typedef sal_Int16 int16_t;
-typedef sal_Int32 int32_t;
-#endif // !defined(_SYS_TYPES_H)
-typedef sal_uInt8 uint8_t;
-typedef sal_uInt16 uint16_t;
-typedef sal_uInt32 uint32_t;
-typedef sal_Int64 int64_t;
-typedef sal_uInt64 uint64_t;
-#endif // !defined(HAVE_STDINT_H) && !defined(HAVE_INTTYPES_H)
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */