mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-15 03:14:23 +00:00
e59c88cece
(via Mk/bsd.default-versions.mk and lang/gcc) which has moved from GCC 5.4 to GCC 6.4 under most circumstances. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++11-lang, c++14-lang, c++0x, c11, or gcc-c++11-lib. PR: 219275
47 lines
1.1 KiB
Makefile
47 lines
1.1 KiB
Makefile
# Created by: roam@FreeBSD.org
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= c-ares
|
|
PORTVERSION= 1.12.0
|
|
PORTREVISION= 2
|
|
CATEGORIES= dns
|
|
MASTER_SITES= http://c-ares.haxx.se/download/ \
|
|
http://obsd.isc.org/pub/OpenBSD/distfiles/ \
|
|
ZI
|
|
|
|
MAINTAINER= zi@FreeBSD.org
|
|
COMMENT= Asynchronous DNS resolver library
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.md
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --disable-werror
|
|
INSTALL_TARGET= install-strip
|
|
SSP_UNSAFE= Refuses -l in LDFLAGS
|
|
USES= libtool pathfix compiler:c++11-lang
|
|
USE_LDCONFIG= yes
|
|
|
|
PROGRAMS= acountry adig ahost
|
|
|
|
OPTIONS_DEFINE= CONFIG_INFO DEBUG HIDE_SYMBOLS OPTIMIZED_CFLAGS
|
|
OPTIONS_DEFAULT= CONFIG_INFO HIDE_SYMBOLS
|
|
|
|
CONFIG_INFO_DESC= Add the ares_config_info patch
|
|
HIDE_SYMBOLS_DESC= Hide internal library symbols
|
|
OPTIMIZED_CFLAGS_DESC= Build with compiler optimizations
|
|
|
|
CONFLICTS= ares-1.*
|
|
|
|
MAKE_JOBS_UNSAFE= yes
|
|
|
|
CONFIG_INFO_EXTRA_PATCHES= ${FILESDIR}/ares-config-info.patch
|
|
DEBUG_CONFIGURE_ENABLE= debug
|
|
HIDE_SYMBOLS_CONFIGURE_ENABLE= symbol-hiding
|
|
OPTIMIZED_CFLAGS_CONFIGURE_ENABLE= optimize
|
|
|
|
post-install:
|
|
${INSTALL_PROGRAM} ${PROGRAMS:S@^@${WRKSRC}/.libs/@} ${STAGEDIR}${PREFIX}/bin/
|
|
|
|
.include <bsd.port.mk>
|