From: George Joseph Date: Wed, 8 Sep 2021 14:36:40 +0000 (-0600) Subject: res_snmp: Add -fPIC to _ASTCFLAGS X-Git-Tag: 18.7.0-rc1~14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2806a45034faf1e7218c3e1998378419d1a17a8b;p=thirdparty%2Fasterisk.git res_snmp: Add -fPIC to _ASTCFLAGS With gcc 11, res/res_snmp.c and res/snmp/agent.c need the -fPIC option added to its _ASTCFLAGS. ASTERISK-29634 Change-Id: I34649c85e075fd954e578378fabf798c3f038f50 --- diff --git a/res/Makefile b/res/Makefile index ae090fab01..45ef749a3f 100644 --- a/res/Makefile +++ b/res/Makefile @@ -71,6 +71,8 @@ $(call MOD_ADD_C,res_stasis_recording,stasis_recording/stored.c) $(call MOD_ADD_C,res_stir_shaken,$(wildcard res_stir_shaken/*.c)) res_parking.o: _ASTCFLAGS+=$(AST_NO_FORMAT_TRUNCATION) +snmp/agent.o: _ASTCFLAGS+=-fPIC +res_snmp.o: _ASTCFLAGS+=-fPIC # Dependencies for res_ari_*.so are generated, so they're in this file include ari.make