/[guile]/guile/guile-core/configure.in
ViewVC logotype

Diff of /guile/guile-core/configure.in

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.157.2.16 by ttn, Mon Mar 4 22:41:07 2002 UTC revision 1.157.2.17 by rlb, Tue Apr 9 17:34:47 2002 UTC
# Line 51  AC_ARG_ENABLE(error-on-warning, Line 51  AC_ARG_ENABLE(error-on-warning,
51       *) AC_MSG_ERROR(bad value ${enableval} for --enable-error-on-warning) ;;       *) AC_MSG_ERROR(bad value ${enableval} for --enable-error-on-warning) ;;
52     esac])     esac])
53    
54    
55  AC_ARG_ENABLE(debug-freelist,  AC_ARG_ENABLE(debug-freelist,
56    [  --enable-debug-freelist include garbage collector freelist debugging code],    [  --enable-debug-freelist include garbage collector freelist debugging code],
57    if test "$enable_debug_freelist" = y || test "$enable_debug_freelist" = yes; then    if test "$enable_debug_freelist" = y || test "$enable_debug_freelist" = yes; then
58      AC_DEFINE(GUILE_DEBUG_FREELIST)      AC_DEFINE(GUILE_DEBUG_FREELIST, 1,
59          [Define this if you want to debug the free list (helps w/ GC bugs).])
60    fi)    fi)
61    
62  AC_ARG_ENABLE(debug-malloc,  AC_ARG_ENABLE(debug-malloc,
63    [  --enable-debug-malloc   include malloc debugging code],    [  --enable-debug-malloc   include malloc debugging code],
64    if test "$enable_debug_malloc" = y || test "$enable_debug_malloc" = yes; then    if test "$enable_debug_malloc" = y || test "$enable_debug_malloc" = yes; then
65      AC_DEFINE(GUILE_DEBUG_MALLOC)      AC_DEFINE(GUILE_DEBUG_MALLOC, 1,
66          [Define this if you want to debug scm_must_malloc/realloc/free calls.])
67    fi)    fi)
68    
69  AC_ARG_ENABLE(guile-debug,  AC_ARG_ENABLE(guile-debug,
70    [  --enable-guile-debug    include internal debugging functions],    [  --enable-guile-debug    include internal debugging functions],
71    if test "$enable_guile_debug" = y || test "$enable_guile_debug" = yes; then    if test "$enable_guile_debug" = y || test "$enable_guile_debug" = yes; then
72      AC_DEFINE(GUILE_DEBUG)      AC_DEFINE(GUILE_DEBUG, 1,
73          [Define this to include various undocumented functions used to debug.])
74    fi)    fi)
75    
76  AC_ARG_ENABLE(arrays,  AC_ARG_ENABLE(arrays,
# Line 110  AM_CONDITIONAL(HTMLDOC, test x$htmldoc_e Line 114  AM_CONDITIONAL(HTMLDOC, test x$htmldoc_e
114  AC_ARG_ENABLE(deprecated,  AC_ARG_ENABLE(deprecated,
115    [  --disable-deprecated    omit deprecated features [no]])    [  --disable-deprecated    omit deprecated features [no]])
116    
117    
118    AH_TEMPLATE([SCM_DEBUG_DEPRECATED],
119                [Define this if you want to exclude deprecated features.])
120    
121  if test "$enable_deprecated" = no; then  if test "$enable_deprecated" = no; then
122    AC_DEFINE(SCM_DEBUG_DEPRECATED, 1)    AC_DEFINE(SCM_DEBUG_DEPRECATED, 1)
123  else  else
# Line 121  else Line 129  else
129      warn_default=$enable_deprecated      warn_default=$enable_deprecated
130    fi    fi
131    AC_DEFINE(SCM_DEBUG_DEPRECATED, 0)    AC_DEFINE(SCM_DEBUG_DEPRECATED, 0)
132    AC_DEFINE_UNQUOTED(SCM_WARN_DEPRECATED_DEFAULT, "$warn_default")    AC_DEFINE_UNQUOTED(SCM_WARN_DEPRECATED_DEFAULT, "$warn_default",
133      [Define this to control the default warning level for deprecated features.])
134  fi  fi
135    
136  dnl The --disable-debug used to control these two.  But now they are  dnl The --disable-debug used to control these two.  But now they are
137  dnl a required part of the distribution.  dnl a required part of the distribution.
138  AC_DEFINE(DEBUG_EXTENSIONS)  AC_DEFINE(DEBUG_EXTENSIONS, 1,
139  AC_DEFINE(READER_EXTENSIONS)    [Define if you want support for debugging Scheme programs.])
140    AC_DEFINE(READER_EXTENSIONS, 1,
141      [Define if you want support for debugging Scheme programs.])
142    
143  dnl files which are destined for separate modules.  dnl files which are destined for separate modules.
144    
145  if test "$enable_arrays" = yes; then  if test "$enable_arrays" = yes; then
146     LIBOBJS="$LIBOBJS ramap.o unif.o"     AC_LIBOBJ([ramap])
147     AC_DEFINE(HAVE_ARRAYS)     AC_LIBOBJ([unif])
148       AC_DEFINE(HAVE_ARRAYS, 1,
149         [Define this if you want support for arrays and uniform arrays.])
150  fi  fi
151    
152  if test "$enable_posix" = yes; then  if test "$enable_posix" = yes; then
153     LIBOBJS="$LIBOBJS filesys.o posix.o"     AC_LIBOBJ([filesys])
154     AC_DEFINE(HAVE_POSIX)     AC_LIBOBJ([posix])
155       AC_DEFINE(HAVE_POSIX, 1,
156         [Define this if you want support for POSIX system calls in Guile.])
157  fi  fi
158    
159  if test "$enable_networking" = yes; then  if test "$enable_networking" = yes; then
160     LIBOBJS="$LIBOBJS net_db.o socket.o"     AC_LIBOBJ([net_db])
161     AC_DEFINE(HAVE_NETWORKING)     AC_LIBOBJ([socket])
162       AC_DEFINE(HAVE_NETWORKING, 1,
163         [Define this if you want support for networking in Guile.])
164  fi  fi
165    
166  if test "$enable_debug_malloc" = yes; then  if test "$enable_debug_malloc" = yes; then
167     LIBOBJS="$LIBOBJS debug-malloc.o"     AC_LIBOBJ([debug-malloc])
168  fi  fi
169    
170  #--------------------------------------------------------------------  #--------------------------------------------------------------------
# Line 190  AC_CACHE_CHECK([for long longs], scm_cv_ Line 207  AC_CACHE_CHECK([for long longs], scm_cv_
207                                scm_cv_long_longs=yes,                                scm_cv_long_longs=yes,
208                                scm_cv_long_longs=no))                                scm_cv_long_longs=no))
209  if test "$scm_cv_long_longs" = yes; then  if test "$scm_cv_long_longs" = yes; then
210    AC_DEFINE(HAVE_LONG_LONGS)    AC_DEFINE(HAVE_LONG_LONGS, 1, [Define if the compiler supports long longs.])
211    AC_CHECK_SIZEOF(long long)    AC_CHECK_SIZEOF(long long)
212  fi  fi
213    
# Line 230  use_modules="$withval") Line 247  use_modules="$withval")
247  test -z "$use_modules" && use_modules=yes  test -z "$use_modules" && use_modules=yes
248  DLPREOPEN=  DLPREOPEN=
249  if test "$use_modules" != no; then  if test "$use_modules" != no; then
250    AC_DEFINE(DYNAMIC_LINKING)    AC_DEFINE(DYNAMIC_LINKING, 1,
251        [Define if you want support for dynamic linking.])
252    if test "$use_modules" = yes; then    if test "$use_modules" = yes; then
253      DLPREOPEN="-dlpreopen force"      DLPREOPEN="-dlpreopen force"
254    else    else
# Line 263  AC_DEFUN(GUILE_FUNC_DECLARED, [ Line 281  AC_DEFUN(GUILE_FUNC_DECLARED, [
281                      guile_cv_func_$1_declared=yes,                      guile_cv_func_$1_declared=yes,
282                      guile_cv_func_$1_declared=no))                      guile_cv_func_$1_declared=no))
283    if test [x$guile_cv_func_]$1[_declared] = xno; then    if test [x$guile_cv_func_]$1[_declared] = xno; then
284      AC_DEFINE([MISSING_]translit($1, [a-z], [A-Z])[_DECL])      AC_DEFINE([MISSING_]translit($1, [a-z], [A-Z])[_DECL], 1,
285          [Define if the operating system supplies $1 without declaring it.])
286    fi    fi
287  ])  ])
288    
# Line 280  AC_CACHE_CHECK([return type of usleep], Line 299  AC_CACHE_CHECK([return type of usleep],
299                     [guile_cv_func_usleep_return_type=int])])                     [guile_cv_func_usleep_return_type=int])])
300  case "$guile_cv_func_usleep_return_type" in  case "$guile_cv_func_usleep_return_type" in
301    "void" )    "void" )
302      AC_DEFINE(USLEEP_RETURNS_VOID)      AC_DEFINE(USLEEP_RETURNS_VOID, 1,
303          [Define if the system headers declare usleep to return void.])
304    ;;    ;;
305  esac  esac
306    
307  AC_CHECK_HEADER(sys/un.h, have_sys_un_h=1)  AC_CHECK_HEADER(sys/un.h, have_sys_un_h=1)
308  if test -n "$have_sys_un_h" ; then  if test -n "$have_sys_un_h" ; then
309  AC_DEFINE(HAVE_UNIX_DOMAIN_SOCKETS)    AC_DEFINE(HAVE_UNIX_DOMAIN_SOCKETS, 1,
310        [Define if the system supports Unix-domain (file-domain) sockets.])
311  fi  fi
312    
313  AC_CHECK_FUNCS(socketpair getgroups setpwent pause tzset)  AC_CHECK_FUNCS(socketpair getgroups setpwent pause tzset)
# Line 309  AC_CACHE_VAL(guile_cv_have_h_errno, Line 330  AC_CACHE_VAL(guile_cv_have_h_errno,
330  guile_cv_have_h_errno=yes, guile_cv_have_h_errno=no)])  guile_cv_have_h_errno=yes, guile_cv_have_h_errno=no)])
331  AC_MSG_RESULT($guile_cv_have_h_errno)  AC_MSG_RESULT($guile_cv_have_h_errno)
332  if test $guile_cv_have_h_errno = yes; then  if test $guile_cv_have_h_errno = yes; then
333    AC_DEFINE(HAVE_H_ERRNO)    AC_DEFINE(HAVE_H_ERRNO, 1, [Define if h_errno is declared in netdb.h.])
334  fi  fi
335    
336  AC_MSG_CHECKING(whether uint32_t is defined)  AC_MSG_CHECKING(whether uint32_t is defined)
# Line 320  AC_CACHE_VAL(guile_cv_have_uint32_t, Line 341  AC_CACHE_VAL(guile_cv_have_uint32_t,
341                    guile_cv_have_uint32_t=yes, guile_cv_have_uint32_t=no)])                    guile_cv_have_uint32_t=yes, guile_cv_have_uint32_t=no)])
342  AC_MSG_RESULT($guile_cv_have_uint32_t)  AC_MSG_RESULT($guile_cv_have_uint32_t)
343  if test $guile_cv_have_uint32_t = yes; then  if test $guile_cv_have_uint32_t = yes; then
344    AC_DEFINE(HAVE_UINT32_T)    AC_DEFINE(HAVE_UINT32_T, 1,
345        [Define if uint32_t typedef is defined when netdb.h is include.])
346  fi  fi
347    
348  AC_MSG_CHECKING(for working IPv6 support)  AC_MSG_CHECKING(for working IPv6 support)
# Line 331  AC_CACHE_VAL(guile_cv_have_ipv6, Line 353  AC_CACHE_VAL(guile_cv_have_ipv6,
353  guile_cv_have_ipv6=yes, guile_cv_have_ipv6=no)])  guile_cv_have_ipv6=yes, guile_cv_have_ipv6=no)])
354  AC_MSG_RESULT($guile_cv_have_ipv6)  AC_MSG_RESULT($guile_cv_have_ipv6)
355  if test $guile_cv_have_ipv6 = yes; then  if test $guile_cv_have_ipv6 = yes; then
356    AC_DEFINE(HAVE_IPV6)    AC_DEFINE(HAVE_IPV6, 1, [Define if you want support for IPv6.])
357  fi  fi
358    
359  # included in rfc2553 but not in older implementations, e.g., glibc 2.1.3.  # included in rfc2553 but not in older implementations, e.g., glibc 2.1.3.
# Line 342  AC_CACHE_VAL(guile_cv_have_sin6_scope_id Line 364  AC_CACHE_VAL(guile_cv_have_sin6_scope_id
364  guile_cv_have_sin6_scope_id=yes, guile_cv_have_sin6_scope_id=no)])  guile_cv_have_sin6_scope_id=yes, guile_cv_have_sin6_scope_id=no)])
365  AC_MSG_RESULT($guile_cv_have_sin6_scope_id)  AC_MSG_RESULT($guile_cv_have_sin6_scope_id)
366  if test $guile_cv_have_sin6_scope_id = yes; then  if test $guile_cv_have_sin6_scope_id = yes; then
367    AC_DEFINE(HAVE_SIN6_SCOPE_ID)    AC_DEFINE(HAVE_SIN6_SCOPE_ID, 1,
368        [Define this if your IPv6 has sin6_scope_id in sockaddr_in6 struct.])
369  fi  fi
370    
371  AC_MSG_CHECKING(whether localtime caches TZ)  AC_MSG_CHECKING(whether localtime caches TZ)
# Line 389  else Line 412  else
412  fi])dnl  fi])dnl
413  AC_MSG_RESULT($guile_cv_localtime_cache)  AC_MSG_RESULT($guile_cv_localtime_cache)
414  if test $guile_cv_localtime_cache = yes; then  if test $guile_cv_localtime_cache = yes; then
415    AC_DEFINE(LOCALTIME_CACHE)    AC_DEFINE(LOCALTIME_CACHE, 1, [Define if localtime caches the TZ setting.])
416  fi  fi
417    
418  dnl Test whether system calls are restartable by default on the  dnl Test whether system calls are restartable by default on the
# Line 408  if test "$enable_regex" = yes; then Line 431  if test "$enable_regex" = yes; then
431     if test "$ac_cv_header_regex_h" = yes ||     if test "$ac_cv_header_regex_h" = yes ||
432        test "$ac_cv_header_rxposix_h" = yes ||        test "$ac_cv_header_rxposix_h" = yes ||
433        test "$ac_cv_header_rx_rxposix_h" = yes; then        test "$ac_cv_header_rx_rxposix_h" = yes; then
434       GUILE_NAMED_CHECK_FUNC(regcomp, norx, [LIBOBJS="regex-posix.o $LIBOBJS"],       GUILE_NAMED_CHECK_FUNC(regcomp, norx, [AC_LIBOBJ([regex-posix])],
435       [AC_CHECK_LIB(rx, main)         [AC_CHECK_LIB(rx, main)
436        GUILE_NAMED_CHECK_FUNC(regcomp, rx, [LIBOBJS="regex-posix.o $LIBOBJS"])]          GUILE_NAMED_CHECK_FUNC(regcomp, rx, [AC_LIBOBJ([regex-posix])])])
      )  
