]> git.pld-linux.org Git - packages/bash.git/blobdiff - bash-requires.patch
- up to 4.2
[packages/bash.git] / bash-requires.patch
index 1e31e75aee691311d1971d975cb69e1e1a0bd7f7..1bf4415fdb00c3b8c526644c6d5f1196bcf63467 100644 (file)
@@ -1,29 +1,14 @@
-
-Here it is.  If you like it let me know and I will send the patches to 
-the bash maintainer.  Let me know what you think.
-
-Ken
-
-
-
-diff -r -u bash-2.03.orig/builtins/mkbuiltins.c bash-2.03.new/builtins/mkbuiltins.c
---- bash-2.03.orig/builtins/mkbuiltins.c       Tue Sep 15 12:57:16 1998
-+++ bash-2.03.new/builtins/mkbuiltins.c        Fri Jul 16 10:45:54 1999
-@@ -51,8 +51,13 @@
- #define whitespace(c) (((c) == ' ') || ((c) == '\t'))
- /* Flag values that builtins can have. */
-+/*  These flags are for the C code generator, 
-+    the C which is produced (./builtin.c)
-+    includes the flags definitions found 
-+    in ../builtins.h */
+--- bash-2.05b/builtins/mkbuiltins.c.requires  Thu Aug  5 12:42:54 1999
++++ bash-2.05b/builtins/mkbuiltins.c   Sun Mar 19 14:14:17 2000
+@@ -72,6 +72,7 @@
  #define BUILTIN_FLAG_SPECIAL  0x01
  #define BUILTIN_FLAG_ASSIGNMENT 0x02
-+#define BUILTIN_FLAG_REQUIRES 0x04
+ #define BUILTIN_FLAG_POSIX_BUILTIN 0x04
++#define BUILTIN_FLAG_REQUIRES 0x08
  
- /* If this stream descriptor is non-zero, then write
-    texinfo documentation to it. */
-@@ -126,9 +131,17 @@
+ #define BASE_INDENT   4
+@@ -164,10 +164,18 @@
    (char *)NULL
  };
  
@@ -37,30 +22,32 @@ diff -r -u bash-2.03.orig/builtins/mkbuiltins.c bash-2.03.new/builtins/mkbuiltin
  /* Forward declarations. */
  static int is_special_builtin ();
  static int is_assignment_builtin ();
+ static int is_posix_builtin ();
 +static int is_requires_builtin ();
  
  #if !defined (HAVE_RENAME)
  static int rename ();
-@@ -759,6 +772,8 @@
-     new->flags |= BUILTIN_FLAG_SPECIAL;
-   if (is_assignment_builtin (name))
+@@ -821,6 +821,8 @@
      new->flags |= BUILTIN_FLAG_ASSIGNMENT;
+   if (is_posix_builtin (name))
+     new->flags |= BUILTIN_FLAG_POSIX_BUILTIN;
 +  if (is_requires_builtin (name))
 +    new->flags |= BUILTIN_FLAG_REQUIRES;
  
    array_add ((char *)new, defs->builtins);
    building_builtin = 1;
-@@ -1164,10 +1179,11 @@
+@@ -1240,11 +1240,12 @@
                  else
-                   fprintf (structfile, "(Function *)0x0, ");
+                   fprintf (structfile, "(sh_builtin_func_t *)0x0, ");
  
