summaryrefslogtreecommitdiff
path: root/editors/lyx-qt/patches
diff options
context:
space:
mode:
authordrochner <drochner@pkgsrc.org>2005-07-19 17:49:33 +0000
committerdrochner <drochner@pkgsrc.org>2005-07-19 17:49:33 +0000
commite4e73da7028d04145659f84ba51f5bff71e378e6 (patch)
tree435c49e9ae04b9ab5af2f5eabd58ba4706f48618 /editors/lyx-qt/patches
parent4b6cd6c371cb2b119e568f902802418e061263e5 (diff)
downloadpkgsrc-e4e73da7028d04145659f84ba51f5bff71e378e6.tar.gz
update to 1.3.6
changes: bugfixes, in particular: * It is now possible to typeset files which reside in a directory with spaces in its name; this requires a modern TeX implementation (such as teTeX 3.0). * It is possible to use Ctrl-PageDown and Control-PageUp (<opt>-tab and <opt><shift>-tab with LyX/Mac) to switch between the open documents. * LaTeX-type accents, ligature breaks and hyphenation marks are now considered as part of words
Diffstat (limited to 'editors/lyx-qt/patches')
-rw-r--r--editors/lyx-qt/patches/patch-af13
-rw-r--r--editors/lyx-qt/patches/patch-aj19
-rw-r--r--editors/lyx-qt/patches/patch-ak13
3 files changed, 32 insertions, 13 deletions
diff --git a/editors/lyx-qt/patches/patch-af b/editors/lyx-qt/patches/patch-af
deleted file mode 100644
index 35bf9aa909b..00000000000
--- a/editors/lyx-qt/patches/patch-af
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-af,v 1.1 2004/05/29 11:19:59 shannonjr Exp $
-
---- ./boost/boost/format/feed_args.hpp.orig 2002-11-20 10:20:54.000000000 -0700
-+++ ./boost/boost/format/feed_args.hpp
-@@ -34,7 +34,7 @@ namespace {
-
- template<class Tr, class Ch> inline
- void empty_buf(BOOST_IO_STD basic_ostringstream<Ch,Tr> & os) {
-- static const std::basic_string<Ch, Tr> emptyStr; // avoids 2 cases ( "" and L"" )
-+ const std::basic_string<Ch, Tr> emptyStr; // avoids 2 cases ( "" and L"" )
- os.str(emptyStr);
- }
-
diff --git a/editors/lyx-qt/patches/patch-aj b/editors/lyx-qt/patches/patch-aj
new file mode 100644
index 00000000000..6d8eb4d805b
--- /dev/null
+++ b/editors/lyx-qt/patches/patch-aj
@@ -0,0 +1,19 @@
+$NetBSD: patch-aj,v 1.1 2005/07/19 17:49:33 drochner Exp $
+
+--- src/support/Makefile.in.orig 2005-07-18 18:00:23.000000000 +0200
++++ src/support/Makefile.in
+@@ -651,12 +651,11 @@ package.lo: ../config.h \
+ $(top_srcdir)/src/BoostFormat.h $(top_srcdir)/src/debug.h \
+ $(top_srcdir)/src/gettext.h $(top_srcdir)/src/Lsstream.h \
+ $(top_srcdir)/src/LString.h
+- $(CXXCOMPILE) \
++ $(LTCXXCOMPILE) \
+ -DLYX_DIR=\"$(pkgdatadir)\" \
+ -DTOP_SRCDIR=\"$(top_srcdir)\" \
+ -DLOCALEDIR=\"$(localedir)\" \
+- -c $(top_srcdir)/src/support/package.C && \
+- echo "timestamp" > $@
++ -c $(top_srcdir)/src/support/package.C
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
+ # Otherwise a system limit (for SysV at least) may be exceeded.
+ .NOEXPORT:
diff --git a/editors/lyx-qt/patches/patch-ak b/editors/lyx-qt/patches/patch-ak
new file mode 100644
index 00000000000..a506d890cf2
--- /dev/null
+++ b/editors/lyx-qt/patches/patch-ak
@@ -0,0 +1,13 @@
+$NetBSD: patch-ak,v 1.1 2005/07/19 17:49:33 drochner Exp $
+
+--- src/frontends/qt2/QPrefs.C.orig 2005-07-18 19:00:12.000000000 +0200
++++ src/frontends/qt2/QPrefs.C
+@@ -347,7 +347,7 @@ void setComboxFont(QComboBox * cb, strin
+ string const & default_font_name = tmp.first;
+
+ for (int i = cb->count() - 1; i >= 0; --i) {
+- if (cb->text(i) == default_font_name) {
++ if (fromqstr(cb->text(i)) == default_font_name) {
+ cb->setCurrentItem(i);
+ return;
+ }