summaryrefslogtreecommitdiff
path: root/editors/emacs20
diff options
context:
space:
mode:
authorobache <obache>2008-07-01 13:22:06 +0000
committerobache <obache>2008-07-01 13:22:06 +0000
commit8bba56a21682d2b6cc44f7c58ed6bae830c86767 (patch)
tree721783093a9afa7a2da8fadf2e417711f822ce91 /editors/emacs20
parent3ededf3d058570d232c8f99ed304fae8d910aac0 (diff)
downloadpkgsrc-8bba56a21682d2b6cc44f7c58ed6bae830c86767.tar.gz
Fix build with gcc41 on DragonFly BSD.
emacs20 part of PR pkg/38633 from Hasso Tepper.
Diffstat (limited to 'editors/emacs20')
-rw-r--r--editors/emacs20/files/dragonfly.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/editors/emacs20/files/dragonfly.h b/editors/emacs20/files/dragonfly.h
index 8399c7d14c5..d79c107993a 100644
--- a/editors/emacs20/files/dragonfly.h
+++ b/editors/emacs20/files/dragonfly.h
@@ -49,6 +49,9 @@ Boston, MA 02111-1307, USA. */
#define START_FILES pre-crt0.o /usr/lib/crt1.o /usr/lib/crti.o /usr/lib/crtbegin.o
#define LIB_STANDARD -L/usr/lib/gcc34 -lgcc -lc -lgcc /usr/lib/crtend.o /usr/lib/crtn.o
# endif
+#elif defined(__GNUC__) && __GNUC__ == 4 && __GNUC_MINOR__ == 1
+#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
#else
#error "Add compiler version magic"
#endif