The following patch is needed to get naviserver CVS to build on
FreeBSD...  Almost certainly this is not something to commit, but in
case someone comes across this post, it'll save them 10 minutes...
(or someone will point out to me that there's an easier way :) )

Index: autogen.sh
===================================================================
RCS file: /cvsroot/naviserver/naviserver/autogen.sh,v
retrieving revision 1.1
diff -r1.1 autogen.sh
15c15
< (autoconf --version) < /dev/null > /dev/null 2>&1 || {
---
(autoconf259 --version) < /dev/null > /dev/null 2>&1 || {
17c17
<   echo "**Error**: You must have \`autoconf' installed."
---
  echo "**Error**: You must have \`autoconf259' installed."
23c23
< (automake --version) < /dev/null > /dev/null 2>&1 || {
---
(automake19 --version) < /dev/null > /dev/null 2>&1 || {
25c25
<   echo "**Error**: You must have \`automake' installed."
---
  echo "**Error**: You must have \`automake19' installed."
31,32c31,32
< # if no automake, don't bother testing for aclocal
< test -n "$NO_AUTOMAKE" || (aclocal --version) < /dev/null >
/dev/null 2>&1 || {
---
# if no automake19, don't bother testing for aclocal19
test -n "$NO_AUTOMAKE" || (aclocal19 --version) < /dev/null > /dev/null 2>&1 || 
{
34c34
<   echo "**Error**: Missing \`aclocal'.  The version of \`automake'"
---
  echo "**Error**: Missing \`aclocal19'.  The version of \`automake19'"
36c36
<   echo "You can get automake from ftp://ftp.gnu.org/pub/gnu/";
---
  echo "You can get automake19 from ftp://ftp.gnu.org/pub/gnu/";
46,47c46,47
< echo "Running aclocal -I m4 $ACLOCAL_FLAGS"
< aclocal -I m4 $ACLOCAL_FLAGS || exit $?
---
echo "Running aclocal19 -I m4 $ACLOCAL_FLAGS"
aclocal19 -I m4 $ACLOCAL_FLAGS || exit $?
49,50c49,50
< echo "Running autoheader"
< autoheader || exit $?
---
echo "Running autoheader259"
autoheader259 || exit $?
52,53c52,53
< echo "Running autoconf"
< autoconf || exit $?
---
echo "Running autoconf259"
autoconf259 || exit $?

Reply via email to