mirror of
https://github.com/tihmstar/futurerestore.git
synced 2025-01-02 19:25:31 +00:00
adding flags for clang compiler
This commit is contained in:
parent
2985ecfbad
commit
eb4bd9fd72
10
configure.ac
10
configure.ac
|
@ -2,6 +2,16 @@ AC_PREREQ(2.64)
|
|||
AC_INIT([futurerestore], [1.0], [http://url.me/issues],, [http://url.me])
|
||||
|
||||
AC_CANONICAL_SYSTEM
|
||||
|
||||
AC_CANONICAL_HOST
|
||||
# Check for operating system
|
||||
AC_MSG_CHECKING([whether we need platform-specific build settings])
|
||||
case $host_os in
|
||||
darwin* )
|
||||
CXXFLAGS+=" -stdlib=libc++"
|
||||
;;
|
||||
esac
|
||||
|
||||
AM_INIT_AUTOMAKE
|
||||
|
||||
CFLAGS="-DIDEVICERESTORE_NOMAIN=1 -DIMG4TOOL_NOMAIN=1 -DTSSCHECKER_NOMAIN=1"
|
||||
|
|
Loading…
Reference in a new issue