summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuy Martin <gmsoft@gentoo.org>2004-10-12 17:24:25 +0000
committerGuy Martin <gmsoft@gentoo.org>2004-10-12 17:24:25 +0000
commitfb87e4390b1224f1cd75dde31801ca78c93903c3 (patch)
treedd36d3ec3b9b4fb105e057099196d49a27ea1ea2 /dev-db/sqlite
parentNew version. Hoorraay; --allow flag is now mandatory. (Manifest recommit) (diff)
downloadgentoo-2-fb87e4390b1224f1cd75dde31801ca78c93903c3.tar.gz
gentoo-2-fb87e4390b1224f1cd75dde31801ca78c93903c3.tar.bz2
gentoo-2-fb87e4390b1224f1cd75dde31801ca78c93903c3.zip
Woops, typo in the patch.
Diffstat (limited to 'dev-db/sqlite')
-rw-r--r--dev-db/sqlite/ChangeLog6
-rw-r--r--dev-db/sqlite/files/sqlite-2.8.15-alignement-fix.patch2
2 files changed, 6 insertions, 2 deletions
diff --git a/dev-db/sqlite/ChangeLog b/dev-db/sqlite/ChangeLog
index c749ad1dfb6c..e147ae181409 100644
--- a/dev-db/sqlite/ChangeLog
+++ b/dev-db/sqlite/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-db/sqlite
# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.48 2004/10/11 21:15:51 gmsoft Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.49 2004/10/12 17:24:25 gmsoft Exp $
+
+ 12 Oct 2004; Guy Martin <gmsoft@gentoo.org>
+ files/sqlite-2.8.15-alignement-fix.patch:
+ Woops, typo in the patch.
11 Oct 2004; Guy Martin <gmsoft@gentoo.org> sqlite-2.8.15.ebuild:
Added a alignement fix for hppa. Stable on hppa.
diff --git a/dev-db/sqlite/files/sqlite-2.8.15-alignement-fix.patch b/dev-db/sqlite/files/sqlite-2.8.15-alignement-fix.patch
index 9420d1d277d1..7081ffd00323 100644
--- a/dev-db/sqlite/files/sqlite-2.8.15-alignement-fix.patch
+++ b/dev-db/sqlite/files/sqlite-2.8.15-alignement-fix.patch
@@ -6,7 +6,7 @@ diff -uNr sqlite.orig/src/vdbeInt.h sqlite/src/vdbeInt.h
double r; /* Real value */
char *z; /* String value */
- char zShort[NBFS]; /* Space for short strings */
-+ char zShort[NBFS]; __attribute__ ((__aligned__(16))); /* Space for short strings */
++ char zShort[NBFS] __attribute__ ((__aligned__(16))); /* Space for short strings */
};
typedef struct Mem Mem;