Mailing list archives : pcb-rnd

ID:5977
From:Henner Zeller <h....@acm.org>
Date:Sun, 5 Mar 2023 22:09:05 -0800
Subject:[pcb-rnd] camv-rnd: ./configure it does not take the fontdir specified
replies: 5978 from rn...@igor2.repo.hu
Hi,
When calling configure on camv-rnd without a fontdir and it doesn't
find one, it complains that
Detecting system font dir...NOT FOUND!
Please specify one with --fontdir
 
ok, so let's give it some. To see if it ever is tested, lets' use some
easy recongizable string
  ./configure --fontdir=/foo/bar/baz
(configure fails again but also does not take the path).
 
Problem seems to be that scconfig/find_fontdir.c looks in a different
configuration key ? This fixes it:
Index: scconfig/find_fontdir.c
===================================================================
--- scconfig/find_fontdir.c     (revision 674)
+++ scconfig/find_fontdir.c     (working copy)
@@ -10,7 +10,7 @@
{
       const char **d, *ud;
 
-       ud = get("/local/csch/fontdir");
+       ud = get("/local/camv/fontdir");
       if ((ud != NULL) && (*ud != '\0')) {
               report("Accepting system font dir (user specified): '%s'\n", ud);
               return 0;
 
Henner.
 

Reply subtree:
5977 [pcb-rnd] camv-rnd: ./configure it does not take the fontdir specified from Henner Zeller <h....@acm.org>
  5978 Re: [pcb-rnd] camv-rnd: ./configure it does not take the fontdir from rn...@igor2.repo.hu