mirror of
https://github.com/FRRouting/frr.git
synced 2025-04-30 13:37:17 +02:00
build: support for "development build"
* configure.ac Add the --enable-dev-build flag. It controls the DEV_BUILD define for autoconf and automake, which can be used to conditionally build in code that is only intended for development.. Signed-off-by: Avneesh Sachdev <avneesh@sproute.com>
This commit is contained in:
parent
0e957b367b
commit
3b8282a8e8
|
@ -329,6 +329,9 @@ if test $ac_cv_lib_json_c_json_object_get = no; then
|
|||
fi
|
||||
fi
|
||||
|
||||
AC_ARG_ENABLE([dev_build],
|
||||
AS_HELP_STRING([--enable-dev-build], [build for development]))
|
||||
|
||||
if test x"${enable_gcc_rdynamic}" != x"no" ; then
|
||||
if test x"${enable_gcc_rdynamic}" = x"yes" -o x"$COMPILER" = x"GCC"; then
|
||||
LDFLAGS="${LDFLAGS} -rdynamic"
|
||||
|
@ -397,6 +400,11 @@ if test "${enable_fpm}" = "yes"; then
|
|||
AC_DEFINE(HAVE_FPM,,Forwarding Plane Manager support)
|
||||
fi
|
||||
|
||||
if test "x${enable_dev_build}" = "xyes"; then
|
||||
AC_DEFINE(DEV_BUILD,,Build for development)
|
||||
fi
|
||||
AM_CONDITIONAL([DEV_BUILD], [test "x$enable_dev_build" = "xyes"])
|
||||
|
||||
#
|
||||
# Logic for protobuf support.
|
||||
#
|
||||
|
|
Loading…
Reference in a new issue