Gaetan Nadon wrote: > AC_OUTPUT with parameters is deprecated, use AC_CONFIG_FILES. > > Signed-off-by: Gaetan Nadon <[email protected]> > --- > > Extending Alan's series. > > configure.ac | 16 +++++++++------- > 1 files changed, 9 insertions(+), 7 deletions(-) > > diff --git a/configure.ac b/configure.ac > index d8069cb..687d8e5 100644 > --- a/configure.ac > +++ b/configure.ac > @@ -95,16 +95,18 @@ AC_CHECK_HEADERS([wctype.h wchar.h widec.h]) > # Checks for functions > AC_CHECK_FUNCS([iswalnum getpagesize]) > > -AC_OUTPUT([Makefile > - include/Makefile > - man/Makefile > - specs/Makefile > - src/Makefile]) > +AC_CONFIG_FILES([Makefile > + include/Makefile > + man/Makefile > + specs/Makefile > + src/Makefile]) > > if test "x$build_v6" = xyes; then > - AC_OUTPUT(xaw6.pc) > + AC_CONFIG_FILES(xaw6.pc) > fi > > if test "x$build_v7" = xyes; then > - AC_OUTPUT(xaw7.pc) > + AC_CONFIG_FILES(xaw7.pc) > fi > + > +AC_OUTPUT
Reviewed-by: Alan Coopersmith <[email protected]> Tested-by: Alan Coopersmith <[email protected]> -- -Alan Coopersmith- [email protected] Oracle Solaris Platform Engineering: X Window System _______________________________________________ [email protected]: X.Org development Archives: http://lists.x.org/archives/xorg-devel Info: http://lists.x.org/mailman/listinfo/xorg-devel
