Whamcloud - gitweb
236141523cfe93b6b013a5426f2051a398b72fda
[fs/lustre-release.git] / lnet / autoconf / lustre-lnet.m4
1 #
2 # LN_CONFIG_MAX_PAYLOAD
3 #
4 # configure maximum payload
5 #
6 AC_DEFUN([LN_CONFIG_MAX_PAYLOAD], [
7 AC_MSG_CHECKING([for non-default maximum LNET payload])
8 AC_ARG_WITH([max-payload-mb],
9         AC_HELP_STRING([--with-max-payload-mb=MBytes],
10                 [set maximum lnet payload in MBytes]),
11         [
12                 AC_MSG_RESULT([$with_max_payload_mb])
13                 CONFIG_LNET_MAX_PAYLOAD_MB=$with_max_payload_mb
14                 CONFIG_LNET_MAX_PAYLOAD="(($with_max_payload_mb)<<20)"
15         ], [
16                 AC_MSG_RESULT([no])
17                 CONFIG_LNET_MAX_PAYLOAD="LNET_MTU"
18         ])
19 AC_DEFINE_UNQUOTED(CONFIG_LNET_MAX_PAYLOAD, $CONFIG_LNET_MAX_PAYLOAD,
20         [Max LNET payload])
21 ]) # LN_CONFIG_MAX_PAYLOAD
22
23 #
24 # LN_CHECK_GCC_VERSION
25 #
26 # Check compiler version
27 #
28 AC_DEFUN([LN_CHECK_GCC_VERSION], [
29 AC_MSG_CHECKING([compiler version])
30 PTL_CC_VERSION=`$CC --version | awk '/^gcc/{print $ 3}'`
31 PTL_MIN_CC_VERSION="3.2.2"
32 v2n() {
33         awk -F. '{printf "%d\n", (($ 1)*100+($ 2))*100+($ 3)}'
34 }
35 if test -z "$PTL_CC_VERSION" -o \
36         $(echo $PTL_CC_VERSION | v2n) -ge $(echo $PTL_MIN_CC_VERSION | v2n); then
37         AC_MSG_RESULT([ok])
38 else
39         AC_MSG_RESULT([Buggy compiler found])
40         AC_MSG_ERROR([Need gcc version >= $PTL_MIN_CC_VERSION])
41 fi
42 ]) # LN_CHECK_GCC_VERSION
43
44 #
45 # LN_FUNC_DEV_GET_BY_NAME_2ARG
46 #
47 AC_DEFUN([LN_FUNC_DEV_GET_BY_NAME_2ARG], [
48 LB_CHECK_COMPILE([if 'dev_get_by_name' has two args],
49 dev_get_by_name_2args, [
50         #include <linux/netdevice.h>
51 ],[
52         dev_get_by_name(NULL, NULL);
53 ],[
54         AC_DEFINE(HAVE_DEV_GET_BY_NAME_2ARG, 1,
55                 [dev_get_by_name has 2 args])
56 ])
57 ]) # LN_FUNC_DEV_GET_BY_NAME_2ARG
58
59 #
60 # LN_CONFIG_AFFINITY
61 #
62 # check if cpu affinity is available/wanted
63 #
64 AC_DEFUN([LN_CONFIG_AFFINITY], [
65 AC_MSG_CHECKING([whether to enable CPU affinity support])
66 AC_ARG_ENABLE([affinity],
67         AC_HELP_STRING([--disable-affinity],
68                 [disable process/irq affinity]),
69         [], [enable_affinity="yes"])
70 AC_MSG_RESULT([$enable_affinity])
71 AS_IF([test "x$enable_affinity" = xyes], [
72         LB_CHECK_COMPILE([if Linux kernel has cpu affinity support],
73         set_cpus_allowed_ptr, [
74                 #include <linux/sched.h>
75         ],[
76                 struct task_struct *t;
77                 #if HAVE_CPUMASK_T
78                 cpumask_t     m;
79                 #else
80                 unsigned long m;
81                 #endif
82                 set_cpus_allowed_ptr(t, &m);
83         ],[
84                 AC_DEFINE(CPU_AFFINITY, 1,
85                         [kernel has cpu affinity support])
86         ])
87 ])
88 ]) # LN_CONFIG_AFFINITY
89
90 #
91 # LN_CONFIG_BACKOFF
92 #
93 # check if tunable tcp backoff is available/wanted
94 #
95 AC_DEFUN([LN_CONFIG_BACKOFF], [
96 AC_MSG_CHECKING([whether to enable tunable backoff TCP support])
97 AC_ARG_ENABLE([backoff],
98         AC_HELP_STRING([--disable-backoff],
99                 [disable socknal tunable backoff]),
100         [], [enable_backoff="yes"])
101 AC_MSG_RESULT([$enable_backoff])
102 AS_IF([test "x$enable_backoff" = xyes], [
103         AC_MSG_CHECKING([if Linux kernel has tunable backoff TCP support])
104         AS_IF([grep -c TCP_BACKOFF $LINUX/include/linux/tcp.h >/dev/null], [
105                 AC_MSG_RESULT([yes])
106                 AC_DEFINE(SOCKNAL_BACKOFF, 1, [use tunable backoff TCP])
107                 AS_IF([grep rto_max $LINUX/include/linux/tcp.h | grep -q __u16 >/dev/null],
108                         [AC_DEFINE(SOCKNAL_BACKOFF_MS, 1,
109                                 [tunable backoff TCP in ms])])
110         ], [
111                 AC_MSG_RESULT([no])
112         ])
113 ])
114 ]) # LN_CONFIG_BACKOFF
115
116 #
117 # LN_CONFIG_DLC
118 #
119 # Configure dlc if enabled
120 #
121 # if libyaml is set (IE libyaml installed) and enable_dlc = yes then build
122 # dlc other wise (IE if libyaml is not set or enable_dlc = no) then don't
123 # build dlc.
124 #
125 AC_DEFUN([LN_CONFIG_DLC], [
126         AC_CHECK_LIB([yaml],  [yaml_parser_initialize],[
127                 LIBYAML="libyaml"],[
128                 LIBYAML=""],[-lm])
129         AC_MSG_CHECKING([whether to enable dlc])
130         AC_ARG_ENABLE([dlc],
131                 AC_HELP_STRING([--disable-dlc],
132                         [disable building dlc]),
133                         [], [enable_dlc="yes"])
134         USE_DLC=""
135         AS_IF([test "x$enable_dlc" = xyes],
136                 [AS_IF([test "x$LIBYAML" = xlibyaml], [
137                         USE_DLC="yes"
138                         AC_MSG_RESULT([yes])
139                 ], [
140                         AC_MSG_RESULT([no (libyaml not present)])
141                 ])
142         ], [
143                 AC_MSG_RESULT([no])
144         ])
145         AC_SUBST(USE_DLC)
146 ])
147
148 #
149 # LN_CONFIG_O2IB
150 #
151 # If current OFED installed (assume with "ofed_info") and devel
152 # headers are not found, error because we assume OFED infiniband
153 # driver needs to be used and we must configure/build with it.
154 # Current OFED headers detection mechanism allow for non-standard
155 # prefix but relies on "ofed_info" command and on "%prefix/openib"
156 # link (both are ok for 1.5.x and 3.x versions), and should work
157 # for both source and DKMS builds.
158 #
159 AC_DEFUN([LN_CONFIG_O2IB], [
160 AC_MSG_CHECKING([whether to use Compat RDMA])
161 AC_ARG_WITH([o2ib],
162         AC_HELP_STRING([--with-o2ib=[yes|no|<path>]],
163                 [build o2iblnd against path]),
164         [], [with_o2ib="yes"])
165
166 case $with_o2ib in
167         yes)    AS_IF([which ofed_info 2>/dev/null], [
168                         O2IBPATHS=$(ofed_info | egrep -w 'compat-rdma-devel|kernel-ib-devel|ofa_kernel-devel' | xargs rpm -ql | grep '/openib$')
169                         AS_IF([test -z "$O2IBPATHS"], [
170                                 AC_MSG_ERROR([
171 You seem to have an OFED installed but have not installed it's devel package.
172 If you still want to build Lustre for your OFED I/B stack, you need to install its devel headers RPM.
173 Instead, if you want to build Lustre for your kernel's built-in I/B stack rather than your installed OFED stack, either remove the OFED package(s) or use --with-o2ib=no.
174                                              ])
175                         ])
176                         AS_IF([test $(echo $O2IBPATHS | wc -w) -ge 2], [
177                                 AC_MSG_ERROR([
178 It appears that you have multiple OFED versions installed.
179 If you still want to build Lustre for your OFED I/B stack, you need to install a single version with its devel headers RPM.
180 Instead, if you want to build Lustre for your kernel's built-in I/B stack rather than your installed OFED stack, either remove the OFED package(s) or use --with-o2ib=no.
181                                              ])
182                         ])
183                         OFED="yes"
184                 ], [
185                         O2IBPATHS="$LINUX $LINUX/drivers/infiniband"
186                 ])
187                 ENABLEO2IB="yes"
188                 ;;
189         no)     ENABLEO2IB="no"
190                 ;;
191         *)      O2IBPATHS=$with_o2ib
192                 ENABLEO2IB="withpath"
193                 OFED="yes"
194                 ;;
195 esac
196
197 AS_IF([test $ENABLEO2IB = "no"], [
198         AC_MSG_RESULT([no])
199 ], [
200         o2ib_found=false
201         for O2IBPATH in $O2IBPATHS; do
202                 AS_IF([test \( -f ${O2IBPATH}/include/rdma/rdma_cm.h -a \
203                            -f ${O2IBPATH}/include/rdma/ib_cm.h -a \
204                            -f ${O2IBPATH}/include/rdma/ib_verbs.h -a \
205                            -f ${O2IBPATH}/include/rdma/ib_fmr_pool.h \)], [
206                         AS_IF([test \( \( \( -d ${O2IBPATH}/patches -a \
207                                    \( "x$OFED" = "xyes" \) \) -o \
208                                    -d ${O2IBPATH}/kernel_patches \) -a \
209                                    -f ${O2IBPATH}/Makefile \)], [
210                                 AC_MSG_RESULT([no])
211                                 AC_MSG_ERROR([
212
213 trying to use the, explicit or detected, OFED distribution's source
214 directory (${O2IBPATH}) rather than the "development/headers"
215 directory which is likely in ${O2IBPATH%-*}
216 ])
217                         ])
218                         o2ib_found=true
219                         break
220                 ])
221         done
222         if ! $o2ib_found; then
223                 AC_MSG_RESULT([no])
224                 case $ENABLEO2IB in
225                         "yes") AC_MSG_ERROR([no OFED nor kernel OpenIB gen2 headers present]) ;;
226                         "withpath") AC_MSG_ERROR([bad --with-o2ib path]) ;;
227                         *) AC_MSG_ERROR([internal error]) ;;
228                 esac
229         else
230                 compatrdma_found=false
231                 if test -f ${O2IBPATH}/include/linux/compat-2.6.h; then
232                         AC_MSG_RESULT([yes])
233                         compatrdma_found=true
234                         AC_DEFINE(HAVE_COMPAT_RDMA, 1, [compat rdma found])
235                 else
236                         AC_MSG_RESULT([no])
237                 fi
238                 if ! $compatrdma_found; then
239                         if test -f "$O2IBPATH/config.mk"; then
240                                 . "$O2IBPATH/config.mk"
241                         elif test -f "$O2IBPATH/ofed_patch.mk"; then
242                                 . "$O2IBPATH/ofed_patch.mk"
243                         fi
244                 else
245                         if test "x$RHEL_KERNEL" = xyes; then
246                                 case "$RHEL_RELEASE_NO" in
247                                         64)
248                                                 EXTRA_OFED_INCLUDE="$EXTRA_OFED_INCLUDE -DCONFIG_COMPAT_RHEL_6_4" ;;
249                                         65)
250                                                 EXTRA_OFED_INCLUDE="$EXTRA_OFED_INCLUDE -DCONFIG_COMPAT_RHEL_6_4 -DCONFIG_COMPAT_RHEL_6_5" ;;
251                                 esac
252                         elif test "x$SUSE_KERNEL" = xyes; then
253                                 SP=$(grep PATCHLEVEL /etc/SuSE-release | sed -e 's/.*= *//')
254                                 EXTRA_OFED_INCLUDE="$EXTRA_OFED_INCLUDE -DCONFIG_COMPAT_SLES_11_$SP"
255                         fi
256                 fi
257                 AC_MSG_CHECKING([whether to use any OFED backport headers])
258                 if test -n "$BACKPORT_INCLUDES"; then
259                         AC_MSG_RESULT([yes])
260                         OFED_BACKPORT_PATH="$O2IBPATH/${BACKPORT_INCLUDES/*\/kernel_addons/kernel_addons}/"
261                         EXTRA_OFED_INCLUDE="-I$OFED_BACKPORT_PATH $EXTRA_OFED_INCLUDE"
262                 else
263                         AC_MSG_RESULT([no])
264                 fi
265
266                 O2IBLND=""
267                 O2IBPATH=$(readlink --canonicalize $O2IBPATH)
268                 EXTRA_OFED_INCLUDE="$EXTRA_OFED_INCLUDE -I$O2IBPATH/include"
269                 LB_CHECK_COMPILE([whether to enable OpenIB gen2 support],
270                 openib_gen2_support, [
271                         #ifdef HAVE_COMPAT_RDMA
272                         #include <linux/compat-2.6.h>
273                         #endif
274                         #include <linux/version.h>
275                         #include <linux/pci.h>
276                         #include <linux/gfp.h>
277                         #include <rdma/rdma_cm.h>
278                         #include <rdma/ib_cm.h>
279                         #include <rdma/ib_verbs.h>
280                         #include <rdma/ib_fmr_pool.h>
281                 ],[
282                         struct rdma_cm_id      *cm_idi __attribute__ ((unused));
283                         struct rdma_conn_param  conn_param __attribute__ ((unused));
284                         struct ib_device_attr   device_attr __attribute__ ((unused));
285                         struct ib_qp_attr       qp_attr __attribute__ ((unused));
286                         struct ib_pool_fmr      pool_fmr __attribute__ ((unused));
287                         enum   ib_cm_rej_reason rej_reason __attribute__ ((unused));
288                         rdma_destroy_id(NULL);
289                 ],[
290                         O2IBLND="o2iblnd"
291                 ],[
292                         case $ENABLEO2IB in
293                         "yes") AC_MSG_ERROR([can't compile with OpenIB gen2 headers]) ;;
294                         "withpath") AC_MSG_ERROR([can't compile with OpenIB gen2 headers under $O2IBPATH]) ;;
295                         *) AC_MSG_ERROR([internal error]) ;;
296                         esac
297                 ])
298                 # we know at this point that the found OFED source is good
299                 O2IB_SYMVER=""
300                 if test $ENABLEO2IB = "withpath" -o "x$OFED" = "xyes" ; then
301                         # OFED default rpm not handle sles10 Modules.symvers name
302                         for name in Module.symvers Modules.symvers; do
303                                 if test -f $O2IBPATH/$name; then
304                                         O2IB_SYMVER=$name;
305                                         break;
306                                 fi
307                         done
308                         if test -n "$O2IB_SYMVER"; then
309                                 AC_MSG_NOTICE([adding $O2IBPATH/$O2IB_SYMVER to Symbol Path])
310                                 EXTRA_SYMBOLS="$EXTRA_SYMBOLS $O2IBPATH/$O2IB_SYMVER"
311                                 AC_SUBST(EXTRA_SYMBOLS)
312                         else
313                                 AC_MSG_ERROR([an external source tree was, either specified or detected, for o2iblnd however I could not find a $O2IBPATH/Module.symvers there])
314                         fi
315                 fi
316
317                 LN_CONFIG_OFED_SPEC
318         fi
319 ])
320 AC_SUBST(EXTRA_OFED_INCLUDE)
321 AC_SUBST(O2IBLND)
322 AC_SUBST(O2IBPATHS)
323 AC_SUBST(ENABLEO2IB)
324
325 # In RHEL 6.2, rdma_create_id() takes the queue-pair type as a fourth argument
326 AS_IF([test $ENABLEO2IB != "no"], [
327         LB_CHECK_COMPILE([if 'rdma_create_id' wants four args],
328         rdma_create_id_4args, [
329                 #ifdef HAVE_COMPAT_RDMA
330                 #include <linux/compat-2.6.h>
331                 #endif
332                 #include <rdma/rdma_cm.h>
333         ],[
334                 rdma_create_id(NULL, NULL, 0, 0);
335         ],[
336                 AC_DEFINE(HAVE_RDMA_CREATE_ID_4ARG, 1,
337                         [rdma_create_id wants 4 args])
338         ])
339 ])
340 ]) # LN_CONFIG_O2IB
341
342 #
343 # LN_CONFIG_GNILND
344 #
345 # check whether to use the Gemini Network Interface lnd
346 #
347 AC_DEFUN([LN_CONFIG_GNILND], [
348 AC_MSG_CHECKING([whether to enable GNI lnd])
349 AC_ARG_ENABLE([gni],
350         AC_HELP_STRING([--enable-gni],
351                 [enable GNI lnd]),
352         [], [enable_gni="no"])
353 AC_MSG_RESULT([$enable_gni])
354
355 AS_IF([test "x$enable_gni" = xyes], [
356         # GNICPPFLAGS was set in spec file
357         EXTRA_KCFLAGS_save="$EXTRA_KCFLAGS"
358         EXTRA_KCFLAGS="$EXTRA_KCFLAGS $GNICPPFLAGS"
359         LB_CHECK_COMPILE([if GNI kernel headers are present],
360         GNI_header, [
361                 #include <linux/types.h>
362                 #include <gni_pub.h>
363         ],[
364                 gni_cdm_handle_t kgni_domain;
365                 gni_return_t     rc;
366                 int              rrc;
367                 rc = gni_cdm_create(0, 1, 1, 0, &kgni_domain);
368                 rrc = (rc == GNI_RC_SUCCESS) ? 0 : 1;
369                 return rrc;
370         ],[
371                 GNILND="gnilnd"
372         ],[
373                 AC_MSG_ERROR([can't compile gnilnd with given GNICPPFLAGS: $GNICPPFLAGS])
374         ])
375         # at this point, we have gnilnd basic support,
376         # now check for extra features
377         LB_CHECK_COMPILE([to use RCA in gnilnd],
378         RCA_gnilnd, [
379                 #include <linux/types.h>
380                 #include <gni_pub.h>
381                 #include <krca_lib.h>
382         ],[
383                 gni_cdm_handle_t kgni_domain;
384                 gni_return_t     rc;
385                 krca_ticket_t    ticket = KRCA_NULL_TICKET;
386                 int              rrc;
387                 __u32            nid = 0, nic_addr;
388                 rc = gni_cdm_create(0, 1, 1, 0, &kgni_domain);
389                 rrc = (rc == GNI_RC_SUCCESS) ? 0 : 1;
390                 rrc += krca_nid_to_nicaddrs(nid, 1, &nic_addr);
391                 rrc += krca_register(&ticket, RCA_MAKE_SERVICE_INDEX(RCA_IO_CLASS, 9), 99, 0);
392                 return rrc;
393         ],[
394                 GNICPPFLAGS="$GNICPPFLAGS -DGNILND_USE_RCA=1"
395         ])
396         EXTRA_KCFLAGS="$EXTRA_KCFLAGS_save"
397 ])
398 AC_SUBST(GNICPPFLAGS)
399 AC_SUBST(GNILND)
400 ]) # LN_CONFIG_GNILND
401
402 #
403 # LN_CONFIG_SK_SLEEP
404 #
405 # 2.6.35 kernel has sk_sleep function
406 #
407 AC_DEFUN([LN_CONFIG_SK_SLEEP], [
408 LB_CHECK_COMPILE([if Linux kernel has 'sk_sleep'],
409 sk_sleep, [
410         #ifdef HAVE_COMPAT_RDMA
411         #include <linux/compat-2.6.h>
412         #endif
413         #include <net/sock.h>
414 ],[
415         sk_sleep(NULL);
416 ],[
417         AC_DEFINE(HAVE_SK_SLEEP, 1,
418                   [kernel has sk_sleep])
419 ])
420 ]) # LN_CONFIG_SK_SLEEP
421
422 #
423 # LN_CONFIG_TCP_SENDPAGE
424 #
425 # 2.6.36 tcp_sendpage() first parameter is 'struct sock' instead of 'struct socket'.
426 #
427 AC_DEFUN([LN_CONFIG_TCP_SENDPAGE], [
428 tmp_flags="$EXTRA_KCFLAGS"
429 EXTRA_KCFLAGS="-Werror"
430 LB_CHECK_COMPILE([if 'tcp_sendpage' first parameter is socket],
431 tcp_sendpage_socket, [
432         #include <linux/net.h>
433         #include <net/tcp.h>
434 ],[
435         tcp_sendpage((struct socket*)0, NULL, 0, 0, 0);
436 ],[
437         AC_DEFINE(HAVE_TCP_SENDPAGE_USE_SOCKET, 1,
438                 [tcp_sendpage use socket as first parameter])
439 ])
440 EXTRA_KCFLAGS="$tmp_flags"
441 ]) # LN_CONFIG_TCP_SENDPAGE
442
443 #
444 # LN_CONFIG_SK_DATA_READY
445 #
446 # 3.15 for struct sock the *sk_data_ready() field only takes one argument now
447 #
448 AC_DEFUN([LN_CONFIG_SK_DATA_READY], [
449 tmp_flags="$EXTRA_KCFLAGS"
450 EXTRA_KCFLAGS="-Werror"
451 LB_CHECK_COMPILE([if 'sk_data_ready' takes only one argument],
452 sk_data_ready, [
453         #include <linux/net.h>
454         #include <net/sock.h>
455 ],[
456         ((struct sock *)0)->sk_data_ready(NULL);
457 ],[
458         AC_DEFINE(HAVE_SK_DATA_READY_ONE_ARG, 1,
459                 [sk_data_ready uses only one argument])
460 ])
461 EXTRA_KCFLAGS="$tmp_flags"
462 ]) # LN_CONFIG_SK_DATA_READY
463
464 #
465 # LN_PROG_LINUX
466 #
467 # LNet linux kernel checks
468 #
469 AC_DEFUN([LN_PROG_LINUX], [
470 AC_MSG_NOTICE([LNet kernel checks
471 ==============================================================================])
472
473 LN_FUNC_DEV_GET_BY_NAME_2ARG
474 LN_CONFIG_AFFINITY
475 LN_CONFIG_BACKOFF
476 LN_CONFIG_O2IB
477 LN_CONFIG_GNILND
478 # 2.6.35
479 LN_CONFIG_SK_SLEEP
480 # 2.6.36
481 LN_CONFIG_TCP_SENDPAGE
482 # 3.15
483 LN_CONFIG_SK_DATA_READY
484 ]) # LN_PROG_LINUX
485
486 #
487 # LN_PATH_DEFAULTS
488 #
489 # default paths for installed files
490 #
491 AC_DEFUN([LN_PATH_DEFAULTS], [
492 ]) # LN_PATH_DEFAULTS
493
494 #
495 # LN_CONFIGURE
496 #
497 # other configure checks
498 #
499 AC_DEFUN([LN_CONFIGURE], [
500 AC_MSG_NOTICE([LNet core checks
501 ==============================================================================])
502
503 # lnet/utils/portals.c
504 AC_CHECK_HEADERS([netdb.h])
505 AC_CHECK_FUNCS([gethostbyname])
506
507 # lnet/utils/wirecheck.c
508 AC_CHECK_FUNCS([strnlen])
509
510 # --------  Check for required packages  --------------
511
512 AC_MSG_CHECKING([whether to enable 'efence' debugging support])
513 AC_ARG_ENABLE(efence,
514         AC_HELP_STRING([--enable-efence],
515                 [use efence library]),
516         [], [enable_efence="no"])
517 AC_MSG_RESULT([$enable_efence])
518
519 LIBEFENCE=""
520 AS_IF([test "$enable_efence" = yes], [
521         LIBEFENCE="-lefence"
522         AC_DEFINE(HAVE_LIBEFENCE, 1,
523                 [libefence support is requested])
524 ])
525 AC_SUBST(LIBEFENCE)
526
527 LN_CONFIG_MAX_PAYLOAD
528 LN_CONFIG_DLC
529 ]) # LN_CONFIGURE
530
531 #
532 # LN_CONDITIONALS
533 #
534 # AM_CONDITIONAL defines for lnet
535 #
536 AC_DEFUN([LN_CONDITIONALS], [
537 AM_CONDITIONAL(BUILD_O2IBLND,    test x$O2IBLND = "xo2iblnd")
538 AM_CONDITIONAL(BUILD_GNILND,     test x$GNILND  = "xgnilnd")
539 AM_CONDITIONAL(BUILD_DLC,        test x$USE_DLC = "xyes")
540 ]) # LN_CONDITIONALS
541
542 #
543 # LN_CONFIG_FILES
544 #
545 # files that should be generated with AC_OUTPUT
546 #
547 AC_DEFUN([LN_CONFIG_FILES], [
548 AC_CONFIG_FILES([
549 lnet/Makefile
550 lnet/autoMakefile
551 lnet/autoconf/Makefile
552 lnet/doc/Makefile
553 lnet/include/Makefile
554 lnet/include/lnet/Makefile
555 lnet/klnds/Makefile
556 lnet/klnds/autoMakefile
557 lnet/klnds/o2iblnd/Makefile
558 lnet/klnds/o2iblnd/autoMakefile
559 lnet/klnds/gnilnd/Makefile
560 lnet/klnds/gnilnd/autoMakefile
561 lnet/klnds/socklnd/Makefile
562 lnet/klnds/socklnd/autoMakefile
563 lnet/lnet/Makefile
564 lnet/lnet/autoMakefile
565 lnet/selftest/Makefile
566 lnet/selftest/autoMakefile
567 lnet/utils/Makefile
568 lnet/utils/lnetconfig/Makefile
569 ])
570 ]) # LN_CONFIG_FILES