i remember somebody mentioning problems with the autotools-based build failing if gettext was not installed. alas, i cannot find the email (but i suspect dan).
anyhow, could that person (or somebody else) test whether the attached patch fixes this? (it should just not try to build the po files) gfmrdsa IOhannes
From f702f7d5176c5e228dc55f4c5899492d80aa6610 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= <[email protected]> Date: Tue, 26 Apr 2016 23:41:21 +0200 Subject: [PATCH 2/3] only build i18n support ('po') if we do have gettext/MSGFMT --- Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 1c664ca..b022bef 100644 --- a/Makefile.am +++ b/Makefile.am @@ -24,7 +24,7 @@ endif EXTRA_DIST = LICENSE.txt README.txt INSTALL.txt # subdirs that are built -SUBDIRS = $(EXTRA_SUBDIRS) src man tcl po extra +SUBDIRS = $(EXTRA_SUBDIRS) src man tcl extra # subdirs that are always included in the dist, etc. DIST_SUBDIRS = asio extra man po portaudio portmidi src tcl @@ -32,6 +32,7 @@ DIST_SUBDIRS = asio extra man po portaudio portmidi src tcl BUILT_SOURCES = if MSGFMT BUILT_SOURCES += locales +SUBDIRS += po endif ## FIXXXME -- 2.8.1
signature.asc
Description: OpenPGP digital signature
_______________________________________________ Pd-dev mailing list [email protected] https://lists.puredata.info/listinfo/pd-dev
