Blame view

buildroot/buildroot-2016.08.1/package/apache/apache.mk 2.12 KB
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
  ################################################################################
  #
  # apache
  #
  ################################################################################
  
  APACHE_VERSION = 2.4.23
  APACHE_SOURCE = httpd-$(APACHE_VERSION).tar.bz2
  APACHE_SITE = http://archive.apache.org/dist/httpd
  APACHE_LICENSE = Apache-2.0
  APACHE_LICENSE_FILES = LICENSE
  # Needed for mod_php
  APACHE_INSTALL_STAGING = YES
  # We have a patch touching configure.in and Makefile.in,
  # so we need to autoreconf:
  APACHE_AUTORECONF = YES
  APACHE_DEPENDENCIES = apr apr-util pcre
  
  APACHE_CONF_ENV= \
  	ap_cv_void_ptr_lt_long=no \
  	PCRE_CONFIG=$(STAGING_DIR)/usr/bin/pcre-config
  
  APACHE_CONF_OPTS = \
  	--sysconfdir=/etc/apache2 \
  	--with-apr=$(STAGING_DIR)/usr \
  	--with-apr-util=$(STAGING_DIR)/usr \
  	--with-pcre=$(STAGING_DIR)/usr/bin/pcre-config \
  	--enable-http \
  	--enable-dbd \
  	--enable-proxy \
  	--enable-mime-magic \
  	--without-suexec-bin \
  	--enable-mods-shared=all \
  	--with-mpm=worker \
  	--disable-lua \
  	--disable-luajit
  
  ifeq ($(BR2_PACKAGE_LIBXML2),y)
  APACHE_DEPENDENCIES += libxml2
  # Apache wants the path to the header file, where it can find
  # <libxml/parser.h>.
  APACHE_CONF_OPTS += \
  	--enable-xml2enc \
  	--enable-proxy-html \
  	--with-libxml2=$(STAGING_DIR)/usr/include/libxml2
  else
  APACHE_CONF_OPTS += \
  	--disable-xml2enc \
  	--disable-proxy-html
  endif
  
  ifeq ($(BR2_PACKAGE_OPENSSL),y)
  APACHE_DEPENDENCIES += openssl
  APACHE_CONF_OPTS += \
  	--enable-ssl \
  	--with-ssl=$(STAGING_DIR)/usr
  else
  APACHE_CONF_OPTS += --disable-ssl
  endif
  
  ifeq ($(BR2_PACKAGE_ZLIB),y)
  APACHE_DEPENDENCIES += zlib
  APACHE_CONF_OPTS += \
  	--enable-deflate \
  	--with-z=$(STAGING_DIR)/usr
  else
  APACHE_CONF_OPTS += --disable-deflate
  endif
  
  define APACHE_FIX_STAGING_APACHE_CONFIG
  	$(SED) 's%/usr/build%$(STAGING_DIR)/usr/build%' $(STAGING_DIR)/usr/bin/apxs
  	$(SED) 's%^prefix =.*%prefix = $(STAGING_DIR)/usr%' $(STAGING_DIR)/usr/build/config_vars.mk
  endef
  APACHE_POST_INSTALL_STAGING_HOOKS += APACHE_FIX_STAGING_APACHE_CONFIG
  
  define APACHE_CLEANUP_TARGET
  	$(RM) -rf $(TARGET_DIR)/usr/manual $(TARGET_DIR)/usr/build
  endef
  APACHE_POST_INSTALL_TARGET_HOOKS += APACHE_CLEANUP_TARGET
  
  $(eval $(autotools-package))