From: A. <re...@am...> - 2005-10-03 12:26:18
|
Hello armin and thanks for your reactivity The modification you have made is working for me only if I modify the verification that syncmngr.h exists. As in the following: Index: acinclude.m4 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- acinclude.m4 (revision 701) +++ acinclude.m4 (working copy) @@ -76,8 +76,8 @@ AC_CHECK_LIB(rra,rra_syncmgr_new,,[ AC_MSG_ERROR([Can't find RRA library]) ]) - AC_CHECK_HEADERS(rra/syncmgr.h,,[ + AC_CHECK_HEADERS(syncmgr.h,,[ AC_MSG_ERROR([Can't find rra/syncmgr.h]) ]) -]) \ No newline at end of file +]) But, since the .c files are hard-coded looking for rra/..., it won't work anyway. Example in synce_plugin.c #include <rra/appointment.h> #include <rra/contact.h> #include <rra/task.h> #include <rra/matchmaker.h> #include <rra/uint32vector.h> #include <rra/syncmgr.h> The last person modifying the spec file for the synce package for FC4 is andreas.bierfert[AT]lowlatency.de (from the changelog). (the packages are provided within the EXTRAs part of FC4). I'll try to contact him to understand why the include files are not in a subdirectory (which is the sensible thing to do from my point of view). Regards RemyA On Mon, 2005-10-03 at 12:01 +0200, Armin Bauer wrote: > Hi, >=20 > i commited a fix. the --with-rra option should now work for fedora as > well. so please do a "svn up" for the synce plugin >=20 > Armin >=20 > R=C3=A9my Amouroux wrote: > > Hi > >=20 > > I'm trying to compile the synce plugin on my newly installed fedora cor= e > > 4. Synce is installed using the usual repositories, and I have the > > following packages: > > synce-0.9.1-3.fc4 > > synce-devel-0.9.1-3.fc4 > >=20 > > unfortunatly, the since plugin is looking for include files > > in /usr/include/rra/ while they are all in /usr/include/. > >=20 > > Trying to use --with-rra options for configure is not working since it'= s > > looking for the rra folder. > >=20 > > Is there a solution (outside creating manually the rra folder and > > copying the include files in it)? > >=20 > > RemyA > >=20 >=20 --=20 E-mail : Re...@Am... Web : http://www.amouroux.org/ Yahoo Id: kelkooremya |