From: Matteo B. <m.b...@mb...> - 2006-02-02 12:49:06
|
After a configure , i got this: [root@localhost evolution2]# autoreconf -sfi configure.in: installing `./install-sh' configure.in: installing `./missing' src/Makefile.am: installing `./depcomp' [root@localhost evolution2]# ./configure checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for gawk... gawk checking whether make sets $(MAKE)... yes checking for pkg-config... /usr/bin/pkg-config checking pkg-config is at least version 0.9.0... yes checking for PACKAGE... yes checking for EPACKAGE... checking for EPACKAGE... checking for EPACKAGE... configure: error: No compatible evolution-data-server was found my install is: evolution-data-server-1.4.2.1-1.1.fc4.nr evolution-2.4.2.1-1.1.fc4.nr evolution-connector-2.4.2-1.1.fc4.nr why??? Regards. |
From: David E. <tw...@us...> - 2006-02-02 13:35:30
|
On Thu, 2006-02-02 at 13:48 +0100, Matteo Bottiroli wrote: > After a configure , i got this: > > [root@localhost evolution2]# autoreconf -sfi configure.in: installing > `./install-sh' > configure.in: installing `./missing' > src/Makefile.am: installing `./depcomp' > [root@localhost evolution2]# ./configure > checking for a BSD-compatible install... /usr/bin/install -c > checking whether build environment is sane... yes > checking for gawk... gawk > checking whether make sets $(MAKE)... yes > checking for pkg-config... /usr/bin/pkg-config > checking pkg-config is at least version 0.9.0... yes > checking for PACKAGE... yes > checking for EPACKAGE... checking for EPACKAGE... checking for > EPACKAGE... configure: error: No compatible evolution-data-server was > found > > my install is: > evolution-data-server-1.4.2.1-1.1.fc4.nr > evolution-2.4.2.1-1.1.fc4.nr > evolution-connector-2.4.2-1.1.fc4.nr > > why??? You probably need the corresponding -devel packages. -- Regards, -\- David Eriksson -/- SynCE - http://synce.sourceforge.net ScummVM - http://scummvm.sourceforge.net Desquirr - http://desquirr.sourceforge.net |
From: Matteo B. <m.b...@mb...> - 2006-02-02 13:42:11
|
in config.in (evo2 plugin, i'm trying to compile) pkg_modules="glib-2.0 opensync-1.0" pkg_emodules_10="evolution-data-server-1.0 libebook-1.0 libecal-1.0 libedata-book-1.0 libedata-cal-1.0 libedataserver-1.0" pkg_emodules_11="evolution-data-server-1.1 libebook-1.1 libecal-1.1 libedata-book-1.1 libedata-cal-1.1 libedataserver-1.1" pkg_emodules_12="evolution-data-server-1.2 libebook-1.2 libecal-1.2 libedata-book-1.2 libedata-cal-1.2 libedataserver-1.2" export PKG_CONFIG_PATH=${PKG_CONFIG_PATH}:/usr/lib/pkgconfig: $prefix/lib/pkgconfig:/usr/local/lib/pkgconfig PKG_CHECK_MODULES(PACKAGE, [$pkg_modules], , AC_MSG_ERROR(GLib >= 2.0 and opensync >= 1.0 required)) AC_SUBST(PACKAGE_CFLAGS) AC_SUBST(PACKAGE_LIBS) PKG_CHECK_MODULES(EPACKAGE, [$pkg_emodules_10], EDSFOUND=1, [EDSFOUND=0]) if test "x${EDSFOUND}" = "x0"; then PKG_CHECK_MODULES(EPACKAGE, [$pkg_emodules_11], EDSFOUND=1, [EDSFOUND=0]) if test "x${EDSFOUND}" = "x0"; then PKG_CHECK_MODULES(EPACKAGE, [$pkg_emodules_12],,AC_MSG_ERROR(No compatible evolution-data-server was found)) fi fi i can see just 1.0 1.1 1.2 data-server, not 1.4 (installed via rpm) On Thu, 2006-02-02 at 14:35 +0100, David Eriksson wrote: > On Thu, 2006-02-02 at 13:48 +0100, Matteo Bottiroli wrote: > > After a configure , i got this: > > > > [root@localhost evolution2]# autoreconf -sfi configure.in: installing > > `./install-sh' > > configure.in: installing `./missing' > > src/Makefile.am: installing `./depcomp' > > [root@localhost evolution2]# ./configure > > checking for a BSD-compatible install... /usr/bin/install -c > > checking whether build environment is sane... yes > > checking for gawk... gawk > > checking whether make sets $(MAKE)... yes > > checking for pkg-config... /usr/bin/pkg-config > > checking pkg-config is at least version 0.9.0... yes > > checking for PACKAGE... yes > > checking for EPACKAGE... checking for EPACKAGE... checking for > > EPACKAGE... configure: error: No compatible evolution-data-server was > > found > > > > my install is: > > evolution-data-server-1.4.2.1-1.1.fc4.nr > > evolution-2.4.2.1-1.1.fc4.nr > > evolution-connector-2.4.2-1.1.fc4.nr > > > > why??? > > You probably need the corresponding -devel packages. > |
From: Matteo B. <m.b...@mb...> - 2006-02-02 17:05:45
|
After installed evolution-devel pack too, the error compiling (configuring) remains..... help me please!!! Regards Il giorno gio, 02/02/2006 alle 14.41 +0100, Matteo Bottiroli ha scritto: > in config.in (evo2 plugin, i'm trying to compile) > > pkg_modules="glib-2.0 opensync-1.0" > pkg_emodules_10="evolution-data-server-1.0 libebook-1.0 libecal-1.0 > libedata-book-1.0 libedata-cal-1.0 libedataserver-1.0" > pkg_emodules_11="evolution-data-server-1.1 libebook-1.1 libecal-1.1 > libedata-book-1.1 libedata-cal-1.1 libedataserver-1.1" > pkg_emodules_12="evolution-data-server-1.2 libebook-1.2 libecal-1.2 > libedata-book-1.2 libedata-cal-1.2 libedataserver-1.2" > > export PKG_CONFIG_PATH=${PKG_CONFIG_PATH}:/usr/lib/pkgconfig: > $prefix/lib/pkgconfig:/usr/local/lib/pkgconfig > > PKG_CHECK_MODULES(PACKAGE, [$pkg_modules], , AC_MSG_ERROR(GLib >= 2.0 > and opensync >= 1.0 required)) > > AC_SUBST(PACKAGE_CFLAGS) > AC_SUBST(PACKAGE_LIBS) > > PKG_CHECK_MODULES(EPACKAGE, [$pkg_emodules_10], EDSFOUND=1, > [EDSFOUND=0]) > if test "x${EDSFOUND}" = "x0"; then > PKG_CHECK_MODULES(EPACKAGE, [$pkg_emodules_11], EDSFOUND=1, > [EDSFOUND=0]) > if test "x${EDSFOUND}" = "x0"; then > PKG_CHECK_MODULES(EPACKAGE, > [$pkg_emodules_12],,AC_MSG_ERROR(No compatible evolution-data-server was > found)) > fi > fi > > i can see just 1.0 1.1 1.2 data-server, not 1.4 (installed via rpm) > > On Thu, 2006-02-02 at 14:35 +0100, David Eriksson wrote: > > On Thu, 2006-02-02 at 13:48 +0100, Matteo Bottiroli wrote: > > > After a configure , i got this: > > > > > > [root@localhost evolution2]# autoreconf -sfi configure.in: installing > > > `./install-sh' > > > configure.in: installing `./missing' > > > src/Makefile.am: installing `./depcomp' > > > [root@localhost evolution2]# ./configure > > > checking for a BSD-compatible install... /usr/bin/install -c > > > checking whether build environment is sane... yes > > > checking for gawk... gawk > > > checking whether make sets $(MAKE)... yes > > > checking for pkg-config... /usr/bin/pkg-config > > > checking pkg-config is at least version 0.9.0... yes > > > checking for PACKAGE... yes > > > checking for EPACKAGE... checking for EPACKAGE... checking for > > > EPACKAGE... configure: error: No compatible evolution-data-server was > > > found > > > > > > my install is: > > > evolution-data-server-1.4.2.1-1.1.fc4.nr > > > evolution-2.4.2.1-1.1.fc4.nr > > > evolution-connector-2.4.2-1.1.fc4.nr > > > > > > why??? > > > > You probably need the corresponding -devel packages. > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. Do you grep through log files > for problems? Stop! Download the new AJAX search engine that makes > searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642 > _______________________________________________ > Opensync-users mailing list > Ope...@li... > https://lists.sourceforge.net/lists/listinfo/opensync-users > |
From: Armin B. <arm...@de...> - 2006-02-03 10:40:45
Attachments:
signature.asc
|
try adding another line in configure.in: pkg_emodules_14="evolution-data-server-1.4 libebook-1.4 libecal-1.4 libedata-book-1.4 libedata-cal-1.4 libedataserver-1.4" and change the line PKG_CHECK_MODULES(EPACKAGE, [$pkg_emodules_10], EDSFOUND=1, [EDSFOUND=0]) to PKG_CHECK_MODULES(EPACKAGE, [$pkg_emodules_14], EDSFOUND=1, [EDSFOUND=0]) but i dont guarantee that the evo2 plugin works with eds1.4. Never tried it. Best Regards, Armin Bauer Matteo Bottiroli wrote: > After installed evolution-devel pack too, the error compiling > (configuring) remains..... > > help me please!!! > > Regards > > Il giorno gio, 02/02/2006 alle 14.41 +0100, Matteo Bottiroli ha scritto: > >>in config.in (evo2 plugin, i'm trying to compile) >> >>pkg_modules="glib-2.0 opensync-1.0" >>pkg_emodules_10="evolution-data-server-1.0 libebook-1.0 libecal-1.0 >>libedata-book-1.0 libedata-cal-1.0 libedataserver-1.0" >>pkg_emodules_11="evolution-data-server-1.1 libebook-1.1 libecal-1.1 >>libedata-book-1.1 libedata-cal-1.1 libedataserver-1.1" >>pkg_emodules_12="evolution-data-server-1.2 libebook-1.2 libecal-1.2 >>libedata-book-1.2 libedata-cal-1.2 libedataserver-1.2" >> >>export PKG_CONFIG_PATH=${PKG_CONFIG_PATH}:/usr/lib/pkgconfig: >>$prefix/lib/pkgconfig:/usr/local/lib/pkgconfig >> >>PKG_CHECK_MODULES(PACKAGE, [$pkg_modules], , AC_MSG_ERROR(GLib >= 2.0 >>and opensync >= 1.0 required)) >> >>AC_SUBST(PACKAGE_CFLAGS) >>AC_SUBST(PACKAGE_LIBS) >> >>PKG_CHECK_MODULES(EPACKAGE, [$pkg_emodules_10], EDSFOUND=1, >>[EDSFOUND=0]) >>if test "x${EDSFOUND}" = "x0"; then >> PKG_CHECK_MODULES(EPACKAGE, [$pkg_emodules_11], EDSFOUND=1, >>[EDSFOUND=0]) >> if test "x${EDSFOUND}" = "x0"; then >> PKG_CHECK_MODULES(EPACKAGE, >>[$pkg_emodules_12],,AC_MSG_ERROR(No compatible evolution-data-server was >>found)) >> fi >>fi >> >>i can see just 1.0 1.1 1.2 data-server, not 1.4 (installed via rpm) >> >>On Thu, 2006-02-02 at 14:35 +0100, David Eriksson wrote: >>> On Thu, 2006-02-02 at 13:48 +0100, Matteo Bottiroli wrote: >>> > After a configure , i got this: >>> > >>> > [root@localhost evolution2]# autoreconf -sfi configure.in: installing >>> > `./install-sh' >>> > configure.in: installing `./missing' >>> > src/Makefile.am: installing `./depcomp' >>> > [root@localhost evolution2]# ./configure >>> > checking for a BSD-compatible install... /usr/bin/install -c >>> > checking whether build environment is sane... yes >>> > checking for gawk... gawk >>> > checking whether make sets $(MAKE)... yes >>> > checking for pkg-config... /usr/bin/pkg-config >>> > checking pkg-config is at least version 0.9.0... yes >>> > checking for PACKAGE... yes >>> > checking for EPACKAGE... checking for EPACKAGE... checking for >>> > EPACKAGE... configure: error: No compatible evolution-data-server was >>> > found >>> > >>> > my install is: >>> > evolution-data-server-1.4.2.1-1.1.fc4.nr >>> > evolution-2.4.2.1-1.1.fc4.nr >>> > evolution-connector-2.4.2-1.1.fc4.nr >>> > >>> > why??? >>> >>> You probably need the corresponding -devel packages. >>> >> >> >> >>------------------------------------------------------- >>This SF.net email is sponsored by: Splunk Inc. Do you grep through log files >>for problems? Stop! Download the new AJAX search engine that makes >>searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! >>http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642 <http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642> >>_______________________________________________ >>Opensync-users mailing list >>Ope...@li... <mailto:Ope...@li...> >>https://lists.sourceforge.net/lists/listinfo/opensync-users >> |