Skip to content

Commit 88438f3

Browse files
committed
- Use more spelled out Windows platform names, "windows-x86-32bit"
- Removed the "-noinstall-" part of the Windows ZIP package name, like is done for the server - Updated copyright year in README - Updated copyright year in modified files, ignoring header updates - Added a few missing copyright headers - Added a missing "Use is subject to license terms" - Removed "win/releasedXml"
1 parent 24bc60e commit 88438f3

31 files changed

+79
-213
lines changed

CMakeLists.txt

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -197,9 +197,9 @@ INCLUDE(${CMAKE_SOURCE_DIR}/FindMySQL.cmake)
197197
IF(NOT CONNECTOR_PLATFORM)
198198
IF(WIN32)
199199
IF(CMAKE_SIZEOF_VOID_P MATCHES 8)
200-
SET(CONNECTOR_PLATFORM "winx64")
200+
SET(CONNECTOR_PLATFORM "windows-x86-64bit")
201201
ELSE(CMAKE_SIZEOF_VOID_P MATCHES 8)
202-
SET(CONNECTOR_PLATFORM "win32")
202+
SET(CONNECTOR_PLATFORM "windows-x86-32bit")
203203
ENDIF(CMAKE_SIZEOF_VOID_P MATCHES 8)
204204
ELSE(WIN32)
205205
SET(CONNECTOR_PLATFORM "unknown")
@@ -244,12 +244,11 @@ SET(CPACK_RESOURCE_FILE_README "${CMAKE_SOURCE_DIR}/README")
244244
SET(CPACK_RESOURCE_FILE_INSTALL "${CMAKE_SOURCE_DIR}/INSTALL")
245245
SET(CPACK_SOURCE_PACKAGE_FILE_NAME "${CPACK_PACKAGE_NAME}-${MYSQLCPPCONN_VERSION}")
246246
SET(CPACK_PACKAGE_INSTALL_DIRECTORY "${CPACK_PACKAGE_NAME}-${MYSQLCPPCONN_VERSION}-${CONNECTOR_PLATFORM}")
247+
SET(CPACK_PACKAGE_FILE_NAME "${CPACK_PACKAGE_INSTALL_DIRECTORY}")
247248
IF(WIN32)
248249
SET(CPACK_GENERATOR "ZIP")
249-
SET(CPACK_PACKAGE_FILE_NAME "${CPACK_PACKAGE_NAME}-noinstall-${MYSQLCPPCONN_VERSION}-${CONNECTOR_PLATFORM}")
250250
ELSE(WIN32)
251251
SET(CPACK_GENERATOR "TGZ")
252-
SET(CPACK_PACKAGE_FILE_NAME "${CPACK_PACKAGE_INSTALL_DIRECTORY}")
253252
ENDIF(WIN32)
254253

255254
INSTALL(FILES

README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ copy of the software is released under the version 2 of
77
the GNU General Public License. MySQL Connector/C++ is
88
brought to you by Oracle.
99

10-
Copyright (c) 2008, 2013, Oracle and/or its affiliates. All rights reserved.
10+
Copyright (c) 2008, 2014, Oracle and/or its affiliates. All rights reserved.
1111

1212
License information can be found in the COPYING file.
1313

cppconn/config.h.cm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
2+
Copyright (c) 2009, 2012, Oracle and/or its affiliates. All rights reserved.
33

44
The MySQL Connector/C++ is licensed under the terms of the GPLv2
55
<http://www.gnu.org/licenses/old-licenses/gpl-2.0.html>, like most

driver/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2008, 2013, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2008, 2014, Oracle and/or its affiliates. All rights reserved.
33
#
44
# The MySQL Connector/C++ is licensed under the terms of the GPLv2
55
# <http://www.gnu.org/licenses/old-licenses/gpl-2.0.html>, like most

driver/mysql_connection.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (c) 2008, 2013, Oracle and/or its affiliates. All rights reserved.
2+
Copyright (c) 2008, 2014, Oracle and/or its affiliates. All rights reserved.
33
44
The MySQL Connector/C++ is licensed under the terms of the GPLv2
55
<http://www.gnu.org/licenses/old-licenses/gpl-2.0.html>, like most

driver/mysql_prepared_statement.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (c) 2008, 2011, Oracle and/or its affiliates. All rights reserved.
2+
Copyright (c) 2008, 2012, Oracle and/or its affiliates. All rights reserved.
33
44
The MySQL Connector/C++ is licensed under the terms of the GPLv2
55
<http://www.gnu.org/licenses/old-licenses/gpl-2.0.html>, like most

driver/mysql_prepared_statement.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (c) 2008, 2011, Oracle and/or its affiliates. All rights reserved.
2+
Copyright (c) 2008, 2012, Oracle and/or its affiliates. All rights reserved.
33
44
The MySQL Connector/C++ is licensed under the terms of the GPLv2
55
<http://www.gnu.org/licenses/old-licenses/gpl-2.0.html>, like most

driver/mysql_uri.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
2+
Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
33
44
The MySQL Connector/C++ is licensed under the terms of the GPLv2
55
<http://www.gnu.org/licenses/old-licenses/gpl-2.0.html>, like most

driver/mysql_util.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (c) 2008, 2011, Oracle and/or its affiliates. All rights reserved.
2+
Copyright (c) 2008, 2012, Oracle and/or its affiliates. All rights reserved.
33
44
The MySQL Connector/C++ is licensed under the terms of the GPLv2
55
<http://www.gnu.org/licenses/old-licenses/gpl-2.0.html>, like most

driver/mysql_warning.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (c) 2008, 2011, Oracle and/or its affiliates. All rights reserved.
2+
Copyright (c) 2008, 2012, Oracle and/or its affiliates. All rights reserved.
33
44
The MySQL Connector/C++ is licensed under the terms of the GPLv2
55
<http://www.gnu.org/licenses/old-licenses/gpl-2.0.html>, like most

0 commit comments

Comments
 (0)