crda: report if no supported version of libnl is found
authorPavel Roskin <proski@gnu.org>
Fri, 30 Jan 2009 22:33:06 +0000 (14:33 -0800)
committerLuis R. Rodriguez <lrodriguez@atheros.com>
Mon, 2 Feb 2009 22:53:48 +0000 (14:53 -0800)
Otherwise, the error messase would be very confusing.

Makefile

index aaa9ca6..461103d 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -52,6 +52,10 @@ NLLIBS += -lnl-genl
 NLLIBNAME = libnl-2.0
 endif
 
+ifeq ($(NLLIBNAME),)
+$(error Cannot find development files for any supported version of libnl)
+endif
+
 NLLIBS += `pkg-config --libs $(NLLIBNAME)`
 CFLAGS += `pkg-config --cflags $(NLLIBNAME)`