configure.ac
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:2k
源码类别:

网格计算

开发平台:

Java

  1. # Licensed to the Apache Software Foundation (ASF) under one
  2. # or more contributor license agreements.  See the NOTICE file
  3. # distributed with this work for additional information
  4. # regarding copyright ownership.  The ASF licenses this file
  5. # to you under the Apache License, Version 2.0 (the
  6. # "License"); you may not use this file except in compliance
  7. # with the License.  You may obtain a copy of the License at
  8. #
  9. #     http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing, software
  12. # distributed under the License is distributed on an "AS IS" BASIS,
  13. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. # See the License for the specific language governing permissions and
  15. # limitations under the License.
  16. #
  17. #                                               -*- Autoconf -*-
  18. # Process this file with autoconf to produce a configure script.
  19. AC_PREREQ(2.59)
  20. AC_INIT(hadoop-pipes-examples, 0.13.0, omalley@apache.org)
  21. AM_INIT_AUTOMAKE([subdir-objects foreign no-dist])
  22. AC_CONFIG_SRCDIR([impl/wordcount-simple.cc])
  23. AC_CONFIG_HEADER([impl/config.h])
  24. AC_CONFIG_FILES([Makefile])
  25. AC_PREFIX_DEFAULT(`pwd`/../install)
  26. USE_HADOOP_PIPES
  27. # Checks for programs.
  28. AC_PROG_CXX
  29. AC_PROG_INSTALL
  30. AC_PROG_LIBTOOL
  31. # Checks for libraries.
  32. # Checks for header files.
  33. AC_LANG(C++)
  34. AC_CHECK_HEADERS([unistd.h])
  35. # Checks for typedefs, structures, and compiler characteristics.
  36. AC_HEADER_STDBOOL
  37. AC_C_CONST
  38. AC_TYPE_OFF_T
  39. AC_TYPE_SIZE_T
  40. AC_FUNC_STRERROR_R
  41. # Checks for library functions.
  42. AC_CHECK_FUNCS([mkdir uname])
  43. AC_CHECK_LIB([socket],[shutdown])
  44. AC_CHECK_LIB([nsl],[xdr_float])
  45. AC_OUTPUT