aclocal.m4
上传用户:dgyhgb
上传日期:2007-01-07
资源大小:676k
文件大小:3k
源码类别:

SQL Server

开发平台:

Unix_Linux

  1. dnl ----------------------------------------------
  2. dnl -----------------  find lib  -----------------
  3. dnl ----------------------------------------------
  4. AC_DEFUN(AC_FIND_LIB,[
  5.    for lib in $2 ; do 
  6.      AC_CHECK_LIB(${lib}, $1)
  7.      ### break, if function is found in library
  8.      eval "test "`echo '$ac_cv_lib_'$ac_lib_var`" = no" || break
  9.   done
  10. ])
  11. dnl ----------------------------------------------
  12. dnl ----------------  prototypes  ----------------
  13. dnl ----------------------------------------------
  14. AC_DEFUN(AM_C_PROTOTYPES,
  15. [AC_REQUIRE([AM_PROG_CC_STDC])
  16. AC_BEFORE([$0], [AC_C_INLINE])
  17. AC_MSG_CHECKING([for function prototypes])
  18. if test "$am_cv_prog_cc_stdc" != no; then
  19.   AC_MSG_RESULT(yes)
  20.   AC_DEFINE(PROTOTYPES)
  21.   U= ANSI2KNR=
  22. else
  23.   AC_MSG_RESULT(no)
  24.   U=_ ANSI2KNR=./ansi2knr
  25.   # Ensure some checks needed by ansi2knr itself.
  26.   AC_HEADER_STDC
  27.   AC_CHECK_HEADERS(string.h)
  28. fi
  29. ])
  30. # serial 1
  31. # @defmac AC_PROG_CC_STDC
  32. # @maindex PROG_CC_STDC
  33. # @ovindex CC
  34. # If the C compiler in not in ANSI C mode by default, try to add an option
  35. # to output variable @code{CC} to make it so.  This macro tries various
  36. # options that select ANSI C on some system or another.  It considers the
  37. # compiler to be in ANSI C mode if it defines @code{__STDC__} to 1 and
  38. # handles function prototypes correctly.
  39. #
  40. # If you use this macro, you should check after calling it whether the C
  41. # compiler has been set to accept ANSI C; if not, the shell variable
  42. # @code{am_cv_prog_cc_stdc} is set to @samp{no}.  If you wrote your source
  43. # code in ANSI C, you can make an un-ANSIfied copy of it by using the
  44. # program @code{ansi2knr}, which comes with Ghostscript.
  45. # @end defmac
  46. AC_DEFUN(AM_PROG_CC_STDC,
  47. [AC_REQUIRE([AC_PROG_CC])
  48. AC_MSG_CHECKING(for ${CC-cc} option to accept ANSI C)
  49. AC_CACHE_VAL(am_cv_prog_cc_stdc,
  50. [am_cv_prog_cc_stdc=no
  51. ac_save_CC="$CC"
  52. # Don't try gcc -ansi; that turns off useful extensions and
  53. # breaks some systems' header files.
  54. # AIX -qlanglvl=ansi
  55. # Ultrix and OSF/1 -std1
  56. # HP-UX -Aa -D_HPUX_SOURCE
  57. # SVR4 -Xc -D__EXTENSIONS__
  58. for ac_arg in "" -qlanglvl=ansi -std1 "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
  59. do
  60.   CC="$ac_save_CC $ac_arg"
  61.   AC_TRY_COMPILE(
  62. [#if !defined(__STDC__) || __STDC__ != 1
  63. choke me
  64. #endif
  65. /* DYNIX/ptx V4.1.3 can't compile sys/stat.h with -Xc -D__EXTENSIONS__. */
  66. #ifdef _SEQUENT_
  67. # include <sys/types.h>
  68. # include <sys/stat.h>
  69. #endif
  70. ], [
  71. int test (int i, double x);
  72. struct s1 {int (*f) (int a);};
  73. struct s2 {int (*f) (double a);};],
  74. [am_cv_prog_cc_stdc="$ac_arg"; break])
  75. done
  76. CC="$ac_save_CC"
  77. ])
  78. AC_MSG_RESULT($am_cv_prog_cc_stdc)
  79. case "x$am_cv_prog_cc_stdc" in
  80.   x|xno) ;;
  81.   *) CC="$CC $am_cv_prog_cc_stdc" ;;
  82. esac
  83. ])
  84. AC_DEFUN(AM_STRUCT_UTIMBUF,
  85. [AC_MSG_CHECKING(for struct utimbuf)
  86. if test x"$ac_cv_header_utime_h" = xyes; then
  87.   AC_EGREP_CPP([struct +utimbuf],
  88.     [#include <utime.h>],
  89.     [AC_DEFINE(HAVE_STRUCT_UTIMBUF)
  90.       AC_MSG_RESULT(yes)],
  91.     AC_MSG_RESULT(no))
  92. else
  93.   AC_MSG_RESULT(no)
  94. fi])