Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKester Maddock <Christopher.Maddock.1@uni.massey.ac.nz>2004-05-05 08:12:53 +0400
committerKester Maddock <Christopher.Maddock.1@uni.massey.ac.nz>2004-05-05 08:12:53 +0400
commit762b07f13de640d9bf5c22b2875a9cd2989b79f9 (patch)
tree7cdbf5995fd68541ddd7a61dc965186bfd36d9d9 /extern/Makefile
parentf54160ca2fd72ac8902b5e05a6848222813da6ab (diff)
Enable doubles internally in Solid for the Makefile build system.
Diffstat (limited to 'extern/Makefile')
-rw-r--r--extern/Makefile4
1 files 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