mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2024-11-10 06:51:54 +00:00
Address comments from #472
Resolves #508. Signed-off-by: Tobias Kortkamp <t@tobik.me>
This commit is contained in:
parent
22dd94fc5c
commit
ff6377a3bd
2 changed files with 4 additions and 4 deletions
|
@ -93,12 +93,12 @@ if ( CMAKE_SYSTEM MATCHES "OS2" )
|
||||||
endif ( CMAKE_SYSTEM MATCHES "OS2" )
|
endif ( CMAKE_SYSTEM MATCHES "OS2" )
|
||||||
|
|
||||||
# Initialize the library directory name suffix.
|
# Initialize the library directory name suffix.
|
||||||
if (NOT MINGW AND NOT MSVC)
|
if (NOT MINGW AND NOT MSVC AND NOT CMAKE_SYSTEM_NAME MATCHES "FreeBSD|DragonFly")
|
||||||
if ( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT ${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD|DragonFly")
|
if ( CMAKE_SIZEOF_VOID_P EQUAL 8 )
|
||||||
set ( _init_lib_suffix "64" )
|
set ( _init_lib_suffix "64" )
|
||||||
else ( CMAKE_SIZEOF_VOID_P EQUAL 8 )
|
else ( CMAKE_SIZEOF_VOID_P EQUAL 8 )
|
||||||
set ( _init_lib_suffix "" )
|
set ( _init_lib_suffix "" )
|
||||||
endif ( CMAKE_SIZEOF_VOID_P EQUAL 8 AND NOT ${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD|DragonFly")
|
endif ( CMAKE_SIZEOF_VOID_P EQUAL 8 )
|
||||||
else ()
|
else ()
|
||||||
set ( _init_lib_suffix "" )
|
set ( _init_lib_suffix "" )
|
||||||
endif()
|
endif()
|
||||||
|
|
|
@ -53,7 +53,7 @@ set (INFO_INSTALL_DIR "share/info" CACHE STRING "The info install dir")
|
||||||
mark_as_advanced (INFO_INSTALL_DIR)
|
mark_as_advanced (INFO_INSTALL_DIR)
|
||||||
|
|
||||||
# MAN_INSTALL_DIR - the man pages install dir
|
# MAN_INSTALL_DIR - the man pages install dir
|
||||||
if ( ${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD|DragonFly")
|
if ( CMAKE_SYSTEM_NAME MATCHES "FreeBSD|DragonFly")
|
||||||
set (MAN_INSTALL_DIR "man/man1" CACHE STRING "The man pages install dir")
|
set (MAN_INSTALL_DIR "man/man1" CACHE STRING "The man pages install dir")
|
||||||
else()
|
else()
|
||||||
set (MAN_INSTALL_DIR "share/man/man1" CACHE STRING "The man pages install dir")
|
set (MAN_INSTALL_DIR "share/man/man1" CACHE STRING "The man pages install dir")
|
||||||
|
|
Loading…
Reference in a new issue