Changeset 160ee0af0a6b352013a75abbc4ecc636e8c679d2
- 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
| rde64258 |
r160ee0a |
|
| 470 | 470 | |
|---|
| 471 | 471 | dnl 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]) |
|---|
| | 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]) |
|---|
| 473 | 473 | AC_CHECK_FUNCS(strcasecmp,,[AC_CHECK_FUNCS(stricmp)]) |
|---|
| 474 | 474 | AC_CHECK_FUNCS(strncasecmp,,[AC_CHECK_FUNCS(strnicmp)]) |
|---|
| … | … | |
| 477 | 477 | |
|---|
| 478 | 478 | AH_BOTTOM([#include <vlc_fixups.h>]) |
|---|
| | 479 | |
|---|
| | 480 | AC_CHECK_FUNC(mmap, [VLC_ADD_PLUGINS([access_mmap])]) |
|---|
| 479 | 481 | |
|---|
| 480 | 482 | AS_IF([test "${SYS}" = "linux"], [ |
|---|
| r36868ee |
r160ee0a |
|
| 5 | 5 | |
|---|
| 6 | 6 | SOURCES_access_file = file.c |
|---|
| | 7 | SOURCES_access_mmap = mmap.c |
|---|
| 7 | 8 | SOURCES_access_directory = directory.c |
|---|
| 8 | 9 | SOURCES_access_dv = dv.c |
|---|