svn commit: r550106 - in head/misc/librepo: . files

Yuri Victorovich yuri at FreeBSD.org
Sat Sep 26 06:51:33 UTC 2020


Author: yuri
Date: Sat Sep 26 06:51:32 2020
New Revision: 550106
URL: https://svnweb.freebsd.org/changeset/ports/550106

Log:
  misc/librepo: Fix missing symbol problem

Modified:
  head/misc/librepo/Makefile
  head/misc/librepo/files/xattr.c

Modified: head/misc/librepo/Makefile
==============================================================================
--- head/misc/librepo/Makefile	Sat Sep 26 03:19:59 2020	(r550105)
+++ head/misc/librepo/Makefile	Sat Sep 26 06:51:32 2020	(r550106)
@@ -2,6 +2,7 @@
 
 PORTNAME=	librepo
 DISTVERSION=	1.12.1
+PORTREVISION=	1
 CATEGORIES=	misc
 
 MAINTAINER=	yuri at FreeBSD.org

Modified: head/misc/librepo/files/xattr.c
==============================================================================
--- head/misc/librepo/files/xattr.c	Sat Sep 26 03:19:59 2020	(r550105)
+++ head/misc/librepo/files/xattr.c	Sat Sep 26 06:51:32 2020	(r550106)
@@ -2,6 +2,7 @@
 #include <sys/types.h>
 #include <sys/extattr.h>
 
+#include <assert.h>
 
 ///
 /// xattr is a Linux kernel API that has to be mapped to the FreeBSD API


More information about the svn-ports-all mailing list