mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-30 14:46:31 +00:00
quagga: fix build with snmp support
Closes #3277 Quagga's snmp support tries to link with libcrypto from openssl by default. That's a bad no no since snmp might have ssl support disabled and openssl won't be around. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
a85971a68b
commit
fd2bd9e3df
9
CHANGES
9
CHANGES
@ -11,10 +11,10 @@
|
|||||||
libcgicc, libdaemon, libdrm, libevent, libgail, libglib2,
|
libcgicc, libdaemon, libdrm, libevent, libgail, libglib2,
|
||||||
libgpg-error, libmicrohttpd, librsvg, libsoup, libxcp,
|
libgpg-error, libmicrohttpd, librsvg, libsoup, libxcp,
|
||||||
makedevs, matchbox-fakekey, matchbox-startup-monitor, mdadm,
|
makedevs, matchbox-fakekey, matchbox-startup-monitor, mdadm,
|
||||||
metacity, mpd, nasm, nfs-utils, olsr, popt, pthread-stubs,
|
metacity, mpd, nasm, nfs-utils, olsr, openssl, popt,
|
||||||
quagga, rpm, samba, sdl, sdl_gfx, sdl_image, sdl_mixer,
|
pthread-stubs, quagga, rpm, samba, sdl, sdl_gfx, sdl_image,
|
||||||
sdl_sound, sdl_ttf, squashfs, taglib, tcpreplay, tiff,
|
sdl_mixer, sdl_sound, sdl_ttf, squashfs, taglib, tcpreplay,
|
||||||
wpa_supplicant, xcb-util,
|
tiff, wpa_supplicant, xcb-util,
|
||||||
xdriver_xf86-input-{acepad,aiptek,evdev,joystick,keyboard},
|
xdriver_xf86-input-{acepad,aiptek,evdev,joystick,keyboard},
|
||||||
xdriver_xf86-input-{mouse,synaptics,void},
|
xdriver_xf86-input-{mouse,synaptics,void},
|
||||||
xdriver_xf86-video-{chips,dummy,geode,glide,intel,nv,wsfb},
|
xdriver_xf86-video-{chips,dummy,geode,glide,intel,nv,wsfb},
|
||||||
@ -27,6 +27,7 @@
|
|||||||
Issues resolved (http://bugs.uclibc.org):
|
Issues resolved (http://bugs.uclibc.org):
|
||||||
|
|
||||||
#3205: Failing chmod when running "make" in buildroot (openssl)...
|
#3205: Failing chmod when running "make" in buildroot (openssl)...
|
||||||
|
#3277: quagga fails to build with SNMP support
|
||||||
#3283: See why nfs-utils needs fakeroot, and convert to autotools
|
#3283: See why nfs-utils needs fakeroot, and convert to autotools
|
||||||
|
|
||||||
2011.02-rc1, Released February 14th, 2011:
|
2011.02-rc1, Released February 14th, 2011:
|
||||||
|
@ -67,6 +67,10 @@ endif
|
|||||||
ifeq ($(BR2_PACKAGE_QUAGGA_SNMP),y)
|
ifeq ($(BR2_PACKAGE_QUAGGA_SNMP),y)
|
||||||
QUAGGA_CONF_OPT+=--enable-snmp
|
QUAGGA_CONF_OPT+=--enable-snmp
|
||||||
QUAGGA_DEPENDENCIES+=netsnmp
|
QUAGGA_DEPENDENCIES+=netsnmp
|
||||||
|
# SNMP support tries -lcrypto by default, disable it if we ain't got openssl
|
||||||
|
ifneq ($(BR2_PACKAGE_OPENSSL),y)
|
||||||
|
QUAGGA_CONF_OPT+=--without-crypto
|
||||||
|
endif
|
||||||
else
|
else
|
||||||
QUAGGA_CONF_OPT+=--disable-snmp
|
QUAGGA_CONF_OPT+=--disable-snmp
|
||||||
endif
|
endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user