summaryrefslogtreecommitdiff
path: root/editors/emacs21
diff options
context:
space:
mode:
authormarino <marino@pkgsrc.org>2012-12-15 12:57:57 +0000
committermarino <marino@pkgsrc.org>2012-12-15 12:57:57 +0000
commitaae2c3af945047c0b3340ccfa9a7f1ce74edb723 (patch)
tree215d3e2987e1e0f8c29f8b290e6f323a34fc5428 /editors/emacs21
parentaca8837a1a934670b739c3c50639a5d5238c254f (diff)
downloadpkgsrc-aae2c3af945047c0b3340ccfa9a7f1ce74edb723.tar.gz
editors/emacs21-nox11: Hardcode to gcc4.4 on DragonFly instead of gcc 4.1
DragonFly Release 3.2.x doesn't have gcc 4.1 anymore, but gcc 4.4 is still around and also available on many prior releases. Note that emacs 24 determines the CRT path dynamically but hardcoding on this obsolete emacs package is fine. Incidently, this doesn't fix emacs21 which still core dumps during installation phase, regardless of which system compiler builds it.
Diffstat (limited to 'editors/emacs21')
-rw-r--r--editors/emacs21/files/dragonfly.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/editors/emacs21/files/dragonfly.h b/editors/emacs21/files/dragonfly.h
index fdd9e381545..d2cc9192a0b 100644
--- a/editors/emacs21/files/dragonfly.h
+++ b/editors/emacs21/files/dragonfly.h
@@ -42,8 +42,8 @@ Boston, MA 02111-1307, USA. */
#define GETPGRP_NO_ARG
#ifdef DFLY_CRT_USRLIB
-#define START_FILES pre-crt0.o /usr/lib/crt1.o /usr/lib/crti.o /usr/lib/gcc41/crtbegin.o
-#define LIB_STANDARD -L/usr/lib/gcc41 -lgcc -lc -lgcc /usr/lib/gcc41/crtend.o /usr/lib/crtn.o
+#define START_FILES pre-crt0.o /usr/lib/crt1.o /usr/lib/crti.o /usr/lib/gcc44/crtbegin.o
+#define LIB_STANDARD -L/usr/lib/gcc44 -lgcc -lc -lgcc /usr/lib/gcc44/crtend.o /usr/lib/crtn.o
#else
#define START_FILES pre-crt0.o /usr/lib/gcc41/crt1.o /usr/lib/gcc41/crti.o /usr/lib/gcc41/crtbegin.o
#define LIB_STANDARD -L/usr/lib/gcc41 -lgcc -lc -lgcc /usr/lib/gcc41/crtend.o /usr/lib/gcc41/crtn.o