diff options
Diffstat (limited to 'src/core/configure.ac')
-rw-r--r-- | src/core/configure.ac | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/src/core/configure.ac b/src/core/configure.ac index 2e8e66b..a3b0cf7 100644 --- a/src/core/configure.ac +++ b/src/core/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ([2.59]) -AC_INIT([rcscript-core], [0.1], [base-system@gentoo.org]) +AC_INIT([rcscripts], [0.1], [base-system@gentoo.org]) AM_INIT_AUTOMAKE AC_CONFIG_HEADER([config.h]) @@ -10,6 +10,8 @@ AC_PROG_INSTALL AC_PROG_MAKE_SET AC_PROG_AWK +AC_PATH_PROGS([RC_SHELL], [bash sh]) + AC_ENABLE_SHARED AC_DISABLE_STATIC dnl Next four lines is a hack to prevent libtool checking for CXX/F77 @@ -19,7 +21,7 @@ m4_undefine([AC_PROG_F77]) m4_defun([AC_PROG_F77],[]) AC_PROG_LIBTOOL -AC_PREFIX_DEFAULT([]) +dnl AC_PREFIX_DEFAULT([]) dnl Checks for libraries. dnl Checks for header files. @@ -99,7 +101,12 @@ AC_OUTPUT([ Makefile scripts/Makefile data/Makefile - librcscripts/Makefile + include/Makefile + include/rcscripts/Makefile + include/rcscripts/core/Makefile + include/rcscripts/util/Makefile + librcutil/Makefile + librccore/Makefile src/Makefile tests/Makefile ]) |