4
0
mirror of https://github.com/QuasarApp/qca.git synced 2025-05-12 10:49:32 +00:00

Remove not necessary path

svn path=/trunk/kdesupport/qca/; revision=697101
This commit is contained in:
Laurent Montel 2007-08-06 19:25:31 +00:00
parent f3d68ed3c3
commit 9dbadfb3d1
3 changed files with 4 additions and 17 deletions

@ -14,10 +14,7 @@
# libgcrypt is moving to pkg-config, but earlier version don't have it
#search in typical paths for libgcrypt-config
FIND_PROGRAM(BOTANCONFIG_EXECUTABLE NAMES botan-config PATHS
/usr/bin
/usr/local/bin
)
FIND_PROGRAM(BOTANCONFIG_EXECUTABLE NAMES botan-config)
#reset variables
set(BOTAN_LIBRARIES)

@ -14,10 +14,7 @@
# libgcrypt is moving to pkg-config, but earlier version don't have it
#search in typical paths for libgcrypt-config
FIND_PROGRAM(LIBGCRYPTCONFIG_EXECUTABLE NAMES libgcrypt-config PATHS
/usr/bin
/usr/local/bin
)
FIND_PROGRAM(LIBGCRYPTCONFIG_EXECUTABLE NAMES libgcrypt-config)
#reset variables
set(LIBGCRYPT_LIBRARIES)

@ -16,16 +16,9 @@ if (SASL2_INCLUDE_DIR)
set(SASL2_FIND_QUIETLY TRUE)
endif (SASL2_INCLUDE_DIR)
FIND_PATH(SASL2_INCLUDE_DIR sasl/sasl.h
/usr/include
/usr/local/include
)
FIND_PATH(SASL2_INCLUDE_DIR sasl/sasl.h)
FIND_LIBRARY(SASL2_LIBRARIES NAMES sasl2
PATHS
/usr/lib
/usr/local/lib
)
FIND_LIBRARY(SASL2_LIBRARIES NAMES sasl2)
if (SASL2_INCLUDE_DIR AND SASL2_LIBRARIES)