~ubuntu-branches/ubuntu/wily/sflphone/wily

« back to all changes in this revision

Viewing changes to daemon/libs/pjproject-2.0.1/configure-bb10

  • Committer: Package Import Robot
  • Author(s): Mark Purcell
  • Date: 2014-01-28 18:23:36 UTC
  • mfrom: (1.1.11)
  • mto: This revision was merged to the branch mainline in revision 24.
  • Revision ID: package-import@ubuntu.com-20140128182336-3xenud1kbnwmf3mz
* New upstream release 
  - Fixes "New Upstream Release" (Closes: #735846)
  - Fixes "Ringtone does not stop" (Closes: #727164)
  - Fixes "[sflphone-kde] crash on startup" (Closes: #718178)
  - Fixes "sflphone GUI crashes when call is hung up" (Closes: #736583)
* Build-Depends: ensure GnuTLS 2.6
  - libucommon-dev (>= 6.0.7-1.1), libccrtp-dev (>= 2.0.6-3)
  - Fixes "FTBFS Build-Depends libgnutls{26,28}-dev" (Closes: #722040)
* Fix "boost 1.49 is going away" unversioned Build-Depends: (Closes: #736746)
* Add Build-Depends: libsndfile-dev, nepomuk-core-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
#
3
 
 
4
 
F="configure-bb10"
5
 
 
6
 
if test "$*" = "--help" -o "$*" = "-h"; then
7
 
  echo "$F [--simulator] [OPTIONS]"
8
 
  echo ""
9
 
  echo "where:"
10
 
  echo "  --simulator Optional parameter to specify that the compilation"
11
 
  echo "              target is a simulator."
12
 
  echo "  OPTIONS     Other options that will be passed directly to"
13
 
  echo "              ./aconfigure script. Run ./aconfigure --help"
14
 
  echo "              for more info."
15
 
  exit 0
16
 
fi
17
 
 
18
 
if test "$1" = "--simulator"; then
19
 
  shift
20
 
  TARGET_ARCH="x86"
21
 
  TARGET_ARCHEND=${TARGET_ARCH}
22
 
  LIBDIR=${TARGET_ARCH}
23
 
  TARGET_HOST="i486-pc-nto-qnx8.0.0"
24
 
else
25
 
  TARGET_ARCH="armv7"
26
 
  TARGET_ARCHEND="${TARGET_ARCH}le"
27
 
  LIBDIR="armle-v7"
28
 
  TARGET_HOST="arm-unknown-nto-qnx8.0.0eabi"
29
 
fi
30
 
 
31
 
RANLIB="${QNX_HOST}/usr/bin/nto${TARGET_ARCH}-ranlib "
32
 
CPP="${QNX_HOST}/usr/bin/qcc -V4.6.3,gcc_nto${TARGET_ARCHEND}_cpp -E "
33
 
CC="${QNX_HOST}/usr/bin/qcc -V4.6.3,gcc_nto${TARGET_ARCHEND}_cpp "
34
 
LD="${QNX_HOST}/usr/bin/nto${TARGET_ARCH}-ld "
35
 
export LDFLAGS=" -L${QNX_TARGET}/${LIBDIR}/usr/lib -L${QNX_TARGET}/${LIBDIR}/lib -L${QNX_HOST}/usr/lib/gcc/${TARGET_HOST}/4.6.3 -lgcc -lasound "
36
 
export CFLAGS=" -g -fPIC -DPJMEDIA_AUDIO_DEV_HAS_BB10=1 "
37
 
 
38
 
./configure --host=${TARGET_HOST} --disable-oss $*