BUG: libtar now compiles in VJ and works with vtkzlib
This commit is contained in:
parent
4a765181cc
commit
17c3a89797
|
@ -39,6 +39,9 @@
|
|||
/* Define to 1 if you have the `z' library (-lz). */
|
||||
#cmakedefine HAVE_LIBZ @HAVE_LIBZ@
|
||||
|
||||
/* Define to 1 if you have the VTK's `z' library */
|
||||
#cmakedefine HAVE_VTK_LIBZ @HAVE_VTK_LIBZ@
|
||||
|
||||
/* Define to 1 if the system has the type `major_t'. */
|
||||
#cmakedefine HAVE_MAJOR_T @HAVE_MAJOR_T@
|
||||
|
||||
|
|
|
@ -36,8 +36,17 @@
|
|||
#endif
|
||||
|
||||
#ifdef HAVE_LIBZ
|
||||
#ifdef HAVE_VTK_LIBZ
|
||||
# include <vtkzlib/zlib.h>
|
||||
# define cm_zlib_gzdopen gzdopen
|
||||
# define cm_zlib_gzclose gzclose
|
||||
# define cm_zlib_gzread gzread
|
||||
# define cm_zlib_gzwrite gzwrite
|
||||
|
||||
#else
|
||||
# include <cmzlib/zlib.h>
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#include <libtar/compat.h>
|
||||
|
||||
|
|
Loading…
Reference in New Issue