Hi,

here are some diffs. :-)

autogen_dfb.diff, autogen_dfb_extra.diff:
Run libtoolize to create libtool in build directory.

automake_cflags_dfb.diff, automake_cflags_dfb_examples.diff,
automake_cflags_dfb_extra.diff:
Use AM_CFLAGS instead of CFLAGS, which is a user variable.

configure_cxx_dfb.diff:
Check c++ compiler presence. Not doing so led to 'conditional
"am__fastdepCXX" was never defined'.

my versions:
libtool 1.4.3
autoconf 2.54
automake 1.7.1

Hopefully these changes will not break autogen/configure with older
versions.

Regards,
Andreas
diff -u -r1.7 autogen.sh
--- DirectFB/autogen.sh	26 Aug 2002 22:28:30 -0000	1.7
+++ DirectFB/autogen.sh	27 Oct 2002 01:35:46 -0000
@@ -111,12 +111,13 @@
 esac
 
 aclocal $ACLOCAL_FLAGS
+libtoolize --automake
+autoconf
 
 # optionally feature autoheader
 (autoheader --version)  < /dev/null > /dev/null 2>&1 && autoheader
 
 automake --add-missing $am_opt
-autoconf
 
 cd $ORIGDIR
 
diff -u -r1.1 autogen.sh
--- DirectFB-extra/autogen.sh	28 Dec 2001 19:34:16 -0000	1.1
+++ DirectFB-extra/autogen.sh	27 Oct 2002 02:14:01 -0000
@@ -95,6 +95,8 @@
 
 	cd $i
 	aclocal $ACLOCAL_FLAGS
+	libtoolize --automake
+	autoconf
 
 	# optionally feature autoheader
 	if grep AM_CONFIG_HEADER configure.in >/dev/null ; then
@@ -102,7 +104,6 @@
 	fi
 
 	automake --add-missing $am_opt
-	autoconf
 done
 
 cd $ORIGDIR
diff -u -r1.4 Makefile.am
--- DirectFB/gfxdrivers/ati128/Makefile.am	17 Jan 2002 14:46:02 -0000	1.4
+++ DirectFB/gfxdrivers/ati128/Makefile.am	27 Oct 2002 01:05:44 -0000
@@ -4,7 +4,7 @@
 	-I$(top_srcdir)/include	\
 	-I$(top_srcdir)/src
 
-CFLAGS = $(DFB_CFLAGS)
+AM_CFLAGS = $(DFB_CFLAGS)
 
 ati_LTLIBRARIES = libdirectfb_ati128.la
 
diff -u -r1.1 Makefile.am
--- DirectFB/gfxdrivers/cyber5k/Makefile.am	25 Oct 2002 14:51:53 -0000	1.1
+++ DirectFB/gfxdrivers/cyber5k/Makefile.am	27 Oct 2002 01:05:44 -0000
@@ -4,7 +4,7 @@
 	-I$(top_srcdir)/include \
 	-I$(top_srcdir)/src
 
-CFLAGS = $(DFB_CFLAGS)
+AM_CFLAGS = $(DFB_CFLAGS)
 
 cyber5k_LTLIBRARIES = libdirectfb_cyber5k.la
 
diff -u -r1.5 Makefile.am
--- DirectFB/gfxdrivers/matrox/Makefile.am	5 Sep 2002 11:36:23 -0000	1.5
+++ DirectFB/gfxdrivers/matrox/Makefile.am	27 Oct 2002 01:05:44 -0000
@@ -4,7 +4,7 @@
 	-I$(top_srcdir)/include	\
 	-I$(top_srcdir)/src
 
-CFLAGS = $(DFB_CFLAGS)
+AM_CFLAGS = $(DFB_CFLAGS)
 
 matrox_LTLIBRARIES = libdirectfb_matrox.la
 
diff -u -r1.4 Makefile.am
--- DirectFB/gfxdrivers/neomagic/Makefile.am	15 Feb 2002 12:23:49 -0000	1.4
+++ DirectFB/gfxdrivers/neomagic/Makefile.am	27 Oct 2002 01:05:44 -0000
@@ -4,7 +4,7 @@
 	-I$(top_srcdir)/include	\
 	-I$(top_srcdir)/src
 
-CFLAGS = $(DFB_CFLAGS)
+AM_CFLAGS = $(DFB_CFLAGS)
 
 neomagic_LTLIBRARIES = libdirectfb_neomagic.la
 
diff -u -r1.2 Makefile.am
--- DirectFB/gfxdrivers/nvidia/Makefile.am	17 Jan 2002 14:46:03 -0000	1.2
+++ DirectFB/gfxdrivers/nvidia/Makefile.am	27 Oct 2002 01:05:44 -0000
@@ -4,7 +4,7 @@
 	-I$(top_srcdir)/include	\
 	-I$(top_srcdir)/src
 
-CFLAGS = $(DFB_CFLAGS)
+AM_CFLAGS = $(DFB_CFLAGS)
 
 nvidia_LTLIBRARIES = libdirectfb_nvidia.la
 
diff -u -r1.2 Makefile.am
--- DirectFB/gfxdrivers/savage/Makefile.am	19 Jun 2002 21:06:27 -0000	1.2
+++ DirectFB/gfxdrivers/savage/Makefile.am	27 Oct 2002 01:05:44 -0000
@@ -4,7 +4,7 @@
 	-I$(top_srcdir)/include \
 	-I$(top_srcdir)/src
 
-CFLAGS = $(DFB_CFLAGS)
+AM_CFLAGS = $(DFB_CFLAGS)
 
 savage_LTLIBRARIES = libdirectfb_savage.la
 
diff -u -r1.3 Makefile.am
--- DirectFB/gfxdrivers/tdfx/Makefile.am	17 Jan 2002 14:46:04 -0000	1.3
+++ DirectFB/gfxdrivers/tdfx/Makefile.am	27 Oct 2002 01:05:44 -0000
@@ -4,7 +4,7 @@
 	-I$(top_srcdir)/include	\
 	-I$(top_srcdir)/src
 
-CFLAGS = $(DFB_CFLAGS)
+AM_CFLAGS = $(DFB_CFLAGS)
 
 tdfx_LTLIBRARIES = libdirectfb_tdfx.la
 
diff -u -r1.2 Makefile.am
--- DirectFB/inputdrivers/dbox2remote/Makefile.am	17 Jan 2002 14:46:04 -0000	1.2
+++ DirectFB/inputdrivers/dbox2remote/Makefile.am	27 Oct 2002 01:05:44 -0000
@@ -4,7 +4,7 @@
 	-I$(top_srcdir)/include	\
 	-I$(top_srcdir)/src
 
-CFLAGS = $(DFB_CFLAGS)
+AM_CFLAGS = $(DFB_CFLAGS)
 
 dbox2remote_LTLIBRARIES = libdirectfb_dbox2remote.la
 
diff -u -r1.2 Makefile.am
--- DirectFB/inputdrivers/h3600_ts/Makefile.am	17 Jan 2002 14:46:05 -0000	1.2
+++ DirectFB/inputdrivers/h3600_ts/Makefile.am	27 Oct 2002 01:05:44 -0000
@@ -4,7 +4,7 @@
 	-I$(top_srcdir)/include	\
 	-I$(top_srcdir)/src
 
-CFLAGS = $(DFB_CFLAGS)
+AM_CFLAGS = $(DFB_CFLAGS)
 
 input_LTLIBRARIES = libdirectfb_h3600_ts.la
 
diff -u -r1.4 Makefile.am
--- DirectFB/inputdrivers/joystick/Makefile.am	17 Jan 2002 14:46:05 -0000	1.4
+++ DirectFB/inputdrivers/joystick/Makefile.am	27 Oct 2002 01:05:44 -0000
@@ -4,7 +4,7 @@
 	-I$(top_srcdir)/include	\
 	-I$(top_srcdir)/src
 
-CFLAGS = $(DFB_CFLAGS)
+AM_CFLAGS = $(DFB_CFLAGS)
 
 joystick_LTLIBRARIES = libdirectfb_joystick.la
 
