svn commit: r327872 - head/databases/mariadb-server

Bryan Drewery bdrewery at FreeBSD.org
Sun Sep 22 14:18:45 UTC 2013


Author: bdrewery
Date: Sun Sep 22 14:18:45 2013
New Revision: 327872
URL: http://svnweb.freebsd.org/changeset/ports/327872

Log:
  - Mark broken on 10
  
    manager.c:133:10: error: too few arguments to function call, expected 6, have 5
    hp = my_gethostbyname_r(host,&tmp_hostent,buff2,sizeof(buff2),
    ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    ./include/my_net.h:113:74: note: expanded from macro 'my_gethostbyname_r'
  #define my_gethostbyname_r(A,B,C,D,E) gethostbyname_r((A),(B),(C),(D),(E))
    ~~~~~~~~~~~~~~~ ^
    /usr/include/netdb.h:250:1: note: 'gethostbyname_r' declared here
    int gethostbyname_r(const char *, struct hostent *, char *, size_t,
    ^
    1 warning and 1 error generated.
    *** Error code 1
  
  PR:		ports/181833
  Submitted by:	Geoffroy Desvernay <dgeo at centrale-marseille.fr> (maintainer)

Modified:
  head/databases/mariadb-server/Makefile

Modified: head/databases/mariadb-server/Makefile
==============================================================================
--- head/databases/mariadb-server/Makefile	Sun Sep 22 14:12:58 2013	(r327871)
+++ head/databases/mariadb-server/Makefile	Sun Sep 22 14:18:45 2013	(r327872)
@@ -86,6 +86,10 @@ OPTIONS_DEFAULT+=	ARIADB ARCHIVE BLACKHO
 NO_STAGE=	yes
 .include <bsd.port.options.mk>
 
+.if ${OSVERSION} >= 1000000
+BROKEN=		Does not build under FreeBSD 10
+.endif
+
 .if ${OSVERSION} > 900000 && ${PORT_OPTIONS:MSTATIC}
 BROKEN=	WITH_STATIC is not functional on 9-current
 .endif


More information about the svn-ports-all mailing list