--                fprintf (structfile, "%s%s%s, %s_doc,\n",
-+                fprintf (structfile, "%s%s%s%s, %s_doc,\n",
+-                fprintf (structfile, "%s%s%s%s, %s_doc,\n",
++                fprintf (structfile, "%s%s%s%s%s, %s_doc,\n",
                    "BUILTIN_ENABLED | STATIC_BUILTIN",
                    (builtin->flags & BUILTIN_FLAG_SPECIAL) ? " | SPECIAL_BUILTIN" : "",
                    (builtin->flags & BUILTIN_FLAG_ASSIGNMENT) ? " | ASSIGNMENT_BUILTIN" : "",
+                   (builtin->flags & BUILTIN_FLAG_POSIX_BUILTIN) ? " | POSIX_BUILTIN" : "",
 +                  (builtin->flags & BUILTIN_FLAG_REQUIRES) ? " | REQUIRES_BUILTIN" : "",
-                   builtin->docname ? builtin->docname : builtin->name);
+                   document_name (builtin));
  
                  fprintf
 @@ -1401,6 +1417,13 @@
@@ -77,21 +64,9 @@ diff -r -u bash-2.03.orig/builtins/mkbuiltins.c bash-2.03.new/builtins/mkbuiltin
  }
  
  #if !defined (HAVE_RENAME)
-diff -r -u bash-2.03.orig/builtins.h bash-2.03.new/builtins.h
---- bash-2.03.orig/builtins.h  Fri Jul 18 16:46:36 1997
-+++ bash-2.03.new/builtins.h   Thu Jul 15 16:59:03 1999
-@@ -40,6 +40,7 @@
- #define STATIC_BUILTIN  0x4   /* This builtin is not dynamically loaded. */
- #define SPECIAL_BUILTIN 0x8   /* This is a Posix `special' builtin. */
- #define ASSIGNMENT_BUILTIN 0x10       /* This builtin takes assignment statements. */
-+#define REQUIRES_BUILTIN 0x20 /* This builtin requires other files. */
- /* The thing that we build the array of builtins out of. */
- struct builtin {
-diff -r -u bash-2.03.orig/doc/bash.1 bash-2.03.new/doc/bash.1
---- bash-2.03.orig/doc/bash.1  Wed Jan 20 16:48:04 1999
-+++ bash-2.03.new/doc/bash.1   Fri Jul 16 11:20:00 1999
-@@ -195,6 +195,12 @@
+--- bash-2.04-beta5/doc/bash.1.requires        Tue Jan 11 19:36:49 2000
++++ bash-2.04-beta5/doc/bash.1 Sun Mar 19 14:14:17 2000
+@@ -196,6 +196,12 @@
  .B "RESTRICTED SHELL"
  below).
  .TP
@@ -104,10 +79,9 @@ diff -r -u bash-2.03.orig/doc/bash.1 bash-2.03.new/doc/bash.1
  .B \-\-verbose
  Equivalent to  \fB\-v\fP.
  .TP
-diff -r -u bash-2.03.orig/doc/bashref.texi bash-2.03.new/doc/bashref.texi
---- bash-2.03.orig/doc/bashref.texi    Wed Jan 20 16:47:01 1999
-+++ bash-2.03.new/doc/bashref.texi     Fri Jul 16 11:21:30 1999
-@@ -3178,6 +3178,13 @@
+--- bash-2.04-beta5/doc/bashref.texi.requires  Wed Jan 12 16:18:50 2000
++++ bash-2.04-beta5/doc/bashref.texi   Sun Mar 19 14:14:17 2000
+@@ -4333,6 +4333,13 @@
  @item --restricted
  Make the shell a restricted shell (@pxref{The Restricted Shell}).
  
@@ -119,36 +93,49 @@ diff -r -u bash-2.03.orig/doc/bashref.texi bash-2.03.new/doc/bashref.texi
 +dependencies may be missed.
 +
  @item --verbose
- Equivalent to @samp{-v}.
+ Equivalent to @samp{-v}.  Print shell input lines as they're read.
  
-diff -r -u bash-2.03.orig/make_cmd.c bash-2.03.new/make_cmd.c
---- bash-2.03.orig/make_cmd.c  Tue Jan 12 12:45:36 1999
-+++ bash-2.03.new/make_cmd.c   Fri Jul 16 11:48:18 1999
+--- bash-2.04-beta5/builtins.h.requires        Thu Aug  5 11:18:12 1999
++++ bash-2.04-beta5/builtins.h Sun Mar 19 14:14:17 2000
 @@ -41,6 +41,7 @@
+ #define SPECIAL_BUILTIN 0x08  /* This is a Posix `special' builtin. */
+ #define ASSIGNMENT_BUILTIN 0x10       /* This builtin takes assignment statements. */
+ #define POSIX_BUILTIN 0x20    /* This builtins is special in the Posix command search order. */
++#define REQUIRES_BUILTIN      0x40    /* This builtin requires other files. */
+ #define BASE_INDENT   4
+--- bash-2.04-beta5/make_cmd.c.requires        Thu Aug  5 11:21:23 1999
++++ bash-2.04-beta5/make_cmd.c Sun Mar 19 14:17:34 2000
+@@ -41,6 +41,9 @@
  #include "subst.h"
  #include "input.h"
  #include "externs.h"
 +#include "builtins.h"
++
++#include "builtins/common.h"
  
  #if defined (JOB_CONTROL)
  #include "jobs.h"
-@@ -48,6 +49,7 @@
+@@ -49,6 +52,9 @@
  
  extern int line_number, current_command_line_count;
- extern int disallow_filename_globbing;
+ extern int last_command_exit_value;
 +extern int rpm_requires;
++char *alphabet_set = "abcdefghijklmnopqrstuvwxyz"
++                   "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
  
- WORD_DESC *
make_bare_word (string)
-@@ -588,6 +590,24 @@
-   return (make_command (cm_function_def, (SIMPLE_COM *)temp));
+ static COMMAND *make_for_or_select __P((enum command_type, WORD_DESC *, WORD_LIST *, COMMAND *));
#if defined (ARITH_FOR_COMMAND)
+@@ -696,6 +702,36 @@
+   return (make_command (cm_subshell, (SIMPLE_COM *)temp));
  }
  
 +void
 +output_requirement (file)
 +char *file;
 +{
-+  if (file[0] != '/') {
++  if ( (file[0] != '/') || strchr(file, '$')) {
 +    /* if we are not given a full path name we require the basename
 +       otherwise we require the full path.  This does not work in the
 +       Win/Dos world but I don't know what to do there.*/
@@ -159,18 +146,30 @@ diff -r -u bash-2.03.orig/make_cmd.c bash-2.03.new/make_cmd.c
 +      file=basename;
 +    }
 +  }  
-+  printf ("bash(%s)\n", file);
++
++    /* 
++       if the executable is called via variable substitution we can
++       not dermine what it is at compile time.  
++
++       if the executable consists only of characters not in the
++       alphabet we do not consider it a dependency just an artifact of
++       shell parsing (ex "exec < ${infile}").
++    */
++
++  if ( !strchr(file, '$') && strpbrk(file, alphabet_set) ) {
++    printf ("executable(%s)\n", file);
++  }
 +}
 +
  /* Reverse the word list and redirection list in the simple command
     has just been parsed.  It seems simpler to do this here the one
     time then by any other method that I can think of. */
