Re: hwsensors-plugin on debian testing
Benedikt Meurer <[email protected]>
| Newsgroups | gmane.comp.desktop.xfce.goodies.devel |
|---|---|
| Organization | os-cillation |
| Message-ID | <[email protected]> |
José Eduardo Martins wrote: > ***begin patch*** > > --- configure.ac.old 2005-08-02 01:05:10.000000000 +0100 > +++ configure.ac 2005-08-02 01:04:39.000000000 +0100 > @@ -32,6 +32,12 @@ > exit -1 > ]) > > +dnl Check for control_class_set_unique > +AC_CHECK_FUNC([control_class_set_unique], [], [ > + echo "Error! You need to upgrade xfce4 to 4.2." > + exit -1 > +]) This won't work, as it only checks for control_class_set_unique in all libraries listed in $LIBS (plus the system libraries determined by the AC_LANG). > dnl configure the panel plugin > XFCE_PANEL_PLUGIN([XFCE4_PANEL], [4.0.0]) As Jasper suggested, use XFCE_PANEL_PLUGIN([XFCE4_PANEL], [4.2.0]). greets, Benedikt