summaryrefslogtreecommitdiff
path: root/common/JackMetadata.h
diff options
context:
space:
mode:
authorLuciano Iam <lucianito@gmail.com>2020-05-31 14:29:53 +0200
committerGitHub <noreply@github.com>2020-05-31 13:29:53 +0100
commitcfb85b0143e6538a20cc707d26e08233d78011bc (patch)
tree2f0f56e4c11c391ed60f54200cc457f9ecfef451 /common/JackMetadata.h
parent6e94c67d0a5f98189b656844a3addfa55e7dbdce (diff)
downloadjack2-cfb85b0143e6538a20cc707d26e08233d78011bc.tar.gz
1.9.14 on MinGW/waf + build guide (#495)
* Add guide for compiling on MinGW using waf * Update wscripts and guide for MinGW * Fix README_MINGW typos * Add instructions for ASIO support * Update jackd example * Patch for metadata support on Windows * Update VS project for building JackRouter * JackRouter/VS: add int redefinition fix to all build configurations * VS: ignore Visual Studio build files and user settings * Revise and extend README_MINGW * Fix typos in README_MINGW * Update MinGW build guide * Replace MAX_PATH with PATH_MAX (win32) * Include limits.h in JackMetadata.h Co-authored-by: Schrödinger's Cat <6382400+Schroedingers-Cat@users.noreply.github.com>
Diffstat (limited to 'common/JackMetadata.h')
-rw-r--r--common/JackMetadata.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/common/JackMetadata.h b/common/JackMetadata.h
index a6cf18f9..67b4cdcf 100644
--- a/common/JackMetadata.h
+++ b/common/JackMetadata.h
@@ -31,6 +31,7 @@
#endif
#include <stdint.h>
+#include <limits.h>
#if HAVE_DB
#include <db.h>
@@ -88,6 +89,7 @@ class JackMetadata
DB* fDB;
DB_ENV* fDBenv;
const bool fIsEngine;
+ char fDBFilesDir[PATH_MAX + 1];
#endif
int PropertyInit();