summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'media-gfx/asymptote/files/asymptote-1.74-configure-ac.patch')
-rw-r--r--media-gfx/asymptote/files/asymptote-1.74-configure-ac.patch51
1 files changed, 0 insertions, 51 deletions
diff --git a/media-gfx/asymptote/files/asymptote-1.74-configure-ac.patch b/media-gfx/asymptote/files/asymptote-1.74-configure-ac.patch
deleted file mode 100644
index 91242c7df2d8..000000000000
--- a/media-gfx/asymptote/files/asymptote-1.74-configure-ac.patch
+++ /dev/null
@@ -1,51 +0,0 @@
-Index: asymptote-1.74/configure.ac
-===================================================================
---- asymptote-1.74.orig/configure.ac
-+++ asymptote-1.74/configure.ac
-@@ -109,10 +109,16 @@ if test "$GXX" = yes ; then
- fi
- fi
-
--AC_CHECK_HEADER(fftw3.h,
-- AC_CHECK_LIB([fftw3], fftw_execute,,
-+AC_ARG_WITH([fftw],
-+ [ --with-fftw use fftw3],
-+ [with_fftw=$withval],
-+ [with_fftw="no"])
-+if test "$with_fftw" = "yes"; then
-+AC_CHECK_HEADER([fftw3.h],
-+ AC_CHECK_LIB([fftw3], [fftw_execute],,
- AC_MSG_NOTICE([*** Could not find libfftw3: will compile without optional fast Fourier transforms. ***])),
- AC_MSG_NOTICE([*** Header file fftw3.h not found: will compile without optional fast Fourier transforms. ***]))
-+fi
-
- GCVERSION=gc-7.1
-
-@@ -150,7 +156,7 @@ if test "x$ac_cv_use_gc" != "xno" ; then
- fi
- CPPFLAGS_SAVE=$CPPFLAGS
- CPPFLAGS=$CPPFLAGS" $INCL"
-- AC_CHECK_HEADER(gc.h,
-+ AC_CHECK_HEADER([gc/gc.h],
- AC_CHECK_LIB([gc],[GC_malloc],[
- LIBS=$LIBS"-lgc "
- AC_MSG_NOTICE([enabling system $GCNAME])],[
-@@ -217,7 +223,17 @@ AC_CHECK_LIB([ncurses], [setupterm], [AC
- AC_CHECK_LIB([m], [sqrt])
- AC_CHECK_LIB([z], [deflate])
- AC_CHECK_LIB([pthread], [pthread_create])
--AC_CHECK_LIB([sigsegv], [stackoverflow_install_handler])
-+
-+AC_ARG_WITH(sigsegv,
-+ [ --with-sigsegv use libsigsegv],
-+ [with_sigsegv=$withval],
-+ [with_sigsegv="no"])
-+if test "$with_sigsegv" = "yes"; then
-+AC_CHECK_HEADER([sigsegv.h],
-+ AC_CHECK_LIB([sigsegv], [stackoverflow_install_handler]),
-+ AC_MSG_NOTICE([*** Header file sigsegv.h not found ***]))
-+fi
-+
- AC_CHECK_LIB([rt], [sched_yield])
-
- AC_CHECK_LIB([readline], [rl_completion_matches],,