summaryrefslogtreecommitdiff
path: root/cross/avrdude
diff options
context:
space:
mode:
authormef <mef>2014-10-07 15:50:03 +0000
committermef <mef>2014-10-07 15:50:03 +0000
commitd9882b9109e0cd41b4ebd94dfb1d13ffdf350089 (patch)
treeb9a7e7825e61d274bd7f751a4088db041b19d64d /cross/avrdude
parent0d059fcab7f722f5b70de9eb362f2ce5c596d247 (diff)
downloadpkgsrc-d9882b9109e0cd41b4ebd94dfb1d13ffdf350089.tar.gz
Sorry, removing left out patch.
Diffstat (limited to 'cross/avrdude')
-rw-r--r--cross/avrdude/patches/patch-fileio_c24
1 files changed, 0 insertions, 24 deletions
diff --git a/cross/avrdude/patches/patch-fileio_c b/cross/avrdude/patches/patch-fileio_c
deleted file mode 100644
index dfce84232a4..00000000000
--- a/cross/avrdude/patches/patch-fileio_c
+++ /dev/null
@@ -1,24 +0,0 @@
-$NetBSD: patch-fileio_c,v 1.1 2013/12/06 07:27:15 mef Exp $
-
-To fix the warning:
- fileio.c:957:3: warning: implicit declaration of function 'elf_getshdrstrndx'
-
-in libelf-0.8.13, elf_getshdrstrndx is declared in libelf/libelf.h, so
-that header file is to come first in if..elfif..endif clause.
-
---- fileio.c~ 2013-10-06 18:37:49.000000000 +0900
-+++ fileio.c 2013-10-06 18:38:23.000000000 +0900
-@@ -29,10 +29,10 @@
- #include <stdint.h>
-
- #ifdef HAVE_LIBELF
--#ifdef HAVE_LIBELF_H
--#include <libelf.h>
--#elif defined(HAVE_LIBELF_LIBELF_H)
-+#ifdef HAVE_LIBELF_LIBELF_H
- #include <libelf/libelf.h>
-+#elif defined(HAVE_LIBELF_H)
-+#include <libelf.h>
- #endif
- #define EM_AVR32 0x18ad /* inofficial */
- #endif