diff -u -r1.4 Makefile.am
--- DirectFB/inputdrivers/keyboard/Makefile.am	17 Jan 2002 14:46:05 -0000	1.4
+++ DirectFB/inputdrivers/keyboard/Makefile.am	27 Oct 2002 01:05:46 -0000
@@ -4,7 +4,7 @@
 	-I$(top_srcdir)/include	\
 	-I$(top_srcdir)/src
 
-CFLAGS = $(DFB_CFLAGS)
+AM_CFLAGS = $(DFB_CFLAGS)
 
 keyboard_LTLIBRARIES = libdirectfb_keyboard.la
 
diff -u -r1.2 Makefile.am
--- DirectFB/inputdrivers/linux_input/Makefile.am	1 Jul 2002 16:46:16 -0000	1.2
+++ DirectFB/inputdrivers/linux_input/Makefile.am	27 Oct 2002 01:05:46 -0000
@@ -4,7 +4,7 @@
 	-I$(top_srcdir)/include	\
 	-I$(top_srcdir)/src
 
-CFLAGS = $(DFB_CFLAGS)
+AM_CFLAGS = $(DFB_CFLAGS)
 
 linux_input_LTLIBRARIES = libdirectfb_linux_input.la
 
diff -u -r1.2 Makefile.am
--- DirectFB/inputdrivers/lirc/Makefile.am	17 Jan 2002 14:46:06 -0000	1.2
+++ DirectFB/inputdrivers/lirc/Makefile.am	27 Oct 2002 01:05:46 -0000
@@ -4,7 +4,7 @@
 	-I$(top_srcdir)/include	\
 	-I$(top_srcdir)/src
 
-CFLAGS = $(DFB_CFLAGS)
+AM_CFLAGS = $(DFB_CFLAGS)
 
 lirc_LTLIBRARIES = libdirectfb_lirc.la
 
diff -u -r1.4 Makefile.am
--- DirectFB/inputdrivers/ps2mouse/Makefile.am	17 Jan 2002 14:46:06 -0000	1.4
+++ DirectFB/inputdrivers/ps2mouse/Makefile.am	27 Oct 2002 01:05:46 -0000
@@ -4,7 +4,7 @@
 	-I$(top_srcdir)/include	\
 	-I$(top_srcdir)/src
 
-CFLAGS = $(DFB_CFLAGS)
+AM_CFLAGS = $(DFB_CFLAGS)
 
 ps2mouse_LTLIBRARIES = libdirectfb_ps2mouse.la
 
diff -u -r1.4 Makefile.am
--- DirectFB/inputdrivers/serialmouse/Makefile.am	17 Jan 2002 14:46:07 -0000	1.4
+++ DirectFB/inputdrivers/serialmouse/Makefile.am	27 Oct 2002 01:05:46 -0000
@@ -4,7 +4,7 @@
 	-I$(top_srcdir)/include	\
 	-I$(top_srcdir)/src
 
-CFLAGS = $(DFB_CFLAGS)
+AM_CFLAGS = $(DFB_CFLAGS)
 
 serialmouse_LTLIBRARIES = libdirectfb_serialmouse.la
 
diff -u -r1.1 Makefile.am
--- DirectFB/inputdrivers/sonypi/Makefile.am	3 Mar 2002 05:51:32 -0000	1.1
+++ DirectFB/inputdrivers/sonypi/Makefile.am	27 Oct 2002 01:05:46 -0000
@@ -4,7 +4,7 @@
 	-I$(top_srcdir)/include	\
 	-I$(top_srcdir)/src
 
-CFLAGS = $(DFB_CFLAGS)
+AM_CFLAGS = $(DFB_CFLAGS)
 
 sonypi_LTLIBRARIES = libdirectfb_sonypi.la
 
diff -u -r1.1 Makefile.am
--- DirectFB/inputdrivers/ucb1x00_ts/Makefile.am	12 Oct 2002 15:17:05 -0000	1.1
+++ DirectFB/inputdrivers/ucb1x00_ts/Makefile.am	27 Oct 2002 01:05:46 -0000
@@ -4,7 +4,7 @@
 	-I$(top_srcdir)/include	\
 	-I$(top_srcdir)/src
 
