b2266009be
ODB is an open-source, cross-platform, and cross-database object-relational mapping (ORM) system for C++. It allows you to persist C++ objects to a relational database without having to deal with tables, columns, or SQL and without manually writing any mapping code. ODB supports MySQL, SQLite, PostgreSQL, Oracle, and Microsoft SQL Server relational databases as well as C++98/03 and C++11 language standards. It also comes with optional profiles for Boost and Qt which allow you to seamlessly use value types, containers, and smart pointers from these libraries in your persistent C++ classes. This package is used for auto-generating ODB specific header files into useable code that can be linked against a seperate libodb and a specific libodb database library. As such, it is only needed as a host program and is not user selectable. Signed-off-by: Adam Duskett <aduskett@gmail.com> [Kamel: Fix incorrect odb license] Signed-off-by: Kamel Bouhara <kamel.bouhara@bootlin.com> [Thomas: add patch fixing gcc10 build, add references to upstream commits] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
31 lines
739 B
Diff
31 lines
739 B
Diff
From f0bbc17aeed1b636782a4b92e8191d90f310d0a2 Mon Sep 17 00:00:00 2001
|
|
From: Boris Kolpackov <boris@codesynthesis.com>
|
|
Date: Mon, 1 Jun 2015 19:08:33 +0200
|
|
Subject: [PATCH] <tm.h> include in gcc.hxx appears to be no longer necessary
|
|
|
|
On MIPS this file pulls in enum processor which conflicts with
|
|
our class processor.
|
|
|
|
[Upstream: f0bbc17aeed1b636782a4b92e8191d90f310d0a2]
|
|
Signed-off-by: Kamel Bouhara <kamel.bouhara@bootlin.com>
|
|
---
|
|
odb/gcc.hxx | 2 --
|
|
1 file changed, 2 deletions(-)
|
|
|
|
diff --git a/odb/gcc.hxx b/odb/gcc.hxx
|
|
index 504b59b..c953047 100644
|
|
--- a/odb/gcc.hxx
|
|
+++ b/odb/gcc.hxx
|
|
@@ -46,8 +46,6 @@ extern "C"
|
|
#include <tree.h>
|
|
#include <real.h>
|
|
|
|
-#include <tm.h>
|
|
-
|
|
#include <cpplib.h>
|
|
#include <cp/cp-tree.h>
|
|
|
|
--
|
|
2.26.2
|
|
|