diff options
author | tron <tron@pkgsrc.org> | 2011-07-20 23:24:51 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2011-07-20 23:24:51 +0000 |
commit | 4be0eacef0a3c51e65700f9a52f540226385c60c (patch) | |
tree | 79a827762af812a22f0300256ccedd259e316b5e /editors/emacs22 | |
parent | 6b67986065e75f4104420d8aa604fa1a7e05b5e9 (diff) | |
download | pkgsrc-4be0eacef0a3c51e65700f9a52f540226385c60c.tar.gz |
Remove accidentally committed file.
Diffstat (limited to 'editors/emacs22')
-rw-r--r-- | editors/emacs22/hacks.mk | 25 |
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 |