-@@ -604,6 +624,25 @@
+@@ -712,6 +748,35 @@
        command->value.Simple->redirects =
        REVERSE_LIST (command->value.Simple->redirects, REDIRECT *);
      }
 +
-+  if (rpm_requires)
++  if (rpm_requires && command->value.Simple->words)
 +    {
 +      char *cmd0;
 +      char *cmd1;
@@ -178,23 +177,32 @@ diff -r -u bash-2.03.orig/make_cmd.c bash-2.03.new/make_cmd.c
 +
 +      cmd0 = command->value.Simple->words->word->word;
 +      b = builtin_address_internal (cmd0, 0);
++      cmd1 = 0;
++      if (command->value.Simple->words->next) {
++      cmd1 = command->value.Simple->words->next->word->word;
++      }
 +      if (b) {
-+      if (b->flags & REQUIRES_BUILTIN){
-+        cmd1 = command->value.Simple->words->next->word->word;
++      if ( (b->flags & REQUIRES_BUILTIN) && cmd1){
 +        output_requirement(cmd1);
 +      }
 +      } else {
-+      if (!assignment(cmd0))
++      if (!assignment(cmd0, 0)) {
 +        output_requirement(cmd0);
++      } else {
++
++        /* This will not work, the subshell that this runs in does
++             not get the "requires" commandline argument. */
++
++        execute_command(command);
++      }
 +      }
 +    } /*rpm_requires*/
  
    return (command);
  }
-diff -r -u bash-2.03.orig/shell.c bash-2.03.new/shell.c
---- bash-2.03.orig/shell.c     Thu Feb 18 11:42:27 1999
-+++ bash-2.03.new/shell.c      Fri Jul 16 11:30:57 1999
-@@ -170,6 +170,9 @@
+--- bash-2.04-beta5/shell.c.requires   Fri Nov 19 19:58:15 1999
++++ bash-2.04-beta5/shell.c    Sun Mar 19 14:14:17 2000
+@@ -163,6 +163,9 @@
  /* The name of the .(shell)rc file. */
  static char *bashrc_file = "~/.bashrc";
  
@@ -204,7 +212,7 @@ diff -r -u bash-2.03.orig/shell.c bash-2.03.new/shell.c
  /* Non-zero means to act more like the Bourne shell on startup. */
  static int act_like_sh;
  
-@@ -215,6 +218,7 @@
+@@ -208,6 +211,7 @@
    { "norc", Int, &no_rc, (char **)0x0 },
    { "posix", Int, &posixly_correct, (char **)0x0 },
    { "rcfile", Charp, (int *)0x0, &bashrc_file },
@@ -212,7 +220,7 @@ diff -r -u bash-2.03.orig/shell.c bash-2.03.new/shell.c
  #if defined (RESTRICTED_SHELL)
    { "restricted", Int, &restricted, (char **)0x0 },
  #endif
-@@ -398,6 +402,12 @@
+@@ -393,6 +397,12 @@
  
    if (dump_translatable_strings)
      read_but_dont_execute = 1;
@@ -225,5 +233,3 @@ diff -r -u bash-2.03.orig/shell.c bash-2.03.new/shell.c
  
    if (running_setuid && privileged_mode == 0)
      disable_priv_mode ();
-
-
This page took 0.458094 seconds and 4 git commands to generate.