This is the mail archive of the
automake@gnu.org
mailing list for the automake project.
Problem with automake 1.7.2
- From: Christoph Egger <Christoph_Egger at gmx dot de>
- To: automake at gnu dot org
- Date: Sun, 27 Apr 2003 22:26:04 +0200
- Subject: Problem with automake 1.7.2
Hi!
First, I am not subscribed to this list, so please CC me.
I am using autoconf 2.57 and automake 1.7.2 under MacOSX/Darwin.
autoconf 2.57 and automake 1.7.2 are installed via fink.
During the process of autogenerating the configure script and
the Makefile.in files I get this warning from automake:
/sw/share/automake-1.7/am/depend2.am: am__fastdepOBJC does not appear in
AM_CONDITIONAL
The configure script itself runs well, but later compiling fails with:
Makefile:257: *** missing separator. Stop.
The 'damaged' Makefile.am is this (at least the broken Makefile
is generated from this one):
-------------------------------------------------------------
INCLUDES = -I${top_srcdir}/include -I${top_builddir}/include
${extra_includes}
cocoa_la_LIBADD = ${top_builddir}/gii/libgii.la ${top_builddir}/gg/libgg.la
inputlib_LTLIBRARIES = cocoa.la
cocoa_la_SOURCES = input.m cocoa.m
cocoa_la_LDFLAGS = ${extra_libraries} -module -avoid-version \
-export-symbols ${srcdir}/EXPSYMS
inputlibdir = ${libdir}/${ggi_subdir}/input
EXTRA_DIST = EXPSYMS keysyms.h
AM_CPPFLAGS = -no-cpp-precomp -I/System/Library/Frameworks
AM_LDFLAGS = -Xlinker -framework -Xlinker ApplicationServices -Xlinker
-framework -Xlinker Cocoa
--------------------------------------------------------------
When I downgrade to automake 1.6.x or earlier, I don't get the
automake warning and the compiling process doesn't break.
What do I do wrong?