Remove obsolete configure #defines

This commit is contained in:
John Maguire 2014-04-10 18:03:15 +02:00
parent 2f5e03e921
commit 8429e92b52
2 changed files with 0 additions and 6 deletions

View File

@ -29,8 +29,6 @@
#cmakedefine HAVE_DROPBOX #cmakedefine HAVE_DROPBOX
#cmakedefine HAVE_GIO #cmakedefine HAVE_GIO
#cmakedefine HAVE_GOOGLE_DRIVE #cmakedefine HAVE_GOOGLE_DRIVE
#cmakedefine HAVE_IMOBILEDEVICE
#cmakedefine HAVE_LIBARCHIVE
#cmakedefine HAVE_LIBGPOD #cmakedefine HAVE_LIBGPOD
#cmakedefine HAVE_LIBLASTFM #cmakedefine HAVE_LIBLASTFM
#cmakedefine HAVE_LIBLASTFM1 #cmakedefine HAVE_LIBLASTFM1
@ -43,10 +41,8 @@
#cmakedefine HAVE_SPOTIFY_DOWNLOADER #cmakedefine HAVE_SPOTIFY_DOWNLOADER
#cmakedefine HAVE_VK #cmakedefine HAVE_VK
#cmakedefine HAVE_WIIMOTEDEV #cmakedefine HAVE_WIIMOTEDEV
#cmakedefine IMOBILEDEVICE_USES_UDIDS
#cmakedefine TAGLIB_HAS_OPUS #cmakedefine TAGLIB_HAS_OPUS
#cmakedefine USE_INSTALL_PREFIX #cmakedefine USE_INSTALL_PREFIX
#cmakedefine USE_SYSTEM_PROJECTM #cmakedefine USE_SYSTEM_PROJECTM
#cmakedefine HAVE_LAMBDAS
#endif // CONFIG_H_IN #endif // CONFIG_H_IN

View File

@ -133,7 +133,6 @@ TEST(ClosureTest, ClosureWorksWithMemberFunctionPointers) {
EXPECT_EQ(42, q); EXPECT_EQ(42, q);
} }
#ifdef HAVE_LAMBDAS
TEST(ClosureTest, ClosureCallsLambda) { TEST(ClosureTest, ClosureCallsLambda) {
TestQObject sender; TestQObject sender;
bool called = false; bool called = false;
@ -144,4 +143,3 @@ TEST(ClosureTest, ClosureCallsLambda) {
sender.Emit(); sender.Emit();
EXPECT_TRUE(called); EXPECT_TRUE(called);
} }
#endif // HAVE_LAMBDAS