summaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
authortron <tron>2011-07-20 23:24:51 +0000
committertron <tron>2011-07-20 23:24:51 +0000
commitb4155d3fe9c11de0c4c801eca099d937b90e2bc0 (patch)
tree79a827762af812a22f0300256ccedd259e316b5e /editors
parentb88af1106d5805f4948826db86ce4ba853b0305c (diff)
downloadpkgsrc-b4155d3fe9c11de0c4c801eca099d937b90e2bc0.tar.gz
Remove accidentally committed file.
Diffstat (limited to 'editors')
-rw-r--r--editors/emacs22/hacks.mk25
1 files changed, 0 insertions, 25 deletions
diff --git a/editors/emacs22/hacks.mk b/editors/emacs22/hacks.mk
deleted file mode 100644
index 2421feee417..00000000000
--- a/editors/emacs22/hacks.mk
+++ /dev/null
@@ -1,25 +0,0 @@
-# $NetBSD: hacks.mk,v 1.2 2011/07/20 23:24:05 tron Exp $
-
-### [Sun Mar 14 19:32:40 UTC 2004 : jlam]
-### GCC 3.3.x and older versions have an optimization bug on powerpc that's
-### tickled by the db4 source code, so remove optimization flags in that
-### case. This fixes PR pkg/30647 by Ian Spray.
-###
-.if ${MACHINE_ARCH} == "powerpc"
-. include "../../mk/compiler.mk"
-. if !empty(CC_VERSION:Mgcc*)
-. if !defined(_GCC_IS_TOO_OLD)
-_GCC_IS_TOO_OLD!= \
- if ${PKG_ADMIN} pmatch 'gcc<3.4' ${CC_VERSION}; then \
- ${ECHO} "yes"; \
- else \
- ${ECHO} "no"; \
- fi
-MAKEFLAGS+= _GCC_IS_TOO_OLD=${_GCC_IS_TOO_OLD:Q}
-. endif
-. if !empty(_GCC_IS_TOO_OLD:M[yY][eE][sS])
-PKG_HACKS+= powerpc-codegen
-BUILDLINK_TRANSFORM+= rm:-O[0-9]*
-. endif
-. endif
-.endif