]> git.pld-linux.org Git - packages/mnogosearch.git/commitdiff
- updated
authorArkadiusz Miśkiewicz <arekm@maven.pl>
Mon, 28 Jun 2004 01:11:31 +0000 (01:11 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    mnogosearch-acfixes.patch -> 1.2
    mnogosearch-stored.init -> 1.7

mnogosearch-acfixes.patch
mnogosearch-stored.init [deleted file]

index 30f82b949ea91e84f9b89d52939ff085d1b99def..15cec9d6dad5371518c75af7309dc2264152d01e 100644 (file)
@@ -1,6 +1,7 @@
---- mnogosearch-3.2.14/configure.in.orig       2003-07-29 12:05:53.000000000 +0200
-+++ mnogosearch-3.2.14/configure.in    2003-10-04 12:53:39.032878392 +0200
-@@ -470,8 +470,12 @@
+diff -urN mnogosearch-3.2.18.org/configure.in mnogosearch-3.2.18/configure.in
+--- mnogosearch-3.2.18.org/configure.in        2004-06-28 02:51:35.821426328 +0200
++++ mnogosearch-3.2.18/configure.in    2004-06-28 02:54:45.798545416 +0200
+@@ -548,8 +548,12 @@
  if test "$chasen" != no; then
        LIBS_SAVE="$LIBS"
        CFLAGS_SAVE="$CFLAGS"
@@ -15,7 +16,7 @@
  
  AC_TRY_LINK([#include <stdio.h>
  #include <chasen.h>
-@@ -500,8 +504,12 @@
+@@ -578,8 +582,12 @@
  if test "$mecab" != no; then
        LIBS_SAVE="$LIBS"
        CFLAGS_SAVE="$CFLAGS"
  
  AC_TRY_LINK([#include <stdio.h>
  #include <mecab.h>
-@@ -533,12 +541,12 @@
-         if test "$withval" = "yes"; then
-                 if test -f /usr/include/expat.h; then
-                       CFLAGS="$CFLAGS"
--                      withval="/usr/"
-+                      withval="/usr"
-                 else
-                         CFLAGS="$CFLAGS -I/usr/local/include"
--                      withval="/usr/local/"
-+                      withval="/usr/local"
-                 fi
--                if test -f /usr/lib/libexpat.a; then
-+                if test -f /usr/lib/libexpat.so -o -f /usr/lib/libexpat.a ; then
-                       LIBS="$LIBS -lexpat"
-                 else
-                         LIBS="$LIBS -L/usr/local/lib -lexpat"
-@@ -549,9 +557,9 @@
-               else
-                       AC_MSG_RESULT(no)
-                       AC_MSG_ERROR(Invalid Expat directory - unable to find expat.h under $withval)
--                      $withval=""
-+                      withval=""
-               fi
--              if test -f $withval/lib/libexpat.a; then
-+              if test -f $withval/lib/libexpat.so -o -f $withval/lib/libexpat.a; then
-                       LIBS="$LIBS -L$withval/lib -lexpat"
-               else
-                       AC_MSG_RESULT(no)
-@@ -580,18 +588,17 @@
+@@ -613,7 +621,7 @@
                  else
                          SSL_INCDIR=/usr/local/ssl/include
                  fi
 -                if test -f /usr/lib/libssl.a; then
--                        SSL_LIBDIR=/usr/lib
-+                if test -f /usr/lib/libssl.so -o -f /usr/lib/libssl.a; then
-+                        SSL_LFLAGS="-lcrypto -lssl"
++                if test -f /usr/lib/libssl.a -o -f /usr/lib/libssl.so; then
+                         SSL_LIBDIR=/usr/lib
                  else
--                        SSL_LIBDIR=/usr/local/ssl/lib
-+                        SSL_LFLAGS="-L/usr/local/ssl/lib -lcrypto -lssl"
-                 fi
-         else
-                 SSL_INCDIR=$withval/include
-                 test -d $withval/include/openssl && SSL_INCDIR=$withval/include
--                SSL_LIBDIR=$withval/lib
-+                SSL_LFLAGS="-L$withval/lib -lcrypto -lssl"
-         fi
-     SSL_INCLUDE="-I$SSL_INCDIR"
--    SSL_LFLAGS="-L$SSL_LIBDIR -lcrypto -lssl"
-     AC_MSG_RESULT(yes)
-     AC_DEFINE(USE_HTTPS)
-   else
-@@ -634,7 +641,7 @@
- [  --with-readline       enable readline support for SQL monitor],
- [
-   AC_DEFINE(HAVE_READLINE)
--  LIBS="$LIBS -lreadline -ltermcap"
-+  LIBS="$LIBS -lreadline"
-   AC_MSG_RESULT(yes)
- ],
- [AC_MSG_RESULT([no])]
-@@ -662,7 +669,7 @@
+                         SSL_LIBDIR=/usr/local/ssl/lib
+@@ -711,7 +719,7 @@
                        withval="/usr/local/mysql"
                elif test -f /usr/include/mysql/mysql.h; then
                        MYSQL_INCDIR=/usr/include/mysql
@@ -99,7 +49,7 @@
                        withval="/usr"
                elif test -f /usr/include/mysql.h; then
                        MYSQL_INCDIR=/usr/include
-@@ -697,7 +704,11 @@
+@@ -746,7 +754,11 @@
                fi
        fi
      MYSQL_INCLUDE="-I$MYSQL_INCDIR"
  
      AC_DEFINE(HAVE_MYSQL)
      AC_MSG_RESULT($withval)
-@@ -735,8 +746,8 @@
-               test -f /usr/include/postgresql/libpq-fe.h && PGSQL_INCDIR=/usr/include/postgresql
+@@ -785,8 +797,8 @@
+                 test -f /usr/local/include/postgresql/libpq-fe.h && PGSQL_INCDIR=/usr/local/include/postgresql
                test -f /usr/local/include/libpq-fe.h && PGSQL_INCDIR=/usr/local/include
                PGSQL_LIBDIR=/usr/local/lib
 -              test -f /usr/lib/libpq.a && PGSQL_LIBDIR=/usr/lib
        else
                PGSQL_INCDIR=$withval/include
                test -d $withval/include/pgsql && PGSQL_INCDIR=$withval/include/pgsql
-@@ -744,7 +755,11 @@
+@@ -794,7 +806,11 @@
                test -d $withval/lib/pgsql && PGSQL_LIBDIR=$withval/lib/pgsql
        fi
      PGSQL_INCLUDE="-I$PGSQL_INCDIR"
      AC_DEFINE(HAVE_PGSQL)
      AC_MSG_RESULT(yes)
      have_db=yes
-@@ -809,7 +824,7 @@
+@@ -824,7 +840,7 @@
                            install directory, defaults to /usr/local.],
  [
        if test "$withval" = "yes"; then
        fi
  
        if test "$withval" != "no"; then
-@@ -820,8 +835,16 @@
+@@ -835,8 +851,16 @@
                        AC_MSG_RESULT(no)
                        AC_MSG_ERROR(Invalid iODBC directory - unable to find isql.h)
                fi
                AC_DEFINE(HAVE_IODBC)
                AC_MSG_RESULT(yes)
                have_db=yes
-@@ -842,12 +865,12 @@
+@@ -862,12 +886,12 @@
  if test "$withval" != "no"; then
        if test "$withval" = "yes"; then
                if test -f /usr/include/sql.h; then
                        withval="/usr/local"
                else
                        AC_MSG_RESULT(no)
-@@ -855,16 +878,14 @@
+@@ -875,16 +899,14 @@
                fi
        else
                if test -f $withval/include/sql.h; then
        AC_DEFINE(HAVE_UNIXODBC)
        AC_MSG_RESULT($withval)
        if test "x$DBTYPE" = "x" ; then
-@@ -1178,7 +1199,7 @@
+@@ -1198,7 +1220,7 @@
                            install directory, defaults to /usr/local.],
  [
        if test "$withval" = "yes"; then
        fi
  
        if test "$withval" != "no"; then
-@@ -1189,8 +1210,16 @@
+@@ -1209,8 +1231,16 @@
                        AC_MSG_RESULT(no)
                        AC_MSG_ERROR(Invalid FreeTDS directory - unable to find ctpublic.h)
                fi
diff --git a/mnogosearch-stored.init b/mnogosearch-stored.init
deleted file mode 100644 (file)
index 1a59c67..0000000
+++ /dev/null
@@ -1,84 +0,0 @@
-#!/bin/sh
-#
-# mnogosearch-stored   This shell script takes care of starting and stopping
-# stored (optional part of mnogosearch engine)
-#
-# description: stored is a deamon which stores gziped version of parsed 
-#              documents (html pages, news atricles etc..) 
-#
-# chkconfig:   345 86 14
-# description: Stored is used to make documents excerpts for search results \
-#              and for storing compressed copies of indexed documents. 
-
-# Source function library
-. /etc/rc.d/init.d/functions
-
-# Get network config
-. /etc/sysconfig/network
-
-LOGFILE=/var/log/mnogosearch-stored
-
-# Get service config
-[ -f /etc/sysconfig/mnogosearch-stored ] && . /etc/sysconfig/mnogosearch-stored
-
-# Check that networking is up.
-if is_yes "${NETWORKING}"; then
-       if [ ! -f /var/lock/subsys/network -a "$1" != stop -a "$1" != status ]; then
-               msg_network_down Mnogosearch-stored
-               exit 1
-       fi
-else
-       exit 0
-fi
-
-RETVAL=0
-# See how we were called.
-case "$1" in
-  start)
-       # Check if the service is already running?
-       if [ ! -f /var/lock/subsys/mnogosearch-stored ]; then
-
-               # build aliases database
-               
-               msg_starting Mnogosearch-stored
-               busy
-               /usr/sbin/stored 2>&1 > $LOGFILE &
-               sleep 1
-
-               if ps ax | grep -v grep | grep -q stored
-               then
-                       ok
-                       touch /var/lock/subsys/mnogosearch-stored
-               else
-                       fail
-                       RETVAL=1
-               fi
-       else
-               msg_already_running Mnogosearch-stored
-       fi
-       ;;
-  stop)
-       if [ -f /var/lock/subsys/mnogosearch-stored ]; then
-               # Stop daemons.
-               msg_stopping Mnogosearch-stored 
-               killproc stored
-               rm -f /var/lock/subsys/mnogosearch-stored
-       else
-               msg_not_running Mnogosearch-stored
-       fi
-       ;;
-  restart|force-reload)
-       $0 stop
-       $0 start
-       exit $?
-       ;;
-  status)
-       status stored
-       exit $?
-       ;;
-  *)
-       msg_usage "$0 {start|stop|restart|force-reload|status}"
-       exit 3
-esac
-
-exit $RETVAL
This page took 0.111273 seconds and 4 git commands to generate.