Commit 065eeb7e authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Change freetype libs order to fix win32 compile

(cherry picked from commit 8e587b3f)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent cd4fd5e2
...@@ -4317,11 +4317,11 @@ then ...@@ -4317,11 +4317,11 @@ then
VLC_ADD_PLUGIN([freetype]) VLC_ADD_PLUGIN([freetype])
have_freetype=yes have_freetype=yes
VLC_ADD_CPPFLAGS([freetype skins2],[${FREETYPE_CFLAGS}]) VLC_ADD_CPPFLAGS([freetype skins2],[${FREETYPE_CFLAGS}])
VLC_ADD_LIBS([freetype skins2],[${FREETYPE_LIBS}])
if test "${SYS}" = "mingw32"; then if test "${SYS}" = "mingw32"; then
VLC_ADD_LIBS([freetype skins2],[-lxml2]) VLC_ADD_LIBS([freetype skins2],[-lxml2])
VLC_ADD_LIBS([freetype],[-liconv]) VLC_ADD_LIBS([freetype],[-liconv -lz])
fi fi
VLC_ADD_LIBS([freetype skins2],[${FREETYPE_LIBS}])
if test "${enable_fontconfig}" != "no" if test "${enable_fontconfig}" != "no"
then then
AC_CHECK_HEADERS(fontconfig/fontconfig.h, AC_CHECK_HEADERS(fontconfig/fontconfig.h,
...@@ -4330,6 +4330,16 @@ then ...@@ -4330,6 +4330,16 @@ then
AC_CHECK_HEADERS(Carbon/Carbon.h, AC_CHECK_HEADERS(Carbon/Carbon.h,
[VLC_ADD_LDFLAGS([freetype],[-Wl,-framework,Carbon])]) [VLC_ADD_LDFLAGS([freetype],[-Wl,-framework,Carbon])])
fi fi
dnl fribidi support
if test "${enable_fribidi}" != "no"
then
PKG_CHECK_MODULES(FRIBIDI, fribidi, [
VLC_ADD_CPPFLAGS([freetype skins2], [${FRIBIDI_CFLAGS} -DHAVE_FRIBIDI])
VLC_ADD_LIBS([freetype skins2], [${FRIBIDI_LIBS}])
])
fi
],[ ],[
have_freetype=no have_freetype=no
AS_IF([ test "${enable_freetype}" = "yes"],[ AS_IF([ test "${enable_freetype}" = "yes"],[
...@@ -4339,14 +4349,6 @@ from http://www.freetype.org/, or configure with --disable-freetype. Have a nice ...@@ -4339,14 +4349,6 @@ from http://www.freetype.org/, or configure with --disable-freetype. Have a nice
]) ])
]) ])
dnl fribidi support
if test "${enable_fribidi}" != "no"
then
PKG_CHECK_MODULES(FRIBIDI, fribidi, [
VLC_ADD_CPPFLAGS([freetype skins2], [${FRIBIDI_CFLAGS} -DHAVE_FRIBIDI])
VLC_ADD_LIBS([freetype skins2], [${FRIBIDI_LIBS}])
])
fi
fi fi
dnl dnl
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment