123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- # Licensed to the Apache Software Foundation (ASF) under one
- # or more contributor license agreements. See the NOTICE file
- # distributed with this work for additional information
- # regarding copyright ownership. The ASF licenses this file
- # to you under the Apache License, Version 2.0 (the
- # "License"); you may not use this file except in compliance
- # with the License. You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing,
- # software distributed under the License is distributed on an
- # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- # KIND, either express or implied. See the License for the
- # specific language governing permissions and limitations
- # under the License.
- # - Find Apache Portable Runtime
- # Find the APR includes and libraries
- # This module defines
- # APR_INCLUDE_DIR and APRUTIL_INCLUDE_DIR, where to find apr.h, etc.
- # APR_LIBRARIES and APRUTIL_LIBRARIES, the libraries needed to use APR.
- # APR_FOUND and APRUTIL_FOUND, If false, do not try to use APR.
- # also defined, but not for general use are
- # APR_LIBRARY and APRUTIL_LIBRARY, where to find the APR library.
- # APR first.
- FIND_PATH(APR_INCLUDE_DIR apr.h
- /usr/local/include/apr-1
- /usr/local/include/apr-1.0
- /usr/include/apr-1
- /usr/include/apr-1.0
- )
- SET(APR_NAMES ${APR_NAMES} apr-1)
- FIND_LIBRARY(APR_LIBRARY
- NAMES ${APR_NAMES}
- PATHS /usr/lib /usr/local/lib
- )
- IF (APR_LIBRARY AND APR_INCLUDE_DIR)
- SET(APR_LIBRARIES ${APR_LIBRARY})
- SET(APR_FOUND "YES")
- ELSE (APR_LIBRARY AND APR_INCLUDE_DIR)
- SET(APR_FOUND "NO")
- ENDIF (APR_LIBRARY AND APR_INCLUDE_DIR)
- IF (APR_FOUND)
- IF (NOT APR_FIND_QUIETLY)
- MESSAGE(STATUS "Found APR: ${APR_LIBRARIES}")
- ENDIF (NOT APR_FIND_QUIETLY)
- ELSE (APR_FOUND)
- IF (APR_FIND_REQUIRED)
- MESSAGE(FATAL_ERROR "Could not find APR library")
- ENDIF (APR_FIND_REQUIRED)
- ENDIF (APR_FOUND)
- # Deprecated declarations.
- SET (NATIVE_APR_INCLUDE_PATH ${APR_INCLUDE_DIR} )
- GET_FILENAME_COMPONENT (NATIVE_APR_LIB_PATH ${APR_LIBRARY} PATH)
- MARK_AS_ADVANCED(
- APR_LIBRARY
- APR_INCLUDE_DIR
- )
- # Next, APRUTIL.
- FIND_PATH(APRUTIL_INCLUDE_DIR apu.h
- /usr/local/include/apr-1
- /usr/local/include/apr-1.0
- /usr/include/apr-1
- /usr/include/apr-1.0
- )
- SET(APRUTIL_NAMES ${APRUTIL_NAMES} aprutil-1)
- FIND_LIBRARY(APRUTIL_LIBRARY
- NAMES ${APRUTIL_NAMES}
- PATHS /usr/lib /usr/local/lib
- )
- IF (APRUTIL_LIBRARY AND APRUTIL_INCLUDE_DIR)
- SET(APRUTIL_LIBRARIES ${APRUTIL_LIBRARY})
- SET(APRUTIL_FOUND "YES")
- ELSE (APRUTIL_LIBRARY AND APRUTIL_INCLUDE_DIR)
- SET(APRUTIL_FOUND "NO")
- ENDIF (APRUTIL_LIBRARY AND APRUTIL_INCLUDE_DIR)
- IF (APRUTIL_FOUND)
- IF (NOT APRUTIL_FIND_QUIETLY)
- MESSAGE(STATUS "Found APRUTIL: ${APRUTIL_LIBRARIES}")
- ENDIF (NOT APRUTIL_FIND_QUIETLY)
- ELSE (APRUTIL_FOUND)
- IF (APRUTIL_FIND_REQUIRED)
- MESSAGE(FATAL_ERROR "Could not find APRUTIL library")
- ENDIF (APRUTIL_FIND_REQUIRED)
- ENDIF (APRUTIL_FOUND)
- # Deprecated declarations.
- SET (NATIVE_APRUTIL_INCLUDE_PATH ${APRUTIL_INCLUDE_DIR} )
- GET_FILENAME_COMPONENT (NATIVE_APRUTIL_LIB_PATH ${APRUTIL_LIBRARY} PATH)
- MARK_AS_ADVANCED(
- APRUTIL_LIBRARY
- APRUTIL_INCLUDE_DIR
- )
|