From: Adam Dickmeiss Date: Mon, 8 Jan 1996 19:15:46 +0000 (+0000) Subject: New input filter that works! X-Git-Tag: ZEBRA.1.0~568 X-Git-Url: http://git.indexdata.com/?a=commitdiff_plain;h=ddb47a9bace6ee7942e358a017bb5426a8135334;hp=55a416d894dd90b1d5f083f6a9a280986f4b9774;p=idzebra-moved-to-github.git New input filter that works! --- diff --git a/index/Makefile b/index/Makefile index 8a45db2..f798eb3 100644 --- a/index/Makefile +++ b/index/Makefile @@ -1,16 +1,16 @@ # Copyright (C) 1995, Index Data I/S # All rights reserved. # Sebastian Hammer, Adam Dickmeiss -# $Id: Makefile,v 1.30 1995-12-11 09:12:44 adam Exp $ +# $Id: Makefile,v 1.31 1996-01-08 19:15:46 adam Exp $ SHELL=/bin/sh RANLIB=ranlib -#YAZLIB=../../yaz/lib/libyaz.a -YAZLIB=-lyaz -#YAZINC=-I../../yaz/include -#OSILIB=../../xtimosi/src/libmosi.a ../../yaz/lib/librfc.a -OSILIB=../../xtimosi/src/libmosi.a -lrfc +YAZLIB=../../yaz/lib/libyazchkr.a +#YAZLIB=-lyaz +YAZINC=-I../../yaz/include +OSILIB=../../xtimosi/src/libmosi.a ../../yaz/lib/librfc.a +#OSILIB=../../xtimosi/src/libmosi.a -lrfc #NETLIB=-lnsl -lsocket INCLUDE=-I../include $(YAZINC) diff --git a/index/main.c b/index/main.c index 553e280..001d99b 100644 --- a/index/main.c +++ b/index/main.c @@ -4,7 +4,10 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: main.c,v $ - * Revision 1.30 1995-12-12 16:00:59 adam + * Revision 1.31 1996-01-08 19:15:46 adam + * New input filter that works! + * + * Revision 1.30 1995/12/12 16:00:59 adam * System call sync(2) used after update/commit. * Locking (based on fcntl) uses F_EXLCK and F_SHLCK instead of F_WRLCK * and F_RDLCK. @@ -160,7 +163,7 @@ int main (int argc, char **argv) " -g Index files according to group settings.\n" " -d Records belong to Z39.50 database .\n" " -m Use before flushing keys to disk.\n" - " -n Don't use commit system\n" + " -n Don't use shadow system\n" " -v Set logging to .\n"); exit (1); } @@ -190,14 +193,13 @@ int main (int argc, char **argv) else if (!strcmp (arg, "commit")) { zebraIndexLock (1); - rval = res_get (common_resource, "commit"); + rval = res_get (common_resource, "shadow"); if (rval && *rval) bf_cache (1); else { logf (LOG_FATAL, "Cannot perform commit"); - logf (LOG_FATAL, "No commit area defined " - "in the configuration file"); + logf (LOG_FATAL, "No shadow area defined"); exit (1); } if (bf_commitExists ()) @@ -219,7 +221,7 @@ int main (int argc, char **argv) else if (!strcmp (arg, "stat") || !strcmp (arg, "status")) { zebraIndexLock (0); - rval = res_get (common_resource, "commit"); + rval = res_get (common_resource, "shadow"); if (rval && *rval) { bf_cache (1); @@ -238,7 +240,7 @@ int main (int argc, char **argv) struct recordGroup rGroup; zebraIndexLock (0); - rval = res_get (common_resource, "commit"); + rval = res_get (common_resource, "shadow"); if (rval && *rval && !disableCommit) { bf_cache (1);