diff options
author | krion <krion@FreeBSD.org> | 2003-10-16 20:27:06 +0000 |
---|---|---|
committer | krion <krion@FreeBSD.org> | 2003-10-16 20:27:06 +0000 |
commit | 67f68387f3db2973a0ecff545b421d354f8f373d (patch) | |
tree | f144020ae7364798817b89bcb576bee05e2df96f /editors/lfhex/files | |
parent | fa91852442747f88ffe004ad1b5d05c3ed2d308a (diff) | |
download | FreeBSD-ports-67f68387f3db2973a0ecff545b421d354f8f373d.zip FreeBSD-ports-67f68387f3db2973a0ecff545b421d354f8f373d.tar.gz |
- Update to version 0.3.4
- Unbreak on -current
PR: 58126
Submitted by: Ports Fury
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 | 16 | ||||
-rw-r--r-- | editors/lfhex/files/patch-src::reader.cpp | 16 |
4 files changed, 12 insertions, 41 deletions
diff --git a/editors/lfhex/files/patch-hexEditor.cpp b/editors/lfhex/files/patch-hexEditor.cpp deleted file mode 100644 index 37e2623..0000000 --- a/editors/lfhex/files/patch-hexEditor.cpp +++ /dev/null @@ -1,11 +0,0 @@ ---- 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 deleted file mode 100644 index 274e649..0000000 --- a/editors/lfhex/files/patch-hexGui.cpp +++ /dev/null @@ -1,10 +0,0 @@ ---- 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 deleted file mode 100644 index 855e2db..0000000 --- a/editors/lfhex/files/patch-src::Makefile.in +++ /dev/null @@ -1,16 +0,0 @@ ---- src/Makefile.in.orig Wed Jul 4 10:27:43 2001 -+++ src/Makefile.in Fri Jul 6 10:34:56 2001 -@@ -16,10 +16,10 @@ - endif - - CXXFLAGS = @CXXFLAGS@ --INCLUDE_DIRS = $(QTDIR)/include -+INCLUDE_DIRS = %%X11BASE%%/include - IFLAGS = $(addprefix -I,$(INCLUDE_DIRS)) --LIBRARIES = qt Xext X11 m --LIB_DIRS = $(QTDIR)/lib /usr/X11R6/lib -+LIBRARIES = qt-mt Xext X11 m -+LIB_DIRS = $(QTDIR)/lib /usr/X11R6/lib - LFLAGS = $(addprefix -L,$(LIB_DIRS)) $(addprefix -l,$(LIBRARIES)) - - CXX_SRC = $(wildcard *.cpp) diff --git a/editors/lfhex/files/patch-src::reader.cpp b/editors/lfhex/files/patch-src::reader.cpp index 427ada3..e487c0b 100644 --- a/editors/lfhex/files/patch-src::reader.cpp +++ b/editors/lfhex/files/patch-src::reader.cpp @@ -1,6 +1,14 @@ ---- 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 @@ +--- src/reader.cpp.orig Sat Jul 7 11:16:01 2001 ++++ src/reader.cpp Thu Oct 16 20:54:13 2003 +@@ -13,6 +13,7 @@ + #include <stdexcept> + #include <algorithm> + #include <new> ++#include <cassert> + + // for stat: + #include <sys/types.h> +@@ -227,7 +228,7 @@ // free the page which is the furthest away from the page we are loading // this could be trouble if off_t is unsigned! @@ -9,7 +17,7 @@ while(!freePage(_firstPage++)); else while(!freePage(_lastPage--)); -@@ -285,7 +285,7 @@ +@@ -285,7 +286,7 @@ #ifdef LFHEX_IOS_BASE_FMTFLAGS ostream& operator<< (ostream&out, const ReadBuffer& buff) { |