diff options
author | Jason Helfman <jgh@FreeBSD.org> | 2012-01-03 21:03:57 +0000 |
---|---|---|
committer | Jason Helfman <jgh@FreeBSD.org> | 2012-01-03 21:03:57 +0000 |
commit | 90e0ff2a70db10dd05386a67c215987a639d727a (patch) | |
tree | 05181a80c82aea6b57aab42ee367caee3f615663 /sysutils/ioping | |
parent | 4a2e463ef26feef1ec2d238613b41353ab67cca1 (diff) | |
download | freebsd-ports-90e0ff2a70db10dd05386a67c215987a639d727a.zip |
- prevent breakage on <80000
Submitted by: Oleg Ginzburg < olevole at olevole.ru >
Reviewed by: crees (mentor)
Approved by: maintainer (via email), rene (mentor)
Diffstat (limited to 'sysutils/ioping')
-rw-r--r-- | sysutils/ioping/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sysutils/ioping/Makefile b/sysutils/ioping/Makefile index 131d3ab75d98..fdc1fbaf1021 100644 --- a/sysutils/ioping/Makefile +++ b/sysutils/ioping/Makefile @@ -20,6 +20,9 @@ PLIST_FILES= bin/ioping MAKE_ENV= VERSION=${PORTVERSION} +# for the benefit of <80000 +CFLAGS+= -lm + do-build: cd ${WRKSRC}; \ ${SETENV} ${MAKE_ENV} ${CC} ${CFLAGS} -DVERSION=${PORTVERSION} ioping.c -o ioping |