From a554a1157a0cf771984fd8cf41d844db4163f926 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 24 Jan 2007 07:38:03 +0000 Subject: [PATCH] link libtomcrypt instead of crypto++ --- stepmania/src/Makefile.am | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/stepmania/src/Makefile.am b/stepmania/src/Makefile.am index 1c3c7b4189..7626a8e66d 100644 --- a/stepmania/src/Makefile.am +++ b/stepmania/src/Makefile.am @@ -546,13 +546,12 @@ main_SOURCES = $(Screens) \ $(ActorsInGameplay) \ $(Rage) \ $(Actors) \ - $(GlobalSingletons) \ - $(crypto) \ - $(cryptopp) + $(GlobalSingletons) main_LDADD = \ $(AUDIO_LIBS) \ - $(XLIBS) + $(XLIBS) \ + libtomcrypt.a libtommath.a stepmania_SOURCES = $(main_SOURCES) stepmania_LDADD = $(main_LDADD) @@ -623,7 +622,10 @@ test_file_errors_SOURCES = \ tests/test_file_errors.cpp \ MsdFile.cpp MsdFile.h \ XmlFile.cpp XmlFile.h \ - CryptManager.cpp CryptManager.h $(cryptopp) $(crypto) + CryptManager.cpp CryptManager.h + +test_file_errors_LDADD = \ + libtomcrypt.a libtommath.a TESTS += test_timing_data test_timing_data_SOURCES = \