File: Use-plplot-instead-of-plplotd.patch

package info (click to toggle)
scamp 2.14.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 82,260 kB
  • sloc: ansic: 33,828; sh: 1,055; makefile: 299; python: 42
file content (26 lines) | stat: -rw-r--r-- 929 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
From: Ole Streicher <ole@aip.de>
Date: Mon, 25 Sep 2017 13:56:36 +0200
Subject: Use plplot instead of plplotd

---
 m4/acx_plplot.m4 | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/m4/acx_plplot.m4 b/m4/acx_plplot.m4
index 60494c6..66f744e 100644
--- a/m4/acx_plplot.m4
+++ b/m4/acx_plplot.m4
@@ -51,10 +51,10 @@ acx_plplot_ok=yes
 acx_plplotpkg_ok=no
 if test x$2 = x && test x$1 = x; then
   AC_MSG_CHECKING([for PLPlot pkg-config info])
-  if pkg-config --exists plplotd; then
+  if pkg-config --exists plplot; then
     AC_MSG_RESULT([yes])
-    [PLPLOT_CFLAGS=`pkg-config --cflags plplotd`]
-    [PLPLOT_LIBS=`pkg-config --libs plplotd`]
+    [PLPLOT_CFLAGS=`pkg-config --cflags plplot`]
+    [PLPLOT_LIBS=`pkg-config --libs plplot`]
     AC_DEFINE(PLPLOT_H, "plplot.h", [PLPlot header filename.])
     AC_DEFINE(PLPLOTP_H, "plplotP.h", [PLPlot private header filename.])
     acx_plplotpkg_ok=yes