| OLD | NEW |
| 1 dnl lines starting with "dnl" are comments |
| 2 |
| 1 PHP_ARG_ENABLE(protobuf, whether to enable Protobuf extension, [ --enable-proto
buf Enable Protobuf extension]) | 3 PHP_ARG_ENABLE(protobuf, whether to enable Protobuf extension, [ --enable-proto
buf Enable Protobuf extension]) |
| 2 | 4 |
| 3 if test "$PHP_PROTOBUF" != "no"; then | 5 if test "$PHP_PROTOBUF" != "no"; then |
| 4 | 6 |
| 5 PHP_NEW_EXTENSION( | 7 dnl this defines the extension |
| 6 protobuf, | 8 PHP_NEW_EXTENSION(protobuf, upb.c protobuf.c def.c message.c storage.c, $ext_s
hared) |
| 7 array.c def.c encode_decode.c map.c message.c protobuf.c storage.c type_chec
k.c upb.c utf8.c, | |
| 8 $ext_shared) | |
| 9 | 9 |
| 10 fi | 10 fi |
| OLD | NEW |