Friday, August 23, 2019

Re: Potential cad/qcad sparc64 fix

On Fri, Aug 23, 2019 at 01:51:42PM +0200, Ingo Feinerer wrote:

> Below is a new diff that (hopefully) addresses all problems.

> OK?

It worked. The build finished this time. OK kmos

--Kurt

> Index: Makefile
> ===================================================================
> RCS file: /cvs/ports/cad/qcad/Makefile,v
> retrieving revision 1.34
> diff -u -p -r1.34 Makefile
> --- Makefile 14 Aug 2019 06:56:50 -0000 1.34
> +++ Makefile 23 Aug 2019 11:46:06 -0000
> @@ -5,6 +5,7 @@ COMMENT = Qt-based 2D CAD system
> GH_ACCOUNT = qcad
> GH_PROJECT = qcad
> GH_TAGNAME = v3.23.0.0
> +REVISION = 0
>
> SO_VERSION = 0.0
> QCAD_LIBS = qcadcore \
> Index: patches/patch-src_3rdparty_opennurbs_opennurbs_zlib_cpp
> ===================================================================
> RCS file: patches/patch-src_3rdparty_opennurbs_opennurbs_zlib_cpp
> diff -N patches/patch-src_3rdparty_opennurbs_opennurbs_zlib_cpp
> --- /dev/null 1 Jan 1970 00:00:00 -0000
> +++ patches/patch-src_3rdparty_opennurbs_opennurbs_zlib_cpp 23 Aug 2019 11:46:06 -0000
> @@ -0,0 +1,61 @@
> +$OpenBSD$
> +
> +Index: src/3rdparty/opennurbs/opennurbs_zlib.cpp
> +--- src/3rdparty/opennurbs/opennurbs_zlib.cpp.orig
> ++++ src/3rdparty/opennurbs/opennurbs_zlib.cpp
> +@@ -293,11 +293,11 @@ size_t ON_BinaryArchive::WriteDeflate( // returns numb
> + // no uncompressed input is left - switch to finish mode
> + flush = Z_FINISH;
> + }
> +- zrc = z_deflate( &m_zlib.strm, flush );
> ++ zrc = deflate( &m_zlib.strm, flush );
> + if ( zrc < 0 )
> + {
> + // Something went haywire - bail out.
> +- ON_ERROR("ON_BinaryArchive::WriteDeflate - z_deflate failure");
> ++ ON_ERROR("ON_BinaryArchive::WriteDeflate - deflate failure");
> + rc = false;
> + break;
> + }
> +@@ -491,11 +491,11 @@ bool ON_BinaryArchive::ReadInflate(
> + // no compressed input is left - switch to finish mode
> + flush = Z_FINISH;
> + }
> +- zrc = z_inflate( &m_zlib.strm, flush );
> ++ zrc = inflate( &m_zlib.strm, flush );
> + if ( zrc < 0 )
> + {
> + // Something went haywire - bail out.
> +- ON_ERROR("ON_BinaryArchive::ReadInflate - z_inflate failure");
> ++ ON_ERROR("ON_BinaryArchive::ReadInflate - inflate failure");
> + rc = false;
> + break;
> + }
> +@@ -1151,11 +1151,11 @@ size_t ON_CompressedBuffer::DeflateHelper( // returns
> + // no uncompressed input is left - switch to finish mode
> + flush = Z_FINISH;
> + }
> +- zrc = z_deflate( &m_zlib.strm, flush );
> ++ zrc = deflate( &m_zlib.strm, flush );
> + if ( zrc < 0 )
> + {
> + // Something went haywire - bail out.
> +- ON_ERROR("ON_CompressedBuffer::DeflateHelper - z_deflate failure");
> ++ ON_ERROR("ON_CompressedBuffer::DeflateHelper - deflate failure");
> + rc = false;
> + break;
> + }
> +@@ -1284,11 +1284,11 @@ bool ON_CompressedBuffer::InflateHelper(
> + // no compressed input is left - switch to finish mode
> + flush = Z_FINISH;
> + }
> +- zrc = z_inflate( &m_zlib.strm, flush );
> ++ zrc = inflate( &m_zlib.strm, flush );
> + if ( zrc < 0 )
> + {
> + // Something went haywire - bail out.
> +- ON_ERROR("ON_CompressedBuffer::InflateHelper - z_inflate failure");
> ++ ON_ERROR("ON_CompressedBuffer::InflateHelper - inflate failure");
> + rc = false;
> + break;
> + }
> Index: patches/patch-src_3rdparty_opennurbs_opennurbs_zlib_h
> ===================================================================
> RCS file: patches/patch-src_3rdparty_opennurbs_opennurbs_zlib_h
> diff -N patches/patch-src_3rdparty_opennurbs_opennurbs_zlib_h
> --- /dev/null 1 Jan 1970 00:00:00 -0000
> +++ patches/patch-src_3rdparty_opennurbs_opennurbs_zlib_h 23 Aug 2019 11:46:06 -0000
> @@ -0,0 +1,23 @@
> +$OpenBSD$
> +
> +Index: src/3rdparty/opennurbs/opennurbs_zlib.h
> +--- src/3rdparty/opennurbs/opennurbs_zlib.h.orig
> ++++ src/3rdparty/opennurbs/opennurbs_zlib.h
> +@@ -30,7 +30,7 @@
> +
> + #if !defined(Z_PREFIX)
> + /* decorates zlib functions with a "z_" prefix to prevent symbol collision. */
> +-#define Z_PREFIX
> ++//#define Z_PREFIX
> +

No comments:

Post a Comment