From: Tim Kientzle Date: Thu, 15 Jan 2009 05:23:01 +0000 (-0500) Subject: Enable bsdcpio by default. X-Git-Tag: v2.7.0~436 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f9a97a0341e993e5ea30a40286dee07e76ff9839;p=thirdparty%2Flibarchive.git Enable bsdcpio by default. SVN-Revision: 421 --- diff --git a/configure.ac b/configure.ac index dd530e64d..06d89fbdb 100644 --- a/configure.ac +++ b/configure.ac @@ -121,11 +121,11 @@ AM_CONDITIONAL([STATIC_BSDTAR], [ test "$static_bsdtar" = yes ]) # Default is not to build bsdcpio, but that can be overridden. # AC_ARG_ENABLE([bsdcpio], - [AS_HELP_STRING([--enable-bsdcpio], [enable build of bsdcpio]) + [AS_HELP_STRING([--enable-bsdcpio], [enable build of bsdcpio (default)]) AS_HELP_STRING([--enable-bsdcpio=static], [static build of bsdcpio]) AS_HELP_STRING([--enable-bsdcpio=shared], [dynamic build of bsdcpio]) -AS_HELP_STRING([--disable-bsdcpio], [disable build of bsdcpio (default)])], - [], [enable_bsdcpio=no]) +AS_HELP_STRING([--disable-bsdcpio], [disable build of bsdcpio])], + [], [enable_bsdcpio=yes]) case "$enable_bsdcpio" in yes)