diff options
author | agc <agc@pkgsrc.org> | 2013-05-11 21:39:43 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2013-05-11 21:39:43 +0000 |
commit | 866dc404d62b581d2418a7931bdc79add990e290 (patch) | |
tree | 4b5b8f65bcd8bb5f0fa6123d727aa78c6b56a987 /sysutils | |
parent | 71773d19029a338530a2bd9e40ea2ae715ab2137 (diff) | |
download | pkgsrc-866dc404d62b581d2418a7931bdc79add990e290.tar.gz |
Pick up ${CC} from the environment, if it's defined
Allows this package to be cross-built
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/mrsync/distinfo | 4 | ||||
-rw-r--r-- | sysutils/mrsync/patches/patch-aa | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/sysutils/mrsync/distinfo b/sysutils/mrsync/distinfo index 145a6154f5b..7b38962c309 100644 --- a/sysutils/mrsync/distinfo +++ b/sysutils/mrsync/distinfo @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.1.1.1 2011/12/02 05:40:00 agc Exp $ +$NetBSD: distinfo,v 1.2 2013/05/11 21:39:43 agc Exp $ SHA1 (mrsync.20090219.zip) = 841e3b93bf513d08042f1610109fdf68143e62a1 RMD160 (mrsync.20090219.zip) = 868402646862ed133416cd661360bd40e335e474 Size (mrsync.20090219.zip) = 97238 bytes -SHA1 (patch-aa) = 9e7a2b8d46a89977dcc80b9b33ae7f49ff1e6bda +SHA1 (patch-aa) = 3a4a667cef2e5085495e957d984e79bdead96cd9 SHA1 (patch-ab) = de8495d0bf72e0298f45e916b0db5cce0659bcf4 SHA1 (patch-ac) = e0b48d09591a8e33d2b55f2784b5314b62da275f SHA1 (patch-ad) = dc0630875c95f802b16679e005083170d40d3f73 diff --git a/sysutils/mrsync/patches/patch-aa b/sysutils/mrsync/patches/patch-aa index 4769a252fee..5a413097191 100644 --- a/sysutils/mrsync/patches/patch-aa +++ b/sysutils/mrsync/patches/patch-aa @@ -1,15 +1,15 @@ -$NetBSD: patch-aa,v 1.1.1.1 2011/12/02 05:40:00 agc Exp $ +$NetBSD: patch-aa,v 1.2 2013/05/11 21:39:43 agc Exp $ Generalise this for every platform ---- Makefile.linux 2011/11/30 20:31:57 1.1 -+++ Makefile.linux 2011/11/30 20:32:48 +--- Makefile.linux.orig 2008-10-28 09:33:08.000000000 -0700 ++++ Makefile.linux 2013-05-11 14:13:11.000000000 -0700 @@ -5,13 +5,13 @@ SUNFLAG = # -D_SUN on Solaris machines IPV6FLAG = # -DIPV6 for IPv6 DEBUG = # -g -ggdb -CC = gcc-2.95.3.ren # 32-bit compiler -+CC = cc # 32-bit compiler ++CC ?= cc # 32-bit compiler CFLAGS = -O ${DEBUG} -Wall ${SUNFLAG} ${IPV6FLAG} -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 #LIBS = -lsocket # for Solaris LIBS = # there is no special lib needed, unless your system put the lib in non-standard place |