From 0a7e5e5e32e54ad151dc3d1670d2c376b0572dfb Mon Sep 17 00:00:00 2001
From: David Byers <byers@lysator.liu.se>
Date: Thu, 11 Apr 2002 20:16:55 +0000
Subject: [PATCH] FAQ in server-info is mirrored on text. Added AC_PREREQ to
 configure.in in top-level and libisc

---
 ChangeLog                             | 4 ++++
 configure.in                          | 5 +++--
 src/libraries/libisc-new/ChangeLog    | 4 ++++
 src/libraries/libisc-new/configure.in | 3 ++-
 src/server/aux-items.c                | 5 +++--
 5 files changed, 16 insertions(+), 5 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 730c6c8c8..23f833741 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2002-04-11  David Byers  <david.byers@swipnet.se>
+
+	* configure.in: Added AC_PREREQ.
+
 2002-04-07  Per Cederqvist  <ceder@ceder.dyndns.org>
 
 	Added the world-readable aux item.  (Bug 5).
diff --git a/configure.in b/configure.in
index 10b3aaf26..fff61c885 100644
--- a/configure.in
+++ b/configure.in
@@ -1,4 +1,4 @@
-dnl $Id: configure.in,v 1.80 2002/03/29 22:29:56 ceder Exp $
+dnl $Id: configure.in,v 1.81 2002/04/11 20:16:55 byers Exp $
 dnl Configuration for LysKOM
 dnl Copyright (C) 1993-2002  Lysator Academic Computer Association.
 dnl
@@ -18,7 +18,8 @@ dnl Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 dnl
 dnl Please mail bug reports to bug-lyskom@lysator.liu.se. 
 dnl
-AC_REVISION($Revision: 1.80 $)
+AC_REVISION($Revision: 1.81 $)
+AC_PREREQ(2.53)
 AC_INIT([lyskom-server], [2.0.6])
 AC_CONFIG_SRCDIR([src/server/lyskomd.h])
 AM_CONFIG_HEADER(config.h)
diff --git a/src/libraries/libisc-new/ChangeLog b/src/libraries/libisc-new/ChangeLog
index d2750994d..dec94ad1d 100644
--- a/src/libraries/libisc-new/ChangeLog
+++ b/src/libraries/libisc-new/ChangeLog
@@ -1,3 +1,7 @@
+2002-04-11  David Byers  <david.byers@swipnet.se>
+
+	* configure.in: Added AC_PREREQ(2.50).
+
 2001-09-23  Per Cederqvist  <ceder@moria>
 
 	* Re-applied a couple of lyskomd modifications.
diff --git a/src/libraries/libisc-new/configure.in b/src/libraries/libisc-new/configure.in
index 0ebab473d..03db3da94 100644
--- a/src/libraries/libisc-new/configure.in
+++ b/src/libraries/libisc-new/configure.in
@@ -19,7 +19,8 @@ dnl Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
 dnl Process this file with autoconf to produce a configure script.
 
-AC_REVISION($Revision: 1.6 $)dnl
+AC_REVISION($Revision: 1.7 $)dnl
+AC_PREREQ(2.53)
 AC_INIT(isc, 1.01)
 AC_CONFIG_SRCDIR([src/isc_master.c])
 AM_INIT_AUTOMAKE(isc, 1.01)
diff --git a/src/server/aux-items.c b/src/server/aux-items.c
index 46c60f3d9..c212ec0f1 100644
--- a/src/server/aux-items.c
+++ b/src/server/aux-items.c
@@ -1,5 +1,5 @@
 /*
- * $Id: aux-items.c,v 1.40 2002/04/06 07:21:36 ceder Exp $
+ * $Id: aux-items.c,v 1.41 2002/04/11 20:16:55 byers Exp $
  * Copyright (C) 1994-2001  Lysator Academic Computer Association.
  *
  * This file is part of the LysKOM server.
@@ -1964,7 +1964,8 @@ aux_item_trigger_mirror_faq(Aux_item_trigger_data *data)
     String           str;
     
 
-    if (data->object_type != CONF_OBJECT_TYPE || data->object == NULL)
+    if ((data->object_type != CONF_OBJECT_TYPE &&
+         data->object_type != INFO_OBJECT_TYPE) || data->object == NULL)
         return;
 
     /* Get the object number of where we want to put the new item */
-- 
GitLab