]> git.sesse.net Git - vlc/blobdiff - src/Makefile.am
aout: handle filters creation/deletion from decoder, fix memory leak
[vlc] / src / Makefile.am
index 733dec6a4be522240488b5304b51b88496b2ce7d..663351e8392101dd108d93a4ac8e93148333fd83 100644 (file)
@@ -24,7 +24,6 @@ pluginsincludedir = $(pkgincludedir)/plugins
 pluginsinclude_HEADERS = \
        ../include/vlc_access.h \
        ../include/vlc_aout.h \
-       ../include/vlc_aout_intf.h \
        ../include/vlc_aout_volume.h \
        ../include/vlc_arrays.h \
        ../include/vlc_art_finder.h \
@@ -167,7 +166,6 @@ lib_LTLIBRARIES = libvlccore.la
 AM_CPPFLAGS = $(INCICONV) $(IDN_CFLAGS) \
        -DMODULE_STRING=\"main\" \
        -DLOCALEDIR=\"$(localedir)\" \
-       -DSYSCONFDIR=\"$(sysconfdir)\" \
        -DPKGDATADIR=\"$(vlcdatadir)\" \
        -DPKGLIBDIR=\"$(vlclibdir)\"
 AM_CFLAGS = $(CFLAGS_libvlccore)
@@ -204,6 +202,7 @@ libvlc_win32_rc.$(OBJEXT): libvlc_win32_rc.rc
 
 EXTRA_libvlccore_la_SOURCES = \
        $(SOURCES_libvlc_darwin) \
+       $(SOURCES_libvlc_android) \
        $(SOURCES_libvlc_linux) \
        $(SOURCES_libvlc_win32) \
        $(SOURCES_libvlc_os2) \
@@ -215,6 +214,9 @@ EXTRA_libvlccore_la_SOURCES = \
 if HAVE_DARWIN
 libvlccore_la_SOURCES += $(SOURCES_libvlc_darwin)
 else
+if HAVE_ANDROID
+libvlccore_la_SOURCES += $(SOURCES_libvlc_android)
+else
 if HAVE_LINUX
 libvlccore_la_SOURCES += $(SOURCES_libvlc_linux)
 else
@@ -233,6 +235,7 @@ endif
 endif
 endif
 endif
+endif
 if BUILD_HTTPD
 libvlccore_la_SOURCES += $(SOURCES_libvlc_httpd)
 endif
@@ -253,6 +256,18 @@ SOURCES_libvlc_darwin = \
        posix/rand.c \
        $(NULL)
 
+SOURCES_libvlc_android = \
+       android/dirs.c \
+       android/thread.c \
+       posix/filesystem.c \
+       posix/plugin.c \
+       posix/timer.c \
+       posix/linux_cpu.c \
+       posix/linux_specific.c \
+       posix/specific.c \
+       posix/rand.c \
+       $(NULL)
+
 SOURCES_libvlc_linux = \
        posix/dirs.c \
        posix/filesystem.c \
@@ -269,7 +284,6 @@ SOURCES_libvlc_win32 = \
        win32/dirs.c \
        win32/filesystem.c \
        win32/plugin.c \
-       misc/rwlock.h \
        win32/thread.c \
        win32/specific.c \
        win32/winsock.c \
@@ -288,7 +302,6 @@ SOURCES_libvlc_os2 = \
        os2/dirs.c \
        os2/filesystem.c \
        os2/plugin.c \
-       misc/rwlock.h \
        os2/thread.c \
        os2/specific.c \
        os2/rand.c \
@@ -316,6 +329,7 @@ SOURCES_libvlc_common = \
        playlist/playlist_internal.h \
        playlist/art.c \
        playlist/art.h \
+       playlist/aout.c \
        playlist/thread.c \
        playlist/control.c \
        playlist/engine.c \
@@ -397,7 +411,6 @@ SOURCES_libvlc_common = \
        audio_output/input.c \
        audio_output/output.c \
        audio_output/volume.c \
-       audio_output/intf.c \
        osd/osd.c \
        osd/osd_text.c \
        network/getaddrinfo.c \