FindPHP4.cmake 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. #.rst:
  2. # FindPHP4
  3. # --------
  4. #
  5. # Find PHP4
  6. #
  7. # This module finds if PHP4 is installed and determines where the
  8. # include files and libraries are. It also determines what the name of
  9. # the library is. This code sets the following variables:
  10. #
  11. # ::
  12. #
  13. # PHP4_INCLUDE_PATH = path to where php.h can be found
  14. # PHP4_EXECUTABLE = full path to the php4 binary
  15. #=============================================================================
  16. # Copyright 2004-2009 Kitware, Inc.
  17. #
  18. # Distributed under the OSI-approved BSD License (the "License");
  19. # see accompanying file Copyright.txt for details.
  20. #
  21. # This software is distributed WITHOUT ANY WARRANTY; without even the
  22. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  23. # See the License for more information.
  24. #=============================================================================
  25. # (To distribute this file outside of CMake, substitute the full
  26. # License text for the above reference.)
  27. set(PHP4_POSSIBLE_INCLUDE_PATHS
  28. /usr/include/php4
  29. /usr/local/include/php4
  30. /usr/include/php
  31. /usr/local/include/php
  32. /usr/local/apache/php
  33. )
  34. set(PHP4_POSSIBLE_LIB_PATHS
  35. /usr/lib
  36. )
  37. find_path(PHP4_FOUND_INCLUDE_PATH main/php.h
  38. ${PHP4_POSSIBLE_INCLUDE_PATHS})
  39. if(PHP4_FOUND_INCLUDE_PATH)
  40. set(php4_paths "${PHP4_POSSIBLE_INCLUDE_PATHS}")
  41. foreach(php4_path Zend main TSRM)
  42. set(php4_paths ${php4_paths} "${PHP4_FOUND_INCLUDE_PATH}/${php4_path}")
  43. endforeach()
  44. set(PHP4_INCLUDE_PATH "${php4_paths}")
  45. endif()
  46. find_program(PHP4_EXECUTABLE NAMES php4 php )
  47. mark_as_advanced(
  48. PHP4_EXECUTABLE
  49. PHP4_FOUND_INCLUDE_PATH
  50. )
  51. if(APPLE)
  52. # this is a hack for now
  53. set(CMAKE_SHARED_MODULE_CREATE_C_FLAGS
  54. "${CMAKE_SHARED_MODULE_CREATE_C_FLAGS} -Wl,-flat_namespace")
  55. foreach(symbol
  56. __efree
  57. __emalloc
  58. __estrdup
  59. __object_init_ex
  60. __zend_get_parameters_array_ex
  61. __zend_list_find
  62. __zval_copy_ctor
  63. _add_property_zval_ex
  64. _alloc_globals
  65. _compiler_globals
  66. _convert_to_double
  67. _convert_to_long
  68. _zend_error
  69. _zend_hash_find
  70. _zend_register_internal_class_ex
  71. _zend_register_list_destructors_ex
  72. _zend_register_resource
  73. _zend_rsrc_list_get_rsrc_type
  74. _zend_wrong_param_count
  75. _zval_used_for_init
  76. )
  77. set(CMAKE_SHARED_MODULE_CREATE_C_FLAGS
  78. "${CMAKE_SHARED_MODULE_CREATE_C_FLAGS},-U,${symbol}")
  79. endforeach()
  80. endif()
  81. include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
  82. FIND_PACKAGE_HANDLE_STANDARD_ARGS(PHP4 DEFAULT_MSG PHP4_EXECUTABLE PHP4_INCLUDE_PATH)