Ignore deprecation warnings as OpenSSL is deprecated as a whole on OS X.
This commit is contained in:
parent
ace7324c7f
commit
527e49fc21
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -17,7 +17,7 @@ LIB_FILE = ${LIB_PREFIX}${LIB}${LIB_SUFFIX}
|
||||||
|
|
||||||
all:
|
all:
|
||||||
objfw-compile --lib ${LIB_MAJOR}.${LIB_MINOR} ${CPPFLAGS} ${LIBS} \
|
objfw-compile --lib ${LIB_MAJOR}.${LIB_MINOR} ${CPPFLAGS} ${LIBS} \
|
||||||
-o ${LIB} src/*.m
|
-o ${LIB} -Wno-deprecated-declarations src/*.m
|
||||||
|
|
||||||
install: install-lib install-headers
|
install: install-lib install-headers
|
||||||
|
|
||||||
|
|
Reference in a new issue