source_dir}/config.m4", "-L\$RDKAFKA_DIR/\$PHP_LIBDIR -lm\n", "-L\$RDKAFKA_DIR/\$PHP_LIBDIR -lm \$RDKAFKA_LIBS\n"); FileSystem::replaceFileStr("{$this->source_dir}/config.m4", "-L\$RDKAFKA_DIR/\$PHP_LIBDIR -lm\"\n", '-L$RDKAFKA_DIR/$PHP_LIBDIR -lm $RDKAFKA_LIBS"'); return true; } public function patchBeforeMake(): bool { // when compiling rdkafka with inline builds, it shows some errors, I don't know why. FileSystem::replaceFileStr( SOURCE_PATH . '/php-src/ext/rdkafka/rdkafka.c', "#ifdef HAS_RD_KAFKA_TRANSACTIONS\n#include \"kafka_error_exception.h\"\n#endif", '#include "kafka_error_exception.h"' ); FileSystem::replaceFileStr( SOURCE_PATH . '/php-src/ext/rdkafka/kafka_error_exception.h', ['#ifdef HAS_RD_KAFKA_TRANSACTIONS', '#endif'], '' ); return true; } public function getUnixConfigureArg(bool $shared = false): string { $pkgconf_libs = shell()->execWithResult('pkg-config --libs --static rdkafka')[1]; $pkgconf_libs = trim(implode('', $pkgconf_libs)); return '--with-rdkafka=' . ($shared ? 'shared,' : '') . BUILD_ROOT_PATH . ' RDKAFKA_LIBS="' . $pkgconf_libs . '"'; } }