aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGunter Knauf <gk@gknw.de>2008-01-24 14:10:59 +0000
committerGunter Knauf <gk@gknw.de>2008-01-24 14:10:59 +0000
commite32251369893c8ed6d1b3da5aadd704abd93a56a (patch)
tree762a4ee17c1f367fff0efd0b9d13bd60b129ecc8
parent6fa72e6417005b33c4754c0afdb52f43d22813bf (diff)
use copyright define instead of hardcoded string.
-rw-r--r--lib/libcurl.rc3
-rw-r--r--src/curl.rc3
2 files changed, 4 insertions, 2 deletions
diff --git a/lib/libcurl.rc b/lib/libcurl.rc
index ee850f131..161a45df7 100644
--- a/lib/libcurl.rc
+++ b/lib/libcurl.rc
@@ -52,7 +52,8 @@ BEGIN
VALUE "OriginalFilename", "libcurl.dll\0"
VALUE "ProductName", "The cURL library\0"
VALUE "ProductVersion", LIBCURL_VERSION "\0"
- VALUE "LegalCopyright", "Copyright 1996-2008 by Daniel Stenberg. http://curl.haxx.se/docs/copyright.html\0"
+ VALUE "LegalCopyright", "© " LIBCURL_COPYRIGHT "\0"
+ VALUE "License", "http://curl.haxx.se/docs/copyright.html\0"
END
END
diff --git a/src/curl.rc b/src/curl.rc
index b0f67ecb0..a184a1500 100644
--- a/src/curl.rc
+++ b/src/curl.rc
@@ -52,7 +52,8 @@ BEGIN
VALUE "OriginalFilename", "curl.exe\0"
VALUE "ProductName", "The cURL executable\0"
VALUE "ProductVersion", CURL_VERSION "\0"
- VALUE "LegalCopyright", "Copyright 1996-2008 by Daniel Stenberg. http://curl.haxx.se/docs/copyright.html\0"
+ VALUE "LegalCopyright", "© " LIBCURL_COPYRIGHT "\0"
+ VALUE "License", "http://curl.haxx.se/docs/copyright.html\0"
END
END