diff options
author | Christian Grothoff <christian@grothoff.org> | 2016-03-01 16:16:36 +0100 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2016-03-01 16:16:36 +0100 |
commit | 94059c0329921b422b1c7f27d946b0f550fe7978 (patch) | |
tree | cd4adc78a6d0687b5b6f12512184a9db1cc2d5aa /configure.ac | |
parent | 281d39c6afbd4133ab1f13acd0915276f45a9b57 (diff) |
mint->exchange renaming
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/configure.ac b/configure.ac index d7ef722d..d1345029 100644 --- a/configure.ac +++ b/configure.ac @@ -60,16 +60,16 @@ AM_CONDITIONAL(HAVE_POSTGRESQL, test x$postgres = xtrue) # Check for Taler's libtalerpq libtalerpq=0 AC_MSG_CHECKING([for libtalerpq]) -AC_ARG_WITH(mint, - [AS_HELP_STRING([--with-mint=PFX], [base of Taler MINT installation])], - [AC_MSG_RESULT([given as $with_mint])], +AC_ARG_WITH(exchange, + [AS_HELP_STRING([--with-exchange=PFX], [base of Taler EXCHANGE installation])], + [AC_MSG_RESULT([given as $with_exchange])], [AC_MSG_RESULT(not given) - with_mint=yes]) -AS_CASE([$with_mint], + with_exchange=yes]) +AS_CASE([$with_exchange], [yes], [], - [no], [AC_MSG_ERROR([--with-mint is required])], - [LDFLAGS="-L$with_mint/lib $LDFLAGS" - CPPFLAGS="-I$with_mint/include $CPPFLAGS $POSTGRESQL_CPPFLAGS"]) + [no], [AC_MSG_ERROR([--with-exchange is required])], + [LDFLAGS="-L$with_exchange/lib $LDFLAGS" + CPPFLAGS="-I$with_exchange/include $CPPFLAGS $POSTGRESQL_CPPFLAGS"]) CPPFLAGS="$CPPFLAGS $POSTGRESQL_CPPFLAGS" LDFLAGS="$LDFLAGS -L/usr/local/lib" |