Andreas Rottmann | 1 Jun 18:47
Picon
Picon
Gravatar

Re: makefile dist target?

Kristian Kvilekval <kris <at> cs.ucsb.edu> writes:

>> So, I'd be glad if I could get some feedback about wether my commits
>> broke anything and wether 'make distcheck' works now for everybody.
>
> I tried to get a build working after a cvs update -Pd,
> however, the soundcard makefile was failing due to a missing
> dependency on src/soundcard.cpp.   I couldn't even find this
> dependency in the Makefile, Makefile.in, or Makefile.am
> I eventually did a fresh checkout and build and everything
> is working fine.
>
Yes, I also had this a few times. You can work around this also by
doing a make distcheck in the source tree and then do the build using
a fresh, dedicated build directory; e.g.

andy <at> alice:~/src/contrib/zinf% make distclean
andy <at> alice:~/src/contrib/zinf% mkdir build
andy <at> alice:~/src/contrib/zinf% cd build
andy <at> alice:~/src/contrib/zinf/build% ../configure && make

> However, when I try make distcheck or dist, I get the same 
> error
>
> make distcheck
> make: *** No rule to make target `config/config.rpath', needed by
> `distdir'.  Stop.
>
Try re-running autogen.sh, which should now be fixed wrt this problem.

(Continue reading)

Andreas Rottmann | 1 Jun 19:11
Picon
Picon
Gravatar

Re: makefile dist target?

Andreas Rottmann <a.rottmann <at> gmx.at> writes:

> Yes, I also had this a few times. You can work around this also by
> doing a make distcheck in the source tree and then do the build using
               ^^^^^^^^
               distclean

Andy
--

-- 
Andreas Rottmann         | Rotty <at> ICQ      | 118634484 <at> ICQ | a.rottmann <at> gmx.at
http://www.8ung.at/rotty | GnuPG Key: http://www.8ung.at/rotty/gpg.asc
Fingerprint              | DFB4 4EB4 78A4 5EEE 6219  F228 F92F CFC5 01FD 5B62

Packages should build-depend on what they should build-depend.

-------------------------------------------------------
This SF.net email is sponsored by: eBay
Get office equipment for less on eBay!
http://adfarm.mediaplex.com/ad/ck/711-11697-6916-5
David Vrabel | 24 Jun 21:52
Favicon

Re: Zinf doesn't respond to X delete window messages.

David Vrabel wrote:
> 
> Zinf doesn't appear to capture and handle correctly X delete window
> messages (such as you'd get if you clicked on the window manager
> provided close button or via a taskbar or similar).

Attached is a patch (against fairly recent CVS) which fixes this.

David Vrabel
Index: ui/zinf/unix/src/GTKWindow.cpp
===================================================================
RCS file: /cvsroot/zinf/zinf/ui/zinf/unix/src/GTKWindow.cpp,v
retrieving revision 1.6
diff -u -b -B -w -p -r1.6 GTKWindow.cpp
--- ui/zinf/unix/src/GTKWindow.cpp	13 Feb 2003 12:21:37 -0000	1.6
+++ ui/zinf/unix/src/GTKWindow.cpp	24 Jun 2003 19:49:01 -0000
@@ -132,6 +132,17 @@ void leave_notify(GtkWidget *w, GdkEvent
     ui->m_pMindMeldMutex->Release();
     gdk_threads_enter();
 }
+
+bool delete_window(GtkWidget *w, GdkEventCrossing *e, GTKWindow *ui)
+{
+    string oControl("Quit");
+    gdk_threads_leave();
+    ui->m_theme->HandleControlMessage(oControl, CM_Pressed);
+    gdk_threads_enter();
+
(Continue reading)


Gmane