diff mbox

qt5base: fix posix_fallocate patch

Message ID 1384299123-6822-1-git-send-email-s.martin49@gmail.com
State Accepted
Commit be930801a261930246fb7febea1b83eee9a661e1
Headers show

Commit Message

Samuel Martin Nov. 12, 2013, 11:32 p.m. UTC
Fixes:
	http://autobuild.buildroot.net/results/a07/a07c1825a5295a8343cd89f0901d9a74a764d804/build-end.log

Signed-off-by: Samuel Martin <s.martin49@gmail.com>
---
 .../qt5base-0007-detect-posix_fallocate-at-configure-time.patch        | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

Comments

Peter Korsgaard Nov. 12, 2013, 11:48 p.m. UTC | #1
>>>>> "Samuel" == Samuel Martin <s.martin49@gmail.com> writes:

> Fixes:
> 	http://autobuild.buildroot.net/results/a07/a07c1825a5295a8343cd89f0901d9a74a764d804/build-end.log

Argh - Committed, thanks.

I did build test the first version of the patch, but not the followup
fix.
Fatih Aşıcı Nov. 13, 2013, 6:38 a.m. UTC | #2
On Wednesday 13 November 2013 01:48:17 Peter Korsgaard wrote:
> >>>>> "Samuel" == Samuel Martin <s.martin49@gmail.com> writes:
> > Fixes:
> > 	http://autobuild.buildroot.net/results/a07/a07c1825a5295a8343cd89f0901d9
> > 	a74a764d804/build-end.log
> 
> Argh - Committed, thanks.
> 
> I did build test the first version of the patch, but not the followup
> fix.

Sorry, I forgot to test it with buildroot after exporting from qtbase 
repository.
diff mbox

Patch

diff --git a/package/qt5/qt5base/qt5base-0007-detect-posix_fallocate-at-configure-time.patch b/package/qt5/qt5base/qt5base-0007-detect-posix_fallocate-at-configure-time.patch
index b0011f6..51cea04 100644
--- a/package/qt5/qt5base/qt5base-0007-detect-posix_fallocate-at-configure-time.patch
+++ b/package/qt5/qt5base/qt5base-0007-detect-posix_fallocate-at-configure-time.patch
@@ -136,12 +136,11 @@  diff --git a/src/3rdparty/sqlite.pri b/src/3rdparty/sqlite.pri
 index 58d4ddd..072502c 100644
 --- a/src/3rdparty/sqlite.pri
 +++ b/src/3rdparty/sqlite.pri
-@@ -1,6 +1,7 @@
+@@ -1,5 +1,6 @@
  CONFIG(release, debug|release):DEFINES *= NDEBUG
  DEFINES += SQLITE_OMIT_LOAD_EXTENSION SQLITE_OMIT_COMPLETE SQLITE_ENABLE_FTS3 SQLITE_ENABLE_FTS3_PARENTHESIS SQLITE_ENABLE_RTREE
  !contains(CONFIG, largefile):DEFINES += SQLITE_DISABLE_LFS
 +contains(QT_CONFIG, posix_fallocate):DEFINES += HAVE_POSIX_FALLOCATE=1
- winrt: DEFINES += SQLITE_OS_WINRT
  INCLUDEPATH +=  $$PWD/sqlite
  SOURCES +=      $$PWD/sqlite/sqlite3.c
 diff --git a/src/3rdparty/sqlite/sqlite3.c b/src/3rdparty/sqlite/sqlite3.c