Annotation of OpenXM/src/pcc/pcc.diff, Revision 1.3
1.3 ! ohara 1: diff -ubBr Makefile.in.orig Makefile.in
! 2: --- Makefile.in.orig 2008-07-18 23:00:38.000000000 +0900
! 3: +++ Makefile.in 2014-03-30 05:56:20.000000000 +0900
! 4: @@ -12,19 +12,18 @@
! 5: YACC=@YACC@
! 6: LEX=@LEX@
! 7:
! 8: -SUBDIR=cc
! 9: +SUBDIR=cpp
! 10:
! 11: all: ${SUBDIR}
! 12:
! 13: install:
! 14: - cd cc && ${MAKE} install
! 15: + cd cpp && ${MAKE} install
! 16:
! 17: clean:
! 18: - cd cc && ${MAKE} clean
! 19: + cd cpp && ${MAKE} clean
! 20:
! 21: distclean:
! 22: - cd cc && ${MAKE} distclean
! 23: - cd f77 && ${MAKE} distclean
! 24: + cd cpp && ${MAKE} distclean
! 25: /bin/rm -rf Makefile config.log stamp-h1 config.status \
! 26: configure.lineno config.h autom4te.cache
! 27:
! 28: diff -ubBr configure.orig configure
! 29: --- configure.orig 2010-11-01 03:20:51.000000000 +0900
! 30: +++ configure 2014-03-30 05:57:22.000000000 +0900
! 31: @@ -5081,7 +5081,7 @@
! 32: _ACEOF
! 33:
! 34:
! 35: -ac_config_files="$ac_config_files Makefile cc/Makefile cc/cc/Makefile cc/cpp/Makefile cc/ccom/Makefile f77/Makefile f77/f77/Makefile f77/fcom/Makefile"
! 36: +ac_config_files="$ac_config_files Makefile cpp/Makefile"
! 37:
! 38: cat >confcache <<\_ACEOF
! 39: # This file is a shell script that caches the results of configure
! 40: @@ -5640,7 +5640,7 @@
! 41: "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
! 42: "cc/Makefile") CONFIG_FILES="$CONFIG_FILES cc/Makefile" ;;
! 43: "cc/cc/Makefile") CONFIG_FILES="$CONFIG_FILES cc/cc/Makefile" ;;
! 44: - "cc/cpp/Makefile") CONFIG_FILES="$CONFIG_FILES cc/cpp/Makefile" ;;
! 45: + "cpp/Makefile") CONFIG_FILES="$CONFIG_FILES cpp/Makefile" ;;
! 46: "cc/ccom/Makefile") CONFIG_FILES="$CONFIG_FILES cc/ccom/Makefile" ;;
! 47: "f77/Makefile") CONFIG_FILES="$CONFIG_FILES f77/Makefile" ;;
! 48: "f77/f77/Makefile") CONFIG_FILES="$CONFIG_FILES f77/f77/Makefile" ;;
1.2 ohara 49: diff -ubBr cc/cpp/Makefile.in.orig cc/cpp/Makefile.in
1.1 ohara 50: --- cc/cpp/Makefile.in.orig 2010-12-19 00:22:13.000000000 +0900
51: +++ cc/cpp/Makefile.in 2011-01-14 22:05:51.000000000 +0900
52: @@ -12,7 +12,7 @@
53: prefix = @prefix@
54: exec_prefix = @exec_prefix@
55: bindir = @bindir@
56: -libexecdir = @libexecdir@
57: +libexecdir = @bindir@
58: datarootdir = @datarootdir@
59: mandir = @mandir@
60: strip = @strip@
61: @@ -30,7 +30,7 @@
62:
63: OBJS=cpp.o cpy.o token.o compat.o
64: HEADERS=cpp.h
65: -DEST=@BINPREFIX@cpp$(EXEEXT)
66: +DEST=@BINPREFIX@ox_cpp$(EXEEXT)
67:
68: MIPDIR=$(top_srcdir)/mip
69: MDIR=$(top_srcdir)/arch/$(TARGMACH)
70: @@ -89,8 +89,6 @@
71: strip ${DESTDIR}${libexecdir}/${DEST} ; \
72: echo strip ${DESTDIR}${libexecdir}/${DEST} ; \
73: fi
74: - test -z "${DESTDIR}$(mandir)/man1" || mkdir -p "${DESTDIR}$(mandir)/man1"
75: - ${INSTALL} $(srcdir)/cpp.1 ${DESTDIR}${mandir}/man1/$(DEST).1
76:
77: clean:
78: /bin/rm -f $(OBJS) $(DEST) lex.yy.c y.tab.[ch] tests/run*
1.2 ohara 79: diff -ubBr mip/node.h.orig mip/node.h
80: --- mip/node.h.orig 2010-08-11 23:08:44.000000000 +0900
81: +++ mip/node.h 2011-05-18 12:21:30.000000000 +0900
82: @@ -42,7 +42,7 @@
83: struct attr {
84: struct attr *next;
85: int atype;
86: - union aarg aa[];
87: + union aarg aa[1];
88: };
89:
90: /*
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>