From db9118369a01b800de5afba19ba3748a67be4535 Mon Sep 17 00:00:00 2001 From: John Cupitt Date: Thu, 29 Sep 2011 17:38:05 +0100 Subject: [PATCH] found a type the makefile references dummy2.cxx, the file is dummy2.cc ... mysterious! I wonder if this could help with the c++ linking issues? --- libvips/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libvips/Makefile.am b/libvips/Makefile.am index ad3a73c7..2f89f768 100644 --- a/libvips/Makefile.am +++ b/libvips/Makefile.am @@ -39,10 +39,10 @@ libvips_la_SOURCES = # if we have C++ components enabled, make sure we link the top-level with c++ # -# sadly the if/enndif isn't enough to stop automake detecting a c++ link even +# sadly the if/endif isn't enough to stop automake detecting a c++ link even # when c++ is disabled ... comment out this line if you have linking problems if ENABLE_CXX -nodist_EXTRA_libvips_la_SOURCES = cimg/dummy2.cxx +nodist_EXTRA_libvips_la_SOURCES = cimg/dummy2.cc endif # DLLs need dependant libs there too ... put @VIPS_LIBS@ at the end