brcompat: Build brcompat module only under Linux 2.6.
authorBen Pfaff <blp@nicira.com>
Tue, 30 Dec 2008 18:26:03 +0000 (10:26 -0800)
committerBen Pfaff <blp@nicira.com>
Tue, 30 Dec 2008 18:26:03 +0000 (10:26 -0800)
brcompat fails to compile under Linux 2.4 due to the lack of brioctl_set()
and other symbols, but there's no intention of supporting Linux 2.4 for it
anyhow, so don't build it under Linux 2.4.

datapath/Modules.mk
datapath/linux-2.6/Modules.mk

index 7818ab7613c55911b54af44c96ce3f3b46e8fda6..9193d5099e0298824d4ff557fc69fbdc51d44185 100644 (file)
@@ -1,5 +1,5 @@
 all_modules = $(dist_modules)
-dist_modules = openflow brcompat
+dist_modules = openflow
 
 openflow_sources = \
        chain.c \
@@ -30,11 +30,6 @@ openflow_headers = \
        nx_msg.h \
        table.h 
 
-brcompat_sources = \
-       brcompat.c 
-
-brcompat_headers = 
-
 dist_sources = $(foreach module,$(dist_modules),$($(module)_sources))
 dist_headers = $(foreach module,$(dist_modules),$($(module)_headers))
 all_sources = $(foreach module,$(all_modules),$($(module)_sources))
index b950355b9868f63f78ecfe8a5da04add26839161..dae760618bc870e52024c8745ea18534b60ec2f4 100644 (file)
@@ -1,3 +1,5 @@
+dist_modules += brcompat
+
 openflow_sources += \
        linux-2.6/compat-2.6/genetlink.c \
        linux-2.6/compat-2.6/random32.c
@@ -18,3 +20,8 @@ openflow_headers += \
        linux-2.6/compat-2.6/include/linux/udp.h \
        linux-2.6/compat-2.6/include/net/checksum.h \
        linux-2.6/compat-2.6/include/net/genetlink.h
+
+brcompat_sources = \
+       brcompat.c 
+
+brcompat_headers =