components/php-5_3/php-sapi/php.mk
changeset 846 fe258446a1ae
child 1654 6f9989ec7bd5
equal deleted inserted replaced
845:f38158deaa77 846:fe258446a1ae
       
     1 #
       
     2 # CDDL HEADER START
       
     3 #
       
     4 # The contents of this file are subject to the terms of the
       
     5 # Common Development and Distribution License (the "License").
       
     6 # You may not use this file except in compliance with the License.
       
     7 #
       
     8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
       
     9 # or http://www.opensolaris.org/os/licensing.
       
    10 # See the License for the specific language governing permissions
       
    11 # and limitations under the License.
       
    12 #
       
    13 # When distributing Covered Code, include this CDDL HEADER in each
       
    14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
       
    15 # If applicable, add the following below this CDDL HEADER, with the
       
    16 # fields enclosed by brackets "[]" replaced with your own identifying
       
    17 # information: Portions Copyright [yyyy] [name of copyright owner]
       
    18 #
       
    19 # CDDL HEADER END
       
    20 #
       
    21 # Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
       
    22 #
       
    23 
       
    24 COMPONENT_PRE_INSTALL_ACTION += ( \
       
    25 	$(MKDIR) $(INSTALL_ROOT)/$(PHP_PEAR_CACHE_DIR) )
       
    26 
       
    27 #
       
    28 # Removing Zend/*parser.[ch] forces regeneration by native bison
       
    29 #
       
    30 COMPONENT_POST_UNPACK_ACTION += ( \
       
    31 	echo $(PATH); \
       
    32 	$(CP) /usr/include/zlib.h $(COMPONENT_SRC)/ext/zlib/my_zlib.h; \
       
    33 	$(RM) $(COMPONENT_SRC)/Zend/zend_ini_parser.c \
       
    34 	      $(COMPONENT_SRC)/Zend/zend_ini_parser.h \
       
    35 	      $(COMPONENT_SRC)/Zend/zend_ini_parser.output \
       
    36 	      $(COMPONENT_SRC)/Zend/zend_language_parser.c \
       
    37 	      $(COMPONENT_SRC)/Zend/zend_language_parser.h \
       
    38 	      $(COMPONENT_SRC)/Zend/zend_language_parser.output )
       
    39 
       
    40 COMPONENT_PRE_CONFIGURE_ACTION = ( \
       
    41 	cd $(COMPONENT_SRC); $(ENV) -i PATH=/usr/gnu/bin:$(PATH) \
       
    42 		MAKE="$(GMAKE)" \
       
    43 		$(CONFIG_SHELL) ./buildconf --force ; \
       
    44 	$(MV) configure configure.orig; \
       
    45 	$(GSED) -e "s\#-i -a -n php5\#-i -n php5\#" \
       
    46 		< configure.orig > configure; \
       
    47 	$(CHMOD) 755 configure; \
       
    48 	$(CLONEY) $(SOURCE_DIR) $(@D) )