welcome_copyright_notice.h 1.2 KB

123456789101112131415161718192021222324252627282930
  1. /* Copyright (c) 2011, 2016, Oracle and/or its affiliates.
  2. Copyright (c) 2011, 2016, MariaDB
  3. This program is free software; you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License as published by
  5. the Free Software Foundation; version 2 of the License.
  6. This program is distributed in the hope that it will be useful,
  7. but WITHOUT ANY WARRANTY; without even the implied warranty of
  8. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  9. GNU General Public License for more details.
  10. You should have received a copy of the GNU General Public License
  11. along with this program; if not, write to the Free Software
  12. Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
  13. #ifndef _welcome_copyright_notice_h_
  14. #define _welcome_copyright_notice_h_
  15. #define COPYRIGHT_NOTICE_CURRENT_YEAR "2016"
  16. /*
  17. This define specifies copyright notice which is displayed by every MySQL
  18. program on start, or on help screen.
  19. */
  20. #define ORACLE_WELCOME_COPYRIGHT_NOTICE(first_year) \
  21. "Copyright (c) " first_year ", " COPYRIGHT_NOTICE_CURRENT_YEAR \
  22. ", Oracle, MariaDB Corporation Ab and others.\n"
  23. #endif /* _welcome_copyright_notice_h_ */