summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2022-02-15 19:26:31 +0000
committerwiz <wiz@pkgsrc.org>2022-02-15 19:26:31 +0000
commitdf5e9e09fee2e7c2ed465b5dbe1ff177483640ea (patch)
tree193ffccd3d38b13676d892c85d6c4bb853d3a4cb
parent3a94575b4e7c8282ed8d752ed2f856d73aaf6235 (diff)
downloadpkgsrc-df5e9e09fee2e7c2ed465b5dbe1ff177483640ea.tar.gz
poppler: remove patch that was rejected upstream
The patch makes one header file more usable from C; but upstream says poppler is a C++ library https://gitlab.freedesktop.org/poppler/poppler/-/issues/1219
-rw-r--r--print/poppler/patches/patch-poppler_poppler-config.h.cmake17
1 files changed, 0 insertions, 17 deletions
diff --git a/print/poppler/patches/patch-poppler_poppler-config.h.cmake b/print/poppler/patches/patch-poppler_poppler-config.h.cmake
deleted file mode 100644
index ff3fee89000..00000000000
--- a/print/poppler/patches/patch-poppler_poppler-config.h.cmake
+++ /dev/null
@@ -1,17 +0,0 @@
-$NetBSD: patch-poppler_poppler-config.h.cmake,v 1.1 2020/01/13 00:57:17 joerg Exp $
-
---- poppler/poppler-config.h.cmake.orig 2020-01-13 00:10:29.414712344 +0000
-+++ poppler/poppler-config.h.cmake
-@@ -139,7 +139,11 @@
- //------------------------------------------------------------------------
-
- #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ > 4)
--#include <cstdio> // __MINGW_PRINTF_FORMAT is defined in the mingw stdio.h
-+# if __cplusplus
-+# include <cstdio> // __MINGW_PRINTF_FORMAT is defined in the mingw stdio.h
-+# else
-+# include <stdio.h>
-+# endif
- #ifdef __MINGW_PRINTF_FORMAT
- #define GCC_PRINTF_FORMAT(fmt_index, va_index) \
- __attribute__((__format__(__MINGW_PRINTF_FORMAT, fmt_index, va_index)))