Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix build error when using libmariadbclient. #7

Merged
merged 1 commit into from
Oct 11, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions _mysql.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE.
*/

#include "my_config.h"
#include "mysql.h"
#include "mysqld_error.h"

#include "Python.h"
#if PY_MAJOR_VERSION >= 3
#define IS_PY3K
Expand All @@ -37,9 +41,6 @@ PERFORMANCE OF THIS SOFTWARE.

#include "bytesobject.h"
#include "structmember.h"
#include "my_config.h"
#include "mysql.h"
#include "mysqld_error.h"
#include "errmsg.h"

#define MyAlloc(s,t) (s *) t.tp_alloc(&t,0)
Expand Down