summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake')
-rw-r--r--cmake/FindPOPT.cmake6
-rw-r--r--cmake/config.h.in2
2 files changed, 6 insertions, 2 deletions
diff --git a/cmake/FindPOPT.cmake b/cmake/FindPOPT.cmake
index de29c7e..4242875 100644
--- a/cmake/FindPOPT.cmake
+++ b/cmake/FindPOPT.cmake
@@ -4,13 +4,15 @@
#
# POPT_FOUND - System has popt
# POPT_INCLUDE_DIR - The popt include directory
-# POPT_LIBRARIES - The libraries needed to use popt
+# POPT_LIBRARY - The libraries needed to use popt
# use pkg-config to get the directories and then use these values
# in the FIND_PATH() and FIND_LIBRARY() calls
find_package(PkgConfig QUIET)
-pkg_search_module(PC_POPT QUIET popt)
+if (PKG_CONFIG_FOUND)
+ pkg_search_module(PC_POPT QUIET popt)
+endif ()
# Find the include directories
FIND_PATH(POPT_INCLUDE_DIR
diff --git a/cmake/config.h.in b/cmake/config.h.in
index e7a83c4..7f3fa71 100644
--- a/cmake/config.h.in
+++ b/cmake/config.h.in
@@ -8,4 +8,6 @@
#cmakedefine HAVE_HTONLL
+#define AMQ_PLATFORM "@CMAKE_SYSTEM@"
+
#endif /* CONFIG_H */