Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 26 Sep 2020 06:51:32 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r550106 - in head/misc/librepo: . files
Message-ID:  <202009260651.08Q6pWxI065811@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202009260651.08Q6pWxI065811>