Diff for /libaitrpc/configure.in between versions 1.34.2.2 and 1.36

version 1.34.2.2, 2015/07/02 17:52:51 version 1.36, 2015/07/22 20:01:46
Line 2 Line 2
 # $Author$  # $Author$
 # $Id$  # $Id$
 #  #
AC_INIT(libaitrpc, 9.1, misho@elwix.org)AC_INIT(libaitrpc, 9.2, misho@elwix.org)
 AC_CONFIG_SRCDIR([src/aitrpc.c])  AC_CONFIG_SRCDIR([src/aitrpc.c])
 AC_CONFIG_HEADERS([inc/config.h])  AC_CONFIG_HEADERS([inc/config.h])
   
Line 72  ONLY_CLI=no Line 72  ONLY_CLI=no
 AC_MSG_CHECKING(Build only RPC client)  AC_MSG_CHECKING(Build only RPC client)
 AC_ARG_ENABLE(server,   AC_ARG_ENABLE(server, 
         [  --disable-server        Disable RPC server ],           [  --disable-server        Disable RPC server ], 
        [ if [[ "$enableval" = "no" ]]; then ONLY_CLI="yes"; fi ],)        [ if [[ "$enableval" = "no" ]]; then 
                 ONLY_CLI="yes"
                 AC_DEFINE(ONLY_CLI, 1, [ Disable RPC server ])
           else
                 AC_DEFINE(ONLY_CLI, 0, [ Disable RPC server ])
           fi ], AC_DEFINE(ONLY_CLI, 0, [ Disable RPC server ]))
 AC_MSG_RESULT($ONLY_CLI)  AC_MSG_RESULT($ONLY_CLI)
 AC_SUBST(ONLY_CLI)  AC_SUBST(ONLY_CLI)
   

Removed from v.1.34.2.2  
changed lines
  Added in v.1.36


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>