Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 27 Mar 2023 07:39:42 +0000
From:      bugzilla-noreply@freebsd.org
To:        ports-bugs@FreeBSD.org
Subject:   [Bug 270370] net/babeld: update to 1.12.2
Message-ID:  <bug-270370-7788-OIraU4WgDS@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-270370-7788@https.bugs.freebsd.org/bugzilla/>
References:  <bug-270370-7788@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D270370

--- Comment #4 from Nuno Teixeira <eduardo@FreeBSD.org> ---
(In reply to Hung-Yi Chen from comment #3)

>From ${WRKSRC}/Makefile:

---
CDEBUGFLAGS =3D -Os -g -Wall
CFLAGS =3D $(CDEBUGFLAGS) $(DEFINES) $(EXTRA_DEFINES)
---

Compiling still not respect CFLAGS:
---
cc  -Os -g -Wall   -c net.c -o net.o
---

Sugestion is to use:
---
MAKE_ARGS=3D      CFLAGS+=3D"${CFLAGS}"
---
result:
---
cc  -O2 -pipe  -fstack-protector-strong -fno-strict-aliasing  -c net.c -o n=
et.o
---
and if really needed debug compiling there is the possibility of adding a D=
EBUG
option.

While we are here:

- Switch PORTVERSION -> DISTVERSION

Could you please test it?

--=20
You are receiving this mail because:
You are the assignee for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-270370-7788-OIraU4WgDS>