@@ -7,13 +7,13 @@ PHP_ARG_WITH(system-ciphers, whether to use system default cipher list instead o
7
7
[ --with-system-ciphers OPENSSL: Use system default cipher list instead of hardcoded value] , no, no)
8
8
9
9
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:
12
12
m4_ifndef ( [ AS_VAR_COPY] ,
13
13
[ m4_define ( [ AS_VAR_COPY] ,
14
14
[ AS_LITERAL_IF ( [ $1 [ ] $2 ] , [ $1 =$$2 ] , [ eval $1 =\$$2 ] ) ] ) ] )
15
15
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
17
17
AS_VAR_COPY ( MONGOC_USER_SET_CFLAGS , [ CFLAGS] )
18
18
AC_SUBST ( MONGOC_USER_SET_CFLAGS )
19
19
@@ -207,7 +207,7 @@ if test "$MONGODB" != "no"; then
207
207
src/MongoDB/Monitoring/CommandSubscriber.c \
208
208
src/MongoDB/Monitoring/CommandSucceededEvent.c \
209
209
src/MongoDB/Monitoring/Subscriber.c \
210
- src/MongoDB/Monitoring/functions.c
210
+ src/MongoDB/Monitoring/functions.c \
211
211
"
212
212
213
213
PHP_ARG_WITH(libbson, whether to use system libbson,
@@ -240,10 +240,10 @@ if test "$MONGODB" != "no"; then
240
240
else
241
241
PHP_MONGODB_BSON_CFLAGS="$STD_CFLAGS -DBSON_COMPILATION"
242
242
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' ' '
244
244
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"
245
245
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' ' '
247
247
PHP_MONGODB_JSONSL_SOURCES="jsonsl.c"
248
248
249
249
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
279
279
else
280
280
PHP_MONGODB_MONGOC_CFLAGS="$STD_CFLAGS -DMONGOC_COMPILATION -DMONGOC_TRACE"
281
281
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' ' '
283
283
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"
284
284
285
285
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