-CFLAGS = $(DFB_CFLAGS)
+AM_CFLAGS = $(DFB_CFLAGS)
 
 input_LTLIBRARIES = libdirectfb_ucb1x00_ts.la
 
diff -u -r1.4 Makefile.am
--- DirectFB/interfaces/IDirectFBFont/Makefile.am	22 Mar 2002 19:21:24 -0000	1.4
+++ DirectFB/interfaces/IDirectFBFont/Makefile.am	27 Oct 2002 01:05:46 -0000
@@ -13,7 +13,7 @@
 	-I$(top_srcdir)/src 	\
 	-DDATADIR=\"@DATADIR@\"
 
-CFLAGS = $(DFB_CFLAGS) $(FREETYPE_CFLAGS)
+AM_CFLAGS = $(DFB_CFLAGS) $(FREETYPE_CFLAGS)
 
 idirectfbfont_LTLIBRARIES = \
 	libidirectfbfont_default.la	\
diff -u -r1.5 Makefile.am
--- DirectFB/interfaces/IDirectFBImageProvider/Makefile.am	11 Oct 2002 16:02:53 -0000	1.5
+++ DirectFB/interfaces/IDirectFBImageProvider/Makefile.am	27 Oct 2002 01:05:46 -0000
@@ -28,7 +28,7 @@
 	-I$(top_srcdir)/src 	\
 	-DDATADIR=\"@DATADIR@\"
 
-CFLAGS = $(DFB_CFLAGS)
+AM_CFLAGS = $(DFB_CFLAGS)
 
 idirectfbimageprovider_LTLIBRARIES = \
 	libidirectfbimageprovider_mpeg2.la	\
diff -u -r1.1 Makefile.am
--- DirectFB/interfaces/IDirectFBImageProvider/mpeg2/Makefile.am	11 Oct 2002 16:02:53 -0000	1.1
+++ DirectFB/interfaces/IDirectFBImageProvider/mpeg2/Makefile.am	27 Oct 2002 01:05:46 -0000
@@ -1,6 +1,6 @@
 ## Makefile.am for DirectFB/interfaces/IDirectFBImageProvider/mpeg2
 
-CFLAGS = $(DFB_CFLAGS)
+AM_CFLAGS = $(DFB_CFLAGS)
 
 noinst_LTLIBRARIES = libmpeg2decode.la
 
diff -u -r1.7 Makefile.am
--- DirectFB/interfaces/IDirectFBVideoProvider/Makefile.am	11 Sep 2002 23:15:00 -0000	1.7
+++ DirectFB/interfaces/IDirectFBVideoProvider/Makefile.am	27 Oct 2002 01:05:46 -0000
@@ -35,8 +35,8 @@
 	-I$(top_srcdir)/src 	\
 	-DDATADIR=\"@DATADIR@\"
 
-CFLAGS = $(DFB_CFLAGS)
-CXXFLAGS = $(DFB_CXXFLAGS) $(AVIFILE_CFLAGS)
+AM_CFLAGS = $(DFB_CFLAGS)
+AM_CXXFLAGS = $(DFB_CXXFLAGS) $(AVIFILE_CFLAGS)
 
 
 idirectfbvideoprovider_LTLIBRARIES =	\
diff -u -r1.10 Makefile.am
--- DirectFB/src/Makefile.am	12 Apr 2002 23:42:57 -0000	1.10
+++ DirectFB/src/Makefile.am	27 Oct 2002 01:05:46 -0000
@@ -7,7 +7,7 @@
 	-I$(top_builddir)/include	\
 	-I$(top_srcdir)/src
 
-CFLAGS = $(DFB_CFLAGS)
+AM_CFLAGS = $(DFB_CFLAGS)
 
 AM_CPPFLAGS = \
 	-DDATADIR=\"@DATADIR@\"	\
diff -u -r1.20 Makefile.am
--- DirectFB/src/core/Makefile.am	20 Oct 2002 13:11:23 -0000	1.20
+++ DirectFB/src/core/Makefile.am	27 Oct 2002 01:05:46 -0000
@@ -23,7 +23,7 @@
 	-I$(top_builddir)/include	\
 	-I$(top_srcdir)/src
 
