svn commit: r332140 - head/sysutils/deltup/files

Roman Bogorodskiy novel at FreeBSD.org
Wed Oct 30 16:04:01 UTC 2013


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();


More information about the svn-ports-all mailing list