summaryrefslogtreecommitdiff
path: root/media-gfx/fontforge/files/fontforge-20150430-intelligent-execinfo_h.patch
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2017-06-11 08:41:26 +0000
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2017-06-11 08:41:26 +0000
commit2f6caac6019e3182486965f7f09baed7e93e1be9 (patch)
tree2d5d4350a1bbf9bafdb5f0a5260714a6190c668d /media-gfx/fontforge/files/fontforge-20150430-intelligent-execinfo_h.patch
parenta37f6bfc3fde25205ebac44b82f1586b924c61da (diff)
downloadpackages-2f6caac6019e3182486965f7f09baed7e93e1be9.tar.gz
packages-2f6caac6019e3182486965f7f09baed7e93e1be9.tar.bz2
packages-2f6caac6019e3182486965f7f09baed7e93e1be9.tar.xz
packages-2f6caac6019e3182486965f7f09baed7e93e1be9.zip
The New Plan
ebuild branch has old ebuilds. profiles dir still has CFLAGS. Everything else is removed or modified for changing of upstream to Alpine.
Diffstat (limited to 'media-gfx/fontforge/files/fontforge-20150430-intelligent-execinfo_h.patch')
-rw-r--r--media-gfx/fontforge/files/fontforge-20150430-intelligent-execinfo_h.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/media-gfx/fontforge/files/fontforge-20150430-intelligent-execinfo_h.patch b/media-gfx/fontforge/files/fontforge-20150430-intelligent-execinfo_h.patch
deleted file mode 100644
index e0a44d227..000000000
--- a/media-gfx/fontforge/files/fontforge-20150430-intelligent-execinfo_h.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-diff -Naur fontforge-20150430.orig/configure.ac fontforge-20150430/configure.ac
---- fontforge-20150430.orig/configure.ac 2015-04-30 20:29:11.000000000 +0000
-+++ fontforge-20150430/configure.ac 2015-08-06 07:36:50.535844085 +0000
-@@ -377,6 +377,7 @@
- if test x"${i_do_want_iconv}" = xyes; then
- AC_CHECK_HEADERS([iconv.h])
- fi
-+AC_CHECK_HEADERS([execinfo.h])
- gl_INIT
-
- #--------------------------------------------------------------------------
-diff -Naur fontforge-20150430.orig/fontforge/cvundoes.c fontforge-20150430/fontforge/cvundoes.c
---- fontforge-20150430.orig/fontforge/cvundoes.c 2015-04-30 20:29:11.000000000 +0000
-+++ fontforge-20150430/fontforge/cvundoes.c 2015-08-06 07:38:15.766082215 +0000
-@@ -24,6 +24,7 @@
- * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
- * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-+#include "config.h"
- #include "fontforgevw.h"
- #include "views.h"
- #include <math.h>
-@@ -33,8 +34,8 @@
- #include "inc/gfile.h"
- #include "psfont.h"
-
--#if defined(__MINGW32__)||defined(__CYGWIN__)
--// no backtrace on windows yet
-+#ifndef HAVE_EXECINFO_H
-+// no backtrace available
- #else
- #include <execinfo.h>
- #endif