-CFLAGS = $(DFB_CFLAGS)
+AM_CFLAGS = $(DFB_CFLAGS)
 
 AM_CPPFLAGS = \
 	-DDATADIR=\"@DATADIR@\"		\
diff -u -r1.1 Makefile.am
--- DirectFB/src/core/fbdev/Makefile.am	8 Aug 2002 16:41:45 -0000	1.1
+++ DirectFB/src/core/fbdev/Makefile.am	27 Oct 2002 01:05:46 -0000
@@ -5,7 +5,7 @@
 	-I$(top_builddir)/include	\
 	-I$(top_srcdir)/src
 
-CFLAGS = $(DFB_CFLAGS) 
+AM_CFLAGS = $(DFB_CFLAGS) 
 
 AM_CPPFLAGS = \
 	-DDATADIR=\"@DATADIR@\"		\
diff -u -r1.9 Makefile.am
--- DirectFB/src/core/fusion/Makefile.am	16 Sep 2002 22:35:32 -0000	1.9
+++ DirectFB/src/core/fusion/Makefile.am	27 Oct 2002 01:05:46 -0000
@@ -15,7 +15,7 @@
 	-I$(top_builddir)/include	\
 	-I$(top_srcdir)/src
 
-CFLAGS = $(DFB_CFLAGS)
+AM_CFLAGS = $(DFB_CFLAGS)
 
 AM_CPPFLAGS = \
 	-DDATADIR=\"@DATADIR@\"	\
diff -u -r1.2 Makefile.am
--- DirectFB/src/core/fusion/shmalloc/Makefile.am	2 May 2002 19:08:39 -0000	1.2
+++ DirectFB/src/core/fusion/shmalloc/Makefile.am	27 Oct 2002 01:05:46 -0000
@@ -5,7 +5,7 @@
 	-I$(top_builddir)/include	\
 	-I$(top_srcdir)/src
 
-CFLAGS = $(DFB_CFLAGS)
+AM_CFLAGS = $(DFB_CFLAGS)
 
 AM_CPPFLAGS = \
 	-DDATADIR=\"@DATADIR@\"	\
diff -u -r1.1 Makefile.am
--- DirectFB/src/core/sdl/Makefile.am	30 Aug 2002 17:49:59 -0000	1.1
+++ DirectFB/src/core/sdl/Makefile.am	27 Oct 2002 01:05:46 -0000
@@ -5,7 +5,7 @@
 	-I$(top_builddir)/include	\
 	-I$(top_srcdir)/src
 
-CFLAGS = $(DFB_CFLAGS) `sdl-config --cflags`
+AM_CFLAGS = $(DFB_CFLAGS) `sdl-config --cflags`
 
 AM_CPPFLAGS = \
 	-DDATADIR=\"@DATADIR@\"		\
diff -u -r1.5 Makefile.am
--- DirectFB/src/display/Makefile.am	26 Jun 2002 18:34:32 -0000	1.5
+++ DirectFB/src/display/Makefile.am	27 Oct 2002 01:05:46 -0000
@@ -4,7 +4,7 @@
 	-I$(top_srcdir)/include	\
 	-I$(top_srcdir)/src
 
-CFLAGS = $(DFB_CFLAGS)
+AM_CFLAGS = $(DFB_CFLAGS)
 
 
 internalincludedir = $(INTERNALINCLUDEDIR)/display
diff -u -r1.5 Makefile.am
--- DirectFB/src/gfx/Makefile.am	15 Jan 2002 18:08:36 -0000	1.5
+++ DirectFB/src/gfx/Makefile.am	27 Oct 2002 01:05:46 -0000
@@ -6,7 +6,7 @@
 	-I$(top_srcdir)/include	\
 	-I$(top_srcdir)/src
 
-CFLAGS = $(DFB_CFLAGS)
+AM_CFLAGS = $(DFB_CFLAGS)
 
 
 internalincludedir = $(INTERNALINCLUDEDIR)/gfx
diff -u -r1.9 Makefile.am
--- DirectFB/src/gfx/generic/Makefile.am	27 Sep 2002 13:54:43 -0000	1.9
+++ DirectFB/src/gfx/generic/Makefile.am	27 Oct 2002 01:05:46 -0000
@@ -4,7 +4,7 @@
 	-I$(top_srcdir)/include	\
 	-I$(top_srcdir)/src
 
