Browse Source

Update copyright lines in files changed this year

coverity_scan
Daniel Scharrer 13 years ago
parent
commit
9b6502061a
  1. 18
      cmake/CXX11Check.cmake
  2. 2
      cmake/CompileCheck.cmake
  3. 18
      cmake/StyleCheck.cmake
  4. 3
      cmake/cpplint.py
  5. 2
      src/cli/debug.cpp
  6. 2
      src/crypto/adler32.cpp
  7. 2
      src/crypto/checksum.cpp
  8. 2
      src/crypto/crc32.cpp
  9. 2
      src/crypto/md5.cpp
  10. 2
      src/crypto/md5.hpp
  11. 2
      src/crypto/sha1.cpp
  12. 2
      src/crypto/sha1.hpp
  13. 2
      src/loader/exereader.hpp
  14. 2
      src/loader/offsets.hpp
  15. 2
      src/setup/component.cpp
  16. 2
      src/setup/component.hpp
  17. 2
      src/setup/data.hpp
  18. 2
      src/setup/delete.cpp
  19. 2
      src/setup/directory.cpp
  20. 2
      src/setup/directory.hpp
  21. 2
      src/setup/file.cpp
  22. 2
      src/setup/file.hpp
  23. 2
      src/setup/filename.cpp
  24. 2
      src/setup/filename.hpp
  25. 2
      src/setup/header.hpp
  26. 2
      src/setup/icon.cpp
  27. 2
      src/setup/icon.hpp
  28. 2
      src/setup/info.cpp
  29. 2
      src/setup/info.hpp
  30. 2
      src/setup/ini.cpp
  31. 2
      src/setup/item.cpp
  32. 2
      src/setup/language.cpp
  33. 2
      src/setup/language.hpp
  34. 2
      src/setup/message.cpp
  35. 2
      src/setup/message.hpp
  36. 2
      src/setup/permission.cpp
  37. 2
      src/setup/registry.cpp
  38. 2
      src/setup/run.cpp
  39. 2
      src/setup/task.cpp
  40. 2
      src/setup/type.cpp
  41. 2
      src/setup/type.hpp
  42. 2
      src/setup/version.hpp
  43. 2
      src/setup/windows.cpp
  44. 2
      src/stream/chunk.cpp
  45. 2
      src/stream/exefilter.hpp
  46. 2
      src/stream/file.cpp
  47. 2
      src/stream/lzma.cpp
  48. 2
      src/stream/slice.cpp
  49. 2
      src/util/boostfs_compat.hpp
  50. 2
      src/util/console.cpp
  51. 2
      src/util/console.hpp
  52. 2
      src/util/endian.hpp
  53. 2
      src/util/enum.hpp

18
cmake/CXX11Check.cmake

@ -1,4 +1,22 @@
# Copyright (C) 2013 Daniel Scharrer
#
# This software is provided 'as-is', without any express or implied
# warranty. In no event will the author(s) be held liable for any damages
# arising from the use of this software.
#
# Permission is granted to anyone to use this software for any purpose,
# including commercial applications, and to alter it and redistribute it
# freely, subject to the following restrictions:
#
# 1. The origin of this software must not be misrepresented; you must not
# claim that you wrote the original software. If you use this software
# in a product, an acknowledgment in the product documentation would be
# appreciated but is not required.
# 2. Altered source versions must be plainly marked as such, and must not be
# misrepresented as being the original software.
# 3. This notice may not be removed or altered from any source distribution.
include(CheckCXXSourceCompiles)
include(CompileCheck)

2
cmake/CompileCheck.cmake

@ -1,5 +1,5 @@
# Copyright (C) 2011-2012 Daniel Scharrer
# Copyright (C) 2011-2013 Daniel Scharrer
#
# This software is provided 'as-is', without any express or implied
# warranty. In no event will the author(s) be held liable for any damages

18
cmake/StyleCheck.cmake

@ -1,4 +1,22 @@
# Copyright (C) 2013 Daniel Scharrer
#
# This software is provided 'as-is', without any express or implied
# warranty. In no event will the author(s) be held liable for any damages
# arising from the use of this software.
#
# Permission is granted to anyone to use this software for any purpose,
# including commercial applications, and to alter it and redistribute it
# freely, subject to the following restrictions:
#
# 1. The origin of this software must not be misrepresented; you must not
# claim that you wrote the original software. If you use this software
# in a product, an acknowledgment in the product documentation would be
# appreciated but is not required.
# 2. Altered source versions must be plainly marked as such, and must not be
# misrepresented as being the original software.
# 3. This notice may not be removed or altered from any source distribution.
find_package(PythonInterp)
unset(STYLE_FILTER)

3
cmake/cpplint.py vendored

@ -1,6 +1,6 @@
#!/usr/bin/python2.4
#
# Note: this file has been adjusted to fit InnoExtract:
# Note: this file has been adjusted to fit innoextract:
# - adjusted include guard style
# - hacked so that build/include doesn't complain about #include "Configure.h" lines
# - Allow lines that are only whitespace.
@ -10,6 +10,7 @@
# - Don't require two spaces between code and comments
# - Warn if spaces are used for identation.
# - Allow //! comments
# - Allo struct name { typedef a type; }; one-liners
#
# Copyright (c) 2009 Google Inc. All rights reserved.
#

