trinity-devel@lists.pearsoncomputing.net

Message: previous - next
Month: June 2012

Re: [trinity-devel] FTBFS - avahi-tqt - looks like qt-watch.moc3 or sed issue

From: Darrell Anderson <humanreadable@...>
Date: Tue, 19 Jun 2012 19:11:19 -0700 (PDT)
>   I have also run into an avahi-tqt build failure.
> Again, nothing has changed on my end. However, when attempting to build avahi-tqt, it
> fails. I have included the context leading to the failure, because I'm not entirely
> sure what crashed. It looks like it is complaining about a sed option. What
> does it look like to you?

moc has been renamed to tqmoc. :-) Proposed patch (works for me!):

diff -urN avahi-tqt/avahi-tqt/Makefile.am avahi-tqt.new/avahi-tqt/Makefile.am
--- avahi-tqt/avahi-tqt/Makefile.am 2012-05-27 17:57:48.000000000 -0500
+++ avahi-tqt.new/avahi-tqt/Makefile.am 2012-06-19 21:04:00.000000000 -0500
@@ -34,7 +34,7 @@
  qt-watch.cpp

 qt-watch.moc3: qt-watch.cpp
- $(AM_V_GEN)$(MOC_QT3) moc $^ $@
+ $(AM_V_GEN)$(MOC_QT3) tqmoc $^ $@

 libavahi_tqt_la_CPPFLAGS = $(AM_CFLAGS) $(QT3_CFLAGS) $(VISIBILITY_HIDDEN_CFLAGS)
 libavahi_tqt_la_LIBADD = $(AM_LDADD) $(QT3_LIBS)



Darrell