Update of /cvsroot/linux-atm/linux-atm
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4681
Modified Files:
Tag: V2_5_0
configure.in
Log Message:
allow specification of alternate path for kernel headers
Index: configure.in
===================================================================
RCS file: /cvsroot/linux-atm/linux-atm/configure.in,v
retrieving revision 1.2.2.5
retrieving revision 1.2.2.6
diff -C2 -d -r1.2.2.5 -r1.2.2.6
*** configure.in 26 Feb 2004 01:10:37 -0000 1.2.2.5
--- configure.in 25 Sep 2004 12:17:22 -0000 1.2.2.6
***************
*** 154,157 ****
--- 154,165 ----
)
+ AC_ARG_WITH(kernel-headers,
+ [ --with-kernel-headers=path use the kernel headers found at path]
+ )
+ if test "x$with_kernel_headers" != "x"; then
+ CFLAGS="-I$with_kernel_headers/include $CFLAGS"
+ fi
+
+
dnl Xsed="sed -e s/^X//"
dnl LTLIBOBJS=`echo X"$LIBOBJS" | \$Xsed -e "s,\. [^.]* ,.lo,g;s,\.[^.]*$,.lo,"`
|