thrift/compiler/cpp/configure.ac
Mark Slee 58dfb4fbe8 Lots of Ruby code generation improvements
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
2007-07-06 02:45:25 +00:00

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)