* Sebastian Hammer, Adam Dickmeiss
*
* $Log: main.c,v $
- * Revision 1.74 1999-12-08 15:03:11 adam
+ * Revision 1.75 1999-12-08 22:44:45 adam
+ * Zebra/Z'mbol dependencies added.
+ *
+ * Revision 1.74 1999/12/08 15:03:11 adam
* Implemented bf_reset.
*
*
prog = *argv;
if (argc < 2)
{
- fprintf (stderr, "zebraidx [options] command <dir> ...\n"
+ fprintf (stderr, "%s [options] command <dir> ...\n"
"Commands:\n"
" update <dir> Update index with files below <dir>.\n"
" If <dir> is empty filenames are read from stdin.\n"
#if ZEBRASDR
" -S Use SDRKit\n"
#endif
- " -V Show version.\n"
+ " -V Show version.\n", *argv
);
exit (1);
}
{
if (!common_resource)
{
+#if ZMBOL
+ logf (LOG_LOG, "zmbol version %s %s",
+ ZEBRAVER, ZEBRADATE);
+#else
logf (LOG_LOG, "zebra version %s %s",
ZEBRAVER, ZEBRADATE);
+#endif
common_resource = res_open (configName ?
configName : FNAME_CONFIG);
if (!common_resource)
* Sebastian Hammer, Adam Dickmeiss
*
* $Log: recindex.c,v $
- * Revision 1.27 1999-10-29 10:02:33 adam
+ * Revision 1.28 1999-12-08 22:44:45 adam
+ * Zebra/Z'mbol dependencies added.
+ *
+ * Revision 1.27 1999/10/29 10:02:33 adam
* Fixed decompression buffer overflow.
*
* Revision 1.26 1999/07/06 13:34:57 adam
sysno = p->head.index_free;
p->head.index_free = entry.next;
}
+#if ZMBOL
+#else
+ if (sysno > 100000)
+ {
+ logf (LOG_FATAL, "100,000 record limit reached");
+ exit (1);
+ }
+#endif
(p->head.no_records)++;
rec->sysno = sysno;
for (i = 0; i < REC_NO_INFO; i++)
:
echo Loading Records
-../../bin/zebraidx -t grs.sgml update records
+if [ -x ../../bin/zmbolidx ]; then
+ ../../bin/zmbolidx -t grs.sgml update records
+fi
+if [ -x ../../bin/zebraidx ]; then
+ ../../bin/zebraidx -t grs.sgml update records
+fi
echo Starting Server
-../../bin/zebrasrv
+if [ -x ../../bin/zmbolsrv ]; then
+ ../../bin/zmbolsrv
+fi
+if [ -x ../../bin/zebrasrv ]; then
+ ../../bin/zebrasrv
+fi