From 0d6979dcac4b1c11b27cc06d89fa13c4f49d8228 Mon Sep 17 00:00:00 2001 From: Alexander Zhirov Date: Wed, 7 May 2025 03:25:33 +0300 Subject: [PATCH] =?UTF-8?q?=D0=92=D1=8B=D1=8F=D0=B2=D0=BB=D0=B5=D0=BD?= =?UTF-8?q?=D0=B0=20=D0=BF=D1=80=D0=B8=D1=87=D0=B8=D0=BD=D0=B0=20=D0=BF?= =?UTF-8?q?=D0=B0=D0=B4=D0=B5=D0=BD=D0=B8=D1=8F=20=D1=81=D0=B5=D1=80=D0=B2?= =?UTF-8?q?=D0=B8=D1=81=D0=B0=20-=20=D0=B1=D1=8B=D0=BB=20=D1=83=D0=B1?= =?UTF-8?q?=D1=80=D0=B0=D0=BD=20=D1=84=D0=BB=D0=B0=D0=B3=20=D0=B2=D0=BA?= =?UTF-8?q?=D0=BB=D1=8E=D1=87=D0=B5=D0=BD=D0=B8=D1=8F=20=D0=B4=D0=BE=D0=BF?= =?UTF-8?q?=D0=BE=D0=BB=D0=BD=D0=B8=D1=82=D0=B5=D0=BB=D1=8C=D0=BD=D1=8B?= =?UTF-8?q?=D1=85=20=D0=BF=D1=80=D0=BE=D0=B2=D0=B5=D1=80=D0=BE=D0=BA=20?= =?UTF-8?q?=D0=B1=D0=B5=D0=B7=D0=BE=D0=BF=D0=B0=D1=81=D0=BD=D0=BE=D1=81?= =?UTF-8?q?=D1=82=D0=B8=20=D0=BF=D0=B5=D1=80=D0=B5=D0=BF=D0=BE=D0=BB=D0=BD?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=B1=D1=83=D1=84=D0=B5=D1=80=D0=B0?= =?UTF-8?q?=20(FORTIFY=5FSOURCE)=20=D0=BF=D1=80=D0=B8=20=D0=BA=D0=BE=D0=BC?= =?UTF-8?q?=D0=BF=D0=B8=D0=BB=D1=8F=D1=86=D0=B8=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/package.yml b/package.yml index ef4dd8c..449f6cc 100644 --- a/package.yml +++ b/package.yml @@ -1,6 +1,6 @@ name : openslp version : 2.0.0 -release : 4 +release : 5 source : # The official repository has moved from SourceForge to GitHub. # No releases have been made since 2013, but there is an abundance of commits with fixes. @@ -9,7 +9,7 @@ source : homepage : http://www.openslp.org license : BSD component : system.utils -summary : Service Location Protocol (SLP) is an Internet Engineering Task Force (IETF) standards track protocol that provides a framework to allow networking applications to discover the existence, location, and configuration of networked services in enterprise networks. +summary : Service Location Protocol (SLP) is an Internet Engineering Task Force (IETF) standards track protocol. description: | Service Location Protocol (SLP) is an Internet Engineering Task Force (IETF) standards track protocol that provides a framework to allow networking applications to discover the existence, location, and configuration of networked services in enterprise networks. setup : | @@ -20,8 +20,10 @@ setup : | autoreconf -f -i - # Optimization flags for the `configure` macro compilation break the service's stability, so the default call is used. - ./configure \ + # The `FORTIFY_SOURCE` optimization flag disrupts the service's stability, so the build is performed without it. + export CFLAGS="${CFLAGS/-D_FORTIFY_SOURCE=2/}" + + %configure \ --prefix=/usr \ --sbindir=/usr/bin \ --sysconfdir=/etc/openslp \