Commit ad824207ff93229f0c65b05ff3bbea909c6fd8c1

Con Kolivas 2012-03-28T04:21:18

Merge pull request #151 from luke-jr/libudev_detect_fixes Bugfix: Check for libudev header (not just library) in configure, and document optional dependency

diff --git a/README b/README
index 4360634..6393c0b 100644
--- a/README
+++ b/README
@@ -44,6 +44,8 @@ Dependencies:
 	(This sdk is mandatory for GPU mining)
 	AMD ADL SDK		http://developer.amd.com/sdks/ADLSDK
 	(This sdk is mandatory for ATI GPU monitoring & clocking)
+	libudev headers
+	(This is only required for FPGA auto-detection)
 
 CGMiner specific configuration options:
 	--enable-cpumining      Build with cpu mining support(default disabled)
diff --git a/configure.ac b/configure.ac
index 3db32e1..a5e4d35 100644
--- a/configure.ac
+++ b/configure.ac
@@ -266,7 +266,7 @@ if test "x$bitforce" != xno; then
 		[libudev=auto]
 		)
 	if test "x$libudev" != "xno"; then
-		AC_CHECK_LIB([udev], [udev_device_get_devnode], [
+		AC_CHECK_HEADER([libudev.h],[
 			libudev=yes
 			UDEV_LIBS=-ludev
 			AC_DEFINE([HAVE_LIBUDEV], [1], [Defined to 1 if libudev is wanted])