summaryrefslogtreecommitdiff
path: root/graphics/asymptote/runfile.in
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2024-03-09 03:04:53 +0000
committerNorbert Preining <norbert@preining.info>2024-03-09 03:04:53 +0000
commitbb1788335b7c394ee980b7b6f12b81f5223bbd63 (patch)
tree1c53bbe5ff2a09f7864c9f758ed934b014aa58f5 /graphics/asymptote/runfile.in
parent0eba0875b1bcc4a022360ed72a29a81e041cd467 (diff)
CTAN sync 202403090304
Diffstat (limited to 'graphics/asymptote/runfile.in')
-rw-r--r--graphics/asymptote/runfile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/asymptote/runfile.in b/graphics/asymptote/runfile.in
index 1a6835b7b2..4e7e3302ec 100644
--- a/graphics/asymptote/runfile.in
+++ b/graphics/asymptote/runfile.in
@@ -47,7 +47,7 @@ file* input(string name=emptystring, bool check=true,
if(mode == "binary")
f=new ibfile(name,check);
else if(mode == "xdr" || mode == "xdrgz") {
-#ifdef HAVE_RPC_RPC_H
+#ifdef HAVE_LIBTIRPC
if(mode == "xdr")
f=new ixfile(name,check);
else if(mode == "xdrgz")
@@ -81,7 +81,7 @@ file* output(string name=emptystring, bool update=false,
if(update) f=new iobfile(name);
else f=new obfile(name);
} else if(mode == "xdr") {
-#ifdef HAVE_RPC_RPC_H
+#ifdef HAVE_LIBTIRPC
if(update)
f=new ioxfile(name);
else f=new oxfile(name);