[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [ft-devel] autogen.sh
From: |
mpsuzuki |
Subject: |
Re: [ft-devel] autogen.sh |
Date: |
Sat, 8 Nov 2008 22:19:52 +0900 |
On Sat, 08 Nov 2008 09:37:16 +0100 (CET)
Werner LEMBERG <address@hidden> wrote:
>
>> I think you want to call aclocal _after_ libtoolize in autogen.sh.
>> (I'd also add AC_CONFIG_MACRO_DIR([m4]) to builds/unix/configure.raw
>> with associated -I m4 to aclocal)
>
>Sorry for the late reply,
>
>Can you provide a fix?
Maybe expected fix would be following, but yet I'm not sure
whether anything goes wrong by current autogen.sh (except of
the messages by libtoolize).
Patrick, could you tell us what kind of problem can arise?
Regards,
mpsuzuki
Index: autogen.sh
===================================================================
RCS file: /sources/freetype/freetype2/autogen.sh,v
retrieving revision 1.9
diff -u -r1.9 autogen.sh
--- autogen.sh 12 Sep 2008 16:27:45 -0000 1.9
+++ autogen.sh 8 Nov 2008 13:12:59 -0000
@@ -148,8 +148,8 @@
sed -e "s;@VERSION@;$freetype_major$freetype_minor$freetype_patch;" \
< configure.raw > configure.ac
-run aclocal -I . --force
run $LIBTOOLIZE --force --copy --install
+run aclocal -I . -I m4 --force
run autoconf --force
chmod +x mkinstalldirs
Index: builds/unix/configure.raw
===================================================================
RCS file: /sources/freetype/freetype2/builds/unix/configure.raw,v
retrieving revision 1.36
diff -u -r1.36 configure.raw
--- builds/unix/configure.raw 30 Sep 2008 16:21:06 -0000 1.36
+++ builds/unix/configure.raw 8 Nov 2008 13:13:01 -0000
@@ -12,6 +12,7 @@
# fully.
AC_INIT([FreeType], address@hidden@], address@hidden, [freetype])
+AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_SRCDIR([ftconfig.in])