mirror of
https://git.code.sf.net/p/libpng/code.git
synced 2025-07-10 18:04:09 +02:00
cmake: Fix compilation on systems without libm
Signed-off-by: Cosmin Truta <ctruta@gmail.com>
This commit is contained in:
parent
840af2eda6
commit
763c77e628
@ -10,7 +10,7 @@
|
|||||||
# Revised by Sam Serrels, 2017
|
# Revised by Sam Serrels, 2017
|
||||||
# Revised by Vadim Barkov, 2017
|
# Revised by Vadim Barkov, 2017
|
||||||
# Revised by Vicky Pfau, 2018
|
# Revised by Vicky Pfau, 2018
|
||||||
# Revised by Cameron Cawley, 2018
|
# Revised by Cameron Cawley, 2018,2021
|
||||||
# Revised by Kyle Bentley, 2018
|
# Revised by Kyle Bentley, 2018
|
||||||
# Revised by David Callu, 2020
|
# Revised by David Callu, 2020
|
||||||
# Revised by Steve Robinson, 2020
|
# Revised by Steve Robinson, 2020
|
||||||
@ -49,6 +49,9 @@ endif()
|
|||||||
|
|
||||||
if(UNIX AND NOT APPLE AND NOT BEOS AND NOT HAIKU AND NOT EMSCRIPTEN)
|
if(UNIX AND NOT APPLE AND NOT BEOS AND NOT HAIKU AND NOT EMSCRIPTEN)
|
||||||
find_library(M_LIBRARY m)
|
find_library(M_LIBRARY m)
|
||||||
|
if(NOT M_LIBRARY)
|
||||||
|
set(M_LIBRARY "")
|
||||||
|
endif()
|
||||||
else()
|
else()
|
||||||
# libm is not needed and/or not available.
|
# libm is not needed and/or not available.
|
||||||
set(M_LIBRARY "")
|
set(M_LIBRARY "")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user