forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
asymptote-2.35-configure-ac.patch
32 lines (31 loc) · 1.1 KB
/
asymptote-2.35-configure-ac.patch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
Index: asymptote-2.35/configure.ac
===================================================================
--- asymptote-2.35.orig/configure.ac
+++ asymptote-2.35/configure.ac
@@ -158,7 +158,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])],[
@@ -232,7 +232,17 @@ AC_MSG_ERROR([*** Please install libm on
AC_CHECK_LIB([z], [deflate],,
AC_MSG_ERROR([*** Please install libz or zlib-devel on your system ***]))
AX_PTHREAD
-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_ARG_ENABLE(readline,