directfb: Fix missing -lm flag again

(aka fix the fix)

Signed-off-by: Lionel Landwerlin <llandwerlin@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Lionel Landwerlin 2010-11-07 21:58:26 +01:00 committed by Peter Korsgaard
parent 69a8991bdc
commit 9217101241

View File

@ -1,51 +1,49 @@
From 5a91f329f490ae3d63c239e37f3899e703e303ee Mon Sep 17 00:00:00 2001 From dbf8fd1d097420d02f0603155ca81fcc7e232a0a Mon Sep 17 00:00:00 2001
From: Lionel Landwerlin <llandwerlin@gmail.com> From: Lionel Landwerlin <llandwerlin@gmail.com>
Date: Fri, 5 Nov 2010 18:05:54 +0100 Date: Sun, 7 Nov 2010 21:45:19 +0100
Subject: [PATCH] directfb: add missing -lm flag patch Subject: [PATCH] Add -lm flag when nedded
Signed-off-by: Lionel Landwerlin <llandwerlin@gmail.com> Signed-off-by: Lionel Landwerlin <llandwerlin@gmail.com>
--- ---
....10-add-lm-to-link-flags-when-freetype-is.patch | 31 ++++++++++++++++++++ configure.in | 14 ++++++++++++++
1 files changed, 31 insertions(+), 0 deletions(-) src/media/Makefile.am | 2 +-
create mode 100644 package/directfb/directfb-1.4.10-add-lm-to-link-flags-when-freetype-is.patch 2 files changed, 15 insertions(+), 1 deletions(-)
diff --git a/package/directfb/directfb-1.4.10-add-lm-to-link-flags-when-freetype-is.patch b/package/directfb/directfb-1.4.10-add-lm-to-link-flags-when-freetype-is.patch diff --git a/configure.in b/configure.in
new file mode 100644 index 78c842d..aa608d4 100644
index 0000000..dc84f53 --- a/configure.in
--- /dev/null +++ b/configure.in
+++ b/package/directfb/directfb-1.4.10-add-lm-to-link-flags-when-freetype-is.patch @@ -533,6 +533,20 @@ AM_CONDITIONAL(DIRECTFB_BUILD_PURE_VOODOO, test "$DIRECTFB_BUILD_PURE_VOODOO" =
@@ -0,0 +1,31 @@
+From 9103055ed56999bb42cdf8fc5f08f2ad42e28426 Mon Sep 17 00:00:00 2001 AC_SUBST(DEP_VOODOO)
+From: Lionel Landwerlin <llandwerlin@gmail.com>
+Date: Fri, 5 Nov 2010 18:00:20 +0100 +dnl If we're not building a pure voodoo lib, we need the sqrt symbol
+Subject: [PATCH] configure.in: add -lm to link flags when freetype is used +dnl for src/media/idirectfbfont.c
+ +MEDIALIB=""
+Signed-off-by: Lionel Landwerlin <llandwerlin@gmail.com> +if test "$enable_pure_voodoo" = "no"; then
+--- + AC_CHECK_LIB(m, sqrt,
+ configure.in | 7 +++++++ + MEDIALIB="-lm",
+ 1 files changed, 7 insertions(+), 0 deletions(-) + AC_MSG_ERROR([
+ +*** DirectFB requires libm.]))
+diff --git a/configure.in b/configure.in + if test "$enable_shared" = "yes"; then
+index 78c842d..3f97b22 100644 + DYNLIB+=" $MEDIALIB"
+--- a/configure.in + AC_SUBST(DYNLIB)
++++ b/configure.in + fi
+@@ -830,6 +830,13 @@ AC_ARG_ENABLE(freetype, +fi
+ if test "$enable_freetype" = "yes"; then +AC_SUBST(MEDIALIB)
+ PKG_CHECK_MODULES(FREETYPE, freetype2, FREETYPE="yes", [FREETYPE="no",
+ AC_MSG_WARN([*** no freetype -- FreeType font provider will not be built.])]) AM_CONDITIONAL(ENABLE_MULTI, test "$enable_multi" = "yes")
++ if test "$enable_shared" = "yes"; then
++ AC_CHECK_LIB(m, sinf, , diff --git a/src/media/Makefile.am b/src/media/Makefile.am
++ AC_MSG_ERROR([ index 1a39a25..a4bdb10 100644
++*** DirectFB requires libm.])) --- a/src/media/Makefile.am
++ DYNLIB+=" -lm" +++ b/src/media/Makefile.am
++ fi @@ -35,4 +35,4 @@ libdirectfb_media_la_SOURCES = \
++ AC_SUBST(DYNLIB) idirectfbdatabuffer_file.c \
+ fi idirectfbdatabuffer_memory.c \
+ idirectfbdatabuffer_streamed.c
+ AM_CONDITIONAL(FREETYPE_PROVIDER, test "$FREETYPE" = "yes") -
+-- +libdirectfb_media_la_LDFLAGS = $(MEDIALIB)
+1.6.0.6
+
-- --
1.6.0.6 1.7.2.3