-CFLAGS = $(DFB_CFLAGS) $(DFB_CFLAGS_OMIT_FRAME_POINTER)
+AM_CFLAGS = $(DFB_CFLAGS) $(DFB_CFLAGS_OMIT_FRAME_POINTER)
 
 
 if BUILDMMX
diff -u -r1.4 Makefile.am
--- DirectFB/src/input/Makefile.am	15 Jan 2002 18:08:36 -0000	1.4
+++ DirectFB/src/input/Makefile.am	27 Oct 2002 01:05:46 -0000
@@ -4,7 +4,7 @@
 	-I$(top_srcdir)/include	\
 	-I$(top_srcdir)/src
 
-CFLAGS = $(DFB_CFLAGS)
+AM_CFLAGS = $(DFB_CFLAGS)
 
 
 internalincludedir = $(INTERNALINCLUDEDIR)/input
diff -u -r1.9 Makefile.am
--- DirectFB/src/media/Makefile.am	6 Aug 2002 16:02:21 -0000	1.9
+++ DirectFB/src/media/Makefile.am	27 Oct 2002 01:05:46 -0000
@@ -4,7 +4,7 @@
 	-I$(top_srcdir)/include	\
 	-I$(top_srcdir)/src
 
-CFLAGS = $(DFB_CFLAGS)
+AM_CFLAGS = $(DFB_CFLAGS)
 
 
 internalincludedir = $(INTERNALINCLUDEDIR)/media
diff -u -r1.10 Makefile.am
--- DirectFB/src/misc/Makefile.am	10 Sep 2002 15:41:13 -0000	1.10
+++ DirectFB/src/misc/Makefile.am	27 Oct 2002 01:05:46 -0000
@@ -12,7 +12,7 @@
 	-I$(top_srcdir)/include	\
 	-I$(top_srcdir)/src
 
-CFLAGS = $(DFB_CFLAGS)
+AM_CFLAGS = $(DFB_CFLAGS)
 
 
 internalincludedir = $(INTERNALINCLUDEDIR)/misc
diff -u -r1.4 Makefile.am
--- DirectFB/src/windows/Makefile.am	15 Jan 2002 18:08:37 -0000	1.4
+++ DirectFB/src/windows/Makefile.am	27 Oct 2002 01:05:46 -0000
@@ -4,7 +4,7 @@
 	-I$(top_srcdir)/include	\
 	-I$(top_srcdir)/src
 
-CFLAGS = $(DFB_CFLAGS)
+AM_CFLAGS = $(DFB_CFLAGS)
 
 
 internalincludedir = $(INTERNALINCLUDEDIR)/windows
diff -u -r1.8 Makefile.am
--- DirectFB/tools/Makefile.am	9 Oct 2002 18:28:47 -0000	1.8
+++ DirectFB/tools/Makefile.am	27 Oct 2002 01:05:46 -0000
@@ -4,7 +4,7 @@
 	-I$(top_srcdir)/include	\
 	-I$(top_srcdir)/src
 
-CFLAGS = $(DFB_CFLAGS)
+AM_CFLAGS = $(DFB_CFLAGS)
 
 
 if DIRECTFB_CSOURCE
diff -u -r1.16 Makefile.am
--- DirectFB-examples/src/Makefile.am	12 Aug 2002 17:20:24 -0000	1.16
+++ DirectFB-examples/src/Makefile.am	27 Oct 2002 01:05:47 -0000
@@ -4,7 +4,7 @@
 
 fontsdatadir = @DATADIR@/fonts
 
-CFLAGS = \
+AM_CFLAGS = \
 	@DIRECTFB_CFLAGS@ @DEBUGFLAGS@ -Wall -Werror-implicit-function-declaration
 
 LIBADDS = \
diff -u -r1.5 Makefile.am
--- DirectFB-examples/src/df_knuckles/Makefile.am	12 Aug 2002 17:20:24 -0000	1.5
+++ DirectFB-examples/src/df_knuckles/Makefile.am	27 Oct 2002 01:05:47 -0000
@@ -1,6 +1,6 @@
 ## Makefile.am for DirectFB-examples/src/df_knuckles
 
