Changeset a8d1e07d87dc60c6488f2c12a2e788e692530097

Show
Ignore:
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
  • Makefile.am

    r7171c2b ra8d1e07  
    2222    bootstrap \ 
    2323    toolbox \ 
    24     vlc-api.pl \ 
    2524    vlc-config.in.in \ 
    2625    vlc.fedora.spec \ 
     
    10301029      echo "# main sources" ; \ 
    10311030      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\)' \ 
    10331032        | sort ; \ 
    10341033      echo "" ; \ 
     
    10591058# Enforce Mac OS X deployment target environment variable 
    10601059############################################################################### 
    1061 macosx-sdk: Makefile.in $(HEADERS_include) vlc-config vlc-api.pl 
     1060macosx-sdk: Makefile.in $(HEADERS_include) vlc-config 
    10621061    export MACOSX_DEPLOYMENT_TARGET=$(MACOSX_DEPLOYMENT_TARGET) 
    10631062 
  • include/vlc_common.h

    r9eae287 ra8d1e07  
    10171017    VLC_INTERNAL( long, vlc_telldir, ( void * ) ); 
    10181018#else 
    1019     struct dirent;  /* forward declaration for vlc_symbols.h */ 
    10201019#   if !defined(__PLUGIN__) 
    10211020#       define vlc_opendir  NULL 
     
    12231222 * Additional vlc stuff 
    12241223 *****************************************************************************/ 
    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 
    12311224#include "vlc_os_specific.h" 
    12321225#include "vlc_messages.h"