diff options
author | jmmv <jmmv@pkgsrc.org> | 2003-03-22 14:11:24 +0000 |
---|---|---|
committer | jmmv <jmmv@pkgsrc.org> | 2003-03-22 14:11:24 +0000 |
commit | 5f95dc1bb7c9cc7ffefdfb3f9c63ddf83e982902 (patch) | |
tree | 605992d844b644b1a241a45fb2c1fb7f4edccd81 /editors/lyx-qt/patches | |
parent | f06344b1e75ae9dbded1ce21148dcc8f91adcda5 (diff) | |
download | pkgsrc-5f95dc1bb7c9cc7ffefdfb3f9c63ddf83e982902.tar.gz |
Initial import of lyx-qt, version 1.3.1:
LyX is a wordprocessor frontend to LaTeX, which gives both the
ease-of-use of a wordprocessor, and the flexibility and power of
LaTeX.
Quasi-WYSIWYG interface, many LaTeX styles and layouts automatically
generated. Speeds up learning LaTeX and makes complicated layouts
easy and intuitive. New features include spell-checking, international
character support, WYSIWYG graphics, tables, and equations.
Fixes part of PR pkg/20805 by Marc Recht.
Diffstat (limited to 'editors/lyx-qt/patches')
-rw-r--r-- | editors/lyx-qt/patches/patch-aa | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/editors/lyx-qt/patches/patch-aa b/editors/lyx-qt/patches/patch-aa new file mode 100644 index 00000000000..a6f1c1da1fc --- /dev/null +++ b/editors/lyx-qt/patches/patch-aa @@ -0,0 +1,27 @@ +$NetBSD: patch-aa,v 1.1.1.1 2003/03/22 14:11:24 jmmv Exp $ + +--- boost/boost/detail/limits.hpp.orig 2003-02-18 13:12:14.000000000 +0100 ++++ boost/boost/detail/limits.hpp 2003-02-18 13:13:50.000000000 +0100 +@@ -47,6 +47,14 @@ + #include <cwchar> // for WCHAR_MIN and WCHAR_MAX + #endif + ++#ifdef __NetBSD__ ++#include <machine/endian.h> ++#if BYTE_ORDER == BIG_ENDIAN ++#define BOOST_BIG_ENDIAN ++#else ++#define BOOST_LITTLE_ENDIAN ++#endif ++#else + // The macros are not named appropriately. We don't care about integer + // bit layout, but about floating-point NaN (etc.) bit patterns. + #if defined(__sparc) || defined(__sparc__) || defined(__powerpc__) || defined(__ppc__) || defined(__hppa) || defined(_MIPSEB) || defined(_POWER) +@@ -56,6 +64,7 @@ + #else + #error The file boost/detail/limits.hpp needs to be set up for your CPU type. + #endif ++#endif + + namespace std { + |