Changeset a8d1e07d87dc60c6488f2c12a2e788e692530097
- Timestamp:
- 29/07/07 10:26:56
(1 year ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1185697616 +0000
- git-parent:
[7171c2bd928390313d2fe4f72db68cf6103eefa5]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1185697616 +0000
- Message:
Remove vlc_symbols - refs #297.
Maintaining an API with this was pretty much impossible.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r7171c2b |
ra8d1e07 |
|
| 22 | 22 | bootstrap \ |
|---|
| 23 | 23 | toolbox \ |
|---|
| 24 | | vlc-api.pl \ |
|---|
| 25 | 24 | vlc-config.in.in \ |
|---|
| 26 | 25 | vlc.fedora.spec \ |
|---|
| … | … | |
| 1030 | 1029 | echo "# main sources" ; \ |
|---|
| 1031 | 1030 | find include src -name '*.[chm]' -o -name '*.[ch]pp' \ |
|---|
| 1032 | | | grep -v '\(vlc_symbols\|misc/modules_\|src/misc/revision.c\|modules/builtin.h\)' \ |
|---|
| | 1031 | | grep -v '\(misc/modules_\|src/misc/revision.c\|modules/builtin.h\)' \ |
|---|
| 1033 | 1032 | | sort ; \ |
|---|
| 1034 | 1033 | echo "" ; \ |
|---|
| … | … | |
| 1059 | 1058 | # Enforce Mac OS X deployment target environment variable |
|---|
| 1060 | 1059 | ############################################################################### |
|---|
| 1061 | | macosx-sdk: Makefile.in $(HEADERS_include) vlc-config vlc-api.pl |
|---|
| | 1060 | macosx-sdk: Makefile.in $(HEADERS_include) vlc-config |
|---|
| 1062 | 1061 | export MACOSX_DEPLOYMENT_TARGET=$(MACOSX_DEPLOYMENT_TARGET) |
|---|
| 1063 | 1062 | |
|---|
| r9eae287 |
ra8d1e07 |
|
| 1017 | 1017 | VLC_INTERNAL( long, vlc_telldir, ( void * ) ); |
|---|
| 1018 | 1018 | #else |
|---|
| 1019 | | struct dirent; /* forward declaration for vlc_symbols.h */ |
|---|
| 1020 | 1019 | # if !defined(__PLUGIN__) |
|---|
| 1021 | 1020 | # define vlc_opendir NULL |
|---|
| … | … | |
| 1223 | 1222 | * Additional vlc stuff |
|---|
| 1224 | 1223 | *****************************************************************************/ |
|---|
| 1225 | | #ifndef HAVE_SHARED_LIBVLC |
|---|
| 1226 | | # ifdef HAVE_DIRENT_H |
|---|
| 1227 | | # include <dirent.h> /* for DIR typedef in vlc_symbols.h */ |
|---|
| 1228 | | # endif |
|---|
| 1229 | | # include "vlc_symbols.h" |
|---|
| 1230 | | #endif |
|---|
| 1231 | 1224 | #include "vlc_os_specific.h" |
|---|
| 1232 | 1225 | #include "vlc_messages.h" |
|---|