Hi all,
Patch below fixes a number of warnings when running autogen.sh.
Cheers, Erik
-----------8<-----------8<-----------8<-----------8<-----------8<----------- --- Makefile.am 2010-06-16 15:22:19 +0000 +++ Makefile.am 2010-08-03 22:25:32 +0000 @@ -4,6 +4,8 @@
AUTOMAKE_OPTIONS = 1.7
+ACLOCAL_AMFLAGS = -I m4 + WIN32_BUILD_FILES = \ geany_private.rc \ win32-config.h \
--- configure.ac 2010-06-12 13:42:50 +0000 +++ configure.ac 2010-08-03 22:25:32 +0000 @@ -3,6 +3,7 @@
AC_INIT(configure.ac) AM_INIT_AUTOMAKE(geany, 0.20) +AC_CONFIG_MACRO_DIR([m4])
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
@@ -22,7 +23,6 @@ AC_MSG_ERROR([No C++ compiler found. Please install a C++ compiler.]) fi
-#AC_PROG_RANLIB AC_PROG_INSTALL AC_PROG_LN_S AC_PROG_INTLTOOL
-----------8<-----------8<-----------8<-----------8<-----------8<-----------
Erik de Castro Lopo wrote:
Hi all,
Patch below fixes a number of warnings when running autogen.sh.
Just remembered, if someone applies this patch, they should also do (from the top level dir):
mkdir m4 svn add m4
Erik
On Wed, 4 Aug 2010 09:16:04 +1000 Erik de Castro Lopo mle+tools@mega-nerd.com wrote:
Patch below fixes a number of warnings when running autogen.sh.
Just remembered, if someone applies this patch, they should also do (from the top level dir):
mkdir m4 svn add m4
Thanks, committed. After ./autogen.sh, we now have m4/intltool.m4. I suppose this may be needed by people using ./autogen.sh without the intltool macros.
BTW please attach patches, not in the message body ;-)
Regards, Nick
Nick Treleaven wrote:
Thanks, committed. After ./autogen.sh, we now have m4/intltool.m4. I suppose this may be needed by people using ./autogen.sh without the intltool macros.
I would not commit that because different versions of the tools will require/provide different versions of the macro. Instead I suggest that the autogen.sh script check for everything it needs and complain if something is missing.
BTW please attach patches, not in the message body ;-)
I'll remember that.
Cheers, Erik
On Tue, 24 Aug 2010 07:08:16 +1000 Erik de Castro Lopo mle+tools@mega-nerd.com wrote:
Thanks, committed. After ./autogen.sh, we now have m4/intltool.m4. I suppose this may be needed by people using ./autogen.sh without the intltool macros.
I would not commit that because different versions of the tools will require/provide different versions of the macro. Instead I
OK, removed. So using the m4 directory just prevents warnings for autotools.
suggest that the autogen.sh script check for everything it needs and complain if something is missing.
We have AC_PROG_INTLTOOL (but I'm no i18n expert).
Regards, Nick