1PHP_ARG_ENABLE(protobuf, whether to enable Protobuf extension, [ --enable-protobuf Enable Protobuf extension]) 2 3if test "$PHP_PROTOBUF" != "no"; then 4 5 PHP_NEW_EXTENSION( 6 protobuf, 7 array.c def.c encode_decode.c map.c message.c protobuf.c storage.c type_check.c upb.c utf8.c, 8 $ext_shared) 9 10fi 11