diff options
author | arved <arved@FreeBSD.org> | 2009-03-14 02:15:57 +0800 |
---|---|---|
committer | arved <arved@FreeBSD.org> | 2009-03-14 02:15:57 +0800 |
commit | 8e361ff77db65796be34a1356c6864b9f2734bda (patch) | |
tree | 54cf630061073d8b27f4a42d415647a83a8e1fef /archivers/xmill | |
parent | 439b6d02b1c04fe27be9fc5dc82bb2e3a9181dab (diff) | |
download | freebsd-ports-gnome-8e361ff77db65796be34a1356c6864b9f2734bda.tar.gz freebsd-ports-gnome-8e361ff77db65796be34a1356c6864b9f2734bda.tar.zst freebsd-ports-gnome-8e361ff77db65796be34a1356c6864b9f2734bda.zip |
Unbreak on 64bit platforms
Diffstat (limited to 'archivers/xmill')
-rw-r--r-- | archivers/xmill/Makefile | 4 | ||||
-rw-r--r-- | archivers/xmill/files/patch-XMill-CompressMan.cpp | 11 | ||||
-rw-r--r-- | archivers/xmill/files/patch-XMill-PPMDI.cpp | 11 |
3 files changed, 22 insertions, 4 deletions
diff --git a/archivers/xmill/Makefile b/archivers/xmill/Makefile index bbcbe7ba1851..471fc06b022f 100644 --- a/archivers/xmill/Makefile +++ b/archivers/xmill/Makefile @@ -27,10 +27,6 @@ PORTEXAMPLES= * .include <bsd.port.pre.mk> -.if ( ${ARCH} == "amd64" || ${ARCH} == "sparc64" ) && ${OSVERSION} >= 700043 -BROKEN= does not compile -.endif - post-patch: # Allow to build with modern GCC @${REINPLACE_CMD} -e 's,friend,& class,' ${WRKSRC}/XMill/*.?pp \ diff --git a/archivers/xmill/files/patch-XMill-CompressMan.cpp b/archivers/xmill/files/patch-XMill-CompressMan.cpp new file mode 100644 index 000000000000..0df8b5694305 --- /dev/null +++ b/archivers/xmill/files/patch-XMill-CompressMan.cpp @@ -0,0 +1,11 @@ +--- XMill/CompressMan.cpp.orig 2009-03-13 19:11:05.000000000 +0100 ++++ XMill/CompressMan.cpp 2009-03-13 19:11:08.000000000 +0100 +@@ -423,7 +423,7 @@ + UserCompressorFactory *compressor=compressorlist;
+ while(compressor!=NULL)
+ {
+- printf("%lu =>",(unsigned int)compressor);
++ printf("%lu =>",(unsigned intptr_t)compressor);
+ printf("%s\n",compressor->GetName());
+ compressor=compressor->next;
+ }
diff --git a/archivers/xmill/files/patch-XMill-PPMDI.cpp b/archivers/xmill/files/patch-XMill-PPMDI.cpp new file mode 100644 index 000000000000..8080202fddc5 --- /dev/null +++ b/archivers/xmill/files/patch-XMill-PPMDI.cpp @@ -0,0 +1,11 @@ +--- XMill/PPMDI.cpp.orig 2009-03-13 19:12:05.000000000 +0100 ++++ XMill/PPMDI.cpp 2009-03-13 19:12:29.000000000 +0100 +@@ -245,7 +245,7 @@ +
+ cleanup:
+ *outused = j;
+- *inused = inlen - (int)endptr + (int)src;
++ *inused = inlen - (intptr_t)endptr + (intptr_t)src;
+ return ret;
+ }
+
|