File 0001-Build-system-Use-std-c-98-instead-of-std-c-03.patch of Package vsqlite++
From f894f88c7095ff4a004f16042c22fd6f9e0e6469 Mon Sep 17 00:00:00 2001
From: Vinzenz Feenstra <vinzenz.feenstra@gmail.com>
Date: Sun, 25 Aug 2013 15:14:58 +0200
Subject: [PATCH 1/2] Build system: Use -std=c++98 instead of -std=c++03
Should fix the build issue on OpenSuse SLES
fixes #2
Signed-off-by: Vinzenz Feenstra <vinzenz.feenstra@gmail.com>
---
Makefile.am | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.am b/Makefile.am
index 4eba97e..7a389b6 100644
--- Makefile.am
+++ Makefile.am
@@ -1,7 +1,7 @@
LIBVSQLITE_VERSION=`cat VERSION`
AUTOMAKE_OPTIONS = subdir-objects foreign
ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS} -I m4
-AM_CXXFLAGS = -W -Wall -pedantic -O3 -W -std=c++03
+AM_CXXFLAGS = -W -Wall -pedantic -O3 -W -std=c++98
lib_LTLIBRARIES = libvsqlitepp.la
--
1.8.1.4