diff options
author | Tor Andersson <tor.andersson@artifex.com> | 2014-09-22 15:17:24 +0200 |
---|---|---|
committer | Tor Andersson <tor.andersson@artifex.com> | 2014-09-22 15:29:47 +0200 |
commit | 72290018051ba5b66c77989862847a14493fd18a (patch) | |
tree | f3159af26f8ccaeab13af89cb84af575cd7d6dd5 /platform/win32 | |
parent | 2bfdfa038a133a5a832ace5fdeef5f372142606b (diff) | |
download | mupdf-72290018051ba5b66c77989862847a14493fd18a.tar.xz |
Fix 695467: Add and use fz_ftoa function (like dtoa but with floats).
The dtoa function is for doubles (which is what MuJS uses) but for MuPDF
we only need and want float precision in our output formatting.
Diffstat (limited to 'platform/win32')
-rw-r--r-- | platform/win32/libmupdf.vcproj | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/platform/win32/libmupdf.vcproj b/platform/win32/libmupdf.vcproj index 89e0ac46..c96042f8 100644 --- a/platform/win32/libmupdf.vcproj +++ b/platform/win32/libmupdf.vcproj @@ -486,10 +486,6 @@ > </File> <File - RelativePath="..\..\source\fitz\dtoa.c" - > - </File> - <File RelativePath="..\..\source\fitz\error.c" > </File> @@ -530,6 +526,10 @@ > </File> <File + RelativePath="..\..\source\fitz\ftoa.c" + > + </File> + <File RelativePath="..\..\source\fitz\function.c" > </File> @@ -670,6 +670,10 @@ > </File> <File + RelativePath="..\..\source\fitz\strtod.c" + > + </File> + <File RelativePath="..\..\source\fitz\svg-device.c" > </File> |