home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / D / PERL / PERL-4.036 / PERL-4 / perl-4.036 / perl.udf < prev    next >
Encoding:
Text File  |  1994-07-20  |  3.0 KB  |  102 lines

  1. --- Configure~    Mon Feb  8 20:37:48 1993
  2. +++ Configure    Thu Jul  7 11:42:01 1994
  3. @@ -363,8 +363,8 @@
  4.  d_ndir=ndir
  5.  voidwant=1
  6.  voidwant=7
  7. -libswanted="c_s net_s net socket nsl_s nsl nm ndir dir ndbm dbm PW malloc sun m bsd BSD x posix ucb"
  8. -inclwanted='/usr/include /usr/netinclude /usr/include/sun /usr/include/bsd /usr/include/lan /usr/ucbinclude'
  9. +libswanted="c_s net_s net socket nsl_s nsl nm ndir dir ndbm dbm PW malloc sun m x posix ucb"
  10. +inclwanted='/usr/include'
  11.  
  12.  : Now test for existence of everything in MANIFEST
  13.  
  14. @@ -1298,7 +1298,7 @@
  15.      case "$gccflags" in
  16.      *-ansi*) ;;
  17.      *-traditional*) ;;
  18. -    *) gccflags="$gccflags -traditional -Dvolatile=__volatile__" ;;
  19. +    *) gccflags="$gccflags" ;;
  20.      esac
  21.      ;;
  22.  esac
  23. @@ -1402,7 +1402,7 @@
  24.  : the following weeds options from ccflags that are of no interest to cpp
  25.  cppflags="$ccflags"
  26.  case "$cc" in
  27. -*gcc*) cppflags="$cppflags -D__GNUC__";;
  28. +*gcc*) cppflags="$cppflags";;
  29.  esac
  30.  case "$cppflags" in
  31.  '');;
  32. @@ -3432,8 +3432,10 @@
  33.  echo " "
  34.  case "$sig_name" in
  35.  '')
  36. -    echo "Generating a list of signal names..."
  37. -    set X `cat $usrinclude/signal.h $usrinclude/sys/signal.h 2>&1 | awk '
  38. +    echo "Creating list of Linux's signal names...-ljl-"
  39. +
  40. +    echo '#include <signal.h>' >try.c; gcc -M try.c >signal_list
  41. +    set X `cat signal_list`; shift; set X `cat $* 2>&1 | awk '
  42.  $1 ~ /^#define$/ && $2 ~ /^SIG[A-Z0-9]*$/ && $3 ~ /^[1-9][0-9]*$/ {
  43.      sig[$3] = substr($2,4,20)
  44.      if (max < $3 && $3 < 60) {
  45. @@ -3455,13 +3457,7 @@
  46.  '`
  47.      shift
  48.      case $# in
  49. -    0)  echo 'kill -l' >/tmp/foo$$
  50. -    set X `$csh -f </tmp/foo$$`
  51. -    shift
  52. -    case $# in
  53. -    0)set HUP INT QUIT ILL TRAP IOT EMT FPE KILL BUS SEGV SYS PIPE ALRM TERM
  54. -        ;;
  55. -    esac
  56. +    0)set HUP INT QUIT ILL TRAP IOT unused FPE KILL USR1 SEGV USR2 PIPE ALRM TERM
  57.      ;;
  58.      esac
  59.      sig_name="ZERO $*"
  60. @@ -4014,7 +4010,7 @@
  61.  dflt=''
  62.  fastread=''
  63.  echo "If you didn't make any mistakes, then just type a carriage return here."
  64. -rp="If you need to edit config.sh, do it as a shell escape here:"
  65. +rp="If you need to EDIT config.sh, do it as a shell escape here:"
  66.  $echo $n "$rp $c"
  67.  . UU/myread
  68.  case "$ans" in
  69. --- doio.c~    Mon Feb  8 20:37:43 1993
  70. +++ doio.c    Mon Jan 10 13:51:00 1994
  71. @@ -2779,7 +2779,7 @@
  72.  #endif
  73.  #ifdef HAS_SEM
  74.      case O_SEMCTL:
  75. -    ret = semctl(id, n, cmd, a);
  76. +    ret = semctl(id, n, cmd, (struct semid_ds *)a);
  77.      break;
  78.  #endif
  79.  #ifdef HAS_SHM
  80. --- t/comp/cpp.t~    Mon Feb  8 20:37:02 1993
  81. +++ t/comp/cpp.t    Mon Jan 10 14:00:00 1994
  82. @@ -7,7 +7,7 @@
  83.      if (/^cppstdin/) {
  84.      if (/^cppstdin='(.*cppstdin)'/ && ! -e $1) {
  85.          print "1..0\n";
  86. -        exit;         # Can't test till after install, alas.
  87. +        exit;
  88.      }
  89.      last;
  90.      }
  91. --- perl.c~    Mon Feb  8 20:35:21 1993
  92. +++ perl.c    Mon Jul 18 08:53:00 1994
  93. @@ -1374,7 +1374,7 @@
  94.      s++;
  95.      return s;
  96.      case 'v':
  97. -    fputs("\nThis is perl, version 4.0\n\n",stdout);
  98. +    fputs("\nThis is perl, version 4.0 for Linux {36LA}-ljl-\n\n",stdout);
  99.      fputs(rcsid,stdout);
  100.      fputs("\nCopyright (c) 1989, 1990, 1991, Larry Wall\n",stdout);
  101.  #ifdef MSDOS
  102.