Changeset d4da0d585c7f603889f9655320e6a28127a7666f
- Timestamp:
- 05/04/08 15:03:51
(2 months ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1209906231 +0300
- git-parent:
[48dd75b1d37ad9895c447e7a7fe779fce353030d]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1209906231 +0300
- Message:
Also if BUILD_LUA
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r4ebc647 |
rd4da0d5 |
|
| 1767 | 1767 | if test "x${have_lua}" = "xyes" ; then |
|---|
| 1768 | 1768 | AC_DEFINE(HAVE_LUA, 1, [Define if you have the lua library]) |
|---|
| 1769 | | VLC_ADD_PLUGIN([lua]) |
|---|
| 1770 | 1769 | VLC_ADD_LIBS([lua],[$LUA_LIBS]) |
|---|
| 1771 | 1770 | VLC_ADD_CFLAGS([lua],[$LUA_CFLAGS]) |
|---|
| r5d6e797 |
rd4da0d5 |
|
| 1 | | SUBDIRS = dummy lua memcpy notify testsuite playlist osd xml probe |
|---|
| | 1 | SUBDIRS = dummy memcpy notify testsuite playlist osd xml probe |
|---|
| | 2 | DIST_SUBDIRS = lua $(SUBDIRS) |
|---|
| | 3 | |
|---|
| | 4 | if BUILD_LUA |
|---|
| | 5 | SUBDIRS += lua |
|---|
| | 6 | endif |
|---|
| | 7 | |
|---|
| 2 | 8 | SOURCES_gtk_main = gtk_main.c |
|---|
| 3 | 9 | SOURCES_gnome_main = gtk_main.c |
|---|
| r87c76c2 |
rd4da0d5 |
|
| 1 | 1 | SOURCES_lua = playlist.c meta.c intf.c vlc.c vlc.h callbacks.c objects.c variables.c configuration.c net.c vlm.c httpd.c acl.c sd.c |
|---|
| | 2 | |
|---|
| | 3 | libvlc_LTLIBRARIES += liblua_plugin.la |
|---|