aboutsummaryrefslogtreecommitdiff
path: root/editors/emacs23/files
diff options
context:
space:
mode:
Diffstat (limited to 'editors/emacs23/files')
-rw-r--r--editors/emacs23/files/patch-Makefile.in39
-rw-r--r--editors/emacs23/files/patch-lispintro-Makefile.in11
-rw-r--r--editors/emacs23/files/patch-lispref-Makefile.in38
-rw-r--r--editors/emacs23/files/patch-man-Makefile.in11
-rw-r--r--editors/emacs23/files/patch-src__alloc.c14
5 files changed, 0 insertions, 113 deletions
diff --git a/editors/emacs23/files/patch-Makefile.in b/editors/emacs23/files/patch-Makefile.in
deleted file mode 100644
index 29774c94a862..000000000000
--- a/editors/emacs23/files/patch-Makefile.in
+++ /dev/null
@@ -1,39 +0,0 @@
---- ./Makefile.in.orig Sun Aug 27 04:16:25 2006
-+++ ./Makefile.in Fri Sep 1 21:10:08 2006
-@@ -409,14 +409,6 @@
- ## That flag is also used in leim/Makefile.in
- install-arch-indep: mkdir info
- -set ${COPYDESTS} ; \
-- unset CDPATH; \
-- for dir in ${COPYDIR} ; do \
-- if [ `(cd $$1 && /bin/pwd)` != `(cd $${dir} && /bin/pwd)` ] ; then \
-- rm -rf $$1 ; \
-- fi ; \
-- shift ; \
-- done
-- -set ${COPYDESTS} ; \
- mkdir ${COPYDESTS} ; \
- chmod ugo+rx ${COPYDESTS} ; \
- unset CDPATH; \
-@@ -503,9 +495,9 @@
- fi; \
- cd ${srcdir}/info ; \
- for elt in $(INFO_FILES); do \
-- for f in `ls $$elt $$elt-[1-9] $$elt-[1-9][0-9] 2>/dev/null`; do \
-- ${INSTALL_DATA} $$f $(DESTDIR)${infodir}/$$f; \
-- chmod a+r $(DESTDIR)${infodir}/$$f; \
-+ for f in `ls $$elt 2>/dev/null`; do \
-+ ${INSTALL_DATA} $$f $(DESTDIR)${infodir}/$$f.info; \
-+ chmod a+r $(DESTDIR)${infodir}/$$f.info; \
- done; \
- done); \
- else true; fi
-@@ -515,7 +507,7 @@
- then \
- for elt in $(INFO_FILES); do \
- (cd $${thisdir}; \
-- ${INSTALL_INFO} --info-dir=$(DESTDIR)${infodir} $(DESTDIR)${infodir}/$$elt); \
-+ ${INSTALL_INFO} --info-dir=$(DESTDIR)${infodir} $(DESTDIR)${infodir}/$$elt.info); \
- done; \
- else true; fi
- -chmod -R a+r $(DESTDIR)${datadir}/emacs ${COPYDESTS} $(DESTDIR)${infodir}
diff --git a/editors/emacs23/files/patch-lispintro-Makefile.in b/editors/emacs23/files/patch-lispintro-Makefile.in
deleted file mode 100644
index eac664f21cda..000000000000
--- a/editors/emacs23/files/patch-lispintro-Makefile.in
+++ /dev/null
@@ -1,11 +0,0 @@
---- ./lispintro/Makefile.in.orig Mon Feb 6 01:05:17 2006
-+++ ./lispintro/Makefile.in Fri Sep 1 21:10:08 2006
-@@ -33,7 +33,7 @@
- INFO_TARGETS = ${infodir}/eintr
- DVI_TARGETS = emacs-lisp-intro.dvi
-
--MAKEINFO = makeinfo
-+MAKEINFO = makeinfo --no-split
- TEXI2DVI = texi2dvi
- DVIPS = dvips
- ENVADD = TEXINPUTS="$(srcdir):$(TEXINPUTS)" MAKEINFO="$(MAKEINFO) -I$(srcdir)"
diff --git a/editors/emacs23/files/patch-lispref-Makefile.in b/editors/emacs23/files/patch-lispref-Makefile.in
deleted file mode 100644
index cfd8699c6512..000000000000
--- a/editors/emacs23/files/patch-lispref-Makefile.in
+++ /dev/null
@@ -1,38 +0,0 @@
---- ./lispref/Makefile.in.orig Mon Aug 21 08:22:22 2006
-+++ ./lispref/Makefile.in Fri Sep 1 21:10:08 2006
-@@ -32,7 +32,7 @@
- TEXI2DVI = texi2dvi
- SHELL = /bin/sh
- INSTALL_INFO = install-info
--MAKEINFO = makeinfo --force
-+MAKEINFO = makeinfo --force --no-split
-
- # The name of the manual:
- VERSION=2.9
-@@ -109,7 +109,7 @@
- # This is for use in a separate distro of the Emacs Lisp manual.
- install: elisp
- $(srcdir)/mkinstalldirs $(infodir)
-- cp elisp elisp-[1-9] elisp-[1-9][0-9] $(infodir)
-+ cp elisp $(infodir)
- ${INSTALL_INFO} --info-dir=${infodir} ${infodir}/elisp
-
- # This is for use in a separate distro of the Emacs Lisp manual.
-@@ -125,7 +125,7 @@
-
- maintainer-clean: clean
- rm -f elisp.dvi elisp.oaux
-- cd $(infodir); rm -f elisp elisp-[1-9] elisp-[1-9][0-9]
-+ cd $(infodir); rm -f elisp
-
- dist: $(infodir)/elisp elisp.dvi
- -rm -rf temp
-@@ -135,7 +135,7 @@
- $(srcdir)/Makefile.in $(srcs) \
- $(srcdir)/../man/texinfo.tex \
- elisp.dvi elisp.aux elisp.??s \
-- $(infodir)/elisp $(infodir)/elisp-[1-9] $(infodir)/elisp-[1-9][0-9] \
-+ $(infodir)/elisp \
- temp/$(manual)
- -(cd temp/$(manual); rm -f mkinstalldirs)
- cp $(srcdir)/mkinstalldirs temp/$(manual)
diff --git a/editors/emacs23/files/patch-man-Makefile.in b/editors/emacs23/files/patch-man-Makefile.in
deleted file mode 100644
index 3c3ab4cb91ef..000000000000
--- a/editors/emacs23/files/patch-man-Makefile.in
+++ /dev/null
@@ -1,11 +0,0 @@
---- ./man/Makefile.in.orig Sat May 6 18:54:21 2006
-+++ ./man/Makefile.in Fri Sep 1 21:10:08 2006
-@@ -32,7 +32,7 @@
-
- # The makeinfo program is part of the Texinfo distribution.
- # Use --force so that it generates output even if there are errors.
--MAKEINFO = makeinfo --force
-+MAKEINFO = makeinfo --force --no-split
- INFO_TARGETS = ../info/emacs ../info/ccmode ../info/cl \
- ../info/dired-x ../info/ediff ../info/forms ../info/gnus \
- ../info/message ../info/sieve ../info/pgg ../info/emacs-mime \
diff --git a/editors/emacs23/files/patch-src__alloc.c b/editors/emacs23/files/patch-src__alloc.c
deleted file mode 100644
index b295275127d5..000000000000
--- a/editors/emacs23/files/patch-src__alloc.c
+++ /dev/null
@@ -1,14 +0,0 @@
---- ./src/alloc.c.orig Thu Aug 31 20:50:29 2006
-+++ ./src/alloc.c Fri Sep 1 21:10:08 2006
-@@ -4560,7 +4560,11 @@
- needed on ia64 too. See mach_dep.c, where it also says inline
- assembler doesn't work with relevant proprietary compilers. */
- #ifdef sparc
-+#ifdef __sparc64__
-+ asm ("flushw");
-+#else
- asm ("ta 3");
-+#endif
- #endif
-
- /* Save registers that we need to see on the stack. We need to see