summaryrefslogtreecommitdiff
path: root/tool/m4/ruby_shared_gc.m4
blob: a27b9b8505ca77b78ff3388d9057b34fad2ea63c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
dnl -*- Autoconf -*-
AC_DEFUN([RUBY_SHARED_GC],[
AC_ARG_WITH(shared-gc,
    AS_HELP_STRING([--with-shared-gc],
    [Enable replacement of Ruby's GC from a shared library.]),
    [with_shared_gc=$withval], [unset with_shared_gc]
)

AC_SUBST([with_shared_gc])
AC_MSG_CHECKING([if Ruby is build with shared GC support])
AS_IF([test "$with_shared_gc" = "yes"], [
    AC_MSG_RESULT([yes])
    AC_DEFINE([USE_SHARED_GC], [1])
], [
    AC_MSG_RESULT([no])
    with_shared_gc="no"
    AC_DEFINE([USE_SHARED_GC], [0])
])
])dnl