[Assorted-commits] SF.net SVN: assorted: [455] hash-join/trunk
Brought to you by:
yangzhang
From: <yan...@us...> - 2008-02-16 04:46:41
|
Revision: 455 http://assorted.svn.sourceforge.net/assorted/?rev=455&view=rev Author: yangzhang Date: 2008-02-15 20:46:41 -0800 (Fri, 15 Feb 2008) Log Message: ----------- added basic autotools Added Paths: ----------- hash-join/trunk/Makefile.am hash-join/trunk/configure.ac Added: hash-join/trunk/Makefile.am =================================================================== --- hash-join/trunk/Makefile.am (rev 0) +++ hash-join/trunk/Makefile.am 2008-02-16 04:46:41 UTC (rev 455) @@ -0,0 +1,2 @@ +bin_PROGRAMS = hashjoin +hashjoin_SOURCES = src/hashjoin.cc Added: hash-join/trunk/configure.ac =================================================================== --- hash-join/trunk/configure.ac (rev 0) +++ hash-join/trunk/configure.ac 2008-02-16 04:46:41 UTC (rev 455) @@ -0,0 +1,35 @@ +# TODO: header-checking does nothing +# TODO: replace with simple-build +# -*- Autoconf -*- +# Process this file with autoconf to produce a configure script. + +AC_PREREQ(2.61) +AC_INIT(hash-join, 0.1, gmail:yaaang) +AM_INIT_AUTOMAKE(cppcommons, 0.1) +AC_CONFIG_SRCDIR([src/hashjoin.cc]) +AC_CONFIG_HEADER([config.h]) + +# Checks for programs. +AC_PROG_CXX + +# Checks for libraries. +#### AC_CHECK_LIB([profile], [main]) +AC_CHECK_LIB([pthread], [pthread_create]) + +# Checks for header files. +AC_CHECK_HEADERS([fcntl.h sys/time.h]) +AC_CHECK_HEADERS([boost/any.h]) +AC_CHECK_HEADERS([commons/check.h]) + +# Checks for typedefs, structures, and compiler characteristics. +AC_HEADER_STDBOOL +AC_C_CONST +AC_C_INLINE +AC_TYPE_SIZE_T + +# Checks for library functions. +AC_HEADER_STDC +AC_CHECK_FUNCS([strchr]) + +AC_CONFIG_FILES([Makefile]) +AC_OUTPUT This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |