X-Authentication-Warning: delorie.com: mail set sender to geda-help-bounces using -f X-Recipient: geda-help AT delorie DOT com Date: Thu, 3 Sep 2020 14:39:23 +0200 (CEST) From: Roland Lutz To: "Glen W. Ruch (gw DOT ruch AT yahoo DOT com) [via geda-help AT delorie DOT com]" Subject: Re: [geda-help] Shifting Text In-Reply-To: Message-ID: References: <8ca87b95-6b3c-0832-e98a-7d9e743fe7ff AT yahoo DOT com> <396df3f1-e447-b5ac-6120-4b96acbcb542 AT yahoo DOT com> <3b3b883a-f334-b9c6-eb2e-d49c86fa14fd AT yahoo DOT com> <20200902171255 DOT GC2911 AT newvzh DOT lokolhoz> User-Agent: Alpine 2.21 (DEB 202 2017-01-01) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Reply-To: geda-help AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: geda-help AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk Hi Glen, thank you for your assistance! On Wed, 2 Sep 2020, Glen W. Ruch (gw DOT ruch AT yahoo DOT com) [via geda-help AT delorie DOT com] wrote: > So I downloaded the tarball, geda-gaf-1.10.0.tar.gz.?? When I ran the > ./configure It complained about libfam and libgamin so I added the provided > --without-libfam switch.?? (I'm running a home system, and no others are > trying to modify my schematics, I shouldn't need file access monitoring.) That's totally fine. > A make throws multiple errors. > gschem_page_view.c:596:3: error: ???screen_right??? may be used > uninitialized in this function [-Werror=maybe-uninitialized] > gschem_page_view.c:596:3: error: ???screen_bottom??? may be used > uninitialized in this function [-Werror=maybe-uninitialized] > gschem_page_view.c:596:3: error: ???screen_top??? may be used uninitialized > in this function [-Werror=maybe-uninitialized] > gschem_page_view.c:596:3: error: ???screen_left??? may be used uninitialized > in this function [-Werror=maybe-uninitialized] > Suggestions on getting thru the make errors? You have two ways to get past these errors: - either fix the issue by adding ``*px = *py = 0;'' in gschem_page_view.c, line 1269 (just above ``g_return_if_fail'') - or remove the compiler flag which has this treated as an error: remove the string ``$Werror_maybe_uninitialized_IF_SUPPORTED'' from configure.ac, then run configure and make again Roland