]> git.pld-linux.org Git - packages/aide.git/commitdiff
- updated to 0.10
authorAndrzej Augustynowicz <andrzej@augustynowicz.eu.org>
Mon, 15 Dec 2003 02:58:20 +0000 (02:58 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    aide-autoconf.patch -> 1.3
    aide-no_md.patch -> 1.2

aide-autoconf.patch
aide-no_md.patch

index fd9de5beae290f023b3ac4ac18abfea9f884b1dd..6e3b613162b6d901d20ae86ef16fe522935351eb 100644 (file)
@@ -1,38 +1,6 @@
-diff -Naur aide-0.7/configure.in aide-0.7-p/configure.in
---- aide-0.7/configure.in      Fri Nov 23 16:38:09 2001
-+++ aide-0.7-p/configure.in    Fri Nov 23 16:38:30 2001
-@@ -289,7 +289,7 @@
- fi
- AC_ARG_WITH(gnu-regexp,
--  [--with-gnu-regexp  use the bundled GNU regexp(use only if necessary)],
-+  [--with-gnu-regexp  use the bundled GNU regexp (use only if necessary)],
-   AC_DEFINE(REGEX, 1)
- ,
-   AC_CHECK_FUNCS(regexec regcomp,,
-diff -Naur aide-0.7/configure.in aide-0.7-p/configure.in
---- aide-0.7/configure.in      Fri Nov 23 16:46:36 2001
-+++ aide-0.7-p/configure.in    Fri Nov 23 16:46:27 2001
-@@ -289,11 +289,11 @@
- fi
- AC_ARG_WITH(gnu-regexp,
--  [--with-gnu-regexp  use the bundled GNU regexp (use only if necessary)],
--  AC_DEFINE(REGEX, 1)
--,
--  AC_CHECK_FUNCS(regexec regcomp,,
--      AC_DEFINE(REGEX,1))
-+  "--with-gnu-regexp  use the bundled GNU regexp (use only if necessary)",
-+  [AC_DEFINE(REGEX, 1)],
-+  [AC_CHECK_FUNCS(regexec regcomp,,
-+      [AC_DEFINE(REGEX,1)]
-+  )]
- )
- AC_CHECK_HEADER(gcrypt.h,,
-diff -Naur aide-0.9/Makefile.am aide-0.9-p/Makefile.am
---- aide-0.9/Makefile.am       Tue Jun  4 10:29:57 2002
-+++ aide-0.9-p/Makefile.am     Sat Nov 23 10:49:00 2002
+diff -Nur old/Makefile.am new/Makefile.am
+--- old/Makefile.am    2003-01-16 10:37:34.000000000 +0000
++++ new/Makefile.am    2003-12-13 19:21:12.000000000 +0000
 @@ -17,7 +17,7 @@
  # Boston, MA 02111-1307, USA.
  #
@@ -42,9 +10,9 @@ diff -Naur aide-0.9/Makefile.am aide-0.9-p/Makefile.am
  
  CLEANFILES = *~
  
-diff -Naur aide-0.9/src/Makefile.am aide-0.9-/src/Makefile.am
---- aide-0.9/src/Makefile.am   Wed Mar  6 14:12:12 2002
-+++ aide-0.9-/src/Makefile.am  Sat Nov 23 10:55:14 2002
+diff -Nur old/src/Makefile.am new/src/Makefile.am
+--- old/src/Makefile.am        2003-10-29 10:10:57.000000000 +0000
++++ new/src/Makefile.am        2003-12-13 19:22:44.000000000 +0000
 @@ -46,7 +46,7 @@
                util.c          \
                aide.c
index 18dbab6a4d8ac1e5f1bc279ebc2e39f4e78fb0a3..a5ef65219e97bebab2143de1f6f9d18e65f71d31 100644 (file)
@@ -1,15 +1,7 @@
-diff -Naur aide-0.9/src/conf_yacc.y aide-0.9-p/src/conf_yacc.y
---- aide-0.9/src/conf_yacc.y   Sat Nov 23 12:05:41 2002
-+++ aide-0.9-p/src/conf_yacc.y Sat Nov 23 12:05:55 2002
-@@ -62,6 +62,7 @@
- %token TEND_CONFIG
- %token TBEGIN_DB
- %token TEND_DB
-+%token TEND_DBNOMD
- %token TID
- %token <s> TSTRING
- %token '='
-@@ -151,6 +152,9 @@
+diff -Nur old/src/conf_yacc.y new/src/conf_yacc.y
+--- old/src/conf_yacc.y        2003-08-18 13:03:22.000000000 +0000
++++ new/src/conf_yacc.y        2003-12-13 19:31:05.000000000 +0000
+@@ -156,6 +156,9 @@
         | TEND_DB {
          conferror("Error while reading configuration");
            }
@@ -19,42 +11,3 @@ diff -Naur aide-0.9/src/conf_yacc.y aide-0.9-p/src/conf_yacc.y
         | error {
          conferror("Error while reading configuration");
          YYABORT;
-diff -Naur aide-0.9/src/db_file.c aide-0.9-p/src/db_file.c
---- aide-0.9/src/db_file.c     Thu May 30 11:42:46 2002
-+++ aide-0.9-p/src/db_file.c   Sat Nov 23 12:08:06 2002
-@@ -462,6 +462,9 @@
-       }
-       
-       /*  */
-+      if(gotend_db){
-+      return NULL;
-+      }
-       error(0,"Not enough parameters in db:%i. Trying to continue.\n",
-           *db_lineno);
-@@ -515,6 +518,11 @@
-       break;
-     }
-+    case TEND_DBNOMD : {
-+      gotend_db=1;
-+      break;
-+    }
-+
-     case TEOF : {
-       if(gotend_db){
-       return NULL;
-diff -Naur aide-0.9/src/db_lex.l aide-0.9-p/src/db_lex.l
---- aide-0.9/src/db_lex.l      Wed May 29 10:04:27 2002
-+++ aide-0.9-p/src/db_lex.l    Sat Nov 23 12:05:55 2002
-@@ -104,6 +104,10 @@
-   return (TSTRING);
- }
-+^"@@end_db" {
-+  return (TEND_DBNOMD);
-+}
-+
- "@@"({L}+) {
-   return (TUNKNOWN);
- }
This page took 0.049693 seconds and 4 git commands to generate.