File: configure.in

package info (click to toggle)
guile-2.2 2.2.7%2B1-9
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 22,840 kB
  • sloc: ansic: 134,153; lisp: 86,182; sh: 4,472; makefile: 2,106; perl: 243; awk: 37; javascript: 9
file content (15 lines) | stat: -rw-r--r-- 452 bytes parent folder | download | duplicates (16)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
### BEGIN compatibility checks ###

AC_CHECK_FUNCS(scm_c_define_module scm_c_read_string scm_gc_protect_object scm_list_1)

AC_MSG_CHECKING(for scm_t_bits)
AC_CACHE_VAL(ac_cv_have_scm_t_bits,
[AC_TRY_COMPILE([#include <libguile.h>],
[scm_t_bits a;],
ac_cv_have_scm_t_bits=yes, ac_cv_have_scm_t_bits=no)])
AC_MSG_RESULT($ac_cv_have_scm_t_bits)
if test $ac_cv_have_scm_t_bits = yes; then
  AC_DEFINE(HAVE_SCM_T_BITS)
fi

### END compatibility checks ###