Package Details: lib32-orbit2 2.14.19-7

Git Clone URL: https://aur.archlinux.org/lib32-orbit2.git (read-only, click to copy)
Package Base: lib32-orbit2
Description: Thin/fast CORBA ORB (32 bit)
Upstream URL: http://www.gnome.org
Licenses: GPL, LGPL
Submitter: thr
Maintainer: thr
Last Packager: thr
Votes: 5
Popularity: 0.000000
First Submitted: 2015-10-01 13:41 (UTC)
Last Updated: 2022-01-11 06:01 (UTC)

Latest Comments

Tom_G commented on 2016-05-23 14:22 (UTC)

I had an error building this. Including the pkgconfig path in the configure call resolved the issue. diff --git a/PKGBUILD b/PKGBUILD index dbc22cc..724a0d5 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -30,7 +30,8 @@ build() { automake ./configure --prefix=/usr --libdir=/usr/lib32 --libexecdir=/usr/lib32 \ - --disable-static --enable-shared CC='gcc -m32' \ + --disable-static --enable-shared CC='gcc' CFLAGS='-m32' \ + PKG_CONFIG_PATH='/usr/lib32/pkgconfig/' \ --with-idl-compiler=/usr/bin/orbit-idl-2 make }