Changeset 7cf574445a92ad4be1d237beff532c545f291766
- Timestamp:
- 06/30/08 22:35:26
(2 months ago)
- Author:
- Antoine Cellerier <dionoea@videolan.org>
- git-committer:
- Antoine Cellerier <dionoea@videolan.org> 1214858126 +0200
- git-parent:
[9f2fb28d7e4899695ccf5a92a3bba3396ebd2e7f]
- git-author:
- Antoine Cellerier <dionoea@videolan.org> 1214857667 +0200
- Message:
Don't build the rtp module when you don't have gcrypt (I hope it still
works when you have it :p)
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r74e39ff |
r7cf5744 |
|
| 49 | 49 | librawvid_plugin.la \ |
|---|
| 50 | 50 | libreal_plugin.la \ |
|---|
| 51 | | librtp_plugin.la \ |
|---|
| 52 | 51 | libsmf_plugin.la \ |
|---|
| 53 | 52 | libsubtitle_plugin.la \ |
|---|
| … | … | |
| 61 | 60 | $(NULL) |
|---|
| 62 | 61 | |
|---|
| | 62 | if HAVE_LIBGCRYPT |
|---|
| 63 | 63 | # RTP plugin |
|---|
| | 64 | libvlc_LTLIBRARIES += \ |
|---|
| | 65 | librtp_plugin.la |
|---|
| 64 | 66 | librtp_plugin_la_SOURCES = \ |
|---|
| 65 | 67 | rtp.c rtp.h rtpsession.c |
|---|
| … | … | |
| 69 | 71 | librtp_plugin_la_DEPENDENCIES = \ |
|---|
| 70 | 72 | $(top_builddir)/libs/srtp/libvlc_srtp.la |
|---|
| | 73 | endif |
|---|