Changeset 4836
- Timestamp:
- Aug 5, 2012, 2:24:53 PM (7 years ago)
- Location:
- zzuf/trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
zzuf/trunk/configure.ac
r4809 r4836 66 66 67 67 AC_CHECK_FUNCS(setenv waitpid setrlimit gettimeofday fork kill pipe _pipe) 68 AC_CHECK_FUNCS(regexec regwexec) 68 69 AC_CHECK_FUNCS(dup dup2 ftello fseeko _IO_getc getline getdelim fgetln map_fd memalign posix_memalign aio_read accept bind connect socket readv pread recv recvfrom recvmsg mmap valloc sigaction getpagesize) 69 70 AC_CHECK_FUNCS(getc_unlocked getchar_unlocked fgetc_unlocked fread_unlocked fgets_unlocked) -
zzuf/trunk/msvc/config.h
r4834 r4836 82 82 #define HAVE_RECVFROM 1 83 83 /* #undef HAVE_RECVMSG */ 84 /* #undef HAVE_REGEX _H*/84 /* #undef HAVE_REGEXEC */ 85 85 #define HAVE_REGEX_H 1 86 #define HAVE_REGWEXEC 1 86 87 #define HAVE_REOPENFILE 1 87 88 /* #undef HAVE_SETENV */ -
zzuf/trunk/src/common/fd.c
r4832 r4836 200 200 int _zz_mustwatch(char const *file) 201 201 { 202 #if defined HAVE_REGEX _H202 #if defined HAVE_REGEXEC 203 203 if(has_include && regexec(&re_include, file, 0, NULL, 0) == REG_NOMATCH) 204 204 return 0; /* not included: ignore */ … … 215 215 int _zz_mustwatchw(wchar_t const *file) 216 216 { 217 #if defined HAVE_REG EX_H217 #if defined HAVE_REGWEXEC 218 218 if(has_include && regwexec(&re_include, file, 0, NULL, 0) == REG_NOMATCH) 219 219 return 0; /* not included: ignore */ -
zzuf/trunk/src/common/fd.h
r4832 r4836 14 14 * fd.h: file descriptor functions 15 15 */ 16 17 #include <stdint.h> 18 #include <wchar.h> 16 19 17 20 extern void _zz_include(char const *);
Note: See TracChangeset
for help on using the changeset viewer.