| Back to the Main Page. | smr_with_build_path |
Download the M4 Source. |
smr_WITH_BUILD_PATH
2001-07-29 0.5.65 : InstalledPackages
Steve M. Robbins <smr@debian.org>
license: AllPermissive
AC_DEFUN([smr_WITH_BUILD_PATH],
[
AC_ARG_WITH([build-path],
[ --with-build-path=DIR build using DIR/include and DIR/lib],
[
for d in `echo $withval | tr : ' '`; do
test -d $d/include && CPPFLAGS="$CPPFLAGS -I$d/include"
test -d $d/lib && LDFLAGS="$LDFLAGS -L$d/lib"
done
])
])