diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.in | 2 |
2 files changed, 4 insertions, 2 deletions
@@ -1,12 +1,14 @@ WeeChat ChangeLog ================= Sébastien Helleu <flashcode@flashtux.org> -v0.3.6-rc1, 2011-10-09 +v0.3.6-rc1, 2011-10-10 Version 0.3.6 (under dev!) -------------------------- +* core: fix compilation error (INSTALLPREFIX undeclared) on OS X and when + compiling with included gettext (bug #26690) * core: display timeout for hook_process command only if debug for core is enabled (task #11401) * core: bufferize lines displayed before core buffer is created, to display them diff --git a/configure.in b/configure.in index 135e5e44f..ccc2a324e 100644 --- a/configure.in +++ b/configure.in @@ -59,7 +59,7 @@ esac # Gettext ALL_LINGUAS="fr es cs hu de ru pl it pt_BR" -AM_GNU_GETTEXT([use-libtool]) +AM_GNU_GETTEXT AM_GNU_GETTEXT_VERSION([0.15]) # Checks for libraries |