diff options
author | Tilman Keskinoz <arved@FreeBSD.org> | 2003-02-23 00:06:05 +0000 |
---|---|---|
committer | Tilman Keskinoz <arved@FreeBSD.org> | 2003-02-23 00:06:05 +0000 |
commit | c1965c8e63915d20c4ca717cc799b0bbf546b484 (patch) | |
tree | 91b3e0b7669badb1e0ec0a7c929b1b420b72c04f /editors/lfhex/files | |
parent | 8c349a2568f4842da57066872097114027b0de6d (diff) | |
download | ports-c1965c8e63915d20c4ca717cc799b0bbf546b484.tar.gz ports-c1965c8e63915d20c4ca717cc799b0bbf546b484.zip |
Make fetchable.
USE_QT_VER= 2 -> 3
De pkg-comment
Set Maintainership back to ports
Notes
Notes:
svn path=/head/; revision=76213
Diffstat (limited to 'editors/lfhex/files')
-rw-r--r-- | editors/lfhex/files/patch-hexEditor.cpp | 11 | ||||
-rw-r--r-- | editors/lfhex/files/patch-hexGui.cpp | 10 | ||||
-rw-r--r-- | editors/lfhex/files/patch-src::Makefile.in | 4 | ||||
-rw-r--r-- | editors/lfhex/files/patch-src::reader.cpp | 17 |
4 files changed, 36 insertions, 6 deletions
diff --git a/editors/lfhex/files/patch-hexEditor.cpp b/editors/lfhex/files/patch-hexEditor.cpp new file mode 100644 index 000000000000..37e262386879 --- /dev/null +++ b/editors/lfhex/files/patch-hexEditor.cpp @@ -0,0 +1,11 @@ +--- src/hexEditor.cpp.orig Sun Feb 23 00:37:11 2003 ++++ src/hexEditor.cpp Sun Feb 23 00:38:31 2003 +@@ -22,6 +22,8 @@ + #include <qfiledialog.h> + #include <qapplication.h> + #include <qprogressdialog.h> ++#include <qpainter.h> ++#include <qpixmap.h> + + #include "config.h" + #include "hexEditor.hpp" diff --git a/editors/lfhex/files/patch-hexGui.cpp b/editors/lfhex/files/patch-hexGui.cpp new file mode 100644 index 000000000000..274e649e95ca --- /dev/null +++ b/editors/lfhex/files/patch-hexGui.cpp @@ -0,0 +1,10 @@ +--- src/hexGui.cpp.orig Sat Jul 7 04:16:01 2001 ++++ src/hexGui.cpp Sun Feb 23 00:40:32 2003 +@@ -24,6 +24,7 @@ + #include <qscrollbar.h> + #include <qstring.h> + #include <qmessagebox.h> ++#include <qlineedit.h> + //#include <qprogressbar.h> + //#include <qtoolbar.h> + //#include <qtoolbutton.h> diff --git a/editors/lfhex/files/patch-src::Makefile.in b/editors/lfhex/files/patch-src::Makefile.in index 67e7a37f5a0c..d4a29f691d27 100644 --- a/editors/lfhex/files/patch-src::Makefile.in +++ b/editors/lfhex/files/patch-src::Makefile.in @@ -5,11 +5,11 @@ CXXFLAGS = @CXXFLAGS@ -INCLUDE_DIRS = $(QTDIR)/include -+INCLUDE_DIRS = %%X11BASE%%/include/qt2 %%LOCALBASE%%/include ++INCLUDE_DIRS = %%X11BASE%%/include %%LOCALBASE%%/include IFLAGS = $(addprefix -I,$(INCLUDE_DIRS)) -LIBRARIES = qt Xext X11 m -LIB_DIRS = $(QTDIR)/lib /usr/X11R6/lib -+LIBRARIES = qt2 Xext X11 m gnugetopt ++LIBRARIES = qt-mt Xext X11 m gnugetopt +LIB_DIRS = $(QTDIR)/lib /usr/X11R6/lib %%LOCALBASE%%/lib LFLAGS = $(addprefix -L,$(LIB_DIRS)) $(addprefix -l,$(LIBRARIES)) diff --git a/editors/lfhex/files/patch-src::reader.cpp b/editors/lfhex/files/patch-src::reader.cpp index c33bcdb52238..427ada379c0a 100644 --- a/editors/lfhex/files/patch-src::reader.cpp +++ b/editors/lfhex/files/patch-src::reader.cpp @@ -1,7 +1,16 @@ ---- src/reader.cpp.orig Fri Jul 6 10:40:46 2001 -+++ src/reader.cpp Fri Jul 6 10:40:58 2001 -@@ -283,7 +283,7 @@ - #ifdef __GNUC__ +--- src/reader.cpp.orig Sat Jul 7 04:16:01 2001 ++++ src/reader.cpp Sun Feb 23 00:46:53 2003 +@@ -227,7 +227,7 @@ + // free the page which is the furthest away from the page we are loading + + // this could be trouble if off_t is unsigned! +- if( abs(_firstPage - pageIdx) > abs(_lastPage - pageIdx) ) ++ if( abs((long int)(_firstPage - pageIdx)) > abs((long int)(_lastPage - pageIdx)) ) + while(!freePage(_firstPage++)); + else + while(!freePage(_lastPage--)); +@@ -285,7 +285,7 @@ + #ifdef LFHEX_IOS_BASE_FMTFLAGS ostream& operator<< (ostream&out, const ReadBuffer& buff) { - ios_base::fmtflags old_flags = out.flags(); |