diff options
author | Stefan Tomanek <stefan.tomanek@wertarbyte.de> | 2010-11-05 12:39:46 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2010-11-05 13:59:10 +0100 |
commit | fbf51696ef1435cf358943c671ac55944ccec26c (patch) | |
tree | 1098fbb75838685a5f0d8b1b5471c510a8f8abe1 /src/Makefile.inc | |
parent | 1786950759a0429bde29822c3c879fdbf305f24d (diff) |
save metadata to extended file attributes
It is often convinient to track back the source of a once downloaded
file; this patch makes curl store the source URL and other metadata
alongside the retrieved file by using the extended attributes (if
supported by the file system and enabled by --xattr).
Diffstat (limited to 'src/Makefile.inc')
-rw-r--r-- | src/Makefile.inc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Makefile.inc b/src/Makefile.inc index 34dfd45a0..058c6d28d 100644 --- a/src/Makefile.inc +++ b/src/Makefile.inc @@ -15,11 +15,12 @@ CURLX_ONES = $(top_srcdir)/lib/strtoofft.c \ $(top_srcdir)/lib/nonblock.c CURL_CFILES = main.c hugehelp.c urlglob.c writeout.c writeenv.c \ - getpass.c homedir.c curlutil.c os-specific.c + getpass.c homedir.c curlutil.c os-specific.c xattr.c CURL_HFILES = hugehelp.h setup.h config-win32.h config-mac.h \ config-riscos.h urlglob.h version.h os-specific.h \ - writeout.h writeenv.h getpass.h homedir.h curlutil.h + writeout.h writeenv.h getpass.h homedir.h curlutil.h \ + xattr.h curl_SOURCES = $(CURL_CFILES) $(CURLX_ONES) $(CURL_HFILES) |