We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b50a11b commit 73ea471Copy full SHA for 73ea471
.evergreen/compile-unix.sh
@@ -73,9 +73,11 @@ fi
73
phpize
74
./configure --enable-mongodb-developer-flags
75
76
-# If we're testing a specific version of libmongoc, regenerate the version file
+# configure relies on version information in libmongoc-version-current, but the target is not available until after calling configure
77
+# To work around this, run the make target, then run configure again
78
if [ -n "$LIBMONGOC_VERSION" ]; then
79
make libmongoc-version-current
80
+ ./configure --enable-mongodb-developer-flags
81
fi
82
83
make test TESTS="tests/smoketest.phpt"
0 commit comments