Date: Mon, 16 Nov 2015 00:30:00 +0000 (UTC) From: Gerald Pfeifer <gerald@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r401738 - in head: Mk lang/erlang lang/erlang-runtime15 lang/erlang-runtime16 lang/erlang-runtime17 lang/erlang-runtime18 lang/ghc multimedia/x264 net/asterisk11 net/asterisk13 security... Message-ID: <201511160030.tAG0U0Wu062390@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: gerald Date: Mon Nov 16 00:30:00 2015 New Revision: 401738 URL: https://svnweb.freebsd.org/changeset/ports/401738 Log: Add GCC_DESC to Mk/bsd.options.desc.mk. Use this in a number of ports instead of their own respective settings. Modified: head/Mk/bsd.options.desc.mk head/lang/erlang-runtime15/Makefile head/lang/erlang-runtime16/Makefile head/lang/erlang-runtime17/Makefile head/lang/erlang-runtime18/Makefile head/lang/erlang/Makefile head/lang/ghc/Makefile head/lang/ghc/bsd.cabal.options.mk head/multimedia/x264/Makefile head/net/asterisk11/Makefile head/net/asterisk13/Makefile head/security/cryptopp/Makefile head/www/mod_spdy/Makefile Modified: head/Mk/bsd.options.desc.mk ============================================================================== --- head/Mk/bsd.options.desc.mk Sun Nov 15 22:41:40 2015 (r401737) +++ head/Mk/bsd.options.desc.mk Mon Nov 16 00:30:00 2015 (r401738) @@ -102,6 +102,7 @@ FRIBIDI_DESC?= Bidirectional text suppo FTP_DESC?= FTP protocol support FTPS_DESC?= FTP with SSL/TLS support FUSE_DESC?= FUSE (Filesystem in Userspace) support +GCC_DESC?= Build with modern GCC (from ports) GCONF_DESC?= GConf configuration backend support GCRYPT_DESC?= Use GNU crypt library instead of OpenSSL GD_DESC?= GD graphics library support Modified: head/lang/erlang-runtime15/Makefile ============================================================================== --- head/lang/erlang-runtime15/Makefile Sun Nov 15 22:41:40 2015 (r401737) +++ head/lang/erlang-runtime15/Makefile Mon Nov 16 00:30:00 2015 (r401738) @@ -30,7 +30,6 @@ MAKE_JOBS_UNSAFE=yes OPTIONS_DEFINE= DOCS DTRACE GCC GS HIPE JAVA KQUEUE ODBC OPENSSL SCTP SMP THREADS WX DTRACE_DESC= Enable DTrace support -GCC_DESC= Use current GCC GS_DESC= Enable GS application (deprecated) HIPE_DESC= Build native HiPE compiler KQUEUE_DESC= Enable Kernel Poll (kqueue) support Modified: head/lang/erlang-runtime16/Makefile ============================================================================== --- head/lang/erlang-runtime16/Makefile Sun Nov 15 22:41:40 2015 (r401737) +++ head/lang/erlang-runtime16/Makefile Mon Nov 16 00:30:00 2015 (r401738) @@ -30,7 +30,6 @@ MAKE_JOBS_UNSAFE=yes OPTIONS_DEFINE= DOCS DTRACE GCC GS HIPE JAVA KQUEUE ODBC OPENSSL SCTP SMP THREADS WX DTRACE_DESC= Enable DTrace support -GCC_DESC= Use current GCC GS_DESC= Enable GS application (deprecated) HIPE_DESC= Build native HiPE compiler KQUEUE_DESC= Enable Kernel Poll (kqueue) support Modified: head/lang/erlang-runtime17/Makefile ============================================================================== --- head/lang/erlang-runtime17/Makefile Sun Nov 15 22:41:40 2015 (r401737) +++ head/lang/erlang-runtime17/Makefile Mon Nov 16 00:30:00 2015 (r401738) @@ -37,7 +37,6 @@ OPTIONS_DEFINE= DOCS DTRACE GCC GS HIPE DIRTY_DESC= Enable Dirty schedulers (experimental) DTRACE_DESC= Enable DTrace support -GCC_DESC= Use current GCC GS_DESC= Enable GS application (deprecated) HIPE_DESC= Build native HiPE compiler KQUEUE_DESC= Enable Kernel Poll (kqueue) support Modified: head/lang/erlang-runtime18/Makefile ============================================================================== --- head/lang/erlang-runtime18/Makefile Sun Nov 15 22:41:40 2015 (r401737) +++ head/lang/erlang-runtime18/Makefile Mon Nov 16 00:30:00 2015 (r401738) @@ -37,7 +37,6 @@ OPTIONS_DEFINE= DOCS DTRACE GCC GS HIPE DIRTY_DESC= Enable Dirty schedulers (experimental) DTRACE_DESC= Enable DTrace support -GCC_DESC= Use current GCC GS_DESC= Enable GS application (deprecated) HIPE_DESC= Build native HiPE compiler KQUEUE_DESC= Enable Kernel Poll (kqueue) support Modified: head/lang/erlang/Makefile ============================================================================== --- head/lang/erlang/Makefile Sun Nov 15 22:41:40 2015 (r401737) +++ head/lang/erlang/Makefile Mon Nov 16 00:30:00 2015 (r401738) @@ -42,7 +42,6 @@ OPTIONS_DEFINE= DOCS DTRACE GCC GS HIPE DIRTY_DESC= Enable Dirty schedulers (experimental) DTRACE_DESC= Enable DTrace support -GCC_DESC= Use current GCC GS_DESC= Enable GS application (deprecated) HIPE_DESC= Build native HiPE compiler KQUEUE_DESC= Enable Kernel Poll (kqueue) support Modified: head/lang/ghc/Makefile ============================================================================== --- head/lang/ghc/Makefile Sun Nov 15 22:41:40 2015 (r401737) +++ head/lang/ghc/Makefile Mon Nov 16 00:30:00 2015 (r401738) @@ -51,7 +51,6 @@ OPTIONS_DEFAULT= PROFILE DYNAMIC DOCS GC BOOT_DESC= Use installed GHC for bootstrapping BOOTH_DESC= Use installed HsColour for bootstrapping -GCC_DESC= Build with GCC (from ports) PCLANG_DESC= Build with Clang from ports BCLANG_DESC= Build with Clang from base PROFILE_DESC= Add support for performance profiling Modified: head/lang/ghc/bsd.cabal.options.mk ============================================================================== --- head/lang/ghc/bsd.cabal.options.mk Sun Nov 15 22:41:40 2015 (r401737) +++ head/lang/ghc/bsd.cabal.options.mk Mon Nov 16 00:30:00 2015 (r401738) @@ -25,7 +25,6 @@ HSCOLOUR_DESC?= Colorize generated docum DYNAMIC_DESC?= Add support for dynamic linking PROFILE_DESC?= Add support for profiling LLVM_DESC?= Use the LLVM backend for code generation -GCC_DESC= Build with GCC (from ports) PCLANG_DESC= Build with Clang from ports BCLANG_DESC= Build with Clang from base Modified: head/multimedia/x264/Makefile ============================================================================== --- head/multimedia/x264/Makefile Sun Nov 15 22:41:40 2015 (r401737) +++ head/multimedia/x264/Makefile Mon Nov 16 00:30:00 2015 (r401738) @@ -50,7 +50,6 @@ HAS_CONFIGURE= yes OPTIONS_DEFINE?= ASM DEBUG GCC GPAC LAVF PGO OPTIONS_DEFAULT?= ASM GPAC -GCC_DESC= Use current GCC GPAC_DESC= MPEG-4 output support LAVF_DESC= libav* format input/output support (requires FFmpeg) Modified: head/net/asterisk11/Makefile ============================================================================== --- head/net/asterisk11/Makefile Sun Nov 15 22:41:40 2015 (r401737) +++ head/net/asterisk11/Makefile Mon Nov 16 00:30:00 2015 (r401738) @@ -96,7 +96,6 @@ BACKTRACE_DESC= Stack backtrace support BASE_DESC= Use base compiler (experimental) DAHDI_DESC= DAHDI support EXCHANGE_DESC= Exchange calendar support -GCC_DESC= Use GCC from ports MP3PLAYER_DESC= Install MP3 Player for Music-On-Hold (mpg123) NEWG711_DESC= New G711 codec OOH323_DESC= ooh323 support Modified: head/net/asterisk13/Makefile ============================================================================== --- head/net/asterisk13/Makefile Sun Nov 15 22:41:40 2015 (r401737) +++ head/net/asterisk13/Makefile Mon Nov 16 00:30:00 2015 (r401738) @@ -101,7 +101,6 @@ BACKTRACE_DESC?= Stack backtrace support BASE_DESC= Use base compiler (experimental) DAHDI_DESC?= DAHDI support EXCHANGE_DESC?= Exchange calendar support -GCC_DESC= Use GCC from ports MP3PLAYER_DESC= Install MP3 Player for Music-On-Hold (mpg123) NEWG711_DESC?= New G711 Codec OOH323_DESC?= ooh323 support Modified: head/security/cryptopp/Makefile ============================================================================== --- head/security/cryptopp/Makefile Sun Nov 15 22:41:40 2015 (r401737) +++ head/security/cryptopp/Makefile Mon Nov 16 00:30:00 2015 (r401738) @@ -15,7 +15,6 @@ COMMENT= Free C++ class library of Cryp OPTIONS_DEFINE= DEBUG DOCS GCC STATIC THREADS OPTIONS_DEFAULT= THREADS STATIC_DESC= Build static version only (no shared libs) -GCC_DESC= Build with current GCC .include <bsd.port.options.mk> Modified: head/www/mod_spdy/Makefile ============================================================================== --- head/www/mod_spdy/Makefile Sun Nov 15 22:41:40 2015 (r401737) +++ head/www/mod_spdy/Makefile Mon Nov 16 00:30:00 2015 (r401738) @@ -46,7 +46,6 @@ SUB_FILES+= mod_spdy.conf SUB_LIST+= APACHEMODDIR=${APACHEMODDIR} OPTIONS_DEFINE= GCC DEBUG -GCC_DESC= Build with current GCC .include <bsd.port.options.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201511160030.tAG0U0Wu062390>