From 762b07f13de640d9bf5c22b2875a9cd2989b79f9 Mon Sep 17 00:00:00 2001 From: Kester Maddock Date: Wed, 5 May 2004 04:12:53 +0000 Subject: [PATCH] Enable doubles internally in Solid for the Makefile build system. --- extern/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extern/Makefile b/extern/Makefile index 69a9042164f..c4808dd76a3 100644 --- a/extern/Makefile +++ b/extern/Makefile @@ -56,14 +56,14 @@ install all:: $(TARGET) # we must use solid without qhull, which is the next target). solid_with_qhull: cd solid \ - && ./configure --with-pic --prefix=$(NAN_SOLID) \ + && ./configure --with-pic --prefix=$(NAN_SOLID) --enable-doubles=yes \ CPPFLAGS="-I$(NAN_QHULL)/include" \ LDFLAGS="-Wl,--rpath -Wl,$(NAN_QHULL)/lib" \ && $(MAKE) all install solid: qhull cd solid \ - && ./configure --with-pic --prefix=$(NAN_SOLID) \ + && ./configure --with-pic --prefix=$(NAN_SOLID) --enable-doubles=yes --with-qhull=$(NAN_QHULL) --enable-shared=false \ && $(MAKE) all install qhull: cd qhull/src && $(MAKE) -f Makefile.txt all