summaryrefslogtreecommitdiff
path: root/src/htsmodules.c
diff options
context:
space:
mode:
authorXavier Roche <xroche@users.noreply.github.com>2013-05-19 16:02:04 +0000
committerXavier Roche <xroche@users.noreply.github.com>2013-05-19 16:02:04 +0000
commit1433170ef4e88c4c433fd25df3864973e0e62a54 (patch)
tree1f34282f7ad759f6c8025b42f3048e6249ec7e24 /src/htsmodules.c
parent063acf016081ae9c2b096595564f0399f6ea19b5 (diff)
removed gz_is_available flag (zlib is mandatory)
Diffstat (limited to 'src/htsmodules.c')
-rw-r--r--src/htsmodules.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/htsmodules.c b/src/htsmodules.c
index 338140a..c322d83 100644
--- a/src/htsmodules.c
+++ b/src/htsmodules.c
@@ -56,8 +56,6 @@ extern int fspc(httrackp * opt, FILE * fp, const char *type);
/* >>> Put all modules variables here */
-int gz_is_available = 0;
-
#if 0
t_gzopen gzopen = NULL;
t_gzread gzread = NULL;
@@ -257,12 +255,9 @@ void htspe_init(void) {
}
#endif
- /* Zlib is now statically linked */
- gz_is_available = 1;
-
/* Options availability */
sprintf(WHAT_is_available, "%s%s%s", V6_is_available ? "" : "-noV6",
- gz_is_available ? "" : "-nozip",
+ "",
#if HTS_USEOPENSSL
""
#else