From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from server1.sidns.com ([69.93.35.66]) by speech.braille.uwo.ca with esmtp (Exim 3.36 #1 (Debian)) id 1DPWN0-0002hA-00 for ; Sat, 23 Apr 2005 21:57:14 -0400 Received: from dsl-202-173-132-131.nsw.westnet.com.au ([202.173.132.131] helo=luke-laptop.yelavich.home) by server1.sidns.com with smtp (Exim 4.50) id 1DPWMz-0003yb-6G for speakup@braille.uwo.ca; Sun, 24 Apr 2005 01:57:13 +0000 Received: (nullmailer pid 11964 invoked by uid 1000); Sun, 24 Apr 2005 01:56:25 -0000 Date: Sun, 24 Apr 2005 11:56:15 +1000 From: Luke Yelavich To: speakup@braille.uwo.ca Message-ID: <20050424015615.GA6525@luke-laptop.yelavich.home> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; x-action=pgp-signed Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.6+20040907i X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - server1.sidns.com X-AntiAbuse: Original Domain - braille.uwo.ca X-AntiAbuse: Originator/Caller UID/GID - [0 0] / [47 12] X-AntiAbuse: Sender Address Domain - themuso.com X-Source: X-Source-Args: X-Source-Dir: Subject: Re: speechd-up compile error X-BeenThere: speakup@braille.uwo.ca X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Speakup is a screen review system for Linux." List-Id: "Speakup is a screen review system for Linux." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 Apr 2005 01:57:14 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Sat, Apr 23, 2005 at 09:10:30PM EST, Charles Hallenbeck wrote: > I retrieved the CVS version of speechd-up and installed the various > components it needed. This is a Debian environment, and I am still > finding things I need to install from time to time. But the compile > failed with a problem I can't figure out. > and I get a problem in main.c, line 421, where it tells me "PIDPATH is > not defined, first use in this function, etc. The source statement is an > "if" that tries to compare VIDPATH (all caps) to a null string, but > evidently there ain't any PIDPATH. Nothing. You need to modify the Makefile. The line you are specifically looking for is the line that does the compiling. You need to add an argument to that line, after the $(CC) variable. Your COMPILE line probably looks something like this: COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) You have to add the speechd_up_CFLAGS variable like this. COMPILE = $(CC) $(speechd_up_CFLAGS) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) Also as Kirk mentioned, you have to ensure you have glib2 development packages installed as well. Hope this helps. - -- Luke Get my public GPG key here: http://www.themuso.com/themuso-gpg-key.txt -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (GNU/Linux) iD8DBQFCavy/jVefwtBjIM4RAuw8AJwOO7q80DjDgIqKS1uqGyEhWbC9EgCgsXo4 I/tP/0+mFrXDrOnahNvmfwk= =Tmgp -----END PGP SIGNATURE-----