From 0ba1be952a0268d27c1298685a7ebf18be32e3a0 Mon Sep 17 00:00:00 2001
From: Martin Nilsson <mani@lysator.liu.se>
Date: Sat, 6 Mar 2004 00:30:47 +0100
Subject: [PATCH] Depend explicitly on bignum.h

Rev: src/module_support.c:1.62
Rev: src/modules/Mysql/mysql.c:1.80
Rev: src/modules/Mysql/result.c:1.31
Rev: src/sscanf.c:1.157
---
 src/module_support.c       | 5 +++--
 src/modules/Mysql/mysql.c  | 5 +++--
 src/modules/Mysql/result.c | 5 +++--
 src/sscanf.c               | 5 +++--
 4 files changed, 12 insertions(+), 8 deletions(-)

diff --git a/src/module_support.c b/src/module_support.c
index 9d10db828a..559f15f3af 100644
--- a/src/module_support.c
+++ b/src/module_support.c
@@ -2,7 +2,7 @@
 || This file is part of Pike. For copyright information see COPYRIGHT.
 || Pike is distributed under GPL, LGPL and MPL. See the file COPYING
 || for more information.
-|| $Id: module_support.c,v 1.61 2004/02/29 03:32:50 mast Exp $
+|| $Id: module_support.c,v 1.62 2004/03/05 23:30:47 nilsson Exp $
 */
 
 #include "global.h"
@@ -15,10 +15,11 @@
 #include "mapping.h"
 #include "object.h"
 #include "operators.h"
+#include "bignum.h"
 
 #define sp Pike_sp
 
-RCSID("$Id: module_support.c,v 1.61 2004/02/29 03:32:50 mast Exp $");
+RCSID("$Id: module_support.c,v 1.62 2004/03/05 23:30:47 nilsson Exp $");
 
 /* Checks that args_to_check arguments are OK.
  * Returns 1 if everything worked ok, zero otherwise.
diff --git a/src/modules/Mysql/mysql.c b/src/modules/Mysql/mysql.c
index b18999d5ef..df32ae47e7 100644
--- a/src/modules/Mysql/mysql.c
+++ b/src/modules/Mysql/mysql.c
@@ -2,7 +2,7 @@
 || This file is part of Pike. For copyright information see COPYRIGHT.
 || Pike is distributed under GPL, LGPL and MPL. See the file COPYING
 || for more information.
-|| $Id: mysql.c,v 1.79 2003/12/22 16:52:04 grubba Exp $
+|| $Id: mysql.c,v 1.80 2004/03/05 23:30:06 nilsson Exp $
 */
 
 /*
@@ -76,6 +76,7 @@
 #include "builtin_functions.h"
 #include "fd_control.h"
 #include "mapping.h"
+#include "bignum.h"
 
 /* System includes */
 #ifdef HAVE_STRING_H
@@ -96,7 +97,7 @@
  * Globals
  */
 
-RCSID("$Id: mysql.c,v 1.79 2003/12/22 16:52:04 grubba Exp $");
+RCSID("$Id: mysql.c,v 1.80 2004/03/05 23:30:06 nilsson Exp $");
 
 /*! @module Mysql
  *!
diff --git a/src/modules/Mysql/result.c b/src/modules/Mysql/result.c
index fbf1138cf7..6338ba28a9 100644
--- a/src/modules/Mysql/result.c
+++ b/src/modules/Mysql/result.c
@@ -2,7 +2,7 @@
 || This file is part of Pike. For copyright information see COPYRIGHT.
 || Pike is distributed under GPL, LGPL and MPL. See the file COPYING
 || for more information.
-|| $Id: result.c,v 1.30 2003/04/30 10:35:03 grubba Exp $
+|| $Id: result.c,v 1.31 2004/03/05 23:30:07 nilsson Exp $
 */
 
 /*
@@ -62,6 +62,7 @@
 #include "las.h"
 #include "threads.h"
 #include "multiset.h"
+#include "bignum.h"
 
 /* Local includes */
 #include "precompiled_mysql.h"
@@ -89,7 +90,7 @@
  * Globals
  */
 
-RCSID("$Id: result.c,v 1.30 2003/04/30 10:35:03 grubba Exp $");
+RCSID("$Id: result.c,v 1.31 2004/03/05 23:30:07 nilsson Exp $");
 
 struct program *mysql_result_program = NULL;
 
diff --git a/src/sscanf.c b/src/sscanf.c
index 2b687639cf..f982761383 100644
--- a/src/sscanf.c
+++ b/src/sscanf.c
@@ -2,7 +2,7 @@
 || This file is part of Pike. For copyright information see COPYRIGHT.
 || Pike is distributed under GPL, LGPL and MPL. See the file COPYING
 || for more information.
-|| $Id: sscanf.c,v 1.156 2003/12/12 13:22:40 grubba Exp $
+|| $Id: sscanf.c,v 1.157 2004/03/05 23:30:47 nilsson Exp $
 */
 
 #include "global.h"
@@ -14,10 +14,11 @@
 #include "builtin_functions.h"
 #include "module_support.h"
 #include "operators.h"
+#include "bignum.h"
 
 #define sp Pike_sp
 
-RCSID("$Id: sscanf.c,v 1.156 2003/12/12 13:22:40 grubba Exp $");
+RCSID("$Id: sscanf.c,v 1.157 2004/03/05 23:30:47 nilsson Exp $");
 
 /* 
  * helper functions for sscanf %O
-- 
GitLab