Skip to content

Commit ac91077

Browse files
committed
Merge pull request #656
2 parents 4c03206 + f14327d commit ac91077

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

config.m4

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ PHP_ARG_WITH(system-ciphers, whether to use system default cipher list instead o
77
[ --with-system-ciphers OPENSSL: Use system default cipher list instead of hardcoded value], no, no)
88

99
dnl borrowed from libmongoc configure.ac
10-
# AS_VAR_COPY is available in AC 2.64 and on, but we only require 2.60.
11-
# If we're on an older version, we define it ourselves:
10+
dnl AS_VAR_COPY is available in AC 2.64 and on, but we only require 2.60.
11+
dnl If we're on an older version, we define it ourselves:
1212
m4_ifndef([AS_VAR_COPY],
1313
[m4_define([AS_VAR_COPY],
1414
[AS_LITERAL_IF([$1[]$2], [$1=$$2], [eval $1=\$$2])])])
1515

16-
# Get "user-set cflags" here, before we've added the flags we use by default
16+
dnl Get "user-set cflags" here, before we've added the flags we use by default
1717
AS_VAR_COPY(MONGOC_USER_SET_CFLAGS, [CFLAGS])
1818
AC_SUBST(MONGOC_USER_SET_CFLAGS)
1919

@@ -207,7 +207,7 @@ if test "$MONGODB" != "no"; then
207207
src/MongoDB/Monitoring/CommandSubscriber.c \
208208
src/MongoDB/Monitoring/CommandSucceededEvent.c \
209209
src/MongoDB/Monitoring/Subscriber.c \
210-
src/MongoDB/Monitoring/functions.c
210+
src/MongoDB/Monitoring/functions.c \
211211
"
212212

213213
PHP_ARG_WITH(libbson, whether to use system libbson,
@@ -240,10 +240,10 @@ if test "$MONGODB" != "no"; then
240240
else
241241
PHP_MONGODB_BSON_CFLAGS="$STD_CFLAGS -DBSON_COMPILATION"
242242

243-
# Generated with: find src/libbson/src/bson -name '*.c' -print0 | cut -sz -d / -f 5- | sort -z | tr '\000' ' '
243+
dnl Generated with: find src/libbson/src/bson -name '*.c' -print0 | cut -sz -d / -f 5- | sort -z | tr '\000' ' '
244244
PHP_MONGODB_BSON_SOURCES="bcon.c bson-atomic.c bson.c bson-clock.c bson-context.c bson-decimal128.c bson-error.c bson-iso8601.c bson-iter.c bson-json.c bson-keys.c bson-md5.c bson-memory.c bson-oid.c bson-reader.c bson-string.c bson-timegm.c bson-utf8.c bson-value.c bson-version-functions.c bson-writer.c"
245245

246-
# Generated with: find src/libbson/src/jsonsl -name '*.c' -print0 | cut -sz -d / -f 5- | sort -z | tr '\000' ' '
246+
dnl Generated with: find src/libbson/src/jsonsl -name '*.c' -print0 | cut -sz -d / -f 5- | sort -z | tr '\000' ' '
247247
PHP_MONGODB_JSONSL_SOURCES="jsonsl.c"
248248

249249
PHP_ADD_SOURCES_X(PHP_EXT_DIR(mongodb)[src/libbson/src/bson], $PHP_MONGODB_BSON_SOURCES, $PHP_MONGODB_BSON_CFLAGS, shared_objects_mongodb, yes)
@@ -279,7 +279,7 @@ if test "$MONGODB" != "no"; then
279279
else
280280
PHP_MONGODB_MONGOC_CFLAGS="$STD_CFLAGS -DMONGOC_COMPILATION -DMONGOC_TRACE"
281281

282-
# Generated with: find src/libmongoc/src/mongoc -name '*.c' -print0 | cut -sz -d / -f 5- | sort -z | tr '\000' ' '
282+
dnl Generated with: find src/libmongoc/src/mongoc -name '*.c' -print0 | cut -sz -d / -f 5- | sort -z | tr '\000' ' '
283283
PHP_MONGODB_MONGOC_SOURCES="mongoc-apm.c mongoc-array.c mongoc-async.c mongoc-async-cmd.c mongoc-b64.c mongoc-buffer.c mongoc-bulk-operation.c mongoc-client.c mongoc-client-pool.c mongoc-cluster.c mongoc-cluster-cyrus.c mongoc-cluster-gssapi.c mongoc-cluster-sasl.c mongoc-cluster-sspi.c mongoc-cmd.c mongoc-collection.c mongoc-compression.c mongoc-counters.c mongoc-crypto.c mongoc-crypto-cng.c mongoc-crypto-common-crypto.c mongoc-crypto-openssl.c mongoc-cursor-array.c mongoc-cursor.c mongoc-cursor-cursorid.c mongoc-cursor-transform.c mongoc-cyrus.c mongoc-database.c mongoc-find-and-modify.c mongoc-gridfs.c mongoc-gridfs-file.c mongoc-gridfs-file-list.c mongoc-gridfs-file-page.c mongoc-gssapi.c mongoc-handshake.c mongoc-host-list.c mongoc-index.c mongoc-init.c mongoc-libressl.c mongoc-linux-distro-scanner.c mongoc-list.c mongoc-log.c mongoc-matcher.c mongoc-matcher-op.c mongoc-memcmp.c mongoc-openssl.c mongoc-queue.c mongoc-rand-cng.c mongoc-rand-common-crypto.c mongoc-rand-openssl.c mongoc-read-concern.c mongoc-read-prefs.c mongoc-rpc.c mongoc-sasl.c mongoc-scram.c mongoc-secure-channel.c mongoc-secure-transport.c mongoc-server-description.c mongoc-server-stream.c mongoc-set.c mongoc-socket.c mongoc-ssl.c mongoc-sspi.c mongoc-stream-buffered.c mongoc-stream.c mongoc-stream-file.c mongoc-stream-gridfs.c mongoc-stream-socket.c mongoc-stream-tls.c mongoc-stream-tls-libressl.c mongoc-stream-tls-openssl-bio.c mongoc-stream-tls-openssl.c mongoc-stream-tls-secure-channel.c mongoc-stream-tls-secure-transport.c mongoc-topology.c mongoc-topology-description-apm.c mongoc-topology-description.c mongoc-topology-scanner.c mongoc-uri.c mongoc-util.c mongoc-version-functions.c mongoc-write-command.c mongoc-write-concern.c"
284284

285285
PHP_ADD_SOURCES_X(PHP_EXT_DIR(mongodb)[src/libmongoc/src/mongoc], $PHP_MONGODB_MONGOC_SOURCES, $PHP_MONGODB_MONGOC_CFLAGS, shared_objects_mongodb, yes)

0 commit comments

Comments
 (0)