diff options
author | Russ Allbery <rra@stanford.edu> | 2006-08-17 03:17:01 +0000 |
---|---|---|
committer | Russ Allbery <rra@stanford.edu> | 2006-08-17 03:17:01 +0000 |
commit | 9a62f3a6b9dd1bb0f675edd50af64ee8ee50ab39 (patch) | |
tree | d07df17b7c676e6d22bbd3c66fb5e86116d54772 /configure.ac | |
parent | 6c8b84add664837d535257a7b5de193ab71a1595 (diff) |
Initial very simple wallet client program.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index c0fc28c..45fa976 100644 --- a/configure.ac +++ b/configure.ac @@ -30,6 +30,18 @@ AC_ARG_WITH([afs-libs], fi]) AC_SUBST([AFS_LDFLAGS]) +REMCTL_CPPFLAGS= +REMCTL_LDFLAGS= +AC_ARG_WITH([remctl], + AC_HELP_STRING([--with-remctl=DIR], + [Prefix for remctl headers and libraries]), + [if test x"$withval" != xno ; then + REMCTL_CPPFLAGS="-I${withval}/include" + REMCTL_LDFLAGS="-L${withval}/lib" + fi]) +AC_SUBST([REMCTL_CPPFLAGS]) +AC_SUBST([REMCTL_LDFLAGS]) + AC_PROG_CC AM_PROG_CC_C_O AC_PROG_INSTALL |