From 1ad8b1c229fb8daa125b562a69deeeeb8e9bc6a8 Mon Sep 17 00:00:00 2001 From: Ben Date: Wed, 22 May 2024 10:00:15 +0200 Subject: [PATCH] Removes unnecessary include dir --- build.sh | 1 - leveldbstatic/include/port/port_config.h | 38 ------------------------ 2 files changed, 39 deletions(-) delete mode 100644 leveldbstatic/include/port/port_config.h diff --git a/build.sh b/build.sh index dd683df..a02fcd1 100755 --- a/build.sh +++ b/build.sh @@ -47,7 +47,6 @@ toast \ --includeDirs="${sourceDir}/helpers/memenv" \ --includeDirs="${sourceDir}/port" \ --includeDirs="${sourceDir}/include" \ - --includeDirs="${root}/leveldbstatic/include" \ "${sourceDir}/include/leveldb/c.h" >> "${output}" sed -i 's/\bpassC\b/passc/g' "${output}" diff --git a/leveldbstatic/include/port/port_config.h b/leveldbstatic/include/port/port_config.h deleted file mode 100644 index a1b8c7a..0000000 --- a/leveldbstatic/include/port/port_config.h +++ /dev/null @@ -1,38 +0,0 @@ -// Copyright 2017 The LevelDB Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. See the AUTHORS file for names of contributors. - -#ifndef STORAGE_LEVELDB_PORT_PORT_CONFIG_H_ -#define STORAGE_LEVELDB_PORT_PORT_CONFIG_H_ - -// Define to 1 if you have a definition for fdatasync() in . -#if !defined(HAVE_FDATASYNC) -#define HAVE_FDATASYNC 0 -#endif // !defined(HAVE_FDATASYNC) - -// Define to 1 if you have a definition for F_FULLFSYNC in . -#if !defined(HAVE_FULLFSYNC) -#define HAVE_FULLFSYNC 0 -#endif // !defined(HAVE_FULLFSYNC) - -// Define to 1 if you have a definition for O_CLOEXEC in . -#if !defined(HAVE_O_CLOEXEC) -#define HAVE_O_CLOEXEC 0 -#endif // !defined(HAVE_O_CLOEXEC) - -// Define to 1 if you have Google CRC32C. -#if !defined(HAVE_CRC32C) -#define HAVE_CRC32C 0 -#endif // !defined(HAVE_CRC32C) - -// Define to 1 if you have Google Snappy. -#if !defined(HAVE_SNAPPY) -#define HAVE_SNAPPY 0 -#endif // !defined(HAVE_SNAPPY) - -// Define to 1 if you have Zstd. -#if !defined(HAVE_ZSTD) -#define HAVE_ZSTD 0 -#endif // !defined(HAVE_ZSTD) - -#endif // STORAGE_LEVELDB_PORT_PORT_CONFIG_H_