Displaying 20 results from an estimated 108 matches for "am_gnu_gettext".
2018 Feb 02
1
AM_GNU_GETTEXT failing on fedora
I am trying to build from source but am getting errors
-bash-4.3$ grep -n AM_GNU_GET /tmp/t
2595:m4/guestfs_libraries.m4:145: warning: macro 'AM_GNU_GETTEXT' not
found in library
2598:m4/guestfs_libraries.m4:145: warning: macro 'AM_GNU_GETTEXT' not
found in library
2600:configure:57872: error: possibly undefined macro: AM_GNU_GETTEXT
3834:./configure: line 57872: `AM_GNU_GETTEXT(external)'
Dockerfile contents
FROM fedora:latest
RUN d...
2018 Jun 24
2
Build and testing issues
...ronment on a clean Fedora 28 host,
I got some errors.
I followed the instructions in
http://libguestfs.org/guestfs-building.1.html
dnf builddep libguestfs
./autogen.sh
autogen.sh failed:
./configure: line 57694: syntax error near unexpected token `external'
./configure: line 57694: `AM_GNU_GETTEXT(external)'
Checking the entire log show that autoreconf failed, but the script
continued:
...
m4/guestfs-libraries.m4:151: warning: macro 'AM_GNU_GETTEXT' not found in
library
autoreconf: configure.ac: tracing
autoreconf: running: true --copy
m4/guestfs-libraries.m4:151: warning: macr...
2007 Sep 23
1
Trouble Compiling svn Vorbis-Tools
...ecking for libtool... libtoolize
checking for gettext...
I am going to run ./configure with no arguments - if you wish
to pass any to it, please specify them on the ./autogen.sh command
line.
Generating configuration files for vorbis-tools, please wait....
aclocal
configure.ac:32: warning: macro `AM_GNU_GETTEXT' not found in library
autoheader
libtoolize --automake
automake --add-missing
share/Makefile.am:5: library used but `RANLIB' is undefined
share/Makefile.am:5: The usual way to define `RANLIB' is to add
`AC_PROG_RANLIB'
share/Makefile.am:5: to `configure.ac' and run `au...
2024 Feb 20
1
Compiling libR as a standalone C library for java+jni (-fPIC)
...n_allow.
????? See the Autoconf documentation.
configure.ac:870: error: possibly undefined macro: AC_DISABLE_STATIC
configure.ac:2226: error: possibly undefined macro: AM_LANGINFO_CODESET
configure.ac:2876: error: possibly undefined macro: AM_NLS
configure.ac:2880: error: possibly undefined macro: AM_GNU_GETTEXT_VERSION
configure.ac:2881: error: possibly undefined macro: AM_GNU_GETTEXT
make[1]: *** [Makefile:49: configure] Error 1
```
removing the XXXFLAGS=YYY and --prefix (?) allows R to be compiled but It's not loaded into java.
```
gcc? -ITMP -I${JAVA_HOME}/include/ -I${JAVA_HOME}/include/linux \...
2009 Aug 21
2
[virt-v2v] "make distcheck" now passes
...2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/configure.ac b/configure.ac
index 3e057d7..204bfb6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -54,7 +54,7 @@ test "x$MKISOFS" = "xno" && AC_MSG_ERROR([mkisofs must be installed])
dnl For i18n.
AM_GNU_GETTEXT([external])
-AM_GNU_GETTEXT_VERSION([0.14])
+AM_GNU_GETTEXT_VERSION([0.15])
dnl Check for Perl
AC_CHECK_PROG([PERL],[perl],[perl],[no])
--
1.6.4.378.g88f2f
>From b077a19ae444aadfe8baf5d29df7125394b1a867 Mon Sep 17 00:00:00 2001
From: Jim Meyering <meyering at redhat.com>
Date: Fri, 21...
2015 Aug 04
2
[PATCH] automake: Admit defeat and use 'subdir-objects'.
...I didn't test it.
The only things automake moans about now are:
* Unescaped left brace in regex is deprecated, passed through in regex; marked by <-- HERE in m/\${ <-- HERE ([^ \t=:+{}]+)}/ at /usr/bin/automake line 3936.
- This is another bug in automake
* autoreconf: configure.ac: AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION
- This is a feature, not a bug.
---
.gitignore | 1 +
builder/Makefile.am | 14 +++++++-------
configure.ac | 2 +-
customize/Makefile.am | 8 ++++----
dib/Makefile.am | 2 +-
get-ker...
2015 Nov 23
4
compile question
> On 23 Nov 2015, at 22:30 , aixtools <aixtools at gmail.com> wrote:
>
>>
>> ./configure --enable-maintainer-mode ...
Two things here
- possibly irrelevant, but I'd avoid building in the source directory. (mkdir ../BUILD ; cd ../BUILD; ../R/configure)
- don't turn on mantainer mode. You are not a maintainer, and if you want to play at being one, I think you
2013 Apr 05
1
[PATCH] Mac OS X: Link iconv in libhivex
...euscomputing.com>
---
configure.ac | 1 +
lib/Makefile.am | 1 +
2 files changed, 2 insertions(+)
diff --git a/configure.ac b/configure.ac
index 0dfb995..298e6a9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -184,6 +184,7 @@ AS_IF([test "x$with_readline" != xno],
dnl For i18n.
AM_GNU_GETTEXT([external])
AM_GNU_GETTEXT_VERSION([0.17])
+AM_ICONV
dnl libxml2.
PKG_CHECK_MODULES([LIBXML2], [libxml-2.0])
diff --git a/lib/Makefile.am b/lib/Makefile.am
index a339a00..8d7ff69 100644
--- a/lib/Makefile.am
+++ b/lib/Makefile.am
@@ -36,6 +36,7 @@ libhivex_la_LIBADD = ../gnulib/lib/libgnu.la $...
2015 Nov 26
0
compile question
...error: possibly undefined macro: AC_DISABLE_STATIC
configure.ac:727: error: possibly undefined macro: AC_CHECK_LIBM
configure.ac:1982: error: possibly undefined macro: AM_LANGINFO_CODESET
configure.ac:2639: error: possibly undefined macro: AM_NLS
configure.ac:2643: error: possibly undefined macro: AM_GNU_GETTEXT_VERSION
configure.ac:2644: error: possibly undefined macro: AM_GNU_GETTEXT
What I changed...
root at x072:[/data/prj/cran]diff -u R-devel_2015-11-26/configure.ac
R-devel/configure.ac
--- R-devel_2015-11-26/configure.ac 2015-10-18 16:02:55.000000000 +0000
+++ R-devel/configure.ac 2015-...
2004 Sep 10
2
Re: 0.9 problems
On Sat, May 19, 2001 at 12:19:39PM +0000, Christian Weisgerber wrote:
> Christian Weisgerber <naddy@mips.inka.de> wrote:
>
> > Problems in FLAC 0.9:
>
> Also:
>
> ===> Building for flac-0.9
> cd . && aclocal
> aclocal: configure.in: 7: macro `AM_PROG_LIBTOOL' not found in library
> aclocal: configure.in: 22: macro `AM_PATH_XMMS' not
2004 Aug 06
1
ice2 autogen.sh problems
...t `hu' not in `ALL_LINGUAS'
Makefile.am:26: po/ru.po exists but `ru' not in `ALL_LINGUAS'
autoconf
configure.in:12: error: possibly undefined macro: AM_INIT_AUTOMAKE
configure.in:24: error: possibly undefined macro: AM_PROG_LIBTOOL
configure.in:27: error: possibly undefined macro: AM_GNU_GETTEXT
configure.in:120: error: possibly undefined macro: AM_PATH_CURL
configure.in:150: error: possibly undefined macro: AM_CONDITIONAL
configure.in:183: error: possibly undefined macro: AM_ICONV
configure.in:185: error: possibly undefined macro: AM_LANGINFO_CODESET
./configure: line 1165: syntax error n...
2015 Nov 26
2
compile question
...efined macro: AC_DISABLE_STATIC
> configure.ac:727: error: possibly undefined macro: AC_CHECK_LIBM
> configure.ac:1982: error: possibly undefined macro: AM_LANGINFO_CODESET
> configure.ac:2639: error: possibly undefined macro: AM_NLS
> configure.ac:2643: error: possibly undefined macro: AM_GNU_GETTEXT_VERSION
> configure.ac:2644: error: possibly undefined macro: AM_GNU_GETTEXT
>
> What I changed...
>
> root at x072:[/data/prj/cran]diff -u R-devel_2015-11-26/configure.ac R-devel/configure.ac
> --- R-devel_2015-11-26/configure.ac 2015-10-18 16:02:55.000000000 +0000
> +++...
2014 Nov 04
0
[PATCH 3/9] build: check for libintl, and use it
...t;x$XGETTEXT" != "xno" && test "x$MSGCAT" != "xno" && test "x$MSGFMT" != "xno" && test "x$MSGMERGE" != "xno" && test "x$msgfmt_is_gnu" != "xno"])
+dnl Check for gettext.
+AM_GNU_GETTEXT([external])
+
dnl Default backend.
AC_MSG_CHECKING([if the user specified a default backend])
AC_ARG_WITH([default-backend],
diff --git a/customize/Makefile.am b/customize/Makefile.am
index 56c5ad5..c945685 100644
--- a/customize/Makefile.am
+++ b/customize/Makefile.am
@@ -124,7 +124,7 @@ OCAMLC...
2002 Jul 06
3
Can't compile vorbis-tools CVS
...UPDATE: Ok, so I decided to try a newer gettext. I grabbed the latest
(0.11.2) from gnu.org and compiled and installed it. No difference, except
that autogen also gave me the following:
Generating configuration files for vorbis-tools, please wait....
aclocal
aclocal: configure.in: 23: macro `AM_GNU_GETTEXT' not found in library
Make still bombed as usual. I even tried running ./configure with
--disable-nls . Same deal.
So having beaten myself about the head with gettext to the greatest extent
possible given my limited knowlege in this area, I decided that maybe the
error message produced by c...
2019 Nov 27
5
[v2v PATCH v2 0/5] Various build cleanups
Brought to you by the "I haven't rebuilt the libguestfs universe in a
while" saga -- now with working test suite.
Pino Toscano (5):
build: remove extra gnulib submodule
build: remove extra checks and submodules
build: stop using gnulib in test-harness
build: remove unused gnulib modules
Remove extra entries from podfiles
.gitmodules | 3 --
Makefile.am
2014 Nov 04
2
Re: [PATCH 3/9] build: check for libintl, and use it
...ot; != "xno" && test "x$MSGCAT" != "xno" && test "x$MSGFMT" != "xno" && test "x$MSGMERGE" != "xno" && test "x$msgfmt_is_gnu" != "xno"])
>
> +dnl Check for gettext.
> +AM_GNU_GETTEXT([external])
> +
> dnl Default backend.
> AC_MSG_CHECKING([if the user specified a default backend])
> AC_ARG_WITH([default-backend],
> diff --git a/customize/Makefile.am b/customize/Makefile.am
> index 56c5ad5..c945685 100644
> --- a/customize/Makefile.am
> +++ b/customiz...
2006 Jul 13
0
[vorbis-tools] Some patches coming from Debian bugs
...ning to: Luz - Tu perdón
-------------- next part --------------
Index: configure.ac
===================================================================
--- configure.ac (revision 11702)
+++ configure.ac (working copy)
@@ -31,6 +31,8 @@
ALL_LINGUAS="be cs da es fr hr hu nl ro ru sv uk"
AM_GNU_GETTEXT
+AC_SYS_LARGEFILE
+
dnl --------------------------------------------------
dnl Set build flags based on environment
dnl --------------------------------------------------
Index: vcut/vcut.c
===================================================================
--- vcut/vcut.c (revision 11702)
+++...
2006 Jul 13
0
[vorbis-tools] Some patches coming from Debian bugs
...ning to: Luz - Tu perdón
-------------- next part --------------
Index: configure.ac
===================================================================
--- configure.ac (revision 11702)
+++ configure.ac (working copy)
@@ -31,6 +31,8 @@
ALL_LINGUAS="be cs da es fr hr hu nl ro ru sv uk"
AM_GNU_GETTEXT
+AC_SYS_LARGEFILE
+
dnl --------------------------------------------------
dnl Set build flags based on environment
dnl --------------------------------------------------
Index: vcut/vcut.c
===================================================================
--- vcut/vcut.c (revision 11702)
+++...
2019 Nov 27
6
[v2v PATCH 0/5] Various build cleanups
Brought to you by the "I haven't rebuilt the libguestfs universe in a
while" saga.
Pino Toscano (5):
build: remove extra gnulib submodule
build: remove extra checks and submodules
build: stop using gnulib in test-harness
build: remove unused gnulib modules
Remove extra entries from podfiles
.gitmodules | 3 --
Makefile.am | 2 -
bootstrap
2014 Nov 04
13
[PATCH 0/9] Small bits of non-Linux porting - #2
Hi,
continuing what started a couple of weeks ago [1], the attached patch
series continues the work in making it easier to build and run
libguestfs (in fixed appliance mode) on OSes different than Linux.
The provided changes should cause no functional changes on Linux.
[1] https://www.redhat.com/archives/libguestfs/2014-October/msg00176.html
Thanks,
--
Pino
Pino Toscano (9):
build: check