skins2: Remove Modules.am

This commit is contained in:
Rémi Denis-Courmont 2017-01-12 15:09:55 +02:00
parent f3a81d27d2
commit 2ce951f06f
4 changed files with 16 additions and 10 deletions

View File

@ -66,7 +66,7 @@ for d in modules/*/*/Modules.am; do
d="${d%/Modules.am}"
${CONFIG_SHELL-sh} modules/genmf "$d"
printf "."
done
done || true
printf "\n"
set -x

View File

@ -3823,9 +3823,6 @@ AS_IF([test "${enable_skins2}" != "no"], [
VLC_ADD_LIBS([skins2],[${X_LIBS} ${X_PRE_LIBS} ${XEXT_LIBS} ${XPM_LIBS} ${XINERAMA_LIBS} -lX11])
])
dnl for All OSes
VLC_ADD_CXXFLAGS([skins2],[-O2 -fno-rtti])
dnl we need freetype
AS_IF([test "${have_freetype}" != "yes"], [
have_skins_deps="no"
@ -3839,7 +3836,6 @@ AS_IF([test "${enable_skins2}" != "no"], [
])
enable_skins2="no"
], [
VLC_ADD_PLUGIN([skins2])
ALIASES="${ALIASES} svlc"
enable_skins2="yes"
])

View File

@ -1 +0,0 @@
Makefile.am

View File

@ -1,4 +1,7 @@
SOURCES_skins2 = \
include $(top_srcdir)/modules/common.am
guidir = $(pluginsdir)/gui
libskins2_plugin_la_SOURCES = \
commands/async_queue.cpp \
commands/async_queue.hpp \
commands/cmd_add_item.cpp \
@ -196,7 +199,7 @@ SOURCES_skins2 = \
vars/volume.hpp
if HAVE_WIN32
SOURCES_skins2 += \
libskins2_plugin_la_SOURCES += \
win32/win32_dragdrop.cpp \
win32/win32_dragdrop.hpp \
win32/win32_factory.cpp \
@ -216,7 +219,7 @@ SOURCES_skins2 += \
$(NULL)
else
if HAVE_OS2
SOURCES_skins2 += \
libskins2_plugin_la_SOURCES += \
os2/os2_dragdrop.cpp \
os2/os2_dragdrop.hpp \
os2/os2_factory.cpp \
@ -235,7 +238,7 @@ SOURCES_skins2 += \
os2/os2_window.hpp \
$(NULL)
else
SOURCES_skins2 += \
libskins2_plugin_la_SOURCES += \
x11/x11_display.cpp \
x11/x11_display.hpp \
x11/x11_dragdrop.cpp \
@ -257,3 +260,11 @@ SOURCES_skins2 += \
$(NULL)
endif
endif
libskins2_plugin_la_CPPFLAGS = $(AM_CPPFLAGS) $(CPPFLAGS_skins2)
libskins2_plugin_la_CXXFLAGS = $(AM_CXXFLAGS) -O2 -fno-rtti
libskins2_plugin_la_LIBADD = $(LIBS_skins2)
if BUILD_SKINS
gui_LTLIBRARIES = libskins2_plugin.la
endif