Commit bb8640a9 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Maemo: rename plugin to Hildon

Hildon is not Maemo-specific (Ubuntu Mobile...).
And Maemo soon won't be Hildon-GTK anymore.
parent 8d8844ad
...@@ -4327,25 +4327,24 @@ AM_CONDITIONAL(BUILD_SKINS, [test "${enable_skins2}" = "yes" || ...@@ -4327,25 +4327,24 @@ AM_CONDITIONAL(BUILD_SKINS, [test "${enable_skins2}" = "yes" ||
test "${SYS}" != "mingwce" && test "${enable_skins2}" != "no")]) test "${SYS}" != "mingwce" && test "${enable_skins2}" != "no")])
dnl dnl
dnl Maemo dnl Hildon UI
dnl dnl
AC_ARG_ENABLE(maemo, AC_ARG_ENABLE(hildon,
[ --enable-maemo Internet tablets based on Maemo SDK (default disabled)]) [ --enable-hildon Hildon touchscreen UI (default disabled)])
if test "${enable_maemo}" = "yes" AS_IF([test "${enable_hildon}" = "yes"], [
then
PKG_CHECK_MODULES(HILDON, [hildon-1 hildon-fm-2], [ PKG_CHECK_MODULES(HILDON, [hildon-1 hildon-fm-2], [
VLC_ADD_CFLAGS([maemo],[${HILDON_CFLAGS}]) VLC_ADD_CFLAGS([hildon],[${HILDON_CFLAGS}])
VLC_ADD_LIBS([maemo],[${HILDON_LIBS}]) VLC_ADD_LIBS([hildon],[${HILDON_LIBS}])
VLC_ADD_PLUGIN([maemo]) VLC_ADD_PLUGIN([hildon])
ALIASES="${ALIASES} mvlc" ALIASES="${ALIASES} mvlc"
], [ ], [
AS_IF([test "${enable_maemo}" = "yes"],[ AS_IF([test "${enable_hildon}" = "yes"],[
AC_MSG_ERROR([Hildon libraries not found]) AC_MSG_ERROR([Hildon libraries not found])
]) ])
enable_maemo="no" enable_hildon="no"
]) ])
fi ])
AM_CONDITIONAL(BUILD_MAEMO, [test "${enable_maemo}" = "yes"]) AM_CONDITIONAL(BUILD_HILDON, [test "${enable_hildon}" = "yes"])
dnl dnl
dnl QT 4 dnl QT 4
...@@ -5209,7 +5208,7 @@ AC_CONFIG_FILES([ ...@@ -5209,7 +5208,7 @@ AC_CONFIG_FILES([
modules/gui/Makefile modules/gui/Makefile
modules/gui/beos/Makefile modules/gui/beos/Makefile
modules/gui/macosx/Makefile modules/gui/macosx/Makefile
modules/gui/maemo/Makefile modules/gui/hildon/Makefile
modules/gui/minimal_macosx/Makefile modules/gui/minimal_macosx/Makefile
modules/gui/qnx/Makefile modules/gui/qnx/Makefile
modules/gui/qt4/Makefile modules/gui/qt4/Makefile
......
DIST_SUBDIRS = beos macosx maemo minimal_macosx qnx qt4 skins2 wince DIST_SUBDIRS = beos macosx hildon minimal_macosx qnx qt4 skins2 wince
SUBDIRS = SUBDIRS =
if HAVE_BEOS if HAVE_BEOS
...@@ -7,8 +7,8 @@ endif ...@@ -7,8 +7,8 @@ endif
if HAVE_DARWIN if HAVE_DARWIN
SUBDIRS += macosx minimal_macosx SUBDIRS += macosx minimal_macosx
endif endif
if BUILD_MAEMO if BUILD_HILDON
SUBDIRS += maemo SUBDIRS += hildon
endif endif
SUBDIRS += qnx SUBDIRS += qnx
if ENABLE_QT4 if ENABLE_QT4
......
SOURCES_maemo = maemo.c \ SOURCES_hildon = maemo.c \
maemo.h \ maemo.h \
maemo_callbacks.c \ maemo_callbacks.c \
maemo_callbacks.h \ maemo_callbacks.h \
......
...@@ -47,7 +47,7 @@ if BUILD_MOZILLA ...@@ -47,7 +47,7 @@ if BUILD_MOZILLA
# TODO: move to the mozilla directory # TODO: move to the mozilla directory
nobase_vlcdata_DATA += $(DIST_mozilla) nobase_vlcdata_DATA += $(DIST_mozilla)
endif endif
if BUILD_MAEMO if BUILD_HILDON
nobase_vlcdata_DATA += $(DIST_maemo) $(maemo_FILES) nobase_vlcdata_DATA += $(DIST_maemo) $(maemo_FILES)
endif endif
......
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