summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--lzw.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 0909c92..89946a8 100644
--- a/Makefile
+++ b/Makefile
@@ -8,7 +8,7 @@ LARGE = $(shell getconf LFS_CFLAGS)
CFLAGS = $(RPM_OPT_FLAGS) -pipe -Wall -D_GNU_SOURCE -D_REENTRANT -D_DEFAULT_SOURCE $(LARGE)
CC = gcc
MAJOR = 1
-MINOR = 03
+MINOR = 04
VERSION = $(MAJOR).$(MINOR)
SONAME = libzio.so.$(MAJOR)
LDMAP = -Wl,--version-script=zio.map
diff --git a/lzw.h b/lzw.h
index f1251f3..d02890f 100644
--- a/lzw.h
+++ b/lzw.h
@@ -48,7 +48,7 @@
#include "zioP.h"
#if defined _REENTRANT || defined _THREAD_SAFE
-# include <pthread.h>
+# include <signal.h>
weak_symbol(pthread_sigmask);
#endif