-CFLAGS = @DIRECTFB_CFLAGS@ @DEBUGFLAGS@ -Wall -Werror-implicit-function-declaration
+AM_CFLAGS = @DIRECTFB_CFLAGS@ @DEBUGFLAGS@ -Wall -Werror-implicit-function-declaration
 
 LIBADDS = @DIRECTFB_LIBS@
 
diff -u -r1.8 Makefile.am
--- DirectFB-examples/src/df_neo/Makefile.am	12 Aug 2002 17:20:24 -0000	1.8
+++ DirectFB-examples/src/df_neo/Makefile.am	27 Oct 2002 01:05:47 -0000
@@ -1,6 +1,6 @@
 ## Makefile.am for DirectFB-examples/src/df_neo
 
-CFLAGS = @DIRECTFB_CFLAGS@ @DEBUGFLAGS@ -Wall -Werror-implicit-function-declaration
+AM_CFLAGS = @DIRECTFB_CFLAGS@ @DEBUGFLAGS@ -Wall -Werror-implicit-function-declaration
 
 LIBADDS = @DIRECTFB_LIBS@ -lm
 
diff -u -r1.7 Makefile.am
--- DirectFB-examples/src/spacedream/Makefile.am	12 Aug 2002 17:20:24 -0000	1.7
+++ DirectFB-examples/src/spacedream/Makefile.am	27 Oct 2002 01:05:47 -0000
@@ -1,6 +1,6 @@
 ## Makefile.am for DirectFB-examples/src/spacedream
 
-CFLAGS = @DIRECTFB_CFLAGS@ @DEBUGFLAGS@ -Wall -Werror-implicit-function-declaration
+AM_CFLAGS = @DIRECTFB_CFLAGS@ @DEBUGFLAGS@ -Wall -Werror-implicit-function-declaration
 
 LIBADDS = @DIRECTFB_LIBS@ -lm
 
diff -u -r1.1 Makefile.am
--- DirectFB-extra/interfaces/IDirectFBImageProvider/Makefile.am	10 Jan 2002 19:06:09 -0000	1.1
+++ DirectFB-extra/interfaces/IDirectFBImageProvider/Makefile.am	27 Oct 2002 01:05:47 -0000
@@ -3,7 +3,7 @@
 idirectfbimageproviderdir = $(MODULEDIR)/interfaces/IDirectFBImageProvider
 
 
-CFLAGS = $(DFB_CFLAGS) -DDATADIR=\"@DATADIR@\"
+AM_CFLAGS = $(DFB_CFLAGS) -DDATADIR=\"@DATADIR@\"
 
 if IMLIB2
 IMLIB2_PROVIDER = libidirectfbimageprovider_imlib2.la
diff -u -r1.1 Makefile.am
--- DirectFB-extra/interfaces/IDirectFBVideoProvider/Makefile.am	28 Dec 2001 19:34:17 -0000	1.1
+++ DirectFB-extra/interfaces/IDirectFBVideoProvider/Makefile.am	27 Oct 2002 01:05:47 -0000
@@ -3,7 +3,7 @@
 idirectfbvideoproviderdir = $(MODULEDIR)/interfaces/IDirectFBVideoProvider
 
 
-CFLAGS = $(DFB_CFLAGS) -DDATADIR=\"@DATADIR@\"
+AM_CFLAGS = $(DFB_CFLAGS) -DDATADIR=\"@DATADIR@\"
 
 if OPENQUICKTIME
 OPENQUICKTIME_PROVIDER = libidirectfbvideoprovider_openquicktime.la
diff -u -r1.119 configure.in
--- DirectFB/configure.in	26 Oct 2002 19:10:43 -0000	1.119
+++ DirectFB/configure.in	27 Oct 2002 01:56:49 -0000
@@ -62,6 +62,7 @@
 AM_SANITY_CHECK
 AC_ISC_POSIX
 AM_PROG_CC_STDC
+AC_PROG_CXX
 AC_PROG_INSTALL
 AC_PROG_MAKE_SET
 AC_HEADER_STDC

Reply via email to