2
src/cli/debug.cpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011-2012 Daniel Scharrer
* Copyright (C) 2011-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

2
src/crypto/adler32.cpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Daniel Scharrer
* Copyright (C) 2011-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

2
src/crypto/checksum.cpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Daniel Scharrer
* Copyright (C) 2011-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

2
src/crypto/crc32.cpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Daniel Scharrer
* Copyright (C) 2011-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

2
src/crypto/md5.cpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Daniel Scharrer
* Copyright (C) 2011-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

2
src/crypto/md5.hpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Daniel Scharrer
* Copyright (C) 2011-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

2
src/crypto/sha1.cpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Daniel Scharrer
* Copyright (C) 2011-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

2
src/crypto/sha1.hpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Daniel Scharrer
* Copyright (C) 2011-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

2
src/loader/exereader.hpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011-2012 Daniel Scharrer
* Copyright (C) 2011-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

2
src/loader/offsets.hpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011-2012 Daniel Scharrer
* Copyright (C) 2011-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

2
src/setup/component.cpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Daniel Scharrer
* Copyright (C) 2011-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

2
src/setup/component.hpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Daniel Scharrer
* Copyright (C) 2011-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

2
src/setup/data.hpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Daniel Scharrer
* Copyright (C) 2011-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

2
src/setup/delete.cpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Daniel Scharrer
* Copyright (C) 2011-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

2
src/setup/directory.cpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011-2012 Daniel Scharrer
* Copyright (C) 2011-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

2
src/setup/directory.hpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Daniel Scharrer
* Copyright (C) 2011-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

2
src/setup/file.cpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011-2012 Daniel Scharrer
* Copyright (C) 2011-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

2
src/setup/file.hpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Daniel Scharrer
* Copyright (C) 2011-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

2
src/setup/filename.cpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2012 Daniel Scharrer
* Copyright (C) 2012-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

2
src/setup/filename.hpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2012 Daniel Scharrer
* Copyright (C) 2012-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

2
src/setup/header.hpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011-2012 Daniel Scharrer
* Copyright (C) 2011-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

2
src/setup/icon.cpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011-2012 Daniel Scharrer
* Copyright (C) 2011-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

2
src/setup/icon.hpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011-2012 Daniel Scharrer
* Copyright (C) 2011-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

2
src/setup/info.cpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011-2012 Daniel Scharrer
* Copyright (C) 2011-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

2
src/setup/info.hpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Daniel Scharrer
* Copyright (C) 2011-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

2
src/setup/ini.cpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011-2012 Daniel Scharrer
* Copyright (C) 2011-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

2
src/setup/item.cpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Daniel Scharrer
* Copyright (C) 2011-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

2
src/setup/language.cpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Daniel Scharrer
* Copyright (C) 2011-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

2
src/setup/language.hpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Daniel Scharrer
* Copyright (C) 2011-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

2
src/setup/message.cpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Daniel Scharrer
* Copyright (C) 2011-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

2
src/setup/message.hpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Daniel Scharrer
* Copyright (C) 2011-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

2
src/setup/permission.cpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Daniel Scharrer
* Copyright (C) 2011-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

2
src/setup/registry.cpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011-2012 Daniel Scharrer
* Copyright (C) 2011-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

2
src/setup/run.cpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011-2012 Daniel Scharrer
* Copyright (C) 2011-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

2
src/setup/task.cpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Daniel Scharrer
* Copyright (C) 2011-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

2
src/setup/type.cpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Daniel Scharrer
* Copyright (C) 2011-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

2
src/setup/type.hpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Daniel Scharrer
* Copyright (C) 2011-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

2
src/setup/version.hpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Daniel Scharrer
* Copyright (C) 2011-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

2
src/setup/windows.cpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Daniel Scharrer
* Copyright (C) 2011-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

2
src/stream/chunk.cpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Daniel Scharrer
* Copyright (C) 2011-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

2
src/stream/exefilter.hpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Daniel Scharrer
* Copyright (C) 2011-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

2
src/stream/file.cpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Daniel Scharrer
* Copyright (C) 2011-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

2
src/stream/lzma.cpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Daniel Scharrer
* Copyright (C) 2011-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

2
src/stream/slice.cpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011-2012 Daniel Scharrer
* Copyright (C) 2011-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

2
src/util/boostfs_compat.hpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2012 Daniel Scharrer
* Copyright (C) 2012-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

2
src/util/console.cpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Daniel Scharrer
* Copyright (C) 2011-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

2
src/util/console.hpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Daniel Scharrer
* Copyright (C) 2011-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

2
src/util/endian.hpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011-2012 Daniel Scharrer
* Copyright (C) 2011-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

2
src/util/enum.hpp

@ -1,5 +1,5 @@
/*
* Copyright (C) 2011 Daniel Scharrer
* Copyright (C) 2011-2013 Daniel Scharrer
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the author(s) be held liable for any damages

Loading…
Cancel
Save