add configure option '--disable-vty' to prevent building libosmovty

This commit is contained in:
Harald Welte 2010-05-29 11:49:51 +02:00
parent 237f6241f2
commit 544037700c
3 changed files with 10 additions and 0 deletions

View File

@ -44,6 +44,12 @@ AC_ARG_ENABLE(tests,
[enable_tests=0], [enable_tests=1])
AM_CONDITIONAL(ENABLE_TESTS, test "x$enable_tests" = "x1")
AC_ARG_ENABLE(vtyc,
[ --disable-vty Disable building VTY telnet interface ],
[enable_vty=0], [enable_vty=1])
AM_CONDITIONAL(ENABLE_VTY, test "x$enable_vty" = "x1")
AC_OUTPUT(
libosmocore.pc
libosmovty.pc

View File

@ -1 +1,3 @@
if ENABLE_VTY
SUBDIRS = vty
endif

View File

@ -5,7 +5,9 @@ LIBVERSION=0:0:0
INCLUDES = $(all_includes) -I$(top_srcdir)/include
AM_CFLAGS = -fPIC -Wall
if ENABLE_VTY
lib_LTLIBRARIES = libosmovty.la
libosmovty_la_SOURCES = buffer.c command.c vty.c vector.c utils.c \
telnet_interface.c logging_vty.c
endif