mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-18 02:20:59 +03:00
0fac9c9e6d
As of Linux 2.6.32 the proc handlers where updated to expect only five arguments. Therefore there is no longer a need to maintain this compatibility code and this infrastructure can be simplified. Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
25 lines
734 B
Makefile
25 lines
734 B
Makefile
COMMON_H =
|
|
|
|
KERNEL_H = \
|
|
$(top_srcdir)/include/linux/bitops_compat.h \
|
|
$(top_srcdir)/include/linux/compiler_compat.h \
|
|
$(top_srcdir)/include/linux/delay_compat.h \
|
|
$(top_srcdir)/include/linux/file_compat.h \
|
|
$(top_srcdir)/include/linux/list_compat.h \
|
|
$(top_srcdir)/include/linux/math64_compat.h \
|
|
$(top_srcdir)/include/linux/mm_compat.h \
|
|
$(top_srcdir)/include/linux/module_compat.h \
|
|
$(top_srcdir)/include/linux/proc_compat.h \
|
|
$(top_srcdir)/include/linux/rwsem_compat.h \
|
|
$(top_srcdir)/include/linux/wait_compat.h \
|
|
$(top_srcdir)/include/linux/zlib_compat.h
|
|
|
|
USER_H =
|
|
|
|
EXTRA_DIST = $(COMMON_H) $(KERNEL_H) $(USER_H)
|
|
|
|
if CONFIG_KERNEL
|
|
kerneldir = /usr/src/spl-$(VERSION)/include/linux
|
|
kernel_HEADERS = $(KERNEL_H)
|
|
endif
|