You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MariaDB 10.2.8 made some changes to header files layout, among others my_config.h was moved to the server/ subdirectory. Since then builds of MySQLdb1 end with fatal error of being unable to locate the header file, like e.g.:
x86_64-pc-linux-gnu-gcc -O2 -pipe -fno-strict-aliasing -fPIC \
-Dversion_info=(1,2,3,'final',0) -D__version__=1.2.3 \
-I/usr/include/mysql -I/usr/include/mysql/.. -I/usr/include/python2.7 \
-c _mysql.c -o /some/path/MySQL-python-1.2.3-python2_7/temp.linux-x86_64-2.7/_mysql.o
_mysql.c:36:10: fatal error: my_config.h: No such file or directory
#include "my_config.h"
The text was updated successfully, but these errors were encountered:
MariaDB 10.2.8 made some changes to header files layout, among others
my_config.h
was moved to theserver/
subdirectory. Since then builds of MySQLdb1 end with fatal error of being unable to locate the header file, like e.g.:The text was updated successfully, but these errors were encountered: