Thank you to anyone who has already donated - your generous donations helped make three months of treatment possible.
My brother Nate continues to fight stage IV Hodgkin's lymphoma. He's just 31, with a wife and baby girl. They have no active income (since he's been unable to return to work), no insurance, and cannot afford the treatment he needs. Nate and his family need your help. Please consider a donation, every dollar helps. Thanks.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 |
#!/bin/bash # Copyright (c) 2011 Research In Motion Limited. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # This script builds the SDL library. It is useful as # an example of how to build software for the playbook # platform where the build system for that software is # configured with autoconf tools. #We set a destination where everything gets installed. PREFIX=$(pwd)/bb10_prefix # You might choose to run this if you change something # in the build scripts. We comment it out. #NOCONFIGURE=1 ./autogen.sh --quick --skip-gnulib # Note that we explicitly put --without-x because the configure # system has been known to forget that we are cross compiling # and over-zealously look for x11 headers and find them in /usr/include. CPPFLAGS="-D__PLAYBOOK__ -D__QNXNTO__ " \ CFLAGS=" -g " \ LDFLAGS="-lscreen -lasound -lpps -lm -lpng14 -lbps -lxml2 -lEGL -lGLESv2" \ PKG_CONFIG_PATH=${PREFIX}/lib/pkgconfig \ PKG_CONFIG_LIBDIR=${PREFIX}/lib/pkgconfig \ ./configure --prefix="${PREFIX}" \ --host=arm-unknown-nto-qnx8.0.0eabi \ --without-x \ --enable-pthreads \ --enable-audio \ --enable-video-playbook PREFIX=${PREFIX} make all if [ $? != 0 ]; then echo "Build Failed!" exit 1 fi PREFIX=${PREFIX} make install cd test CFLAGS="-g -D__PLAYBOOK__ -D__QNXNTO__ -I ${PREFIX}/include " \ LIBS="-L${PREFIX}/lib -lscreen -lasound -lpps -lm -lpng14 -lbps -lxml2 -lEGL -lGLESv2 " \ PKG_CONFIG_PATH=${PREFIX}/lib/pkgconfig \ PKG_CONFIG_LIBDIR=${PREFIX}/lib/pkgconfig \ ./configure --prefix="${PREFIX}" \ --host=arm-unknown-nto-qnx8.0.0eabi \ --without-x PREFIX=${PREFIX} make all if [ $? != 0 ]; then echo "Build Failed!" exit 1 fi echo "Build Successful!!" exit 0 |