X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=bootstrap.sh;h=0bf6c3d3739e558d97ab24d8a4568c8291359814;hb=69cdee2c53972c1dd7e1b9d83ddcd8f6c3c589f7;hp=26b8b31ba7c17f96557504e4f5a16b63d80a2a2e;hpb=409a427f912f9c203b102beed0816b53b250931f;p=builder.git diff --git a/bootstrap.sh b/bootstrap.sh index 26b8b31..0bf6c3d 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -6,7 +6,13 @@ set -e REQUIRED="core datafile" CFLAGS="-Iinclude `pkg-config --cflags sigc++-2.0`" LIBS="`pkg-config --libs sigc++-2.0` -lpthread" -if [ -e /usr/lib/libdl.so ]; then +MACHINE="`uname -m`" +if [ "$MACHINE" = "x86_64" ]; then + MULTIARCH="x86_64-linux-gnu" +else + MULTIARCH="i386-linux-gnu" +fi +if [ -e /usr/lib/libdl.so -o -e /usr/lib/$MULTIARCH/libdl.so ]; then LIBS="$LIBS -ldl" fi if [ -z "$LIBPATH" -o "${LIBPATH%%/*}" ]; then