summaryrefslogtreecommitdiff
path: root/dev-db/sqlitebrowser/files/sqlitebrowser-3.12.2-str-conflict-fix.patch
diff options
context:
space:
mode:
Diffstat (limited to 'dev-db/sqlitebrowser/files/sqlitebrowser-3.12.2-str-conflict-fix.patch')
-rw-r--r--dev-db/sqlitebrowser/files/sqlitebrowser-3.12.2-str-conflict-fix.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/dev-db/sqlitebrowser/files/sqlitebrowser-3.12.2-str-conflict-fix.patch b/dev-db/sqlitebrowser/files/sqlitebrowser-3.12.2-str-conflict-fix.patch
deleted file mode 100644
index 07284ca8ba0c..000000000000
--- a/dev-db/sqlitebrowser/files/sqlitebrowser-3.12.2-str-conflict-fix.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- a/src/version.h
-+++ b/src/version.h
-@@ -4,8 +4,8 @@
- #define MINOR_VERSION 12
- #define PATCH_VERSION 2
-
--#define str(s) #s
--#define xstr(s) str(s)
-+#define stringize(s) #s
-+#define xstr(s) stringize(s)
- #define APP_VERSION xstr(MAJOR_VERSION) "." xstr(MINOR_VERSION) "." xstr(PATCH_VERSION)
-
- // If it is defined by the compiler, then it is a nightly build, and in the YYYYMMDD format.