Skip to content

Commit 4dc093e

Browse files
committed
try this
1 parent 4e7ad8d commit 4dc093e

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/libbson/tests/test-json.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2120,7 +2120,7 @@ test_bson_json_double (void)
21202120
ASSERT_CMPDOUBLE (bson_iter_double (&iter), ==, 0.0);
21212121

21222122
/* check that "x" is -0.0. signbit not available on Solaris or VS 2010 */
2123-
#if !defined(__sun) && (!defined(_MSC_VER) || (_MSC_VER >= 1800))
2123+
#if !defined(__sun) && !defined(__FreeBSD__) && (!defined(_MSC_VER) || (_MSC_VER >= 1800))
21242124
BSON_ASSERT (signbit (bson_iter_double (&iter)));
21252125
#endif
21262126

src/libmongoc/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,6 @@ if (ENABLE_SHM_COUNTERS STREQUAL "ON")
395395
find_library(RT_LIBRARY rt HINTS /usr/lib32)
396396
if (RT_LIBRARY)
397397
set (SHM_LIBRARIES rt)
398-
set (SHM_LIBRARIES m)
399398
endif ()
400399
endif ()
401400

0 commit comments

Comments
 (0)