diff options
author | marino <marino> | 2012-12-15 12:57:57 +0000 |
---|---|---|
committer | marino <marino> | 2012-12-15 12:57:57 +0000 |
commit | e1f4597731156713814050102c8d51c5d0275a52 (patch) | |
tree | 215d3e2987e1e0f8c29f8b290e6f323a34fc5428 /editors/emacs21 | |
parent | bf6e21da0481c9cf428d951db5d66d76485e5263 (diff) | |
download | pkgsrc-e1f4597731156713814050102c8d51c5d0275a52.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.h | 4 |
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 |