Changeset 160ee0af0a6b352013a75abbc4ecc636e8c679d2

Show
Ignore:
Timestamp:
02/20/08 22:21:33 (5 months ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1203542493 +0000
git-parent:

[a101ffbddf09bbadca3578585920a4c8322ee561]

git-author:
Rémi Denis-Courmont <rem@videolan.org> 1203542493 +0000
Message:

Rewrite the mmap input as a separate access

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • configure.ac

    rde64258 r160ee0a  
    470470 
    471471dnl Check for usual libc functions 
    472 AC_CHECK_FUNCS([gettimeofday strtod strtol strtof strtoll strtoull strsep isatty vasprintf asprintf swab sigrelse getpwuid memalign posix_memalign if_nametoindex atoll getenv putenv setenv gmtime_r ctime_r localtime_r lrintf daemon scandir fork bsearch lstat strlcpy strdup strndup strnlen atof lldiv mmap]) 
     472AC_CHECK_FUNCS([gettimeofday strtod strtol strtof strtoll strtoull strsep isatty vasprintf asprintf swab sigrelse getpwuid memalign posix_memalign if_nametoindex atoll getenv putenv setenv gmtime_r ctime_r localtime_r lrintf daemon scandir fork bsearch lstat strlcpy strdup strndup strnlen atof lldiv]) 
    473473AC_CHECK_FUNCS(strcasecmp,,[AC_CHECK_FUNCS(stricmp)]) 
    474474AC_CHECK_FUNCS(strncasecmp,,[AC_CHECK_FUNCS(strnicmp)]) 
     
    477477 
    478478AH_BOTTOM([#include <vlc_fixups.h>]) 
     479 
     480AC_CHECK_FUNC(mmap, [VLC_ADD_PLUGINS([access_mmap])]) 
    479481 
    480482AS_IF([test "${SYS}" = "linux"], [ 
  • modules/access/Modules.am

    r36868ee r160ee0a  
    55 
    66SOURCES_access_file = file.c 
     7SOURCES_access_mmap = mmap.c 
    78SOURCES_access_directory = directory.c 
    89SOURCES_access_dv = dv.c