You are not logged in.
Pages: 1
I do a ./configure and it breaks saying
Meanwhile development headers not found.I give it a ./configure --disable-meanwhile ... it just continues on and says network manager headers not found
I saw the package in AUR and installed that but I rather compile my own pidgin, does anyone know what I do about the development headers?
Offline
Are you trying to compile 2.4.2? I can't get that beast to compile neither.. The repo and the alternate PKGBUILDS in AUR are all still at 2.4.1 so I guess no one gets this to compile.. The problem here is with autoconf for which there used to be a patch that doesn't apply anymore. I remember meanwhile being quirky too though.
Offline
Thank ya, I'll go look for an earlier package then
Offline
if you don't want that feature just use disable-etc when it's complains. i managed to build 2.4.2. if you want i can post PKGBUILD
Give what you have. To someone, it may be better than you dare to think.
Blog
Offline
if you don't want that feature just use disable-etc when it's complains. i managed to build 2.4.2. if you want i can post PKGBUILD
That would be awesome, I can't just disable something, it are autoconf and libtool being nasty.
Offline
Ya that would be good Wonder, I tried to disable Meanwhile but then more headers just pop up...
Also, I compiled the latest gimp but I cant find the executable... can anyone run it?
EDIT -
a pacman -S gimp says that some of the packages are not found?
Last edited by Xherziu (2008-06-05 19:41:15)
Offline
That would be awesome, I can't just disable something, it are autoconf and libtool being nasty.
those are there because of *schemas. but i'm not interest to lose that and i will compile pidgin normaly without nasty hacks ![]()
pkgname=pidgin
pkgver=2.4.2
pkgrel=1
pkgdesc="A GTK+-based messaging client"
arch=(i686 x86_64)
license=('GPL2')
url="http://pidgin.im"
depends=('startup-notification' 'gtkspell' 'libxss' 'gstreamer0.10' 'dbus-glib>=0.73')
makedepends=('pkgconfig' 'tk' 'avahi' 'intltool')
replaces=('gaim')
conflicts=('gaim')
provides=('gaim')
options=(!libtool)
install=pidgin.install
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2)
md5sums=('2d10f9b6a5f0162cf88016ea2ca0a36d')
build() {
cd ${startdir}/src/${pkgname}-${pkgver}
# gconf won't die with the --disable-schemas-install option
# sed -i -e 's/gconftool-2/no/g' configure.ac
# autoconf || return 1
./configure --prefix=/usr --sysconfdir=/etc \
--disable-perl --disable-cap \
--disable-schemas-install \
--enable-gtkspell --enable-gnutls=yes \
--enable-nss=no --disable-gevolution \
--enable-dbus --disable-mono \
--disable-meanwhile \
--disable-nm \
--disable-schemas-install \
--disable-debug
make || return 1make DESTDIR=${startdir}/pkg install
}Give what you have. To someone, it may be better than you dare to think.
Blog
Offline
Ramses de Norre wrote:That would be awesome, I can't just disable something, it are autoconf and libtool being nasty.
those are there because of *schemas. but i'm not interest to lose that and i will compile pidgin normaly without nasty hacks
That sounds like gnome stuff I haven't got neither. Well thanks for the PKGBUILD ![]()
Offline
Pages: 1