Building classpath on Minix3

2013-04-08 Thread Alexander Samilovskih
Trying to build
./autogen.sh

configure.ac:505: warning: AC_LIB_PREPARE_PREFIX is m4_require'd but not
m4_defun'd
m4/iconv.m4:11: AM_ICONV_LINKFLAGS_BODY is expanded from...
m4/iconv.m4:22: AM_ICONV_LINK is expanded from...
m4/iconv.m4:77: AM_ICONV is expanded from...
configure.ac:505: the top level
configure.ac:505: warning: AC_LIB_RPATH is m4_require'd but not m4_defun'd
m4/iconv.m4:11: AM_ICONV_LINKFLAGS_BODY is expanded from...
m4/iconv.m4:22: AM_ICONV_LINK is expanded from...
m4/iconv.m4:77: AM_ICONV is expanded from...
configure.ac:505: the top level
configure.ac:505: warning: AC_LIB_PREPARE_PREFIX is m4_require'd but not
m4_defun'd
m4/iconv.m4:11: AM_ICONV_LINKFLAGS_BODY is expanded from...
m4/iconv.m4:22: AM_ICONV_LINK is expanded from...
m4/iconv.m4:77: AM_ICONV is expanded from...
configure.ac:505: the top level
configure.ac:505: warning: AC_LIB_RPATH is m4_require'd but not m4_defun'd
m4/iconv.m4:11: AM_ICONV_LINKFLAGS_BODY is expanded from...
m4/iconv.m4:22: AM_ICONV_LINK is expanded from...
m4/iconv.m4:77: AM_ICONV is expanded from...
configure.ac:505: the top level
configure.ac:379: error: possibly undefined macro: AC_DISABLE_STATIC
  If this token and others are legitimate, please use m4_pattern_allow.
  See the Autoconf documentation.
configure:8412: error: possibly undefined macro: AC_LIB_PREPARE_PREFIX
configure:8413: error: possibly undefined macro: AC_LIB_RPATH
configure:8418: error: possibly undefined macro: AC_LIB_LINKFLAGS_BODY
configure:8426: error: possibly undefined macro: AC_LIB_APPENDTOVAR
autoreconf: /usr/local/bin/autoconf failed with exit status: 1


-
Google said that problem related to gettext, but i have it installed
gettext --version
gettext (GNU gettext-runtime) 0.18.1
Copyright (C) 1995-1997, 2000-2007 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later http://gnu.org/licenses/gpl.html

This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Written by Ulrich Drepper.


Re: Building classpath on Minix3

2013-04-08 Thread Pekka Enberg
On Mon, Apr 8, 2013 at 2:47 PM, Alexander Samilovskih
alexsamilovs...@gmail.com wrote:
 Trying to build
 ./autogen.sh

 configure.ac:505: warning: AC_LIB_PREPARE_PREFIX is m4_require'd but not

[snip]

 -
 Google said that problem related to gettext, but i have it installed
 gettext --version
 gettext (GNU gettext-runtime) 0.18.1
 Copyright (C) 1995-1997, 2000-2007 Free Software Foundation, Inc.
 License GPLv3+: GNU GPL version 3 or later
 http://gnu.org/licenses/gpl.html
 This is free software: you are free to change and redistribute it.
 There is NO WARRANTY, to the extent permitted by law.
 Written by Ulrich Drepper.

It's not enough that you have gettext installed, you also need to
make sure the following file exists:

/usr/share/aclocal/gettext.m4

On Fedora, for example, it's part of gettext-devel package that's not
installed by default.

Pekka