summaryrefslogtreecommitdiff
path: root/devel/xulrunner/mozilla-common.mk
diff options
context:
space:
mode:
authordsainty <dsainty>2010-12-23 11:44:24 +0000
committerdsainty <dsainty>2010-12-23 11:44:24 +0000
commit8c7ca6a8c0860ebd3e39de2d607b75770e220d80 (patch)
tree370b3e11e9340fe354eee027148337aef6427d42 /devel/xulrunner/mozilla-common.mk
parent33632049673fa741e8d8f1cdb7f03211ccd47938 (diff)
downloadpkgsrc-8c7ca6a8c0860ebd3e39de2d607b75770e220d80.tar.gz
Mechanically replace references to graphics/jpeg with the suitable
alternative from mk/jpeg.buildlink3.mk This allows selection of an alternative jpeg library (namely the x86 MMX, SSE, SSE2 accelerated libjpeg-turbo) via JPEG_DEFAULT=libjpeg-turbo, and follows the current standard model for alternatives (fam, motif, fuse etc). The mechanical edits were applied via the following script: #!/bin/sh for d in */*; do [ -d "$d" ] || continue for i in "$d/"Makefile* "$d/"*.mk; do case "$i" in *.orig|*"*"*) continue;; esac out="$d/x" sed -e 's;graphics/jpeg/buildlink3\.mk;mk/jpeg.buildlink3.mk;g' \ -e 's;BUILDLINK_PREFIX\.jpeg;JPEGBASE;g' \ < "$i" > "$out" if cmp -s "$i" "$out"; then rm -f "$out" else echo "Edited $i" mv -f "$i" "$i.orig" && mv "$out" "$i" fi done done
Diffstat (limited to 'devel/xulrunner/mozilla-common.mk')
-rw-r--r--devel/xulrunner/mozilla-common.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/xulrunner/mozilla-common.mk b/devel/xulrunner/mozilla-common.mk
index 972deb0e2ee..3e2ccbd13fd 100644
--- a/devel/xulrunner/mozilla-common.mk
+++ b/devel/xulrunner/mozilla-common.mk
@@ -1,4 +1,4 @@
-# $NetBSD: mozilla-common.mk,v 1.18 2010/11/13 11:54:43 tnn Exp $
+# $NetBSD: mozilla-common.mk,v 1.19 2010/12/23 11:44:28 dsainty Exp $
#
# common Makefile fragment for mozilla packages based on gecko 1.9.1.
#
@@ -88,7 +88,7 @@ BUILDLINK_API_DEPENDS.sqlite3+= sqlite3>=3.7.1
CONFIGURE_ENV+= ac_cv_sqlite_secure_delete=yes # c.f. patches/patch-al
.include "../../databases/sqlite3/buildlink3.mk"
.include "../../devel/zlib/buildlink3.mk"
-.include "../../graphics/jpeg/buildlink3.mk"
+.include "../../mk/jpeg.buildlink3.mk"
.include "../../net/libIDL/buildlink3.mk"
BUILDLINK_API_DEPENDS.gtk2+= gtk2+>=2.18.3nb1
.include "../../x11/gtk2/buildlink3.mk"