diff --git a/configure.ac b/configure.ac index 7ab8e3a0..86df9978 100644 --- a/configure.ac +++ b/configure.ac @@ -58,6 +58,11 @@ AC_ARG_ENABLE(debug, AC_HELP_STRING([--enable-debug], [Enable debugging support]), [debug=$enableval], [debug=no]) +# Help line for abs +AC_ARG_ENABLE(abs, + AC_HELP_STRING([--disable-abs], [Include Arch Linux Build System script]), + [includeabs=$enableval], [includeabs=yes]) + # Checks for programs. AC_PROG_AWK AC_PROG_CC @@ -193,6 +198,16 @@ else AC_MSG_RESULT(no) fi +# Enable or disable inclusion of abs script +AC_MSG_CHECKING(for inclusion of abs script) +if test "x$includeabs" = "xyes" ; then + AC_DEFINE([INCLUDE_ABS], , [Include abs script]) + AC_MSG_RESULT(yes) +else + AC_MSG_RESULT(no) +fi +AM_CONDITIONAL(INCLUDE_ABS, test "x$includeabs" = "xyes") + # Set root directory AC_SUBST(ROOTDIR) AC_DEFINE_UNQUOTED([ROOTDIR], "$ROOTDIR", [Location of pacman's default root di @@ -257,4 +272,5 @@ $PACKAGE_STRING: Compilation options: Doxygen support : ${usedoxygen} debug support : ${debug} + include abs : ${includeabs} " diff --git a/etc/Makefile.am b/etc/Makefile.am index b26a3e6c..733526c3 100644 --- a/etc/Makefile.am +++ b/etc/Makefile.am @@ -1,4 +1,8 @@ -SUBDIRS = pacman.d abs +SUBDIRS = pacman.d + +if INCLUDE_ABS +SUBDIRS += abs +endif dist_sysconf_DATA = makepkg.conf pacman.conf EXTRA_DIST = makepkg.conf.in pacman.conf.in diff --git a/scripts/Makefile.am b/scripts/Makefile.am index 1ebd785f..20aa209b 100644 --- a/scripts/Makefile.am +++ b/scripts/Makefile.am @@ -2,7 +2,6 @@ AUTOMAKE_OPTIONS = std-options bin_SCRIPTS = \ - abs \ gensync \ makepkg \ makeworld \ @@ -12,6 +11,10 @@ bin_SCRIPTS = \ repo-remove \ updatesync +if INCLUDE_ABS +bin_SCRIPTS += abs +endif + EXTRA_DIST = \ abs.in \ gensync.in \