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

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

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
                     16: @@ -5445,7 +5445,7 @@
1.3       ohara      17:  _ACEOF
                     18:
                     19:
1.4       ohara      20: -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      21: +ac_config_files="$ac_config_files Makefile cpp/Makefile"
                     22:
                     23:  cat >confcache <<\_ACEOF
                     24:  # This file is a shell script that caches the results of configure
1.4       ohara      25: @@ -6143,7 +6143,7 @@
1.3       ohara      26:      "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
                     27:      "cc/Makefile") CONFIG_FILES="$CONFIG_FILES cc/Makefile" ;;
                     28:      "cc/cc/Makefile") CONFIG_FILES="$CONFIG_FILES cc/cc/Makefile" ;;
                     29: -    "cc/cpp/Makefile") CONFIG_FILES="$CONFIG_FILES cc/cpp/Makefile" ;;
                     30: +    "cpp/Makefile") CONFIG_FILES="$CONFIG_FILES cpp/Makefile" ;;
                     31:      "cc/ccom/Makefile") CONFIG_FILES="$CONFIG_FILES cc/ccom/Makefile" ;;
1.4       ohara      32:      "cc/cxxcom/Makefile") CONFIG_FILES="$CONFIG_FILES cc/cxxcom/Makefile" ;;
                     33:      "cc/driver/Makefile") CONFIG_FILES="$CONFIG_FILES cc/driver/Makefile" ;;
                     34: diff -ubBr cc/cpp/Makefile.in.orig cpp/Makefile.in
                     35: --- cc/cpp/Makefile.in.orig    2020-06-29 22:37:18.000000000 +0900
                     36: +++ cc/cpp/Makefile.in 2021-03-23 15:04:06.518851000 +0900
                     37: @@ -32,7 +32,7 @@
                     38:  MDIR=$(top_srcdir)/arch/$(TARGMACH)
                     39:  COMMONDIR=$(top_srcdir)/common
1.1       ohara      40:
                     41: -DEST=@BINPREFIX@cpp$(EXEEXT)
                     42: +DEST=@BINPREFIX@ox_cpp$(EXEEXT)
1.4       ohara      43:  MANPAGE=@BINPREFIX@cpp
1.1       ohara      44:
1.4       ohara      45:  all: $(DEST)
1.5     ! ohara      46: diff -ubBr cc/cpp/cpp.c.orig cc/cpp/cpp.c
        !            47: --- cc/cpp/cpp.c.orig  2020-02-27 02:58:19.000000000 +0900
        !            48: +++ cc/cpp/cpp.c       2021-03-25 17:01:14.157700000 +0900
        !            49: @@ -802,10 +802,8 @@
        !            50:        free(nm);
        !            51:        nm = addname(ob->buf);
        !            52:        bufree(ob);
        !            53: -      if (pushfile(nm, fn, SYSINC, NULL) == 0)
        !            54: +      pushfile(nm, fn, SYSINC, NULL);
        !            55:                return 1;
        !            56: -
        !            57: -      return 0;
        !            58:  }
        !            59:
        !            60:  #endif

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