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. > |