mirror of
https://github.com/macintoshplus/mongo-php-driver.git
synced 2026-03-26 18:02:10 +01:00
libmongoc removed Solaris support in version 1.8.0 so there is no reason to retain these checks.
11 lines
727 B
Plaintext
11 lines
727 B
Plaintext
dnl Ignore OpenSSL deprecation warnings on OSX
|
|
AS_IF([test "$os_darwin" = "yes"],
|
|
[AX_CHECK_COMPILE_FLAG([-Wno-deprecated-declarations], [STD_CFLAGS="$STD_CFLAGS -Wno-deprecated-declarations"])])
|
|
dnl We know there are some cast-align issues on OSX
|
|
AS_IF([test "$os_darwin" = "yes"],
|
|
[AX_CHECK_COMPILE_FLAG([-Wno-cast-align], [STD_CFLAGS="$STD_CFLAGS -Wno-cast-align"])])
|
|
AS_IF([test "$os_darwin" = "yes"],
|
|
[AX_CHECK_COMPILE_FLAG([-Wno-unneeded-internal-declaration], [STD_CFLAGS="$STD_CFLAGS -Wno-unneeded-internal-declaration"])])
|
|
AS_IF([test "$os_darwin" = "yes"],
|
|
[AX_CHECK_COMPILE_FLAG([-Wno-error=unused-command-line-argument], [STD_CFLAGS="$STD_CFLAGS -Wno-error=unused-command-line-argument"])])
|