|
| 1 | +/* |
| 2 | +# MySQL Connector/Python - MySQL driver written in Python. |
| 3 | +# Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved. |
| 4 | +
|
| 5 | +# MySQL Connector/Python is licensed under the terms of the GPLv2 |
| 6 | +# <http://www.gnu.org/licenses/old-licenses/gpl-2.0.html>, like most |
| 7 | +# MySQL Connectors. There are special exceptions to the terms and |
| 8 | +# conditions of the GPLv2 as it is applied to this software, see the |
| 9 | +# FOSS License Exception |
| 10 | +# <http://www.mysql.com/about/legal/licensing/foss-exception.html>. |
| 11 | +# |
| 12 | +# This program is free software; you can redistribute it and/or modify |
| 13 | +# it under the terms of the GNU General Public License as published by |
| 14 | +# the Free Software Foundation. |
| 15 | +# |
| 16 | +# This program is distributed in the hope that it will be useful, |
| 17 | +# but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 18 | +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 19 | +# GNU General Public License for more details. |
| 20 | +# |
| 21 | +# You should have received a copy of the GNU General Public License |
| 22 | +# along with this program; if not, write to the Free Software |
| 23 | +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 24 | +*/ |
| 25 | + |
| 26 | +/* |
| 27 | + Dummy file to force distutils to do C++ linkage. |
| 28 | +
|
| 29 | + The MySQL client library in MySQL Serer 5.6 and up and MySQL |
| 30 | + Connector/C 6.1 and up is really a C++ library, and then the MySQL |
| 31 | + Connector/Python driver needs to be linked using C++ to get the |
| 32 | + right C++ runtime library references. |
| 33 | +*/ |
| 34 | + |
| 35 | +int dummy_variable; |
0 commit comments