mirror of
https://git.freebsd.org/ports.git
synced 2025-06-07 22:00:31 -04:00
Apache HTTPD web server. Because mod_spdy is an Apache module, it can be loaded into currently deployed Apache HTTPD 2.x web servers using mod_so. This module is still an early beta and is not yet suitable for production environments. WWW: http://code.google.com/p/mod-spdy/ PR: ports/166538 Submitted by: Masaki TAGAWA
17 lines
576 B
Python
17 lines
576 B
Python
--- tools/gyp/pylib/gyp/generator/make.py.org 2012-03-31 16:29:12.063738000 +0900
|
|
+++ tools/gyp/pylib/gyp/generator/make.py 2012-03-31 16:59:21.541770196 +0900
|
|
@@ -129,11 +129,11 @@
|
|
# in gyp's make.py where ARFLAGS.host etc. is computed.
|
|
# TODO(evan): move all cross-compilation logic to gyp-time so we don't need
|
|
# to replicate this environment fallback in make as well.
|
|
-CC.host ?= gcc
|
|
+CC.host ?= cc
|
|
CFLAGS.host ?=
|
|
-CXX.host ?= g++
|
|
+CXX.host ?= c++
|
|
CXXFLAGS.host ?=
|
|
-LINK.host ?= g++
|
|
+LINK.host ?= c++
|
|
LDFLAGS.host ?=
|
|
AR.host ?= ar
|
|
ARFLAGS.host := %(ARFLAGS.host)s
|