summaryrefslogtreecommitdiff
path: root/editors/emacs20
AgeCommit message (Collapse)AuthorFilesLines
2020-01-26all: migrate homepages from http to httpsrillig1-3/+3
pkglint -r --network --only "migrate" As a side-effect of migrating the homepages, pkglint also fixed a few indentations in unrelated lines. These and the new homepages have been checked manually.
2019-06-08editors/*: let pkglint fix indentation and variable alignmentrillig2-9/+9
pkglint -Wall -F -r editors Manually fixed the changes in editors/nedit since the "fixed" indentation was wrong.
2017-07-23Roll a couple bits into the jumbo patch, one from patch-aj, anotherdholland3-19/+11
mentioned in passing in PR 43091. Bump PKGREVISION again, to 24.
2017-07-23Revert Joerg's change "Remove now obsolete Emacs ASLR hacks" as it doesn'tdholland3-5/+21
work. Bump PKGREVISION. Note that the reverted changeset itself should have and didn't bump PKGREVISION.
2017-06-17Remove now obsolete Emacs ASLR hacks.joerg2-19/+3
2017-01-19Convert all occurrences (353 by my count) ofagc1-3/+3
MASTER_SITES= site1 \ site2 style continuation lines to be simple repeated MASTER_SITES+= site1 MASTER_SITES+= site2 lines. As previewed on tech-pkg. With thanks to rillig for fixing pkglint accordingly.
2016-11-26Use paxctl +a like in emacs21 to make the build work on -current. It seemsdholland3-9/+25
that if you dump with a non-ASLR temacs you get a working emacs binary, and if you don't you don't, although I don't really see why -- perhaps it's something broken in crtstuff. Closes PR 51654. Note that pre-ASLR emacs20 binaries not dumped by an ASLR temacs also blow up in the same way, which doesn't make much sense either, but undoubtedly it's all connected. It's not particularly good that we apparently don't have backwards compatibility for old Emacs binaries because of this, but for the time being I'm more worried about it working at all. PKGREVISION++ again, to 22.
2016-11-26Two fixes: (1) set ELFSIZE correctly (I have no idea how this ever worked)dholland4-20/+42
and (2) work around the problem where gcc 5.x compiles calloc into a call to itself. PKGREVISION -> 21.
2016-11-11emacs20: retire elaborate logic to match versions of NetBSD below 1.7maya1-11/+2
older binutils worked fine without this option, and it was a performance hit, but it's unrealistic to see anyone using such old binutils today. not matching some operating systems will cause runtime crashes. forgotten to apply patch in PR pkg/43091: emacs20 doesn't work (..on linux, which doesn't match the elaborate logic) bump PKGREVISION as it is only apparent at runtime.
2016-07-09Bump PKGREVISION for perl-5.24.0 for everything mentioning perl.wiz1-2/+2
2015-11-03Add SHA512 digests for distfiles for editors categoryagc1-1/+6
Problems found with existing distfiles: distfiles/javascript-2.1b1.el distfiles/yEd-3.14.2.zip No changes made to the javascript-mode or yEd distinfo files. Otherwise, existing SHA1 digests verified and found to be the same on the machine holding the existing distfiles (morden). All existing SHA1 digests retained for now as an audit trail.
2015-10-14Switch from x11/Xaw3d to newer x11/libXaw3d.wiz1-2/+2
Adapt some packages so they build with that. Bump their PKGREVISIONs.
2015-01-01Use BROKEN_ON_PLATFORM for missing config entries. (yeah this one's mydholland1-2/+2
fault)
2013-10-27NetBSD with native clang won't have libgcc, so fake a static library.joerg1-1/+10
Avoids going to the great hacks in the build system to avoid it.
2013-10-27Use tradcpp for clang build, fallback to cpp -traditional otherwise.joerg3-21/+19
2013-07-07Probe a potentially different cpp for preprocessing makefiles. Fordholland2-6/+62
now, wire it down; this will probably fail on clang and I'll fix it better later.
2013-07-07Now revert version 1.4 of patch-ab, which introduced extra configuredholland2-70/+6
tests to work around problems with gcc 4.5's cpp when used on makefiles.
2013-07-07Assert MAINTAINER privilege to revert version 1.6 of patch-ab (anddholland2-40/+15
version 1.7, which is its associated patch comment) on the grounds that it's wrong.
2013-07-05Add a comment.ryoon2-3/+6
2013-07-05Fix x11 option build.ryoon2-15/+37
2013-05-31Bump all packages for perl-5.18, thatwiz1-2/+2
a) refer 'perl' in their Makefile, or b) have a directory name of p5-*, or c) have any dependency on any p5-* package Like last time, where this caused no complaints.
2013-04-06Resolves:rodent1-2/+2
"INFO_FILES should be set to YES or yes." "Packages that install info files should set INFO_FILES." Makefile and PLIST warning, respectively.
2013-02-17Put the Emacs version in all the DESCR files. Ride the bumps I just did.dholland1-0/+2
2013-02-16Change PKGNAME to emacs20-20.7 instead of emacs-20.7.dholland2-3/+4
2012-12-11Shift some of the more basic patches to a distfile patch.dholland22-295/+20
PKGREVISION -> 16.
2012-10-03Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.asau1-3/+1
2012-06-14Recursive PKGREVISION bump for libxml2 buildlink addition.sbd1-2/+2
2012-03-05Tweak this so it should configure (and then hopefully build) on PA-RISCdholland3-15/+29
on NetBSD. Tangentially related to PR 35235.
2012-03-05Fix one missing ${DESTDIR} while installing info, which for some reasondholland2-4/+5
failed only on Solaris.
2011-12-08editors/emacs20: Mark NOT-FOR-DRAGONFLYmarino1-2/+2
I actually spent a couple of hours getting emacs20 to build error-free with DragonFly's gcc4.4 compiler. Unfortunately, it came DOA and emits "elf_load_section: truncated ELF file" when executed. This version of EMACS is 14 years old, and it's not worth fooling with anymore. I doubt anybody will notice its masking.
2011-12-01Extend previous to realloc and free as well, which is almost certainlydholland2-4/+30
necessary. PR 45669.
2011-12-01Add __asm __volatile("":::"memory") at a critical point in alloc.c.dholland2-6/+16
gcc thinks it knows the semantics of malloc and so it thinks it can optimize out the manipulation of __malloc_hook; however, doing so causes the subsequent malloc call to come back to itself, leading to an infinite recursion and SIGSEGV in temacs. This fixes the remaining part of PR 45669. Someone(TM) should check if this issue affects other Emacs versions and/or XEmacs.
2011-12-01Fold patch-cb into patch-bm since they patch the same file. Related todholland3-18/+4
PR 45669. hi joerg!
2011-12-01Patch up configure tests for cpp to avoid problems when running gccdholland2-6/+70
4.5's cpp on makefiles. PR 45669. Unfortunately, this does not by itself fix the build; now I'm getting ./temacs -batch -l loadup dump gmake[1]: *** [emacs] Segmentation fault and I have a bad feeling that this may be the same issue that the other emacs versions are sometimes hitting.
2011-08-01Fix broken build with clang.dholland2-1/+17
2011-08-01Take MAINTAINER.dholland1-2/+2
2010-03-30Fix emacs20 on -current. (It broke on the terminfo changes because itdholland3-9/+28
can't probe terminfo vs. termcap and needs to be told explicitly in its config system.) ok agc@. PKGREVISION to 14.
2010-02-21Add RCS Id (hi roy!).wiz2-2/+4
2010-02-04destdir support, plus fix some pre-existing funnies with install permissionsdholland5-24/+211
2010-01-20When running terminfo but compiled for termcap, we cannot assumeroy3-6/+25
that we actually have anything useable in termcap_term_buffer so just use the terminfo fixed size defined ealier.
2009-06-14Convert @exec/@unexec to @pkgdir or drop it.joerg1-3/+2
2009-06-14Remove @dirrm entries from PLISTsjoerg1-21/+1
2009-04-30Make it build on DragonFly master.hasso2-14/+7
2009-03-20Simply and speed up buildlink3.mk files and processing.joerg1-13/+6
This changes the buildlink3.mk files to use an include guard for the recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS, BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of enter/exit marker, which can be used to reconstruct the tree and to determine first level includes. Avoiding := for large variables (BUILDLINK_ORDER) speeds up parse time as += has linear complexity. The include guard reduces system time by avoiding reading files over and over again. For complex packages this reduces both %user and %sys time to half of the former time.
2008-11-10Bump PKGREVISION for libXaw API depends bump due to libXaw8 removal.wiz1-2/+2
2008-10-13Correct copy&paste error.uebayasi1-4/+4
2008-10-11Move mk/emacs.mk to editors/emacs/modules.mk.uebayasi2-4/+13
Don't call pkg_info to get the installed Emacs version; always use the version matching EMACS_TYPE set by users. Be DEPENDS to it. This should address pkg/37146 by Aleksey Cheusov. While here convert some emacs lisp packages to user-destdir.
2008-07-13Add patches for CVE-2008-1694 and CVE-2008-2142.dholland5-3/+73
PKGREVISION -> 11.
2008-07-01Fix build with gcc41 on DragonFly BSD.obache1-0/+3
emacs20 part of PR pkg/38633 from Hasso Tepper.
2008-04-05Fix some 64-bit problems in x11 code.kristerw7-11/+203
Bump PKGREVISION.