jamiaccount: split account management

Change-Id: I669bfcc6f0e3f7bd60c56f0046f8701ad14541ce
This commit is contained in:
Adrien Béraud
2019-06-19 11:47:57 -04:00
committed by Sébastien Blin
parent 25a6bd3fa8
commit 75b134cf17
19 changed files with 2834 additions and 1921 deletions

View File

@ -421,16 +421,16 @@ AC_DEFINE_UNQUOTED([HAVE_RINGNS], `if test "x$enable_ringns" != "xno"; then echo
dnl nodejs module
AC_ARG_WITH([nodejs], AS_HELP_STRING([--with-nodejs], [Enable NodeJS module]))
AM_CONDITIONAL([RING_NODEJS], test "x$enable_nodejs" != "xno", [Define if you use the NodeJS module])
AM_CONDITIONAL([ENABLE_NODEJS], test "x$enable_nodejs" != "xno", [Define if you use the NodeJS module])
AC_DEFINE_UNQUOTED([HAVE_NODEJS], `if test "x$enable_ringns" != "xno"; then echo 1; else echo 0; fi`, [Define if you use the NodeJS module])
AS_IF([test "x$with_nodejs" = "xyes"], [
AC_PATH_PROG(SWIG, swig, "")
AS_AC_EXPAND(SBINDIR, $sbindir)
AC_SUBST(SBINDIR)
AC_CONFIG_FILES([bin/nodejs/Makefile])
AM_CONDITIONAL(RING_NODEJS, true)
AM_CONDITIONAL(ENABLE_NODEJS, true)
],
AM_CONDITIONAL(RING_NODEJS, false)
AM_CONDITIONAL(ENABLE_NODEJS, false)
);
AS_IF([test "x$enable_ringns" != "xno"], [