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 \