diff options
author | ade <ade@FreeBSD.org> | 2000-03-29 21:22:50 +0000 |
---|---|---|
committer | ade <ade@FreeBSD.org> | 2000-03-29 21:22:50 +0000 |
commit | 51c22eea984352ab62c150d27e0abd27a69ca88b (patch) | |
tree | 24de2faf676557b657d6adcbfaccdd896793f1dd /graphics/djvulibre/files | |
parent | 0950028832d5d8378973a73fd251f429262f8547 (diff) | |
download | FreeBSD-ports-51c22eea984352ab62c150d27e0abd27a69ca88b.zip FreeBSD-ports-51c22eea984352ab62c150d27e0abd27a69ca88b.tar.gz |
libdjvu++ is AT&T's DjVu library from scanned images
See http://www.djvu.com/ for more details
PR: 12722
Submitted by: Mikhail Teterin <mi@aldan.algebra.com>
Diffstat (limited to 'graphics/djvulibre/files')
-rw-r--r-- | graphics/djvulibre/files/patch-aa | 7 | ||||
-rw-r--r-- | graphics/djvulibre/files/patch-ab | 7 | ||||
-rw-r--r-- | graphics/djvulibre/files/patch-ac | 18 |
3 files changed, 32 insertions, 0 deletions
diff --git a/graphics/djvulibre/files/patch-aa b/graphics/djvulibre/files/patch-aa new file mode 100644 index 0000000..213b2b6 --- /dev/null +++ b/graphics/djvulibre/files/patch-aa @@ -0,0 +1,7 @@ +--- DjVuImage.cpp.orig Wed Mar 17 14:24:56 1999 ++++ DjVuImage.cpp Tue Jul 20 14:32:03 1999 +@@ -125,3 +125,3 @@ + GCriticalSectionLock lock(&mutex); +- bs.writall((const void*)raw, raw.length()); ++ bs.writall((const char*)raw, raw.length()); + } diff --git a/graphics/djvulibre/files/patch-ab b/graphics/djvulibre/files/patch-ab new file mode 100644 index 0000000..673e68e --- /dev/null +++ b/graphics/djvulibre/files/patch-ab @@ -0,0 +1,7 @@ +--- GContainer.h.orig Wed Mar 17 14:24:57 1999 ++++ GContainer.h Tue Jul 20 14:33:21 1999 +@@ -981,3 +981,3 @@ + if (data && lobound<=hibound) +- for (int i=lobound; i<=hibound; i++) ++ for (i=lobound; i<=hibound; i++) + data[i-minlo].TYPE::~TYPE(); diff --git a/graphics/djvulibre/files/patch-ac b/graphics/djvulibre/files/patch-ac new file mode 100644 index 0000000..4479876 --- /dev/null +++ b/graphics/djvulibre/files/patch-ac @@ -0,0 +1,18 @@ +--- Makefile.in.orig Wed Mar 17 14:24:59 1999 ++++ Makefile.in Tue Jul 20 18:08:59 1999 +@@ -36 +36 @@ +-LIB= libdjvu++.a ++LIB= libdjvu++.so +@@ -53,4 +53,3 @@ +-$(LIB): $(LIBOBJS) +- if [ -r $(LIB) ] ; then rm $(LIB) ; fi +- $(AR) cq $(LIB) $(LIBOBJS) +- $(RANLIB) $(LIB) ++$(LIB): ${LIBOBJS:.o=.cpp} ++ ${MAKE} -f bsd.lib.mk CXX="${CXX}" OBJS="${LIBOBJS}" LIB=djvu++ \ ++ SHLIB_MAJOR=${VER:R} SHLIB_MINOR=${VER:E} +--- @Test/Makefile.in.orig Fri Mar 5 19:42:53 1999 ++++ @Test/Makefile.in Tue Jul 20 18:00:24 1999 +@@ -17 +17 @@ +-LIB= ../libdjvu++.a ++LIB= ../libdjvu++.so |