diff options
author | jperkin <jperkin@pkgsrc.org> | 2013-12-11 15:45:33 +0000 |
---|---|---|
committer | jperkin <jperkin@pkgsrc.org> | 2013-12-11 15:45:33 +0000 |
commit | 29d04f53b25b0039d89ab3c639bc6ade09a6f662 (patch) | |
tree | 0206068fd3e8f2bebd6e01a983a555f1789ccd41 | |
parent | a9dce53cc048dcbe68f72a5c91259fa9116cd900 (diff) | |
download | pkgsrc-29d04f53b25b0039d89ab3c639bc6ade09a6f662.tar.gz |
Disable --with-links on Darwin. This matches the configure script behaviour,
and the test for ./descr doesn't work if WRKOBJDIR is on a different file
system thank PKGSRCDIR.
-rw-r--r-- | x11/fltk/Makefile | 4 | ||||
-rw-r--r-- | x11/fltk13/Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/x11/fltk/Makefile b/x11/fltk/Makefile index bcfdd2632bb..5f5cccab102 100644 --- a/x11/fltk/Makefile +++ b/x11/fltk/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.80 2013/02/16 11:18:10 wiz Exp $ +# $NetBSD: Makefile,v 1.81 2013/12/11 15:46:23 jperkin Exp $ DISTNAME= fltk-1.1.10-source PKGNAME= ${DISTNAME:S/-source//} @@ -27,7 +27,7 @@ CONFIGURE_ARGS+= --enable-threads CONFIGURE_ARGS+= ac_cv_have_overlay=yes PLIST_VARS+= cs # case-sensitive -.if !exists(./descr) +.if !exists(./descr) && ${OPSYS} != "Darwin" CONFIGURE_ARGS+= --with-links PLIST.cs= yes .endif diff --git a/x11/fltk13/Makefile b/x11/fltk13/Makefile index 08a833ad2ef..3f653d23150 100644 --- a/x11/fltk13/Makefile +++ b/x11/fltk13/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.13 2013/06/09 16:09:35 ryoon Exp $ +# $NetBSD: Makefile,v 1.14 2013/12/11 15:45:33 jperkin Exp $ DISTNAME= fltk-1.3.2-source PKGNAME= ${DISTNAME:S/-source//} @@ -35,7 +35,7 @@ CONFIGURE_ARGS+= --enable-threads CONFIGURE_ARGS+= ac_cv_have_overlay=yes PLIST_VARS+= cs # case-sensitive -.if !exists(./descr) +.if !exists(./descr) && ${OPSYS} != "Darwin" CONFIGURE_ARGS+= --with-links PLIST.cs= yes .endif |