← Back to team overview

maria-developers team mailing list archive

Building MariaDB 10.3 on windows

 

Hi,
I'm new on this mailing list, so sorry if it's not the right place.
I'm trying to build MariaDB  10.3 on Windows 10 with Visual Studio Express 2014.
Compiling failed with many errors "fatal error C1189: #error: Macro definition of snprintf conflicts with Standard Library function declaration".
To correct this, in ma_global.h,  i  replaced line
	#define snprintf _snprintf
by
	#ifdef _MSC_VER
	#if _MSC_VER< 1900
	#define snprintf _snprintf
	#endif
	#else
	#define snprintf _snprintf
	#endif
and build success.

Best regards.
J.Brauge


-----Message d'origine-----
De : Maria-developers [mailto:maria-developers-bounces+j.brauge=qualiac.com@xxxxxxxxxxxxxxxxxxx] De la part de Sergei Golubchik
Envoyé : vendredi 4 novembre 2016 11:41
À : maria-developers@xxxxxxxxxxxxxxxxxxx
Objet : [Maria-developers] security spring cleaning in MariaDB org on github

Hi,

Now when Github has per-user ownership rights and suggests to migrate away from the legacy admin team

https://help.github.com/articles/migrating-your-previous-admin-teams-to-the-improved-organization-permissions/

we're performing some spring cleaning in this area.

The legacy admin team (named "Core") is removed. Most of its members lost admin access to the org. Currently only the MariaDB Foundation CEO and few board members (those, who actually have used admin access
recently) retained their admin rights.

Everyone who was in the Core team should still have write access to repositories, if you've found that it's not the case, please complain asap.

If you think you need admin access, please request it (again).
Note that
  - only members of the organization can have it, being in the
    Developers group is a plus
  - 2FA is required for all admins (and highly recommended for
    all other members)

Regards,
Sergei
Chief Architect MariaDB
and security@xxxxxxxxxxx

_______________________________________________
Mailing list: https://launchpad.net/~maria-developers
Post to     : maria-developers@xxxxxxxxxxxxxxxxxxx
Unsubscribe : https://launchpad.net/~maria-developers
More help   : https://help.launchpad.net/ListHelp


Follow ups