mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-22 14:05:37 +01:00
parent
6f42417ba8
commit
52a5079cf2
@ -6,8 +6,11 @@ Bugfix
|
|||||||
* Fix segfault in the benchmark program when benchmarking DHM.
|
* Fix segfault in the benchmark program when benchmarking DHM.
|
||||||
* Fix build error with CMake and pre-4.5 versions of GCC (found by Hugo
|
* Fix build error with CMake and pre-4.5 versions of GCC (found by Hugo
|
||||||
Leisink).
|
Leisink).
|
||||||
* Fix bug in CMake lists that cause libmbedcrypto.a not to be installed
|
* Fix bug in CMake lists that caused libmbedcrypto.a not to be installed
|
||||||
(found by Benoit Lecocq).
|
(found by Benoit Lecocq).
|
||||||
|
* Fix bug in Makefile that caused libmbedcrypto and libmbedx509 not to be
|
||||||
|
installed (found by Rawi666).
|
||||||
|
|
||||||
|
|
||||||
= mbed TLS 2.0.0 released 2015-07-13
|
= mbed TLS 2.0.0 released 2015-07-13
|
||||||
|
|
||||||
|
6
Makefile
6
Makefile
@ -25,7 +25,9 @@ install: all
|
|||||||
cp -r include/mbedtls $(DESTDIR)/include
|
cp -r include/mbedtls $(DESTDIR)/include
|
||||||
|
|
||||||
mkdir -p $(DESTDIR)/lib
|
mkdir -p $(DESTDIR)/lib
|
||||||
cp -RP library/libmbedtls.* $(DESTDIR)/lib
|
cp -RP library/libmbedtls.* $(DESTDIR)/lib
|
||||||
|
cp -RP library/libmbedx509.* $(DESTDIR)/lib
|
||||||
|
cp -RP library/libmbedcrypto.* $(DESTDIR)/lib
|
||||||
|
|
||||||
mkdir -p $(DESTDIR)/bin
|
mkdir -p $(DESTDIR)/bin
|
||||||
for p in programs/*/* ; do \
|
for p in programs/*/* ; do \
|
||||||
@ -40,6 +42,8 @@ install: all
|
|||||||
uninstall:
|
uninstall:
|
||||||
rm -rf $(DESTDIR)/include/mbedtls
|
rm -rf $(DESTDIR)/include/mbedtls
|
||||||
rm -f $(DESTDIR)/lib/libmbedtls.*
|
rm -f $(DESTDIR)/lib/libmbedtls.*
|
||||||
|
rm -f $(DESTDIR)/lib/libmbedx509.*
|
||||||
|
rm -f $(DESTDIR)/lib/libmbedcrypto.*
|
||||||
|
|
||||||
for p in programs/*/* ; do \
|
for p in programs/*/* ; do \
|
||||||
if [ -x $$p ] && [ ! -d $$p ] ; \
|
if [ -x $$p ] && [ ! -d $$p ] ; \
|
||||||
|
Loading…
Reference in New Issue
Block a user