[vlc-commits] Only use vlc's memcpy on windows (also for 3dnow and mmxext)
Rafaël Carré
git at videolan.org
Sun Jul 1 16:00:53 CEST 2012
vlc | branch: master | Rafaël Carré <funman at videolan.org> | Sun Jul 1 16:00:25 2012 +0200| [d5c465574940377243d0640fc4b31487c1fbe666] | committer: Rafaël Carré
Only use vlc's memcpy on windows (also for 3dnow and mmxext)
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=d5c465574940377243d0640fc4b31487c1fbe666
---
modules/3dnow/Modules.am | 2 ++
modules/mmxext/Modules.am | 2 ++
2 files changed, 4 insertions(+)
diff --git a/modules/3dnow/Modules.am b/modules/3dnow/Modules.am
index 6ab1660..5c69f3e 100644
--- a/modules/3dnow/Modules.am
+++ b/modules/3dnow/Modules.am
@@ -3,6 +3,8 @@ libmemcpy3dn_plugin_la_CFLAGS = $(AM_CFLAGS)
libmemcpy3dn_plugin_la_LIBADD = $(AM_LIBADD)
libmemcpy3dn_plugin_la_DEPENDENCIES =
+if HAVE_WIN32
libvlc_LTLIBRARIES += \
libmemcpy3dn_plugin.la \
$(NULL)
+endif
diff --git a/modules/mmxext/Modules.am b/modules/mmxext/Modules.am
index 42c0088..a17fad8 100644
--- a/modules/mmxext/Modules.am
+++ b/modules/mmxext/Modules.am
@@ -3,6 +3,8 @@ libmemcpymmxext_plugin_la_CFLAGS = $(AM_CFLAGS)
libmemcpymmxext_plugin_la_LIBADD = $(AM_LIBADD)
libmemcpymmxext_plugin_la_DEPENDENCIES =
+if HAVE_WIN32
libvlc_LTLIBRARIES += \
libmemcpymmxext_plugin.la \
$(NULL)
+endif
More information about the vlc-commits
mailing list