Changeset 5c1474d6324e6b2d250ac773231a12e3f96987e2
- Timestamp:
- 05/01/08 22:00:05
(4 months ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1209672005 +0300
- git-parent:
[de2b4589a921647a13a6332a234e7e3236ef0fa8]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1209672005 +0300
- Message:
Install minimum set of plugin headers.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r77d07c4 |
r5c1474d |
|
| 21 | 21 | |
|---|
| 22 | 22 | pkgincludedir = $(includedir)/vlc |
|---|
| | 23 | pluginsincludedir = $(pkgincludedir)/plugins |
|---|
| 23 | 24 | |
|---|
| 24 | 25 | dist_pkginclude_HEADERS = \ |
|---|
| … | … | |
| 35 | 36 | $(NULL) |
|---|
| 36 | 37 | |
|---|
| 37 | | noinst_HEADERS = $(HEADERS_include) |
|---|
| 38 | | |
|---|
| 39 | | HEADERS_include = \ |
|---|
| | 38 | pluginsinclude_HEADERS = \ |
|---|
| | 39 | ../include/main.h \ |
|---|
| | 40 | ../include/vlc_arrays.h \ |
|---|
| | 41 | ../include/vlc_common.h \ |
|---|
| | 42 | ../include/vlc_config.h \ |
|---|
| | 43 | ../include/vlc_configuration.h \ |
|---|
| | 44 | ../include/vlc_messages.h \ |
|---|
| | 45 | ../include/vlc_modules.h \ |
|---|
| | 46 | ../include/vlc_modules_macros.h \ |
|---|
| | 47 | ../include/vlc_mtime.h \ |
|---|
| | 48 | ../include/vlc_objects.h \ |
|---|
| | 49 | ../include/vlc_threads.h \ |
|---|
| | 50 | ../include/vlc_threads_funcs.h |
|---|
| | 51 | ../include/vlc_variables.h \ |
|---|
| | 52 | $(NULL) |
|---|
| | 53 | |
|---|
| | 54 | noinst_HEADERS = \ |
|---|
| 40 | 55 | ../include/iso_lang.h \ |
|---|
| 41 | | ../include/main.h \ |
|---|
| 42 | 56 | ../include/mmx.h \ |
|---|
| 43 | 57 | ../include/vlc_access.h \ |
|---|
| 44 | 58 | ../include/vlc_acl.h \ |
|---|
| 45 | 59 | ../include/vlc_aout.h \ |
|---|
| 46 | | ../include/vlc_arrays.h \ |
|---|
| 47 | 60 | ../include/vlc_bits.h \ |
|---|
| 48 | 61 | ../include/vlc_block.h \ |
|---|
| … | … | |
| 52 | 65 | ../include/vlc_codec_synchro.h \ |
|---|
| 53 | 66 | ../include/vlc_codecs.h \ |
|---|
| 54 | | ../include/vlc_common.h \ |
|---|
| 55 | | ../include/vlc_config.h \ |
|---|
| 56 | 67 | ../include/vlc_config_cat.h \ |
|---|
| 57 | | ../include/vlc_configuration.h \ |
|---|
| 58 | 68 | ../include/vlc_demux.h \ |
|---|
| 59 | 69 | ../include/vlc_devices.h \ |
|---|
| … | … | |
| 71 | 81 | ../include/vlc_keys.h \ |
|---|
| 72 | 82 | ../include/vlc_md5.h \ |
|---|
| 73 | | ../include/vlc_messages.h \ |
|---|
| 74 | 83 | ../include/vlc_meta.h \ |
|---|
| 75 | | ../include/vlc_modules.h \ |
|---|
| 76 | | ../include/vlc_modules_macros.h \ |
|---|
| 77 | | ../include/vlc_mtime.h \ |
|---|
| 78 | 84 | ../include/vlc_network.h \ |
|---|
| 79 | | ../include/vlc_objects.h \ |
|---|
| 80 | 85 | ../include/vlc_osd.h \ |
|---|
| 81 | 86 | ../include/vlc_pgpkey.h \ |
|---|
| … | … | |
| 88 | 93 | ../include/vlc_streaming.h \ |
|---|
| 89 | 94 | ../include/vlc_strings.h \ |
|---|
| 90 | | ../include/vlc_threads.h \ |
|---|
| 91 | | ../include/vlc_threads_funcs.h \ |
|---|
| 92 | 95 | ../include/vlc_tls.h \ |
|---|
| 93 | 96 | ../include/vlc_update.h \ |
|---|
| 94 | 97 | ../include/vlc_url.h \ |
|---|
| 95 | | ../include/vlc_variables.h \ |
|---|
| 96 | 98 | ../include/vlc_vlm.h \ |
|---|
| 97 | 99 | ../include/vlc_vod.h \ |
|---|
| … | … | |
| 487 | 489 | done |
|---|
| 488 | 490 | $(srcdir)/check_headers $(dist_pkginclude_HEADERS) $(pkginclude_HEADERS) |
|---|
| | 491 | # Hmm, this test should not fail: |
|---|
| | 492 | -$(srcdir)/check_headers $(pluginsinclude_HEADERS) |
|---|
| 489 | 493 | |
|---|
| 490 | 494 | FORCE: |
|---|
| r473906a |
r5c1474d |
|
| 7 | 7 | Description: VLC media player plugin interface |
|---|
| 8 | 8 | Version: @VERSION@ |
|---|
| 9 | | Cflags: -I${includedir}/vlc/plugin \ |
|---|
| | 9 | Cflags: -I${includedir}/vlc/plugins \ |
|---|
| 10 | 10 | -D_FILE_OFFSET_BITS=64 \ |
|---|
| 11 | 11 | -D__USE_UNIX98 \ |
|---|