437       dnl The following should not be necessary, but for some reason       dnl The following should not be necessary, but for some reason
438       dnl autoheader misses it if we don't include it!       dnl autoheader misses it if we don't include it!
439       if test "$ac_cv_func_regcomp_norx" = yes ||       if test "$ac_cv_func_regcomp_norx" = yes ||
440          test "$ac_cv_func_regcomp_rx" = yes; then          test "$ac_cv_func_regcomp_rx" = yes; then
441         AC_DEFINE(HAVE_REGCOMP)         AC_DEFINE(HAVE_REGCOMP, 1,
442             [This is included as part of a workaround for a autoheader bug.])
443       fi       fi
444     fi     fi
445  fi  fi
# Line 427  AC_REPLACE_FUNCS(inet_aton putenv strerr Line 450  AC_REPLACE_FUNCS(inet_aton putenv strerr
450  # explicitly to LIBOBJS to make sure that it is translated to  # explicitly to LIBOBJS to make sure that it is translated to
451  # `alloca.lo' for libtool later on.  This can and should be done more cleanly.  # `alloca.lo' for libtool later on.  This can and should be done more cleanly.
452  AC_FUNC_ALLOCA  AC_FUNC_ALLOCA
453  if test "$ALLOCA" = "alloca.o"; then LIBOBJS="alloca.o $LIBOBJS"; fi  if test "$ALLOCA" = "alloca.o"; then AC_LIBOBJ([alloca]); fi
454    
455  AC_CHECK_MEMBERS([struct stat.st_rdev])  AC_CHECK_MEMBERS([struct stat.st_rdev])
456  AC_CHECK_MEMBERS([struct stat.st_blksize])  AC_CHECK_MEMBERS([struct stat.st_blksize])
# Line 442  AC_CACHE_CHECK([for S_ISLNK in sys/stat. Line 465  AC_CACHE_CHECK([for S_ISLNK in sys/stat.
465                 ac_cv_macro_S_ISLNK=yes,                 ac_cv_macro_S_ISLNK=yes,
466                 ac_cv_macro_S_ISLNK=no)])                 ac_cv_macro_S_ISLNK=no)])
467  if test $ac_cv_macro_S_ISLNK = yes; then  if test $ac_cv_macro_S_ISLNK = yes; then
468    AC_DEFINE(HAVE_S_ISLNK)    AC_DEFINE(HAVE_S_ISLNK, 1,
469        [Define this if your system defines S_ISLNK in sys/stat.h.])
470  fi  fi
471    
472  AC_STRUCT_TIMEZONE  AC_STRUCT_TIMEZONE
# Line 457  GUILE_STRUCT_UTIMBUF Line 481  GUILE_STRUCT_UTIMBUF
481  AC_TRY_RUN(aux (l) unsigned long l;  AC_TRY_RUN(aux (l) unsigned long l;
482               { int x; exit (l >= ((unsigned long)&x)); }               { int x; exit (l >= ((unsigned long)&x)); }
483             main () { int q; aux((unsigned long)&q); },             main () { int q; aux((unsigned long)&q); },
484             AC_DEFINE(SCM_STACK_GROWS_UP),,AC_MSG_WARN(Guessing that stack grows down -- see scmconfig.h.in))             [AC_DEFINE([SCM_STACK_GROWS_UP], 1,
485                  [Define this if a callee's stack frame has a higher address
486                   than the caller's stack frame.  On most machines, this is
487                   not the case.])],
488               [],
489               [AC_MSG_WARN(Guessing that stack grows down -- see scmconfig.h.in)])
490    
491    
492    AH_TEMPLATE([SCM_SINGLES],
493      [Define this if floats are the same size as longs.])
494    
495  AC_CACHE_CHECK([whether floats fit in longs], guile_cv_type_float_fits_long,  AC_CACHE_CHECK([whether floats fit in longs], guile_cv_type_float_fits_long,
496      [AC_TRY_RUN([main () { exit (sizeof(float) > sizeof(long)); }],      [AC_TRY_RUN([main () { exit (sizeof(float) > sizeof(long)); }],
# Line 486  AC_CACHE_VAL(scm_cv_struct_linger, Line 519  AC_CACHE_VAL(scm_cv_struct_linger,
519                          scm_cv_struct_linger="no"))                          scm_cv_struct_linger="no"))
520  AC_MSG_RESULT($scm_cv_struct_linger)  AC_MSG_RESULT($scm_cv_struct_linger)
521  if test $scm_cv_struct_linger = yes; then  if test $scm_cv_struct_linger = yes; then
522          AC_DEFINE(HAVE_STRUCT_LINGER)          AC_DEFINE([HAVE_STRUCT_LINGER], 1,
523              [Define this if your system defines struct linger, for use with the
524               getsockopt and setsockopt system calls.])
525  fi  fi
526    
527    
# Line 499  AC_CACHE_VAL(scm_cv_struct_timespec, Line 534  AC_CACHE_VAL(scm_cv_struct_timespec,
534                          scm_cv_struct_timespec="no"))                          scm_cv_struct_timespec="no"))
535  AC_MSG_RESULT($scm_cv_struct_timespec)  AC_MSG_RESULT($scm_cv_struct_timespec)
536  if test $scm_cv_struct_timespec = yes; then  if test $scm_cv_struct_timespec = yes; then
537          AC_DEFINE(HAVE_STRUCT_TIMESPEC)          AC_DEFINE(HAVE_STRUCT_TIMESPEC, 1,
538              [Define this if your system defines struct timespec via <time.h>.])
539  fi  fi
540    
541  #--------------------------------------------------------------------  #--------------------------------------------------------------------
# Line 541  esac Line 577  esac
577  ## If we're using threads, bring in some other parts of Guile which  ## If we're using threads, bring in some other parts of Guile which
578  ## work with them.  ## work with them.
579  if test "${THREAD_PACKAGE}" != "" ; then  if test "${THREAD_PACKAGE}" != "" ; then
580    AC_DEFINE(USE_THREADS, 1)    AC_DEFINE(USE_THREADS, 1, [Define if using any sort of threads.])
581    
582    ## Include the Guile thread interface in the library...    ## Include the Guile thread interface in the library...
583    LIBOBJS="$LIBOBJS threads.o"    AC_LIBOBJ([threads])
584    
585    ## ... and tell it which package to talk to.    ## ... and tell it which package to talk to.
586    case "${THREAD_PACKAGE}" in    case "${THREAD_PACKAGE}" in
587      "QT" )      "QT" )
588        AC_DEFINE(USE_COOP_THREADS, 1)        AC_DEFINE(USE_COOP_THREADS, 1,
589            [Define if using cooperative multithreading.])
590      ;;      ;;
591      * )      * )
592        AC_MSG_ERROR(invalid value for THREAD_PACKAGE: ${THREAD_PACKAGE})        AC_MSG_ERROR(invalid value for THREAD_PACKAGE: ${THREAD_PACKAGE})
# Line 559  if test "${THREAD_PACKAGE}" != "" ; then Line 596  if test "${THREAD_PACKAGE}" != "" ; then
596    ## Bring in scm_internal_select, if appropriate.    ## Bring in scm_internal_select, if appropriate.
597    if test $ac_cv_func_gettimeofday = yes &&    if test $ac_cv_func_gettimeofday = yes &&
598       test $ac_cv_func_select = yes; then       test $ac_cv_func_select = yes; then
599      AC_DEFINE(GUILE_ISELECT, 1)      AC_DEFINE(GUILE_ISELECT, 1, [Define to implement scm_internal_select.])
600    fi    fi
601    
602    AC_ARG_ENABLE(linuxthreads,    AC_ARG_ENABLE(linuxthreads,
# Line 568  if test "${THREAD_PACKAGE}" != "" ; then Line 605  if test "${THREAD_PACKAGE}" != "" ; then
605    
606    ## Workaround for linuxthreads (optionally disabled)    ## Workaround for linuxthreads (optionally disabled)
607    if test $host_os = linux-gnu -a "$enable_linuxthreads" = yes; then    if test $host_os = linux-gnu -a "$enable_linuxthreads" = yes; then
608      AC_DEFINE(GUILE_PTHREAD_COMPAT, 1)      AC_DEFINE(GUILE_PTHREAD_COMPAT, 1,
609          [Define to enable workaround for COOP-linuxthreads compatibility.])
610      AC_CHECK_LIB(pthread, main)      AC_CHECK_LIB(pthread, main)
611    fi    fi
612  fi  fi
# Line 589  AC_PROG_AWK Line 627  AC_PROG_AWK
627  ## If we're creating a shared library (using libtool!), then we'll  ## If we're creating a shared library (using libtool!), then we'll
628  ## need to generate a list of .lo files corresponding to the .o files  ## need to generate a list of .lo files corresponding to the .o files
629  ## given in LIBOBJS.  We'll call it LIBLOBJS.  ## given in LIBOBJS.  We'll call it LIBLOBJS.
630  LIBLOBJS="`echo ${LIBOBJS} | sed 's/\.o/.lo/g'`"  LIBLOBJS="`echo ${LIB@&t@OBJS} | sed 's,\.[[^.]]* ,.lo ,g;s,\.[[^.]]*$,.lo,'`"
631    
632  ## We also need to create corresponding .doc and .x files  ## We also need to create corresponding .doc and .x files
633  EXTRA_DOT_DOC_FILES="`echo ${LIBOBJS} | sed 's/\.o/.doc/g'`"  EXTRA_DOT_DOC_FILES="`echo ${LIB@&t@OBJS} | sed 's,\.[[^.]]* ,.doc ,g;s,\.[[^.]]*$,.doc,'`"
634  EXTRA_DOT_X_FILES="`echo ${LIBOBJS} | sed 's/\.o/.x/g'`"  EXTRA_DOT_X_FILES="`echo ${LIB@&t@OBJS} | sed 's,\.[[^.]]* ,.x ,g;s,\.[[^.]]*$,.x,'`"
635    
636  AC_SUBST(GUILE_MAJOR_VERSION)  AC_SUBST(GUILE_MAJOR_VERSION)
637  AC_SUBST(GUILE_MINOR_VERSION)  AC_SUBST(GUILE_MINOR_VERSION)
# Line 617  AC_SUBST(LIBGUILE_SRFI_SRFI_4_INTERFACE_ Line 655  AC_SUBST(LIBGUILE_SRFI_SRFI_4_INTERFACE_
655  AC_SUBST(LIBGUILE_SRFI_SRFI_4_INTERFACE_REVISION)  AC_SUBST(LIBGUILE_SRFI_SRFI_4_INTERFACE_REVISION)
656  AC_SUBST(LIBGUILE_SRFI_SRFI_4_INTERFACE_AGE)  AC_SUBST(LIBGUILE_SRFI_SRFI_4_INTERFACE_AGE)
657  AC_SUBST(LIBGUILE_SRFI_SRFI_4_INTERFACE)  AC_SUBST(LIBGUILE_SRFI_SRFI_4_INTERFACE)
658    AC_SUBST(LIBGUILE_SRFI_SRFI_4_LTHACK)
659    
660  AC_SUBST(LIBGUILE_SRFI_SRFI_13_14_INTERFACE_CURRENT)  AC_SUBST(LIBGUILE_SRFI_SRFI_13_14_INTERFACE_CURRENT)
661  AC_SUBST(LIBGUILE_SRFI_SRFI_13_14_INTERFACE_REVISION)  AC_SUBST(LIBGUILE_SRFI_SRFI_13_14_INTERFACE_REVISION)
662  AC_SUBST(LIBGUILE_SRFI_SRFI_13_14_INTERFACE_AGE)  AC_SUBST(LIBGUILE_SRFI_SRFI_13_14_INTERFACE_AGE)
663  AC_SUBST(LIBGUILE_SRFI_SRFI_13_14_INTERFACE)  AC_SUBST(LIBGUILE_SRFI_SRFI_13_14_INTERFACE)
664    AC_SUBST(LIBGUILE_SRFI_SRFI_13_14_LTHACK)
665    
666  #######################################################################  #######################################################################
667    

Legend:
Removed from v.1.157.2.16  
changed lines
  Added in v.1.157.2.17

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26