1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
Description: make translations work properly.
Author: Richard James Edmands
Last-Update: 2007-10-10
Index: libvisual-plugins/Makefile.am
===================================================================
--- libvisual-plugins.orig/Makefile.am
+++ libvisual-plugins/Makefile.am
@@ -1,5 +1,7 @@
## Process this file with automake to generate a Makefile.in
+ACLOCAL_AMFLAGS = -I m4
+
SUBDIRS = plugins po
EXTRA_DIST = libvisual-plugins.spec gettext.h po/Makevars.in
Index: libvisual-plugins/configure.ac
===================================================================
--- libvisual-plugins.orig/configure.ac
+++ libvisual-plugins/configure.ac
@@ -13,6 +13,7 @@ AM_INIT_AUTOMAKE([1.7.0 dist-bzip2])
AC_CONFIG_SRCDIR([config.h.in])
AC_CONFIG_HEADER([config.h])
+AC_CONFIG_MACRO_DIR([m4])
m4_define([libvisual_required_version], [lv_plugins_version])
m4_define([esound_required_version], [0.2.28])
|