Disable building of export-libs

DHCP no longer needs export libs, stop building them.
This commit is contained in:
Petr Menšík 2019-07-31 16:46:11 +02:00
parent b4e74efbf2
commit fac5ed036c

View File

@ -19,7 +19,7 @@
%bcond_without JSON
%bcond_without DNSTAP
%bcond_without DLZ
%bcond_without EXPORT_LIBS
%bcond_with EXPORT_LIBS
# Legacy GeoIP support
%bcond_with GEOIP
# New MaxMind GeoLite support
@ -820,6 +820,7 @@ sed -e "/^\s*include(/ d" -e 's/^-- use //' \
fi;
popd
%if %{with EXPORT_LIBS}
pushd export-libs
make unit
e=$?
@ -828,6 +829,7 @@ sed -e "/^\s*include(/ d" -e 's/^-- use //' \
exit $e;
fi;
popd
%endif
%endif
@ -1540,6 +1542,7 @@ fi;
* Wed Jul 24 2019 Petr Menšík <pemensik@redhat.com> - 32:9.11.9-1
- Update to 9.11.9
- Add GeoLite2 support
- Disable export-libs
* Wed Jul 24 2019 Petr Menšík <pemensik@redhat.com> - 32:9.11.8-2
- Use monotonic time in export library (#1732883)