X-Git-Url: http://git.jankratochvil.net/?a=blobdiff_plain;f=configure.ac;h=9fa79c32aa3fac421016eccc86826a3189335092;hb=f465ecb2f838388ae77b6271c5e38bf97017fbf8;hp=69df72190c4cd1065c1a458232b77d82d5e60019;hpb=755a85d239c13355ff1a0cc4f884acdeb5e4e188;p=captive.git diff --git a/configure.ac b/configure.ac index 69df721..9fa79c3 100644 --- a/configure.ac +++ b/configure.ac @@ -102,6 +102,8 @@ AC_ARG_ENABLE(standalone, [ --enable-standalone=no/yes provide initialization for static-build (def.=no)],,enable_standalone=no) AC_ARG_ENABLE(standalone-fonts, [ --enable-standalone-fonts=DIR provide bundled Gnome fonts in directory (def.=no)],,enable_standalone_fonts=no) +AC_ARG_ENABLE(standalone-yum, + [ --enable-standalone-yum=DIR provide bundled yum(8) packaging configuration directory (def.=no)],,enable_standalone_yum=no) # AC_ARG_ENABLE(sbin-mountdir,[--enable-sbin-mountdir=DIR],,[enable_sbin_mountdir="/sbin"]) @@ -468,6 +470,13 @@ if test x$have_gnome != xtrue -a x$have_gnome != xfalse;then fi AM_CONDITIONAL(HAVE_GNOME,[test "$have_gnome" = "true"]) +yum_repos_ddir= +if test x$enable_standalone_yum != xno;then + yum_repos_ddir="$enable_standalone_yum" +fi +AC_SUBST(yum_repos_ddir) +AM_CONDITIONAL(ENABLE_STANDALONE_YUM_REPOS_D,[test "$enable_standalone_yum" != "no"]) + AC_SUBST(CFLAGS) AC_SUBST(LIBS) @@ -521,6 +530,7 @@ Makefile ./src/libcaptive/reactos/ntoskrnl/rtl/i386/Makefile ./src/libcaptive/reactos/ntoskrnl/se/Makefile ./src/libcaptive/halcaptive/Makefile +./src/libcaptive/captivemodid/Makefile ./src/libcaptive/cc/Makefile ./src/libcaptive/cm/Makefile ./src/libcaptive/ex/Makefile @@ -556,6 +566,7 @@ Makefile ./doc/apiref/Makefile ./fonts/Makefile ./fonts/fonts.conf +./yum.repos.d/Makefile ]) dnl FIXME: Why is "po/POTFILES" being substituted?