|
From: <ai...@us...> - 2013-07-01 04:22:38
|
Revision: 12401
http://sourceforge.net/p/plplot/code/12401
Author: airwin
Date: 2013-07-01 04:22:35 +0000 (Mon, 01 Jul 2013)
Log Message:
-----------
libharu #include file location changed from directory where hpdf.h was
found to the directory where hpdf/hpdf.h was found.
Modified Paths:
--------------
trunk/cmake/modules/Findhpdf.cmake
trunk/drivers/pdf.c
Modified: trunk/cmake/modules/Findhpdf.cmake
===================================================================
--- trunk/cmake/modules/Findhpdf.cmake 2013-07-01 04:20:44 UTC (rev 12400)
+++ trunk/cmake/modules/Findhpdf.cmake 2013-07-01 04:22:35 UTC (rev 12401)
@@ -8,7 +8,7 @@
# hpdf_LIBRARY_DIRS, the directory where libhpdf (either shared or static)
# is found.
-find_path(hpdf_INCLUDE_DIR hpdf.h /usr/local/include /usr/include)
+find_path(hpdf_INCLUDE_DIR hpdf/hpdf.h /usr/local/include /usr/include)
if(hpdf_INCLUDE_DIR)
find_library(hpdf_LIBRARY
Modified: trunk/drivers/pdf.c
===================================================================
--- trunk/drivers/pdf.c 2013-07-01 04:20:44 UTC (rev 12400)
+++ trunk/drivers/pdf.c 2013-07-01 04:22:35 UTC (rev 12401)
@@ -38,7 +38,7 @@
#include <math.h>
#include <setjmp.h>
-#include "hpdf.h"
+#include "hpdf/hpdf.h"
// PLplot header files
#define DEBUG
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|