]> git.sesse.net Git - vlc/blobdiff - src/Makefile.am
vlc_path2ri: set errno to disthinguish errors (refs #10792)
[vlc] / src / Makefile.am
index 2e3da576f68f1ca1c8d597334a997746e26bd140..842fc732db21e6b61e391ee1cd9eeb14368b9b60 100644 (file)
@@ -23,6 +23,7 @@ pluginsincludedir = $(pkgincludedir)/plugins
 
 pluginsinclude_HEADERS = \
        ../include/vlc_access.h \
+       ../include/vlc_addons.h \
        ../include/vlc_aout.h \
        ../include/vlc_aout_volume.h \
        ../include/vlc_arrays.h \
@@ -163,7 +164,7 @@ EXTRA_DIST += libvlc_win32_rc.rc.in
 lib_LTLIBRARIES = libvlccore.la
 
 AM_CPPFLAGS = $(INCICONV) $(IDN_CFLAGS) \
-       -DMODULE_STRING=\"main\" \
+       -DMODULE_STRING=\"core\" \
        -DLOCALEDIR=\"$(localedir)\" \
        -DPKGDATADIR=\"$(vlcdatadir)\" \
        -DPKGLIBDIR=\"$(vlclibdir)\"
@@ -181,7 +182,7 @@ libvlccore_la_LDFLAGS = \
        $(LDFLAGS_libvlccore) \
        -no-undefined \
        -export-symbols $(srcdir)/libvlccore.sym \
-       -version-info 5:0:0
+       -version-info 7:0:0
 libvlccore_la_LIBADD = $(LIBS_libvlccore) \
        ../compat/libcompat.la \
        $(LTLIBINTL) $(LTLIBICONV) \
@@ -245,19 +246,23 @@ endif
 endif
 
 SOURCES_libvlc_darwin = \
-       posix/darwin_dirs.c \
+       darwin/dirs.c \
        posix/filesystem.c \
        posix/plugin.c \
-       posix/thread.c \
+       darwin/thread.c \
        posix/timer.c \
-       posix/darwin_specific.c \
+       darwin/specific.c \
        posix/rand.c \
+       darwin/error.c \
+       darwin/netconf.c \
        $(NULL)
 
 SOURCES_libvlc_android = \
        android/dirs.c \
        android/thread.c \
+       android/error.c \
        posix/filesystem.c \
+       android/netconf.c \
        posix/plugin.c \
        posix/timer.c \
        posix/linux_cpu.c \
@@ -268,6 +273,7 @@ SOURCES_libvlc_android = \
 
 SOURCES_libvlc_linux = \
        posix/dirs.c \
+       posix/error.c \
        posix/filesystem.c \
        posix/netconf.c \
        posix/plugin.c \
@@ -281,6 +287,7 @@ SOURCES_libvlc_linux = \
 
 SOURCES_libvlc_win32 = \
        win32/dirs.c \
+       win32/error.c \
        win32/filesystem.c \
        win32/netconf.c \
        win32/plugin.c \
@@ -300,7 +307,9 @@ SOURCES_libvlc_symbian = \
 SOURCES_libvlc_os2 = \
        os2/getaddrinfo.c \
        os2/dirs.c \
+       darwin/error.c \
        os2/filesystem.c \
+       os2/netconf.c \
        os2/plugin.c \
        os2/thread.c \
        os2/specific.c \
@@ -309,6 +318,7 @@ SOURCES_libvlc_os2 = \
 
 SOURCES_libvlc_other = \
        posix/dirs.c \
+       posix/error.c \
        posix/filesystem.c \
        posix/netconf.c \
        posix/thread.c \
@@ -466,6 +476,7 @@ SOURCES_libvlc_common = \
        misc/xml.c \
        extras/libc.c \
        extras/tdestroy.c \
+       misc/addons.c \
        misc/filter.c \
        misc/filter_chain.c \
        misc/http_auth.c \