#3748 closed defect (fixed)
libtirpc 0.2.2 and automake 1.13 mismatch
Reported by: | Pierre Labastie | Owned by: | |
---|---|---|---|
Priority: | normal | Milestone: | |
Component: | BOOK | Version: | SVN |
Severity: | minor | Keywords: | |
Cc: |
Description ¶
The autoreconf command does not work, with an error message:
error: 'AM_CONFIG_HEADER': this macro is obsolete. You should use the 'AC_CONFIG_HEADERS' macro instead.
One possibility is to run:
autoupdate
before autoreconf, but it generates a warning because of an autoconf version mismatch. Then autoreconf generates only warnings about obsolete macros. But the package builds OK
Another way:
sed -i -e 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS' configure.ac
Still autoreconf generates warnings about obsolete macros.
BTW, the command:
if [ ! -r /usr/include/rpc/rpc.h ]; then tar -xvf ../rpcnis-headers.tar.bz2 -C /usr/include fi
should be run as root.
Note:
See TracTickets
for help on using tickets.
Fixed in r10972