[BACK]Return to pcc.diff CVS log [TXT][DIR] Up to [local] / OpenXM / src / pcc

Annotation of OpenXM/src/pcc/pcc.diff, Revision 1.6

1.3       ohara       1: diff -ubBr Makefile.in.orig Makefile.in
1.4       ohara       2: --- Makefile.in.orig   2011-06-07 22:56:05.000000000 +0900
                      3: +++ Makefile.in        2021-03-23 14:57:31.896967000 +0900
                      4: @@ -5,7 +5,7 @@
1.3       ohara       5:
1.4       ohara       6:  @SET_MAKE@
                      7:
                      8: -ALL_SUBDIRS=  cc
                      9: +ALL_SUBDIRS=  cpp
                     10:  DIST_SUBDIRS= $(ALL_SUBDIRS) f77
                     11:
                     12:  all install clean:
1.3       ohara      13: diff -ubBr configure.orig configure
1.4       ohara      14: --- configure.orig     2020-06-13 23:55:53.000000000 +0900
                     15: +++ configure  2021-03-23 15:00:01.478465000 +0900
1.6     ! noro       16: @@ -2598,6 +2598,7 @@
        !            17:            i?86) targmach=i386 ;;
        !            18:            powerpc) targmach=powerpc endian=big ;;
        !            19:            x86_64) targmach=amd64 ;;
        !            20: +          arm*) targmach=arm ;;
        !            21:        esac
        !            22:          ;;
        !            23:
        !            24: @@ -5445,7 +5446,7 @@
1.3       ohara      25:  _ACEOF
                     26:
                     27:
1.4       ohara      28: -ac_config_files="$ac_config_files Makefile cc/Makefile cc/cc/Makefile cc/cpp/Makefile cc/ccom/Makefile cc/cxxcom/Makefile cc/driver/Makefile f77/Makefile f77/f77/Makefile f77/fcom/Makefile"
1.3       ohara      29: +ac_config_files="$ac_config_files Makefile cpp/Makefile"
                     30:
                     31:  cat >confcache <<\_ACEOF
                     32:  # This file is a shell script that caches the results of configure
1.4       ohara      33: @@ -6143,7 +6143,7 @@
1.3       ohara      34:      "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
                     35:      "cc/Makefile") CONFIG_FILES="$CONFIG_FILES cc/Makefile" ;;
                     36:      "cc/cc/Makefile") CONFIG_FILES="$CONFIG_FILES cc/cc/Makefile" ;;
                     37: -    "cc/cpp/Makefile") CONFIG_FILES="$CONFIG_FILES cc/cpp/Makefile" ;;
                     38: +    "cpp/Makefile") CONFIG_FILES="$CONFIG_FILES cpp/Makefile" ;;
                     39:      "cc/ccom/Makefile") CONFIG_FILES="$CONFIG_FILES cc/ccom/Makefile" ;;
1.4       ohara      40:      "cc/cxxcom/Makefile") CONFIG_FILES="$CONFIG_FILES cc/cxxcom/Makefile" ;;
                     41:      "cc/driver/Makefile") CONFIG_FILES="$CONFIG_FILES cc/driver/Makefile" ;;
                     42: diff -ubBr cc/cpp/Makefile.in.orig cpp/Makefile.in
                     43: --- cc/cpp/Makefile.in.orig    2020-06-29 22:37:18.000000000 +0900
                     44: +++ cc/cpp/Makefile.in 2021-03-23 15:04:06.518851000 +0900
                     45: @@ -32,7 +32,7 @@
                     46:  MDIR=$(top_srcdir)/arch/$(TARGMACH)
                     47:  COMMONDIR=$(top_srcdir)/common
1.1       ohara      48:
                     49: -DEST=@BINPREFIX@cpp$(EXEEXT)
                     50: +DEST=@BINPREFIX@ox_cpp$(EXEEXT)
1.4       ohara      51:  MANPAGE=@BINPREFIX@cpp
1.1       ohara      52:
1.4       ohara      53:  all: $(DEST)
1.5       ohara      54: diff -ubBr cc/cpp/cpp.c.orig cc/cpp/cpp.c
                     55: --- cc/cpp/cpp.c.orig  2020-02-27 02:58:19.000000000 +0900
                     56: +++ cc/cpp/cpp.c       2021-03-25 17:01:14.157700000 +0900
                     57: @@ -802,10 +802,8 @@
                     58:        free(nm);
                     59:        nm = addname(ob->buf);
                     60:        bufree(ob);
                     61: -      if (pushfile(nm, fn, SYSINC, NULL) == 0)
                     62: +      pushfile(nm, fn, SYSINC, NULL);
                     63:                return 1;
                     64: -
                     65: -      return 0;
                     66:  }
                     67:
                     68:  #endif

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>