]> git.sur5r.net Git - bacula/bacula/commitdiff
ebl tweak autoconf script for faketape
authorEric Bollengier <eric@eb.homelinux.org>
Thu, 8 May 2008 12:52:55 +0000 (12:52 +0000)
committerEric Bollengier <eric@eb.homelinux.org>
Thu, 8 May 2008 12:52:55 +0000 (12:52 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@6916 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/autoconf/config.h.in
bacula/autoconf/configure.in
bacula/technotes-2.3

index 5fa46139c409dacd8bc743ca9462c07049d7f212..fd50ccf18e6d864e8fc5cf2684e5102e4baa2f25 100644 (file)
@@ -9,6 +9,9 @@
 /* Define if you want SmartAlloc debug code enabled */
 #undef SMARTALLOC
 
+/* Define if you want to use faketape driver */
+#undef USE_FAKETAPE
+
 /* Define to `int' if <sys/types.h> doesn't define.  */
 #undef daddr_t
 
index 74e394571be8f7ab38cd60b51aaca2c7ae450719..8f94dc4b6bc5fdc073d467170ddbf475212477e4 100644 (file)
@@ -184,7 +184,7 @@ then
     AM_GNU_GETTEXT
 fi
 
-
+support_faketape=no
 support_mysql=no
 support_sqlite=no
 support_sqlite3=no
@@ -396,6 +396,19 @@ if test x$support_smartalloc = xyes; then
    AC_DEFINE(SMARTALLOC, 1, [Set if you want Smartalloc enabled])
 fi
 
+# -------------------------------------------
+# faketape (default off)
+# -------------------------------------------
+AC_ARG_ENABLE(faketape,
+  [  --enable-faketape       enable faketape debugging support [disabled]],
+  [if test x$enableval = xno; then
+    support_faketape=no
+  fi])
+
+if test x$support_faketape = xyes; then
+   AC_DEFINE(USE_FAKETAPE, 1, [Set if you want faketape enabled])
+fi
+
 # -------------------------------------------
 # static-tools (default off)
 # -------------------------------------------
@@ -2463,6 +2476,7 @@ Configuration on `date`:
   Encryption support:        ${support_crypto} 
   ZLIB support:              ${have_zlib}
   enable-smartalloc:         ${support_smartalloc} 
+  enable-faketape:           ${support_faketape} 
   bat support:               ${support_bat} ${QWT_LDFLAGS}
   enable-gnome:              ${support_gnome} ${gnome_version}
   enable-bwx-console:        ${support_wx_console} ${wx_version}
index 113f535ec15604c22cb23b36f55d5cfbcee89b72..9061089db6403e9c6f00141d6039e9aa0362ba53 100644 (file)
@@ -24,6 +24,8 @@ Add long term statistics job table
 
 
 General:
+08May08
+ebl  Tweak autoconf scripts for faketape
 07May08
 kes  Improve SD reserve debug code.
 kes  Testing an improvement to free up volumes no longer in use.