diff --git a/files/patch-doc-Makefile.local.diff b/files/patch-doc-Makefile.local.diff
deleted file mode 100644
index 8031c50..0000000
+
|
-
|
|
1 | | Fix destroot by gzipping manpage before trying to install it. |
2 | | http://notmuchmail.org/pipermail/notmuch/2015/020103.html |
3 | | --- doc/Makefile.local.orig 2014-11-14 13:35:40.000000000 -0600 |
4 | | +++ doc/Makefile.local 2015-04-29 21:35:59.000000000 -0500 |
5 | | @@ -63,7 +63,7 @@ |
6 | | ifeq ($(HAVE_DOXYGEN),1) |
7 | | MAN_GZIP_FILES += ${APIMAN}.gz |
8 | | apidocs: $(APIMAN) |
9 | | -install-apidocs: apidocs |
10 | | +install-apidocs: ${APIMAN}.gz |
11 | | mkdir -p "$(DESTDIR)$(mandir)/man3" |
12 | | install -m0644 $(DOCBUILDDIR)/man/man3/*.3.gz $(DESTDIR)/$(mandir)/man3 |
13 | | |
diff --git a/files/patch-lib-Makefile.local.diff b/files/patch-lib-Makefile.local.diff
deleted file mode 100644
index ead0d08..0000000
+
|
-
|
|
1 | | --- lib/Makefile.local.orig 2012-08-21 03:43:50.000000000 -0500 |
2 | | +++ lib/Makefile.local 2012-12-03 03:50:15.000000000 -0600 |
3 | | @@ -24,7 +24,7 @@ |
4 | | LINKER_NAME = libnotmuch.$(LIBRARY_SUFFIX) |
5 | | SONAME = libnotmuch.$(LIBNOTMUCH_VERSION_MAJOR).$(LIBRARY_SUFFIX) |
6 | | LIBNAME = libnotmuch.$(LIBNOTMUCH_VERSION_MAJOR).$(LIBNOTMUCH_VERSION_MINOR).$(LIBNOTMUCH_VERSION_RELEASE).$(LIBRARY_SUFFIX) |
7 | | -LIBRARY_LINK_FLAG = -dynamiclib -install_name $(SONAME) -compatibility_version $(LIBNOTMUCH_VERSION_MAJOR).$(LIBNOTMUCH_VERSION_MINOR) -current_version $(LIBNOTMUCH_VERSION_MAJOR).$(LIBNOTMUCH_VERSION_MINOR).$(LIBNOTMUCH_VERSION_RELEASE) |
8 | | +LIBRARY_LINK_FLAG = -dynamiclib -install_name $(libdir)/$(SONAME) -compatibility_version $(LIBNOTMUCH_VERSION_MAJOR).$(LIBNOTMUCH_VERSION_MINOR) -current_version $(LIBNOTMUCH_VERSION_MAJOR).$(LIBNOTMUCH_VERSION_MINOR).$(LIBNOTMUCH_VERSION_RELEASE) |
9 | | else |
10 | | LIBRARY_SUFFIX = so |
11 | | LINKER_NAME = libnotmuch.$(LIBRARY_SUFFIX) |
diff --git a/files/visibility.patch b/files/visibility.patch
deleted file mode 100644
index ce48311..0000000
+
|
-
|
|
1 | | --- lib/notmuch-private.h.orig 2013-09-02 00:17:31.000000000 -0700 |
2 | | +++ lib/notmuch-private.h 2013-09-02 00:17:42.000000000 -0700 |
3 | | @@ -49,8 +49,6 @@ NOTMUCH_BEGIN_DECLS |
4 | | #include "xutil.h" |
5 | | #include "error_util.h" |
6 | | |
7 | | -#pragma GCC visibility push(hidden) |
8 | | - |
9 | | #ifdef DEBUG |
10 | | # define DEBUG_DATABASE_SANITY 1 |
11 | | # define DEBUG_QUERY 1 |
12 | | @@ -529,6 +527,4 @@ _notmuch_talloc_steal (const void *new_c |
13 | | #endif |
14 | | #endif |
15 | | |
16 | | -#pragma GCC visibility pop |
17 | | - |
18 | | #endif |