mirror of
https://github.com/valitydev/thrift.git
synced 2024-11-07 10:48:51 +00:00
58dfb4fbe8
Summary: Submitted by Kevin Clark, Ruby guru from Powerset Reviewed By: mcslee Test Plan: He updated the tests in trunk/test/rb/ Notes: The code is now officially "ruby-ish" and idiomatic git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665151 13f79535-47bb-0310-9956-ffa450edef68
52 lines
473 B
Plaintext
52 lines
473 B
Plaintext
AC_PREREQ(2.59)
|
|
|
|
AC_INIT(thrift, 1.0)
|
|
|
|
AM_PROG_LEX
|
|
|
|
AC_PROG_YACC
|
|
|
|
AM_INIT_AUTOMAKE
|
|
|
|
AC_CHECK_HEADERS([stddef.h])
|
|
|
|
AX_BOOST_BASE([1.33.1])
|
|
|
|
AC_CHECK_FUNCS([mkdir])
|
|
|
|
AC_CHECK_FUNCS([realpath])
|
|
|
|
AC_CHECK_FUNCS([strdup])
|
|
|
|
AC_FUNC_MALLOC
|
|
|
|
AC_FUNC_REALLOC
|
|
|
|
AC_FUNC_STAT
|
|
|
|
AC_FUNC_VPRINTF
|
|
|
|
AC_TYPE_SIZE_T
|
|
|
|
AC_C_CONST
|
|
|
|
AC_C_VOLATILE
|
|
|
|
AC_HEADER_STDBOOL
|
|
|
|
AC_HEADER_STDC
|
|
|
|
AC_HEADER_TIME
|
|
|
|
AC_PROG_CC
|
|
|
|
AC_PROG_CXX
|
|
|
|
AC_PROG_INSTALL
|
|
|
|
AC_PROG_LIBTOOL
|
|
|
|
AC_PROG_MAKE_SET
|
|
|
|
AC_OUTPUT(Makefile)
|