/irc/sic/

7b1596540'/> 6c373a1f387b830d1a9945d418d77667b1596540

Remove all := from BUILD_DEPENDS, here are never needed. 2018-07-09T08:40:17+00:00 mat mat@FreeBSD.org 2018-07-09T08:40:17+00:00 79c3ac81e82fba101ce34956c5de634b8ed032d0 While there, cleanup, and sort depends. When build and run dependencies are the same, there are three ways to avoid duplicating the list while not adding the framework added BUILD_DEPENDS to the RUN_DEPENDS. In order of preference, they are: 1) use RUN_DEPENDS to set BUILD_DEPENDS: BUILD_DEPENDS= ${RUN_DEPENDS} RUN_DEPENDS= foo:bar/baz 2) create another variable and use it: MY_DEPENDS= foo:bar/baz BUILD_DEPENDS= ${MY_DEPENDS} RUN_DEPENDS= ${MY_DEPENDS} 3) use BUILD_DEPENDS to set RUN_DEPENDS and force evaluation: BUILD_DEPENDS= foo:bar/baz RUN_DEPENDS:= ${BUILD_DEPENDS} Sponsored by: Absolight
While there, cleanup, and sort depends.

When build and run dependencies are the same, there are three ways to
avoid duplicating the list while not adding the framework added
BUILD_DEPENDS to the RUN_DEPENDS.  In order of preference, they are:

1) use RUN_DEPENDS to set BUILD_DEPENDS:

BUILD_DEPENDS=	${RUN_DEPENDS}
RUN_DEPENDS=	foo:bar/baz

2) create another variable and use it:

MY_DEPENDS= foo:bar/baz
BUILD_DEPENDS=	${MY_DEPENDS}
RUN_DEPENDS=	${MY_DEPENDS}

3) use BUILD_DEPENDS to set RUN_DEPENDS and force evaluation:

BUILD_DEPENDS=	foo:bar/baz
RUN_DEPENDS:=	${BUILD_DEPENDS}

Sponsored by:	Absolight
Mark as broken on -CURRENT. 2018-06-25T23:36:59+00:00 linimon linimon@FreeBSD.org 2018-06-25T23:36:59+00:00 bb2c4f15ce2ae8da54b949862bce095f8cdf3ce4

- Update misc/sword to 1.8.0 2018-02-23T01:30:03+00:00 tabthorpe tabthorpe@FreeBSD.org 2018-02-23T01:30:03+00:00 7b0dd99d1d6f1ce2b9377c9c0e87420b087b15c0 - Chase shlib bump - Reassign to the heap PR: 225276 Submitted by: bsam
- Chase shlib bump
- Reassign to the heap

PR:		225276
Submitted by:	bsam
- Mark as BROKEN on 12.X 2017-04-20T13:33:10+00:00 tabthorpe tabthorpe@FreeBSD.org 2017-04-20T13:33:10+00:00 f0159f2f9b68af7fba7dd5c3348a2d765a68946d MFH: 2017Q2
MFH:		2017Q2
Cleanup BROKEN/IGNORE for 10.3- 2017-01-03T11:01:05+00:00 mat mat@FreeBSD.org 2017-01-03T11:01:05+00:00 057971c152a484648da5936e2abf430699f07815 Sponsored by: Absolight
Sponsored by:	Absolight
devel/nspr, security/nss: drop version from SONAME 2016-10-09T12:10:02+00:00 jbeich jbeich@FreeBSD.org 2016-10-09T12:10:02+00:00 4f019a52672f513b8a0fed0ca76a586964ea5878 No other downstream appends synthetic library version, and doing so causes underlinking due to fragile build system (see below). Not to mention being unable to swap out bundled libs from upstream builds. $ cc -lplds4 -L/usr/local/lib /usr/lib/crt1.o: In function `_start1': crt1_c.c:(.text+0xa6): undefined reference to `main' /usr/local/lib/libplds4.so: undefined reference to `pthread_set_name_np' /usr/local/lib/libplds4.so: undefined reference to `pthread_create' /usr/local/lib/libplds4.so: undefined reference to `pthread_condattr_init' /usr/local/lib/libplds4.so: undefined reference to `pthread_setschedparam' /usr/local/lib/libplds4.so: undefined reference to `pthread_getschedparam' PR: 213144 Exp-run by: antoine
No other downstream appends synthetic library version, and doing so
causes underlinking due to fragile build system (see below). Not to
mention being unable to swap out bundled libs from upstream builds.

  $ cc -lplds4 -L/usr/local/lib
  /usr/lib/crt1.o: In function `_start1':
  crt1_c.c:(.text+0xa6): undefined reference to `main'
  /usr/local/lib/libplds4.so: undefined reference to `pthread_set_name_np'
  /usr/local/lib/libplds4.so: undefined reference to `pthread_create'
  /usr/local/lib/libplds4.so: undefined reference to `pthread_condattr_init'
  /usr/local/lib/libplds4.so: undefined reference to `pthread_setschedparam'
  /usr/local/lib/libplds4.so: undefined reference to `pthread_getschedparam'

PR:		213144
Exp-run by:	antoine