Changeset 7cf574445a92ad4be1d237beff532c545f291766

Show
Ignore:
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
  • modules/demux/Modules.am

    r74e39ff r7cf5744  
    4949    librawvid_plugin.la \ 
    5050    libreal_plugin.la \ 
    51     librtp_plugin.la \ 
    5251    libsmf_plugin.la \ 
    5352    libsubtitle_plugin.la \ 
     
    6160    $(NULL) 
    6261 
     62if HAVE_LIBGCRYPT 
    6363# RTP plugin 
     64libvlc_LTLIBRARIES += \ 
     65    librtp_plugin.la 
    6466librtp_plugin_la_SOURCES = \ 
    6567    rtp.c rtp.h rtpsession.c 
     
    6971librtp_plugin_la_DEPENDENCIES = \ 
    7072    $(top_builddir)/libs/srtp/libvlc_srtp.la 
     73endif