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

网格计算

开发平台:

Java

  1. #
  2. # Copyright 2005 The Apache Software Foundation
  3. #
  4. # Licensed under the Apache License, Version 2.0 (the "License");
  5. # you may not use this file except in compliance with the License.
  6. # You may obtain a copy of the License at
  7. #
  8. #     http://www.apache.org/licenses/LICENSE-2.0
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. #
  16. # Autoconf input file
  17. # $Id$
  18. # AC - autoconf
  19. #########################################################################
  20. # Section 1:
  21. # DO NOT TOUCH EXCEPT TO CHANGE Product-Name and Rev# IN AC_INIT
  22. AC_PREREQ(2.52)
  23. AC_INIT([fuse_dfs], [0.1.0])
  24. #AC_CONFIG_AUX_DIR([/usr/share/automake-1.9])
  25. # To install locally
  26. AC_CANONICAL_TARGET()
  27. FUSE_DFS_INITIALIZE([localinstall])
  28. AC_PREFIX_DEFAULT([`pwd`])
  29. #case $target in
  30. #*64*intel)
  31. #     OS_ARCH=intel64 ;;
  32. #*64*amd* | *64*unknown*)
  33. #     OS_ARCH=amd64 ;;
  34. #$esac
  35. #AC_SUBST(OS_ARCH)
  36.  DEFS=""
  37. AC_SUBST([DEFS])
  38. AC_FUNC_GETGROUPS
  39. AC_TYPE_GETGROUPS
  40. ############################################################################
  41. # Section 2:
  42. # User Configurable system defaults. Change With CAUTION!
  43. # User can include custom makefile rules. Uncomment and update only <name> in PRODUCT_MK.
  44. # Include where appropriate in any Makefile.am as @PRODUCT_MK@
  45. # Default path to external components and shared build tools
  46. # To point to other locations set  environment variable EXTERNAL_PATH.
  47. # DO NOT change default. Changing default value requires changing bootstrap.sh.
  48. FUSE_DFS_WITH_EXTERNAL_PATH([`pwd`])
  49. # Pre-defined macro to set optimized build mode. Configure with --disable-opt option to turn off optimization. Default CXXFLAGS set to '-Wall -O3'. In debug mode  CXXFLAGS is  '-Wall -g'
  50. # FUSE_DFSENABLE_DEFAULT_DEBUG_BUILD
  51. FUSE_DFS_ENABLE_DEFAULT_OPT_BUILD
  52. # Predefined macro to set static library mode. Configure with --disable-static option to turn off static lib mode.
  53. # FUSE_DFS_ENABLE_DEFAULT_SHARED
  54. FUSE_DFS_ENABLE_DEFAULT_STATIC
  55. AC_CONFIG_FILES(Makefile src/Makefile)
  56. ############################################################################
  57. # Section 4:
  58. # DO NOT TOUCH.
  59. AC_SUBST(PRODUCT_MK)
  60. AC_OUTPUT