Changeset 51856 in vbox for trunk/src/VBox/Runtime/Makefile.kmk
- Timestamp:
- Jul 3, 2014 6:39:21 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/Makefile.kmk
r51851 r51856 317 317 common/checksum/RTSha256Digest.cpp \ 318 318 common/checksum/sha1str.cpp \ 319 common/checksum/sha224str.cpp \ 319 320 common/checksum/sha256str.cpp \ 321 common/checksum/sha384str.cpp \ 320 322 common/checksum/sha512str.cpp \ 323 common/checksum/sha512t224str.cpp \ 324 common/checksum/sha512t256str.cpp \ 321 325 common/checksum/x509.cpp \ 322 326 common/crypto/digest-core.cpp \ … … 1411 1415 VBoxRT_INST = $(INST_DLL) $(INST_TESTCASE) 1412 1416 endif 1413 VBoxRT_DEFS := $(filter-out RT_NO_GIP,$(RuntimeR3_DEFS)) IN_SUP_R3 IN_SUP_R3 IPRT_WITH_XAR 1417 VBoxRT_DEFS := $(filter-out RT_NO_GIP, $(RuntimeR3_DEFS)) \ 1418 IN_SUP_R3 IN_SUP_R3 IPRT_WITH_XAR \ 1419 $(if-expr !defined(VBOX_WITH_ALT_HASH_CODE),IPRT_WITHOUT_SHA512T224 IPRT_WITHOUT_SHA512T256,) 1414 1420 ifn1of ($(KBUILD_TARGET_ARCH), amd64 x86) 1415 1421 VBoxRT_DEFS += RT_NO_GIP … … 1422 1428 VBox/VBoxRTDeps.cpp \ 1423 1429 $(filter-out common/checksum/crc32.cpp, \ 1424 $(patsubst common/checksum/alt-%,common/checksum/openssl-%,$(RuntimeR3_SOURCES))) \ 1430 $(if-expr defined(VBOX_WITH_ALT_HASH_CODE), $(RuntimeR3_SOURCES), \ 1431 $(patsubst common/checksum/alt-%,common/checksum/openssl-%,$(RuntimeR3_SOURCES)) ) ) \ 1425 1432 common/checksum/crc32-zlib.cpp \ 1426 1433 common/misc/aiomgr.cpp … … 2040 2047 common/checksum/md5str.cpp \ 2041 2048 common/checksum/sha1str.cpp \ 2049 common/checksum/sha224str.cpp \ 2042 2050 common/checksum/sha256str.cpp \ 2051 common/checksum/sha384str.cpp \ 2043 2052 common/checksum/sha512str.cpp \ 2053 common/checksum/sha512t224str.cpp \ 2054 common/checksum/sha512t256str.cpp \ 2044 2055 common/err/errinfo.cpp \ 2045 2056 common/path/RTPathChangeToUnixSlashes.cpp \
Note:
See TracChangeset
for help on using the changeset viewer.