mirror of
https://github.com/rakshasa/rtorrent.git
synced 2026-08-05 17:52:29 +00:00
8598873627
rak::regex was a hand-rolled glob matcher supporting only '*' wildcards. Replace it with the standard POSIX fnmatch() which supports the same glob patterns plus '?' and '[...]' character classes. - src/core/manager.cc: use fnmatch for directory entry filtering - src/command_download.cc: use fnmatch for file path pattern matching - Makefile.am: remove rak/regex.h from EXTRA_DIST - rak/regex.h: deleted, no longer needed
15 lines
190 B
Makefile
15 lines
190 B
Makefile
SUBDIRS = \
|
|
doc \
|
|
src \
|
|
test
|
|
|
|
nobase_dist_pkgdata_DATA = \
|
|
lua/rtorrent.lua
|
|
|
|
EXTRA_DIST= \
|
|
scripts/checks.m4 \
|
|
scripts/common.m4 \
|
|
scripts/attributes.m4
|
|
|
|
ACLOCAL_AMFLAGS = -I scripts
|