Whamcloud - gitweb
Add configure option to allow repackaging of e2fsprogs as ldiskfsprogs. (by Jim Garlick)
[fs/lustre-release.git] / build / autoconf / lustre-build-linux.m4
1 #
2 # LB_LINUX_VERSION
3 #
4 # Set things accordingly for a 2.5 kernel
5 #
6 AC_DEFUN([LB_LINUX_VERSION],
7 [LB_CHECK_FILE([$LINUX/include/linux/namei.h],
8         [
9                 linux25="yes"
10                 KMODEXT=".ko"
11         ],[
12                 KMODEXT=".o"
13                 linux25="no"
14         ])
15 AC_MSG_CHECKING([if you are using Linux 2.6])
16 AC_MSG_RESULT([$linux25])
17
18 MODULE_TARGET="SUBDIRS"
19 if test $linux25 = "yes" ; then
20         makerule="$PWD/build"
21         AC_MSG_CHECKING([for external module build support])
22         rm -f build/conftest.i
23         LB_LINUX_TRY_MAKE([],[],
24                 [$makerule LUSTRE_KERNEL_TEST=conftest.i],
25                 [test -s build/conftest.i],
26                 [
27                         AC_MSG_RESULT([no])
28                 ],[
29                         makerule="_module_$makerule"
30                         MODULE_TARGET="M"
31                         LB_LINUX_TRY_MAKE([],[],
32                                 [$makerule LUSTRE_KERNEL_TEST=conftest.i],
33                                 [test -s build/conftest.i],
34                                 [
35                                         AC_MSG_RESULT([yes])
36                                 ],[
37                                         AC_MSG_ERROR([unknown; check config.log for details])
38                                 ])
39                 ])
40 else
41         makerule="_dir_$PWD/build"
42 fi
43
44 AC_SUBST(MODULE_TARGET)
45 AC_SUBST(linux25)
46 AC_SUBST(KMODEXT)
47 ])
48
49 #
50 # LB_LINUX_RELEASE
51 #
52 # get the release version of linux
53 #
54 AC_DEFUN([LB_LINUX_RELEASE],
55 [LINUXRELEASE=
56 rm -f build/conftest.i
57 AC_MSG_CHECKING([for Linux release])
58 if test -s $LINUX_OBJ/include/linux/utsrelease.h ; then
59         LINUXRELEASEHEADER=utsrelease.h
60 else
61         LINUXRELEASEHEADER=version.h
62 fi
63 LB_LINUX_TRY_MAKE([
64         #include <linux/$LINUXRELEASEHEADER>
65 ],[
66         char *LINUXRELEASE;
67         LINUXRELEASE=UTS_RELEASE;
68 ],[
69         $makerule LUSTRE_KERNEL_TEST=conftest.i
70 ],[
71         test -s build/conftest.i
72 ],[
73         # LINUXRELEASE="UTS_RELEASE"
74         eval $(grep "LINUXRELEASE=" build/conftest.i)
75 ],[
76         AC_MSG_RESULT([unknown])
77         AC_MSG_ERROR([Could not preprocess test program.  Consult config.log for details.])
78 ])
79 rm -f build/conftest.i
80 if test x$LINUXRELEASE = x ; then
81         AC_MSG_RESULT([unknown])
82         AC_MSG_ERROR([Could not determine Linux release version from linux/version.h.])
83 fi
84 AC_MSG_RESULT([$LINUXRELEASE])
85 AC_SUBST(LINUXRELEASE)
86
87 moduledir='/lib/modules/'$LINUXRELEASE/kernel
88 AC_SUBST(moduledir)
89
90 modulefsdir='$(moduledir)/fs/$(PACKAGE)'
91 AC_SUBST(modulefsdir)
92
93 modulenetdir='$(moduledir)/net/$(PACKAGE)'
94 AC_SUBST(modulenetdir)
95
96 # ------------ RELEASE --------------------------------
97 AC_MSG_CHECKING([for Lustre release])
98 RELEASE="`echo ${LINUXRELEASE} | tr '-' '_'`_`date +%Y%m%d%H%M`"
99 AC_MSG_RESULT($RELEASE)
100 AC_SUBST(RELEASE)
101
102 # check is redhat/suse kernels
103 AC_MSG_CHECKING([that RedHat kernel])
104 LB_LINUX_TRY_COMPILE([
105                 #include <linux/version.h>
106         ],[
107                 #ifndef RHEL_MAJOR
108                 #error "not redhat kernel"
109                 #endif
110         ],[
111                 RHEL_KENEL="yes"
112                 AC_MSG_RESULT([yes])
113         ],[
114                 AC_MSG_RESULT([no])
115 ])
116
117 AC_MSG_CHECKING([that SuSe kernel])
118 LB_LINUX_TRY_COMPILE([
119                 #include <linux/version.h>
120         ],[
121                 #ifndef SLE_VERSION_CODE
122                 #error "not sles kernel"
123                 #endif
124         ],[
125                 SUSE_KERNEL="yes"
126                 AC_MSG_RESULT([yes])
127         ],[
128                 AC_MSG_RESULT([no])
129 ])
130
131 ])
132
133 #
134 #
135 # LB_LINUX_PATH
136 #
137 # Find paths for linux, handling kernel-source rpms
138 #
139 AC_DEFUN([LB_LINUX_PATH],
140 [AC_MSG_CHECKING([for Linux sources])
141 AC_ARG_WITH([linux],
142         AC_HELP_STRING([--with-linux=path],
143                        [set path to Linux source (default=/usr/src/linux)]),
144         [LINUX=$with_linux],
145         [LINUX=/usr/src/linux])
146 AC_MSG_RESULT([$LINUX])
147 AC_SUBST(LINUX)
148
149 # -------- check for linux --------
150 LB_CHECK_FILE([$LINUX],[],
151         [AC_MSG_ERROR([Kernel source $LINUX could not be found.])])
152
153 # -------- linux objects (for 2.6) --
154 AC_MSG_CHECKING([for Linux objects dir])
155 AC_ARG_WITH([linux-obj],
156         AC_HELP_STRING([--with-linux-obj=path],
157                         [set path to Linux objects dir (default=$LINUX)]),
158         [LINUX_OBJ=$with_linux_obj],
159         [LINUX_OBJ=$LINUX])
160 AC_MSG_RESULT([$LINUX_OBJ])
161 AC_SUBST(LINUX_OBJ)
162
163 # -------- check for .config --------
164 AC_ARG_WITH([linux-config],
165         [AC_HELP_STRING([--with-linux-config=path],
166                         [set path to Linux .conf (default=$LINUX_OBJ/.config)])],
167         [LINUX_CONFIG=$with_linux_config],
168         [LINUX_CONFIG=$LINUX_OBJ/.config])
169 AC_SUBST(LINUX_CONFIG)
170
171 LB_CHECK_FILE([/boot/kernel.h],
172         [KERNEL_SOURCE_HEADER='/boot/kernel.h'],
173         [LB_CHECK_FILE([/var/adm/running-kernel.h],
174                 [KERNEL_SOURCE_HEADER='/var/adm/running-kernel.h'])])
175
176 AC_ARG_WITH([kernel-source-header],
177         AC_HELP_STRING([--with-kernel-source-header=path],
178                         [Use a different kernel version header.  Consult build/README.kernel-source for details.]),
179         [KERNEL_SOURCE_HEADER=$with_kernel_source_header])
180
181 # ------------ .config exists ----------------
182 LB_CHECK_FILE([$LINUX_CONFIG],[],
183         [AC_MSG_ERROR([Kernel config could not be found.  If you are building from a kernel-source rpm consult build/README.kernel-source])])
184
185 # ----------- make dep run? ------------------
186 # at 2.6.19 # $LINUX/include/linux/config.h is removed
187 # and at more old has only one line
188 # include <autoconf.h>
189 LB_CHECK_FILES([$LINUX_OBJ/include/linux/autoconf.h
190                 $LINUX_OBJ/include/linux/version.h
191                 ],[],
192         [AC_MSG_ERROR([Run make config in $LINUX.])])
193
194 # ------------ rhconfig.h includes runtime-generated bits --
195 # red hat kernel-source checks
196
197 # we know this exists after the check above.  if the user
198 # tarred up the tree and ran make dep etc. in it, then
199 # version.h gets overwritten with a standard linux one.
200
201 if grep rhconfig $LINUX_OBJ/include/linux/version.h >/dev/null ; then
202         # This is a clean kernel-source tree, we need to
203         # enable extensive workarounds to get this to build
204         # modules
205         LB_CHECK_FILE([$KERNEL_SOURCE_HEADER],
206                 [if test $KERNEL_SOURCE_HEADER = '/boot/kernel.h' ; then
207                         AC_MSG_WARN([Using /boot/kernel.h from RUNNING kernel.])
208                         AC_MSG_WARN([If this is not what you want, use --with-kernel-source-header.])
209                         AC_MSG_WARN([Consult build/README.kernel-source for details.])
210                 fi],
211                 [AC_MSG_ERROR([$KERNEL_SOURCE_HEADER not found.  Consult build/README.kernel-source for details.])])
212         EXTRA_KCFLAGS="-include $KERNEL_SOURCE_HEADER $EXTRA_KCFLAGS"
213 fi
214
215 # this is needed before we can build modules
216 LB_LINUX_UML
217 LB_LINUX_VERSION
218
219 # --- check that we can build modules at all
220 AC_MSG_CHECKING([that modules can be built at all])
221 LB_LINUX_TRY_COMPILE([],[],[
222         AC_MSG_RESULT([yes])
223 ],[
224         AC_MSG_RESULT([no])
225         AC_MSG_WARN([Consult config.log for details.])
226         AC_MSG_WARN([If you are trying to build with a kernel-source rpm, consult build/README.kernel-source])
227         AC_MSG_ERROR([Kernel modules cannot be built.])
228 ])
229
230 LB_LINUX_RELEASE
231 ]) # end of LB_LINUX_PATH
232
233 # LB_LINUX_SYMVERFILE
234 # SLES 9 uses a different name for this file - unsure about vanilla kernels
235 # around this version, but it matters for servers only.
236 AC_DEFUN([LB_LINUX_SYMVERFILE],
237         [AC_MSG_CHECKING([name of module symbol version file])
238         if grep -q Modules.symvers $LINUX/scripts/Makefile.modpost ; then
239                 SYMVERFILE=Modules.symvers
240         else
241                 SYMVERFILE=Module.symvers
242         fi
243         AC_MSG_RESULT($SYMVERFILE)
244         AC_SUBST(SYMVERFILE)
245 ])
246
247 #
248 #
249 # LB_LINUX_MODPOST
250 #
251 # Find modpost and check it
252 #
253 AC_DEFUN([LB_LINUX_MODPOST],
254 [
255 # Find the modpost utility
256 LB_CHECK_FILE([$LINUX_OBJ/scripts/mod/modpost],
257         [MODPOST=$LINUX_OBJ/scripts/mod/modpost],
258         [LB_CHECK_FILE([$LINUX_OBJ/scripts/modpost],
259                 [MODPOST=$LINUX_OBJ/scripts/modpost],
260                 AC_MSG_ERROR([modpost not found.])
261         )]
262 )
263 AC_SUBST(MODPOST)
264
265 # Ensure it can run
266 AC_MSG_CHECKING([if modpost can be run])
267 if $MODPOST ; then
268         AC_MSG_RESULT([yes])
269 else
270         AC_MSG_ERROR([modpost can not be run.])
271 fi
272
273 # Check if modpost supports (and therefore requires) -m
274 AC_MSG_CHECKING([if modpost supports -m])
275 if $MODPOST -m 2>/dev/null ; then
276         AC_MSG_RESULT([yes])
277         MODPOST_ARGS=-m
278 else
279         AC_MSG_RESULT([no])
280         MODPOST_ARGS=""
281 fi
282 AC_SUBST(MODPOST_ARGS)
283 ])
284
285 #
286 # LB_LINUX_UML
287 #
288 # check for a uml kernel
289 #
290 AC_DEFUN([LB_LINUX_UML],
291 [ARCH_UM=
292 UML_CFLAGS=
293
294 AC_MSG_CHECKING([if you are running user mode linux for $target_cpu])
295 if test -e $LINUX/include/asm-um ; then
296         if test  X`ls -id $LINUX/include/asm/ 2>/dev/null | awk '{print [$]1}'` = X`ls -id $LINUX/include/asm-um 2>/dev/null | awk '{print [$]1}'` ; then
297                 ARCH_UM='ARCH=um'
298                 # see notes in Rules.in
299                 UML_CFLAGS='-O0'
300                 AC_MSG_RESULT(yes)
301         else
302                 AC_MSG_RESULT([no (asm doesn't point at asm-um)])
303         fi
304 else
305         AC_MSG_RESULT([no (asm-um missing)])
306 fi
307 AC_SUBST(ARCH_UM)
308 AC_SUBST(UML_CFLAGS)
309 ])
310
311 # these are like AC_TRY_COMPILE, but try to build modules against the
312 # kernel, inside the build directory
313
314 #
315 # LB_LINUX_CONFTEST
316 #
317 # create a conftest.c file
318 #
319 AC_DEFUN([LB_LINUX_CONFTEST],
320 [cat >conftest.c <<_ACEOF
321 $1
322 _ACEOF
323 ])
324
325
326 # LB_LANG_PROGRAM(C)([PROLOGUE], [BODY])
327 # --------------------------------------
328 m4_define([LB_LANG_PROGRAM],
329 [$1
330 int
331 main (void)
332 {
333 dnl Do *not* indent the following line: there may be CPP directives.
334 dnl Don't move the `;' right after for the same reason.
335 $2
336   ;
337   return 0;
338 }])
339
340 #
341 # LB_LINUX_COMPILE_IFELSE
342 #
343 # like AC_COMPILE_IFELSE
344 #
345 AC_DEFUN([LB_LINUX_COMPILE_IFELSE],
346 [m4_ifvaln([$1], [LB_LINUX_CONFTEST([$1])])dnl
347 rm -f build/conftest.o build/conftest.mod.c build/conftest.ko
348 AS_IF([AC_TRY_COMMAND(cp conftest.c build && make -d [$2] ${LD:+"LD=$LD"} CC="$CC" -f $PWD/build/Makefile LUSTRE_LINUX_CONFIG=$LINUX_CONFIG LINUXINCLUDE="$EXTRA_LNET_INCLUDE -I$LINUX/include -I$LINUX_OBJ/include -I$LINUX_OBJ/include2 -include include/linux/autoconf.h" -o tmp_include_depends -o scripts -o include/config/MARKER -C $LINUX_OBJ EXTRA_CFLAGS="-Werror-implicit-function-declaration $EXTRA_KCFLAGS" $ARCH_UM $MODULE_TARGET=$PWD/build) >/dev/null && AC_TRY_COMMAND([$3])],
349         [$4],
350         [_AC_MSG_LOG_CONFTEST
351 m4_ifvaln([$5],[$5])dnl])dnl
352 rm -f build/conftest.o build/conftest.mod.c build/conftest.mod.o build/conftest.ko m4_ifval([$1], [build/conftest.c conftest.c])[]dnl
353 ])
354
355 #
356 # LB_LINUX_ARCH
357 #
358 # Determine the kernel's idea of the current architecture
359 #
360 AC_DEFUN([LB_LINUX_ARCH],
361          [AC_MSG_CHECKING([Linux kernel architecture])
362           AS_IF([rm -f $PWD/build/arch
363                  make -s --no-print-directory echoarch -f $PWD/build/Makefile \
364                      LUSTRE_LINUX_CONFIG=$LINUX_CONFIG -C $LINUX_OBJ $ARCH_UM \
365                      ARCHFILE=$PWD/build/arch && LINUX_ARCH=`cat $PWD/build/arch`],
366                 [AC_MSG_RESULT([$LINUX_ARCH])],
367                 [AC_MSG_ERROR([Could not determine the kernel architecture.])])
368           rm -f build/arch])
369
370 #
371 # LB_LINUX_TRY_COMPILE
372 #
373 # like AC_TRY_COMPILE
374 #
375 AC_DEFUN([LB_LINUX_TRY_COMPILE],
376 [LB_LINUX_COMPILE_IFELSE(
377         [AC_LANG_SOURCE([LB_LANG_PROGRAM([[$1]], [[$2]])])],
378         [modules],
379         [test -s build/conftest.o],
380         [$3], [$4])])
381
382 #
383 # LB_LINUX_CONFIG
384 #
385 # check if a given config option is defined
386 #
387 AC_DEFUN([LB_LINUX_CONFIG],
388 [AC_MSG_CHECKING([if Linux was built with CONFIG_$1])
389 LB_LINUX_TRY_COMPILE([
390 #include <linux/autoconf.h>
391 ],[
392 #ifndef CONFIG_$1
393 #error CONFIG_$1 not #defined
394 #endif
395 ],[
396 AC_MSG_RESULT([yes])
397 $2
398 ],[
399 AC_MSG_RESULT([no])
400 $3
401 ])
402 ])
403
404 #
405 # LB_LINUX_CONFIG_IM
406 #
407 # check if a given config option is builtin or as module
408 #
409 AC_DEFUN([LB_LINUX_CONFIG_IM],
410 [AC_MSG_CHECKING([if Linux was built with CONFIG_$1 in or as module])
411 LB_LINUX_TRY_COMPILE([
412 #include <linux/autoconf.h>
413 ],[
414 #if !(defined(CONFIG_$1) || defined(CONFIG_$1_MODULE))
415 #error CONFIG_$1 and CONFIG_$1_MODULE not #defined
416 #endif
417 ],[
418 AC_MSG_RESULT([yes])
419 $2
420 ],[
421 AC_MSG_RESULT([no])
422 $3
423 ])
424 ])
425
426 #
427 # LB_LINUX_TRY_MAKE
428 #
429 # like LB_LINUX_TRY_COMPILE, but with different arguments
430 #
431 AC_DEFUN([LB_LINUX_TRY_MAKE],
432 [LB_LINUX_COMPILE_IFELSE([AC_LANG_SOURCE([LB_LANG_PROGRAM([[$1]], [[$2]])])], [$3], [$4], [$5], [$6])])
433
434 #
435 # LB_LINUX_CONFIG_BIG_STACK
436 #
437 # check for big stack patch
438 #
439 AC_DEFUN([LB_LINUX_CONFIG_BIG_STACK],
440 [if test "x$ARCH_UM" = "x" -a "x$linux25" = "xno" ; then
441         case $target_cpu in
442                 i?86 | x86_64)
443                         LB_LINUX_CONFIG([STACK_SIZE_16KB],[],[
444                                 LB_LINUX_CONFIG([STACK_SIZE_32KB],[],[
445                                         LB_LINUX_CONFIG([STACK_SIZE_64KB],[],[
446                                                 AC_MSG_ERROR([Lustre requires that Linux is configured with at least a 16KB stack.])
447                                         ])
448                                 ])
449                         ])
450                         ;;
451         esac
452 fi
453 ])
454
455 #
456 # LB_PROG_LINUX
457 #
458 # linux tests
459 #
460 AC_DEFUN([LB_PROG_LINUX],
461 [LB_LINUX_PATH
462 LB_LINUX_ARCH
463 LB_LINUX_SYMVERFILE
464
465
466 LB_LINUX_CONFIG([MODULES],[],[
467         AC_MSG_ERROR([module support is required to build Lustre kernel modules.])
468 ])
469
470 LB_LINUX_CONFIG([MODVERSIONS])
471
472 LB_LINUX_CONFIG([PREEMPT],[
473         AC_MSG_ERROR([Lustre does not support kernels with preempt enabled.])
474 ])
475
476 LB_LINUX_CONFIG([KALLSYMS],[],[
477 if test "x$ARCH_UM" = "x" ; then
478         AC_MSG_ERROR([Lustre requires that CONFIG_KALLSYMS is enabled in your kernel.])
479 fi
480 ])
481
482 LB_LINUX_CONFIG([KMOD],[],[
483         AC_MSG_WARN([])
484         AC_MSG_WARN([Kernel module loading support is highly recommended.])
485         AC_MSG_WARN([])
486 ])
487
488 #LB_LINUX_CONFIG_BIG_STACK
489
490 ])
491
492 #
493 # LB_LINUX_CONDITIONALS
494 #
495 # AM_CONDITIONALS for linux
496 #
497 AC_DEFUN([LB_LINUX_CONDITIONALS],
498 [AM_CONDITIONAL(LINUX25, test x$linux25 = xyes)
499 ])
500
501
502 #
503 # LB_CHECK_SYMBOL_EXPORT
504 # check symbol exported or not 
505 # $1 - symbol
506 # $2 - file(s) for find.
507 # $3 - do 'yes'
508 # $4 - do 'no'
509 #
510 # 2.6 based kernels - put modversion info into $LINUX/Module.modvers
511 # or check 
512 AC_DEFUN([LB_CHECK_SYMBOL_EXPORT],
513 [AC_MSG_CHECKING([if Linux was built with symbol $1 is exported])
514 grep -q -E '[[[:space:]]]$1[[[:space:]]]' $LINUX/$SYMVERFILE 2>/dev/null
515 rc=$?
516 if test $rc -ne 0; then
517     export=0
518     for file in $2; do
519         grep -q -E "EXPORT_SYMBOL.*\($1\)" "$LINUX/$file" 2>/dev/null
520         rc=$?
521         if test $rc -eq 0; then
522                 export=1
523                 break;
524         fi
525     done
526     if test $export -eq 0; then
527         AC_MSG_RESULT([no])
528         $4
529     else
530         AC_MSG_RESULT([yes])
531         $3
532     fi
533 else
534     AC_MSG_RESULT([yes])
535     $3
536 fi
537 ])