diff options
author | jlam <jlam@pkgsrc.org> | 2004-08-27 06:29:06 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2004-08-27 06:29:06 +0000 |
commit | 2347df5518184e316028bf90a0d032ee71028b63 (patch) | |
tree | 0ff3b0eccc04d1b065efd866b0590608098961d5 /chat/eggdrop | |
parent | e5a1b353192b781a2b5c36eca0f963c97d681caa (diff) | |
download | pkgsrc-2347df5518184e316028bf90a0d032ee71028b63.tar.gz |
Replace RPATH_FLAG with LINKER_RPATH_FLAG and COMPILER_RPATH_FLAG,
which are the full option names used to set rpath directives for the
linker and the compiler, respectively. In places were we are invoking
the linker, use "${LINKER_RPATH_FLAG} <path>", where the space is
inserted in case the flag is a word, e.g. -rpath. The default values
of *_RPATH_FLAG are set by the compiler/*.mk files, depending on the
compiler that you use. They may be overridden on a ${OPSYS}-specific
basis by setting _OPSYS_LINKER_RPATH_FLAG and _OPSYS_COMPILER_RPATH_FLAG,
respectively. Garbage-collect _OPSYS_RPATH_NAME and _COMPILER_LD_FLAG.
Diffstat (limited to 'chat/eggdrop')
-rw-r--r-- | chat/eggdrop/distinfo | 4 | ||||
-rw-r--r-- | chat/eggdrop/patches/patch-ag | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/chat/eggdrop/distinfo b/chat/eggdrop/distinfo index f66cb273fa8..17253b63289 100644 --- a/chat/eggdrop/distinfo +++ b/chat/eggdrop/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.6 2004/03/11 06:37:50 minskim Exp $ +$NetBSD: distinfo,v 1.7 2004/08/27 06:29:06 jlam Exp $ SHA1 (eggdrop1.6.15.tar.bz2) = 8740800b066b35c745c7e753e7f58daac9929f3a Size (eggdrop1.6.15.tar.bz2) = 760615 bytes @@ -8,7 +8,7 @@ SHA1 (patch-ac) = a1c5648e2748f5efbcb890b5ed8a3e8faac5f0a5 SHA1 (patch-ad) = 8b9f740e82d44df7daeede770fce7f5add751407 SHA1 (patch-ae) = 370fe00ada6b9432483ab3e0ef9c349f7c7dd00f SHA1 (patch-af) = 1915d3f9ac55e49d829613c6f003b2800f62a734 -SHA1 (patch-ag) = ab193737668ff9c0bdfbfa1b21678356a505bb41 +SHA1 (patch-ag) = 9cb1acc1be5ad4186dc7c9fac9f20955a9f51292 SHA1 (patch-ah) = b9f6e10f0a1a8f73f014ceae5015dc157f8fe124 SHA1 (patch-ai) = 0bbf9e3be1368897e2a9399c9ea58f28c8f84e0c SHA1 (patch-aj) = 7701eefed77228fe46360bea717403314386de03 diff --git a/chat/eggdrop/patches/patch-ag b/chat/eggdrop/patches/patch-ag index 7368af9184b..1297714f426 100644 --- a/chat/eggdrop/patches/patch-ag +++ b/chat/eggdrop/patches/patch-ag @@ -1,4 +1,4 @@ -$NetBSD: patch-ag,v 1.4 2003/05/24 16:43:06 salo Exp $ +$NetBSD: patch-ag,v 1.5 2004/08/27 06:29:06 jlam Exp $ --- Makefile.in.orig Tue Feb 27 20:06:27 2001 +++ Makefile.in Fri Nov 2 11:40:10 2001 @@ -7,7 +7,7 @@ $NetBSD: patch-ag,v 1.4 2003/05/24 16:43:06 salo Exp $ # make modules SHLIB_CC = @SHLIB_CC@ -SHLIB_LD = @SHLIB_LD@ -+SHLIB_LD = @SHLIB_LD@ $(RPATH_FLAG)@TCLLIB@ ++SHLIB_LD = @SHLIB_LD@ $(LINKER_RPATH_FLAG) @TCLLIB@ SHLIB_STRIP = @SHLIB_STRIP@ MOD_EXT = @MOD_EXT@ @@ -15,7 +15,7 @@ $NetBSD: patch-ag,v 1.4 2003/05/24 16:43:06 salo Exp $ # stuff for Tcl XREQS = @TCL_REQS@ XLIBS = @TCL_LIBS@ @LIBS@ -+XLDFLAGS = -Wl,$(RPATH_FLAG)@TCLLIB@ ++XLDFLAGS = $(COMPILER_RPATH_FLAG)@TCLLIB@ TCLLIB = @TCLLIB@ TCLLIBFN = @TCLLIBFN@ |