diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2017-03-22 20:01:16 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2017-03-22 20:01:16 +0000 |
commit | 09f73822dffc534f737e632e0650ba84c2f30a5b (patch) | |
tree | 44fa9b20a1fb1ecd367c2f23eac9ed5fb0110f0a /textproc/lowdown/files | |
parent | bcd21075649d1b0f85ebe857fb9f81cf5dd68283 (diff) | |
download | ports-09f73822dffc534f737e632e0650ba84c2f30a5b.tar.gz ports-09f73822dffc534f737e632e0650ba84c2f30a5b.zip |
Notes
Diffstat (limited to 'textproc/lowdown/files')
-rw-r--r-- | textproc/lowdown/files/patch-Makefile | 19 | ||||
-rw-r--r-- | textproc/lowdown/files/patch-xmalloc.c | 20 |
2 files changed, 0 insertions, 39 deletions
diff --git a/textproc/lowdown/files/patch-Makefile b/textproc/lowdown/files/patch-Makefile deleted file mode 100644 index 21d9923e4c45..000000000000 --- a/textproc/lowdown/files/patch-Makefile +++ /dev/null @@ -1,19 +0,0 @@ ---- Makefile.orig 2017-01-20 14:49:54 UTC -+++ Makefile -@@ -21,7 +21,7 @@ LIBDIR = $(PREFIX)/lib - INCLUDEDIR = $(PREFIX)/include - MANDIR = $(PREFIX)/man - WWWDIR = /var/www/vhosts/kristaps.bsd.lv/htdocs/lowdown --HTMLS = archive.html index.html lowdown.1.html lowdown.3.html README.html -+HTMLS = archive.html index.html lowdown.1.html README.html - PDFS = index.pdf README.pdf - MDS = index.md README.md - CSSS = template.css mandoc.css -@@ -54,7 +54,6 @@ install: all - install -m 0644 liblowdown.a $(DESTDIR)$(LIBDIR) - install -m 0644 lowdown.h $(DESTDIR)$(INCLUDEDIR) - install -m 0644 lowdown.1 $(DESTDIR)$(MANDIR)/man1 -- install -m 0644 lowdown.3 $(DESTDIR)$(MANDIR)/man3 - - index.xml README.xml index.pdf README.pdf: lowdown - diff --git a/textproc/lowdown/files/patch-xmalloc.c b/textproc/lowdown/files/patch-xmalloc.c deleted file mode 100644 index 05ed2c31b167..000000000000 --- a/textproc/lowdown/files/patch-xmalloc.c +++ /dev/null @@ -1,20 +0,0 @@ ---- xmalloc.c.orig 2017-01-20 14:49:54 UTC -+++ xmalloc.c -@@ -14,6 +14,8 @@ - * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF - * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - */ -+#include <sys/param.h> -+ - #include <err.h> - #include <stdarg.h> - #include <stdint.h> -@@ -64,7 +66,7 @@ void * - xreallocarray(void *p, size_t nm, size_t sz) - { - --#if defined(__OpenBSD__) || defined(__FreeBSD__) -+#if defined(__OpenBSD__) || (defined(__FreeBSD__) && __FreeBSD_version > 1100071) - if ((p = reallocarray(p, nm, sz)) == NULL) - err(EXIT_FAILURE, NULL); - #else |