Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 30 Oct 2013 16:04:00 +0000 (UTC)
From:      Roman Bogorodskiy <novel@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r332140 - head/sysutils/deltup/files
Message-ID:  <201310301604.r9UG40gU043385@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: novel
Date: Wed Oct 30 16:04:00 2013
New Revision: 332140
URL: http://svnweb.freebsd.org/changeset/ports/332140

Log:
  Continue attempts to fix compilation on all supported flavors.
  
  Replace gzFile_s with gzFile which appears to be more portable.
  
  Reported by:	pkg-fallout

Modified:
  head/sysutils/deltup/files/patch-file.h

Modified: head/sysutils/deltup/files/patch-file.h
==============================================================================
--- head/sysutils/deltup/files/patch-file.h	Wed Oct 30 16:03:25 2013	(r332139)
+++ head/sysutils/deltup/files/patch-file.h	Wed Oct 30 16:04:00 2013	(r332140)
@@ -14,7 +14,7 @@
  
  class GZ_IFStream : public IStream {
 -  void *file;
-+  gzFile_s *file;
++  gzFile file;
  public:
    GZ_IFStream(string fname);
    virtual ~GZ_IFStream();
@@ -23,7 +23,7 @@
  
  class GZ_OFStream : public OStream {
 -  void *file;
-+  gzFile_s *file;
++  gzFile file;
  public:
    GZ_OFStream(string fname);
    virtual ~GZ_OFStream();



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201310301604.r9UG40gU043385>