diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index ac41e703..54cc89a4 100644 --- a/configure.ac +++ b/configure.ac @@ -233,6 +233,27 @@ fi # If any of this fails, we need to tell the user and give useful hint # on what to do next (doc reference, whatever). +TOP_LEVEL_SUBDIRS="" + +if test $build_openssl = yes +then + TOP_LEVEL_SUBDIRS="$TOP_LEVEL_SUBDIRS openssl" +fi + +TOP_LEVEL_SUBDIRS="$TOP_LEVEL_SUBDIRS rcynic utils" + +if test $build_pywrap = yes +then + TOP_LEVEL_SUBDIRS="$TOP_LEVEL_SUBDIRS pywrap" +fi + +if test $build_python = yes +then + TOP_LEVEL_SUBDIRS="$TOP_LEVEL_SUBDIRS pow rpkid" +fi +AC_SUBST(TOP_LEVEL_SUBDIRS) + + if test $build_pywrap = yes then # Eventually this should be the installation directory, but |