diff options
| author | Bob Jamison <ishmalius@gmail.com> | 2008-06-18 20:52:59 +0000 |
|---|---|---|
| committer | ishmal <ishmal@users.sourceforge.net> | 2008-06-18 20:52:59 +0000 |
| commit | 98911dbbe79e64ee7514207ef4357e824ad72e8f (patch) | |
| tree | ea98ad1dd0b74c8bc1632274d4d5ab6fc8b0df1d /src | |
| parent | Cmake: Add src/ to include_directories, fix missing includes for file checks (diff) | |
| download | inkscape-98911dbbe79e64ee7514207ef4357e824ad72e8f.tar.gz inkscape-98911dbbe79e64ee7514207ef4357e824ad72e8f.zip | |
use INKSCAPE_VERSION rather than VERSION, to help cmake
(bzr r5987)
Diffstat (limited to 'src')
| -rw-r--r-- | src/extension/internal/pov-out.cpp | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/extension/internal/pov-out.cpp b/src/extension/internal/pov-out.cpp index 55448a91e..8d701b28e 100644 --- a/src/extension/internal/pov-out.cpp +++ b/src/extension/internal/pov-out.cpp @@ -21,14 +21,15 @@ # include <config.h> #endif #include "pov-out.h" -#include "inkscape.h" -#include "sp-path.h" +#include <inkscape.h> +#include <inkscape_version.h> +#include <sp-path.h> #include <style.h> -#include "display/curve.h" -#include "libnr/n-art-bpath.h" -#include "extension/system.h" +#include <display/curve.h> +#include <libnr/n-art-bpath.h> +#include <extension/system.h> -#include "io/sys.h" +#include <io/sys.h> #include <string> #include <stdio.h> @@ -204,7 +205,7 @@ void PovOutput::doHeader() out("### This PovRay document was generated by Inkscape\n"); out("### http://www.inkscape.org\n"); out("### Created: %s", ctime(&tim)); - out("### Version: %s\n", VERSION); + out("### Version: %s\n", INKSCAPE_VERSION); out("#####################################################################\n"); out("### NOTES:\n"); out("### ============\n"); |
