mirror of
https://git.openafs.org/openafs.git
synced 2025-01-21 08:20:16 +00:00
disable-new-afs-thread-model-in-old-kernels-20021126
don't use new kernel thread model for 2.4.7-10
This commit is contained in:
parent
e45d9bf430
commit
2ab5a578cf
@ -85,8 +85,13 @@ CPPFLAGS="-I${LINUX_KERNEL_PATH}/include -D__KERNEL__ $CPPFLAGS"
|
||||
AC_CACHE_VAL(ac_cv_linux_completion_h_exists,
|
||||
[
|
||||
AC_TRY_COMPILE(
|
||||
[#include <linux/completion.h>],
|
||||
[struct completion _c;],
|
||||
[#include <linux/completion.h>
|
||||
#include <linux/version.h?],
|
||||
[struct completion _c;
|
||||
#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,4,8)
|
||||
lose
|
||||
#endif
|
||||
],
|
||||
ac_cv_linux_completion_h_exists=yes,
|
||||
ac_cv_linux_completion_h_exists=no)])
|
||||
AC_MSG_RESULT($ac_cv_linux_completion_h_exists)
|
||||
|
Loading…
Reference in New Issue
Block a user