diff options
author | Frank Schoenheit [fs] <frank.schoenheit@oracle.com> | 2011-03-14 09:47:56 +0100 |
---|---|---|
committer | Frank Schoenheit [fs] <frank.schoenheit@oracle.com> | 2011-03-14 09:47:56 +0100 |
commit | d6ceaf5728a20b696b12a519cd31ab0fd86654d2 (patch) | |
tree | 4877364cdb63d05eeaf4390e421567d0dce2e7f3 /graphite | |
parent | aa105aad961f3e74434a550d3c9abd30341e8dad (diff) | |
parent | 1e94a4e6c2591d3ad9101e5b524294a5986c0949 (diff) |
debuglevels: pulled and merged DEV300.m102
Diffstat (limited to 'graphite')
-rw-r--r-- | graphite/graphite-2.3.1_debug.patch | 13 | ||||
-rw-r--r-- | graphite/makefile.mk | 2 |
2 files changed, 14 insertions, 1 deletions
diff --git a/graphite/graphite-2.3.1_debug.patch b/graphite/graphite-2.3.1_debug.patch new file mode 100644 index 000000000000..583fac711e2b --- /dev/null +++ b/graphite/graphite-2.3.1_debug.patch @@ -0,0 +1,13 @@ +--- misc/silgraphite-2.3.1/engine/src/segment/SegmentAux.cpp 2008-08-21 16:24:32.000000000 +0200 ++++ misc/build/silgraphite-2.3.1/engine/src/segment/SegmentAux.cpp 2011-02-21 13:22:23.159834368 +0100 +@@ -247,7 +247,9 @@ + GlyphSetIterator::reference GlyphSetIterator::operator*() const + { + assert(m_pseg != 0); +- assert(m_vit != std::vector<int>::const_iterator()); ++ // #i116227# the check below is well meant but breaks itself when using stlport with debug facilities ++ // a valid iterator cannot be compared to an empty one in that case ++ // assert(m_vit != std::vector<int>::const_iterator()); + // in the case of a non-contiguous list + return m_pseg->m_prgginf[(*m_vit) - m_pseg->m_isloutGinf0]; + } diff --git a/graphite/makefile.mk b/graphite/makefile.mk index 3721fda49bef..77cd1df94a4e 100644 --- a/graphite/makefile.mk +++ b/graphite/makefile.mk @@ -47,7 +47,7 @@ all: .IF "$(ENABLE_GRAPHITE)"=="TRUE" TARFILE_NAME=silgraphite-2.3.1 TARFILE_MD5=d35724900f6a4105550293686688bbb3 -PATCH_FILES=graphite-2.3.1.patch +PATCH_FILES=graphite-2.3.1.patch graphite-2.3.1_debug.patch # convert line-endings to avoid problems when patching CONVERTFILES=\ |