-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
configure: error: Package requirements (sqlite3) were not met #9
Comments
is this a patch or a shell script? can you possibly clean it up only explaining the issue you are having? |
ubuntu1404@ubuntu:/opt/clutter-android-master$ ./build-clutter-android.sh No package 'sqlite3' found Consider adjusting the PKG_CONFIG_PATH environment variable if you Alternatively, you may set the environment variables SQLITE_CFLAGS |
make sure you have libsqlite3-dev installed. Or w/e version 14.04 has. sorry I dont have an ubuntu machine handy right now. if that doest work. I'll look into it more. |
ubuntu1404@ubuntu:/opt/android-ndk-r9d$ sudo apt-get install libsqlite3-dev I already install libsqlite,but also fail. |
I replace clutter-android.modules but have same error message.
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
Replace this :
By this :
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
And I use ubuntu 1404 and edit build-clutter-android.sh to this:
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
set -ex
download Android NDK and create standalone toolchain
if ! test -d android-ndk-r8c; then
wget http://dl.google.com/android/ndk/android-ndk-r8c-linux-x86.tar.bz2
tar jxf android-ndk-r8c-linux-x86.tar.bz2
rm android-ndk-r8c-linux-x86.tar.bz2
pushd android-ndk-r8c
./build/tools/make-standalone-toolchain.sh --platform=android-14 --install-dir=../toolchain
popd
fi
if ! test -d android-ndk-r9d; then
wget http://dl.google.com/android/ndk/android-ndk-r9d-linux-x86.tar.bz2
tar jxf android-ndk-r9d-linux-x86.tar.bz2
rm android-ndk-r9d-linux-x86.tar.bz2
pushd android-ndk-r9d
./build/tools/make-standalone-toolchain.sh --platform=android-14 --install-dir=../toolchain
popd
fi
JHB_PREFIX=$PWD/jhbuild/.local
set up patched version of jhbuild
if ! test -d jhbuild; then
git clone git://git.gnome.org/jhbuild
pushd jhbuild
patch -p1 -i ../modulesets/patches/jhbuild/disable-clean-la-files.patch
./autogen.sh --prefix=$JHB_PREFIX
make install
popd
fi
mkdir -p $JHB_PREFIX/share/aclocal
cp /usr/share/aclocal/gtk-doc.m4 $JHB_PREFIX/share/aclocal/
source ./android-env.sh
start the build
$JHB_PREFIX/bin/jhbuild -f jhbuildrc-android build -q mx libsoup
download Android SDK
if ! test -d android-sdk-linux; then
wget http://dl.google.com/android/android-sdk_r22.6.2-linux.tgz
tar zxf android-sdk_r22.6.2-linux.tgz
rm android-sdk_r22.6.2-linux.tgz
fi
android update sdk -u --filter platform-tool,tool
android update sdk --all -u --filter platform-tool,tool
android update sdk -u --filter android-19
android update sdk --all -u --filter android-19
The text was updated successfully, but these errors were encountered: