]> git.sesse.net Git - vlc/commitdiff
Create a modules-like directory for libraries
authorRémi Denis-Courmont <rem@videolan.org>
Sat, 10 Mar 2007 14:29:14 +0000 (14:29 +0000)
committerRémi Denis-Courmont <rem@videolan.org>
Sat, 10 Mar 2007 14:29:14 +0000 (14:29 +0000)
that are not plugins neither in the core

49 files changed:
Makefile.am
configure.ac
libs/Makefile.am [new file with mode: 0644]
libs/loader/Makefile.am [moved from loader/Makefile.am with 100% similarity]
libs/loader/afl.c [moved from loader/afl.c with 100% similarity]
libs/loader/com.h [moved from loader/com.h with 100% similarity]
libs/loader/driver.c [moved from loader/driver.c with 100% similarity]
libs/loader/driver.h [moved from loader/driver.h with 100% similarity]
libs/loader/ext.c [moved from loader/ext.c with 100% similarity]
libs/loader/ext.h [moved from loader/ext.h with 100% similarity]
libs/loader/kludge.c [moved from loader/kludge.c with 100% similarity]
libs/loader/ldt_keeper.c [moved from loader/ldt_keeper.c with 100% similarity]
libs/loader/ldt_keeper.h [moved from loader/ldt_keeper.h with 100% similarity]
libs/loader/loader.h [moved from loader/loader.h with 100% similarity]
libs/loader/module.c [moved from loader/module.c with 100% similarity]
libs/loader/pe_image.c [moved from loader/pe_image.c with 100% similarity]
libs/loader/pe_resource.c [moved from loader/pe_resource.c with 100% similarity]
libs/loader/qtx/qtxsdk/components.h [moved from loader/qtx/qtxsdk/components.h with 100% similarity]
libs/loader/registry.c [moved from loader/registry.c with 100% similarity]
libs/loader/registry.h [moved from loader/registry.h with 100% similarity]
libs/loader/resource.c [moved from loader/resource.c with 100% similarity]
libs/loader/stubs.s [moved from loader/stubs.s with 100% similarity]
libs/loader/vfl.c [moved from loader/vfl.c with 100% similarity]
libs/loader/win32.c [moved from loader/win32.c with 100% similarity]
libs/loader/win32.h [moved from loader/win32.h with 100% similarity]
libs/loader/wine/avifmt.h [moved from loader/wine/avifmt.h with 100% similarity]
libs/loader/wine/basetsd.h [moved from loader/wine/basetsd.h with 100% similarity]
libs/loader/wine/debugtools.h [moved from loader/wine/debugtools.h with 100% similarity]
libs/loader/wine/driver.h [moved from loader/wine/driver.h with 100% similarity]
libs/loader/wine/heap.h [moved from loader/wine/heap.h with 100% similarity]
libs/loader/wine/mmreg.h [moved from loader/wine/mmreg.h with 100% similarity]
libs/loader/wine/module.h [moved from loader/wine/module.h with 100% similarity]
libs/loader/wine/msacm.h [moved from loader/wine/msacm.h with 100% similarity]
libs/loader/wine/msacmdrv.h [moved from loader/wine/msacmdrv.h with 100% similarity]
libs/loader/wine/pe_image.h [moved from loader/wine/pe_image.h with 100% similarity]
libs/loader/wine/poppack.h [moved from loader/wine/poppack.h with 100% similarity]
libs/loader/wine/pshpack1.h [moved from loader/wine/pshpack1.h with 100% similarity]
libs/loader/wine/pshpack2.h [moved from loader/wine/pshpack2.h with 100% similarity]
libs/loader/wine/vfw.h [moved from loader/wine/vfw.h with 100% similarity]
libs/loader/wine/winbase.h [moved from loader/wine/winbase.h with 100% similarity]
libs/loader/wine/windef.h [moved from loader/wine/windef.h with 100% similarity]
libs/loader/wine/winerror.h [moved from loader/wine/winerror.h with 100% similarity]
libs/loader/wine/winestring.h [moved from loader/wine/winestring.h with 100% similarity]
libs/loader/wine/winnt.h [moved from loader/wine/winnt.h with 100% similarity]
libs/loader/wine/winreg.h [moved from loader/wine/winreg.h with 100% similarity]
libs/loader/wine/winuser.h [moved from loader/wine/winuser.h with 100% similarity]
libs/loader/wineacm.h [moved from loader/wineacm.h with 100% similarity]
libs/loader/wrapper.S [moved from loader/wrapper.S with 100% similarity]
libs/loader/wrapper.h [moved from loader/wrapper.h with 100% similarity]

index 5ed349ea29c739477f3ba28d20b783e6d626fb52..5790052068d97cabce610aa9944ef5daddc64c23 100644 (file)
@@ -12,7 +12,7 @@ NULL =
 #  - . should come before mozilla/bindings because the plugin needs libvlc.a
 #  - po should come before . because VLC.app needs the pofiles
 #  - loader should come before modules because some plugins need it
-SUBDIRS = intl loader src modules po . mozilla bindings activex share m4 doc
+SUBDIRS = intl libs src modules po . mozilla bindings activex share m4 doc
 DIST_SUBDIRS = $(SUBDIRS)  ipkg
 
 EXTRA_DIST = \
index c36104cbdda79c636272788dbe2037a59029e8f9..69bd5c91d37944cb236760eadf4f867e5431aefe 100644 (file)
@@ -5304,12 +5304,12 @@ AC_ARG_ENABLE(loader,
 AM_CONDITIONAL(LOADER, [test "${enable_loader}" = "yes"])
 AS_IF([test "${enable_loader}" = "yes"],
   [ VLC_ADD_PLUGINS([dmo])
-    VLC_ADD_CPPFLAGS([dmo],[-I../../../@top_srcdir@/loader])
-    VLC_ADD_LDFLAGS([dmo],[../../../loader/libloader.la -lpthread])
-    VLC_ADD_CPPFLAGS([quicktime],[-I../../@top_srcdir@/loader])
-    VLC_ADD_LDFLAGS([quicktime],[../../loader/libloader.la -lpthread])
-    VLC_ADD_CPPFLAGS([realaudio],[-I../../@top_srcdir@/loader -DLOADER])
-    VLC_ADD_LDFLAGS([realaudio],[../../loader/libloader.la -ldl -lpthread])
+    VLC_ADD_CPPFLAGS([dmo],[-I../../../@top_srcdir@/libs/loader])
+    VLC_ADD_LDFLAGS([dmo],[../../../libs/loader/libloader.la -lpthread])
+    VLC_ADD_CPPFLAGS([quicktime],[-I../../@top_srcdir@/libs/loader])
+    VLC_ADD_LDFLAGS([quicktime],[../../libs/loader/libloader.la -lpthread])
+    VLC_ADD_CPPFLAGS([realaudio],[-I../../@top_srcdir@/libs/loader -DLOADER])
+    VLC_ADD_LDFLAGS([realaudio],[../../libs/loader/libloader.la -ldl -lpthread])
   ])
 
 dnl
@@ -5771,7 +5771,8 @@ AC_CONFIG_FILES([
   doc/Makefile
   intl/Makefile
   ipkg/Makefile
-  loader/Makefile
+  libs/Makefile
+  libs/loader/Makefile
   modules/Makefile
   mozilla/Makefile
   m4/Makefile
diff --git a/libs/Makefile.am b/libs/Makefile.am
new file mode 100644 (file)
index 0000000..d889c23
--- /dev/null
@@ -0,0 +1,2 @@
+SUBDIRS = loader
+
similarity index 100%
rename from loader/Makefile.am
rename to libs/loader/Makefile.am
similarity index 100%
rename from loader/afl.c
rename to libs/loader/afl.c
similarity index 100%
rename from loader/com.h
rename to libs/loader/com.h
similarity index 100%
rename from loader/driver.c
rename to libs/loader/driver.c
similarity index 100%
rename from loader/driver.h
rename to libs/loader/driver.h
similarity index 100%
rename from loader/ext.c
rename to libs/loader/ext.c
similarity index 100%
rename from loader/ext.h
rename to libs/loader/ext.h
similarity index 100%
rename from loader/kludge.c
rename to libs/loader/kludge.c
similarity index 100%
rename from loader/ldt_keeper.c
rename to libs/loader/ldt_keeper.c
similarity index 100%
rename from loader/ldt_keeper.h
rename to libs/loader/ldt_keeper.h
similarity index 100%
rename from loader/loader.h
rename to libs/loader/loader.h
similarity index 100%
rename from loader/module.c
rename to libs/loader/module.c
similarity index 100%
rename from loader/pe_image.c
rename to libs/loader/pe_image.c
similarity index 100%
rename from loader/registry.c
rename to libs/loader/registry.c
similarity index 100%
rename from loader/registry.h
rename to libs/loader/registry.h
similarity index 100%
rename from loader/resource.c
rename to libs/loader/resource.c
similarity index 100%
rename from loader/stubs.s
rename to libs/loader/stubs.s
similarity index 100%
rename from loader/vfl.c
rename to libs/loader/vfl.c
similarity index 100%
rename from loader/win32.c
rename to libs/loader/win32.c
similarity index 100%
rename from loader/win32.h
rename to libs/loader/win32.h
similarity index 100%
rename from loader/wine/heap.h
rename to libs/loader/wine/heap.h
similarity index 100%
rename from loader/wine/mmreg.h
rename to libs/loader/wine/mmreg.h
similarity index 100%
rename from loader/wine/msacm.h
rename to libs/loader/wine/msacm.h
similarity index 100%
rename from loader/wine/vfw.h
rename to libs/loader/wine/vfw.h
similarity index 100%
rename from loader/wine/winnt.h
rename to libs/loader/wine/winnt.h
similarity index 100%
rename from loader/wineacm.h
rename to libs/loader/wineacm.h
similarity index 100%
rename from loader/wrapper.S
rename to libs/loader/wrapper.S
similarity index 100%
rename from loader/wrapper.h
rename to libs/loader/wrapper.h