On Fri, 4 Jan 2002, Stefan van der Eijk wrote:

[.......]
> session-properties-capplet.c:29:28: capplet-widget.h: No such file or directory
> make[3]: *** [session-properties-capplet.o] Error 1
> make[3]: Leaving directory `/home/cooker/RPM/BUILD/gnome-core-1.4.0.4/gsm'
> make[2]: *** [all-recursive] Error 1
> make[2]: Leaving directory `/home/cooker/RPM/BUILD/gnome-core-1.4.0.4/gsm'
> make[1]: *** [all-recursive] Error 1
> make[1]: Leaving directory `/home/cooker/RPM/BUILD/gnome-core-1.4.0.4'
> make: *** [all-recursive-am] Error 2
> error: Bad exit status from /home/cooker/tmp/rpm-tmp.73997 (%build)
>
> With the old libcapplet it works fine:
>
> libcapplet0-devel:/usr/include/capplet-widget.h

Perhaps you can try if the attached patch fixes it?
Yes, this change of header location is just like the gdk-pixbuf one,
many packages seems to need fixing because of it.

Abel
--- gnome-core-1.4.0.4/configure.in     Wed May  9 23:28:33 2001
+++ gnome-core-1.4.0.4-new/configure.in Wed Jan  2 21:33:02 2002
@@ -117,6 +117,8 @@
     ;;
 esac
 
+GNOME_CAPPLET_CFLAGS=`$GNOME_CONFIG --cflags capplet`
+AC_SUBST(GNOME_CAPPLET_CFLAGS)
 AC_SUBST(CONTROL_CENTER_REQUIRED)
 
 
--- gnome-core-1.4.0.4/gsm/Makefile.am  Mon May  7 23:56:15 2001
+++ gnome-core-1.4.0.4-new/gsm/Makefile.am      Wed Jan  2 21:40:49 2002
@@ -7,7 +7,8 @@
 INCLUDES = -I$(includedir) $(GNOME_INCLUDEDIR) \
        -I$(top_srcdir)/intl -I$(top_builddir)/intl     \
        -DGNOMELOCALEDIR=\""$(datadir)/locale\"" \
-       -DDEFAULTDIR="\"$(defaultdir)\"" @CANVAS_PIXBUF_CFLAGS@ 
+       -DDEFAULTDIR="\"$(defaultdir)\"" @CANVAS_PIXBUF_CFLAGS@ \
+       @GNOME_CAPPLET_CFLAGS@
 
 LDADD = $(GNOME_LIBDIR) $(GNOMEUI_LIBS) $(INTLLIBS)
 
--- gnome-core-1.4.0.4/gnome-hint/Makefile.am   Tue May  9 16:19:48 2000
+++ gnome-core-1.4.0.4-new/gnome-hint/Makefile.am       Wed Jan  2 22:28:45 2002
@@ -3,7 +3,8 @@
        -I$(top_srcdir)/intl    \
        -I$(top_builddir)/intl  \
        $(GNOME_INCLUDEDIR)     \
-       -DGNOMELOCALEDIR=\""$(datadir)/locale\""
+       -DGNOMELOCALEDIR=\""$(datadir)/locale\"" \
+       @GNOME_CAPPLET_CFLAGS@
 
 LDADD = \
        $(GNOME_LIBDIR)                                 \
--- gnome-core-1.4.0.4/panel/Makefile.am        Wed Jan  2 22:29:32 2002
+++ gnome-core-1.4.0.4-new/panel/Makefile.am    Wed Jan  2 22:56:17 2002
@@ -15,7 +15,8 @@
        -DGNOMELOCALEDIR=\""$(datadir)/locale"\" \
        -DGNOME_DATADIR=\""$(datadir)"\" \
        -I$(includedir) $(GNOME_INCLUDEDIR) $(ORB_CFLAGS) \
-       @PIXBUF_CFLAGS@
+       @PIXBUF_CFLAGS@ \
+       @GNOME_CAPPLET_CFLAGS@
 
 gwmh_dir = $(top_srcdir)/applets/desk-guide
 

Reply via email to