/[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.219 by ela, Fri May 30 09:39:34 2003 UTC revision 1.220 by ela, Sat Jun 14 05:36:02 2003 UTC
# Line 242  AC_CHECK_SIZEOF(unsigned long) Line 242  AC_CHECK_SIZEOF(unsigned long)
242  AC_CHECK_SIZEOF(size_t)  AC_CHECK_SIZEOF(size_t)
243  AC_CHECK_SIZEOF(long long)  AC_CHECK_SIZEOF(long long)
244  AC_CHECK_SIZEOF(unsigned long long)  AC_CHECK_SIZEOF(unsigned long long)
245    AC_CHECK_SIZEOF(__int64)
246    AC_CHECK_SIZEOF(unsigned __int64)
247  AC_CHECK_SIZEOF(void *)  AC_CHECK_SIZEOF(void *)
248  AC_CHECK_SIZEOF(intptr_t)  AC_CHECK_SIZEOF(intptr_t)
249  AC_CHECK_SIZEOF(uintptr_t)  AC_CHECK_SIZEOF(uintptr_t)
# Line 419  fi Line 421  fi
421  AC_SUBST([SCM_I_GSC_T_UINT32])  AC_SUBST([SCM_I_GSC_T_UINT32])
422    
423  ### Optional type scm_t_int64 (ANSI C says int, short, or long might work)  ### Optional type scm_t_int64 (ANSI C says int, short, or long might work)
424  ### Also try long long if we have it.  ### Also try 'long long' and '__int64' if we have it.
425  SCM_I_GSC_T_INT64=0  SCM_I_GSC_T_INT64=0
426  if test "$ac_cv_sizeof_int" -eq 8; then  if test "$ac_cv_sizeof_int" -eq 8; then
427    SCM_I_GSC_T_INT64='"int"'    SCM_I_GSC_T_INT64='"int"'
# Line 429  elif test "$ac_cv_sizeof_short" -eq 8; t Line 431  elif test "$ac_cv_sizeof_short" -eq 8; t
431    SCM_I_GSC_T_INT64='"short"'    SCM_I_GSC_T_INT64='"short"'
432  elif test "$ac_cv_sizeof_long_long" -eq 8; then  elif test "$ac_cv_sizeof_long_long" -eq 8; then
433    SCM_I_GSC_T_INT64='"long long"'    SCM_I_GSC_T_INT64='"long long"'
434    elif test "$ac_cv_sizeof___int64" -eq 8; then
435      SCM_I_GSC_T_INT64='"__int64"'
436  elif test "$scm_stdint_has_int64"; then  elif test "$scm_stdint_has_int64"; then
437    SCM_I_GSC_T_INT64='"int64_t"'    SCM_I_GSC_T_INT64='"int64_t"'
438    SCM_I_GSC_NEEDS_STDINT_H=1    SCM_I_GSC_NEEDS_STDINT_H=1
# Line 441  fi Line 445  fi
445  AC_SUBST([SCM_I_GSC_T_INT64])  AC_SUBST([SCM_I_GSC_T_INT64])
446    
447  ### Optional type scm_t_uint64 (ANSI C says int, short, or long might work)  ### Optional type scm_t_uint64 (ANSI C says int, short, or long might work)
448  ### Also try long long if we have it.  ### Also try 'long long' and '__int64' if we have it.
449  SCM_I_GSC_T_UINT64=0  SCM_I_GSC_T_UINT64=0
450  if test "$ac_cv_sizeof_unsigned_int" -eq 8; then  if test "$ac_cv_sizeof_unsigned_int" -eq 8; then
451    SCM_I_GSC_T_UINT64='"unsigned int"'    SCM_I_GSC_T_UINT64='"unsigned int"'
# Line 451  elif test "$ac_cv_sizeof_unsigned_short" Line 455  elif test "$ac_cv_sizeof_unsigned_short"
455    SCM_I_GSC_T_UINT64='"unsigned short"'    SCM_I_GSC_T_UINT64='"unsigned short"'
456  elif test "$ac_cv_sizeof_unsigned_long_long" -eq 8; then  elif test "$ac_cv_sizeof_unsigned_long_long" -eq 8; then
457    SCM_I_GSC_T_UINT64='"unsigned long long"'    SCM_I_GSC_T_UINT64='"unsigned long long"'
458    elif test "$ac_cv_sizeof_unsigned___int64" -eq 8; then
459      SCM_I_GSC_T_UINT64='"unsigned __int64"'
460  elif test "$scm_stdint_has_uint64"; then  elif test "$scm_stdint_has_uint64"; then
461    SCM_I_GSC_T_UINT64='"uint64_t"'    SCM_I_GSC_T_UINT64='"uint64_t"'
462    SCM_I_GSC_NEEDS_STDINT_H=1    SCM_I_GSC_NEEDS_STDINT_H=1

Legend:
Removed from v.1.219  
changed lines
  Added in v.1.220

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