--- opal-3.6.1~dfsg.orig/config.guess +++ opal-3.6.1~dfsg/config.guess @@ -1,9 +1,10 @@ #! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -# 2000, 2001, 2002, 2003 Free Software Foundation, Inc. +# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 +# Free Software Foundation, Inc. -timestamp='2003-10-03' +timestamp='2008-01-23' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -17,13 +18,15 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA +# 02110-1301, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. + # Originally written by Per Bothner . # Please send patches to . Submit a context # diff and a properly formatted ChangeLog entry. @@ -53,8 +56,8 @@ GNU config.guess ($timestamp) Originally written by Per Bothner. -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 -Free Software Foundation, Inc. +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, +2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." @@ -66,11 +69,11 @@ while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) - echo "$timestamp" ; exit 0 ;; + echo "$timestamp" ; exit ;; --version | -v ) - echo "$version" ; exit 0 ;; + echo "$version" ; exit ;; --help | --h* | -h ) - echo "$usage"; exit 0 ;; + echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. @@ -104,7 +107,7 @@ trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; : ${TMPDIR=/tmp} ; - { tmp=`(umask 077 && mktemp -d -q "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || + { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; @@ -123,7 +126,7 @@ ;; ,,*) CC_FOR_BUILD=$CC ;; ,*,*) CC_FOR_BUILD=$HOST_CC ;; -esac ;' +esac ; set_cc_for_build= ;' # This is needed to find uname on a Pyramid OSx when run in the BSD universe. # (ghazi@noc.rutgers.edu 1994-08-24) @@ -158,6 +161,7 @@ arm*) machine=arm-unknown ;; sh3el) machine=shl-unknown ;; sh3eb) machine=sh-unknown ;; + sh5el) machine=sh5le-unknown ;; *) machine=${UNAME_MACHINE_ARCH}-unknown ;; esac # The Operating System including object format, if it has switched @@ -196,50 +200,32 @@ # contains redundant information, the shorter form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. echo "${machine}-${os}${release}" - exit 0 ;; - amiga:OpenBSD:*:*) - echo m68k-unknown-openbsd${UNAME_RELEASE} - exit 0 ;; - arc:OpenBSD:*:*) - echo mipsel-unknown-openbsd${UNAME_RELEASE} - exit 0 ;; - hp300:OpenBSD:*:*) - echo m68k-unknown-openbsd${UNAME_RELEASE} - exit 0 ;; - mac68k:OpenBSD:*:*) - echo m68k-unknown-openbsd${UNAME_RELEASE} - exit 0 ;; - macppc:OpenBSD:*:*) - echo powerpc-unknown-openbsd${UNAME_RELEASE} - exit 0 ;; - mvme68k:OpenBSD:*:*) - echo m68k-unknown-openbsd${UNAME_RELEASE} - exit 0 ;; - mvme88k:OpenBSD:*:*) - echo m88k-unknown-openbsd${UNAME_RELEASE} - exit 0 ;; - mvmeppc:OpenBSD:*:*) - echo powerpc-unknown-openbsd${UNAME_RELEASE} - exit 0 ;; - pmax:OpenBSD:*:*) - echo mipsel-unknown-openbsd${UNAME_RELEASE} - exit 0 ;; - sgi:OpenBSD:*:*) - echo mipseb-unknown-openbsd${UNAME_RELEASE} - exit 0 ;; - sun3:OpenBSD:*:*) - echo m68k-unknown-openbsd${UNAME_RELEASE} - exit 0 ;; - wgrisc:OpenBSD:*:*) - echo mipsel-unknown-openbsd${UNAME_RELEASE} - exit 0 ;; + exit ;; *:OpenBSD:*:*) - echo ${UNAME_MACHINE}-unknown-openbsd${UNAME_RELEASE} - exit 0 ;; + UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` + echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} + exit ;; + *:ekkoBSD:*:*) + echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} + exit ;; + *:SolidBSD:*:*) + echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} + exit ;; + macppc:MirBSD:*:*) + echo powerpc-unknown-mirbsd${UNAME_RELEASE} + exit ;; + *:MirBSD:*:*) + echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} + exit ;; alpha:OSF1:*:*) - if test $UNAME_RELEASE = "V4.0"; then + case $UNAME_RELEASE in + *4.0) UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` - fi + ;; + *5.*) + UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` + ;; + esac # According to Compaq, /usr/sbin/psrinfo has been available on # OSF/1 and Tru64 systems produced since 1995. I hope that # covers most systems running today. This code pipes the CPU @@ -277,42 +263,49 @@ "EV7.9 (21364A)") UNAME_MACHINE="alphaev79" ;; esac + # A Pn.n version is a patched version. # A Vn.n version is a released version. # A Tn.n version is a released field test version. # A Xn.n version is an unreleased experimental baselevel. # 1.2 uses "1.2" for uname -r. - echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[VTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` - exit 0 ;; - Alpha*:OpenVMS:*:*) - echo alpha-hp-vms - exit 0 ;; + echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` + exit ;; Alpha\ *:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # Should we change UNAME_MACHINE based on the output of uname instead # of the specific Alpha model? echo alpha-pc-interix - exit 0 ;; + exit ;; 21064:Windows_NT:50:3) echo alpha-dec-winnt3.5 - exit 0 ;; + exit ;; Amiga*:UNIX_System_V:4.0:*) echo m68k-unknown-sysv4 - exit 0;; + exit ;; *:[Aa]miga[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-amigaos - exit 0 ;; + exit ;; *:[Mm]orph[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-morphos - exit 0 ;; + exit ;; *:OS/390:*:*) echo i370-ibm-openedition - exit 0 ;; + exit ;; + *:z/VM:*:*) + echo s390-ibm-zvmoe + exit ;; + *:OS400:*:*) + echo powerpc-ibm-os400 + exit ;; arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) echo arm-acorn-riscix${UNAME_RELEASE} - exit 0;; + exit ;; + arm:riscos:*:*|arm:RISCOS:*:*) + echo arm-unknown-riscos + exit ;; SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) echo hppa1.1-hitachi-hiuxmpp - exit 0;; + exit ;; Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. if test "`(/bin/universe) 2>/dev/null`" = att ; then @@ -320,32 +313,32 @@ else echo pyramid-pyramid-bsd fi - exit 0 ;; + exit ;; NILE*:*:*:dcosx) echo pyramid-pyramid-svr4 - exit 0 ;; + exit ;; DRS?6000:unix:4.0:6*) echo sparc-icl-nx6 - exit 0 ;; - DRS?6000:UNIX_SV:4.2*:7*) + exit ;; + DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) case `/usr/bin/uname -p` in - sparc) echo sparc-icl-nx7 && exit 0 ;; + sparc) echo sparc-icl-nx7; exit ;; esac ;; sun4H:SunOS:5.*:*) echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` - exit 0 ;; + exit ;; sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` - exit 0 ;; - i86pc:SunOS:5.*:*) + exit ;; + i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) echo i386-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` - exit 0 ;; + exit ;; sun4*:SunOS:6*:*) # According to config.sub, this is the proper way to canonicalize # SunOS6. Hard to guess exactly what SunOS6 will be like, but # it's likely to be more like Solaris than SunOS4. echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` - exit 0 ;; + exit ;; sun4*:SunOS:*:*) case "`/usr/bin/arch -k`" in Series*|S4*) @@ -354,10 +347,10 @@ esac # Japanese Language versions have a version number like `4.1.3-JL'. echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` - exit 0 ;; + exit ;; sun3*:SunOS:*:*) echo m68k-sun-sunos${UNAME_RELEASE} - exit 0 ;; + exit ;; sun*:*:4.2BSD:*) UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 @@ -369,10 +362,10 @@ echo sparc-sun-sunos${UNAME_RELEASE} ;; esac - exit 0 ;; + exit ;; aushp:SunOS:*:*) echo sparc-auspex-sunos${UNAME_RELEASE} - exit 0 ;; + exit ;; # The situation for MiNT is a little confusing. The machine name # can be virtually everything (everything which is not # "atarist" or "atariste" at least should have a processor @@ -383,37 +376,40 @@ # be no problem. atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} - exit 0 ;; + exit ;; atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} - exit 0 ;; + exit ;; *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} - exit 0 ;; + exit ;; milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) echo m68k-milan-mint${UNAME_RELEASE} - exit 0 ;; + exit ;; hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) echo m68k-hades-mint${UNAME_RELEASE} - exit 0 ;; + exit ;; *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) echo m68k-unknown-mint${UNAME_RELEASE} - exit 0 ;; + exit ;; + m68k:machten:*:*) + echo m68k-apple-machten${UNAME_RELEASE} + exit ;; powerpc:machten:*:*) echo powerpc-apple-machten${UNAME_RELEASE} - exit 0 ;; + exit ;; RISC*:Mach:*:*) echo mips-dec-mach_bsd4.3 - exit 0 ;; + exit ;; RISC*:ULTRIX:*:*) echo mips-dec-ultrix${UNAME_RELEASE} - exit 0 ;; + exit ;; VAX*:ULTRIX*:*:*) echo vax-dec-ultrix${UNAME_RELEASE} - exit 0 ;; + exit ;; 2020:CLIX:*:* | 2430:CLIX:*:*) echo clipper-intergraph-clix${UNAME_RELEASE} - exit 0 ;; + exit ;; mips:*:*:UMIPS | mips:*:*:RISCos) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c @@ -437,32 +433,33 @@ exit (-1); } EOF - $CC_FOR_BUILD -o $dummy $dummy.c \ - && $dummy `echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` \ - && exit 0 + $CC_FOR_BUILD -o $dummy $dummy.c && + dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` && + SYSTEM_NAME=`$dummy $dummyarg` && + { echo "$SYSTEM_NAME"; exit; } echo mips-mips-riscos${UNAME_RELEASE} - exit 0 ;; + exit ;; Motorola:PowerMAX_OS:*:*) echo powerpc-motorola-powermax - exit 0 ;; + exit ;; Motorola:*:4.3:PL8-*) echo powerpc-harris-powermax - exit 0 ;; + exit ;; Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) echo powerpc-harris-powermax - exit 0 ;; + exit ;; Night_Hawk:Power_UNIX:*:*) echo powerpc-harris-powerunix - exit 0 ;; + exit ;; m88k:CX/UX:7*:*) echo m88k-harris-cxux7 - exit 0 ;; + exit ;; m88k:*:4*:R4*) echo m88k-motorola-sysv4 - exit 0 ;; + exit ;; m88k:*:3*:R3*) echo m88k-motorola-sysv3 - exit 0 ;; + exit ;; AViiON:dgux:*:*) # DG/UX returns AViiON for all architectures UNAME_PROCESSOR=`/usr/bin/uname -p` @@ -478,29 +475,29 @@ else echo i586-dg-dgux${UNAME_RELEASE} fi - exit 0 ;; + exit ;; M88*:DolphinOS:*:*) # DolphinOS (SVR3) echo m88k-dolphin-sysv3 - exit 0 ;; + exit ;; M88*:*:R3*:*) # Delta 88k system running SVR3 echo m88k-motorola-sysv3 - exit 0 ;; + exit ;; XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) echo m88k-tektronix-sysv3 - exit 0 ;; + exit ;; Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) echo m68k-tektronix-bsd - exit 0 ;; + exit ;; *:IRIX*:*:*) echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` - exit 0 ;; + exit ;; ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. - echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id - exit 0 ;; # Note that: echo "'`uname -s`'" gives 'AIX ' + echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id + exit ;; # Note that: echo "'`uname -s`'" gives 'AIX ' i*86:AIX:*:*) echo i386-ibm-aix - exit 0 ;; + exit ;; ia64:AIX:*:*) if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` @@ -508,7 +505,7 @@ IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} - exit 0 ;; + exit ;; *:AIX:2:3) if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then eval $set_cc_for_build @@ -523,15 +520,19 @@ exit(0); } EOF - $CC_FOR_BUILD -o $dummy $dummy.c && $dummy && exit 0 - echo rs6000-ibm-aix3.2.5 + if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` + then + echo "$SYSTEM_NAME" + else + echo rs6000-ibm-aix3.2.5 + fi elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then echo rs6000-ibm-aix3.2.4 else echo rs6000-ibm-aix3.2 fi - exit 0 ;; - *:AIX:*:[45]) + exit ;; + *:AIX:*:[456]) IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then IBM_ARCH=rs6000 @@ -544,28 +545,28 @@ IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${IBM_ARCH}-ibm-aix${IBM_REV} - exit 0 ;; + exit ;; *:AIX:*:*) echo rs6000-ibm-aix - exit 0 ;; + exit ;; ibmrt:4.4BSD:*|romp-ibm:BSD:*) echo romp-ibm-bsd4.4 - exit 0 ;; + exit ;; ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to - exit 0 ;; # report: romp-ibm BSD 4.3 + exit ;; # report: romp-ibm BSD 4.3 *:BOSX:*:*) echo rs6000-bull-bosx - exit 0 ;; + exit ;; DPX/2?00:B.O.S.:*:*) echo m68k-bull-sysv3 - exit 0 ;; + exit ;; 9000/[34]??:4.3bsd:1.*:*) echo m68k-hp-bsd - exit 0 ;; + exit ;; hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) echo m68k-hp-bsd4.4 - exit 0 ;; + exit ;; 9000/[34678]??:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` case "${UNAME_MACHINE}" in @@ -627,9 +628,19 @@ esac if [ ${HP_ARCH} = "hppa2.0w" ] then - # avoid double evaluation of $set_cc_for_build - test -n "$CC_FOR_BUILD" || eval $set_cc_for_build - if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E -) | grep __LP64__ >/dev/null + eval $set_cc_for_build + + # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating + # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler + # generating 64-bit code. GNU and HP use different nomenclature: + # + # $ CC_FOR_BUILD=cc ./config.guess + # => hppa2.0w-hp-hpux11.23 + # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess + # => hppa64-hp-hpux11.23 + + if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | + grep __LP64__ >/dev/null then HP_ARCH="hppa2.0w" else @@ -637,11 +648,11 @@ fi fi echo ${HP_ARCH}-hp-hpux${HPUX_REV} - exit 0 ;; + exit ;; ia64:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` echo ia64-hp-hpux${HPUX_REV} - exit 0 ;; + exit ;; 3050*:HI-UX:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c @@ -669,153 +680,192 @@ exit (0); } EOF - $CC_FOR_BUILD -o $dummy $dummy.c && $dummy && exit 0 + $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` && + { echo "$SYSTEM_NAME"; exit; } echo unknown-hitachi-hiuxwe2 - exit 0 ;; + exit ;; 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) echo hppa1.1-hp-bsd - exit 0 ;; + exit ;; 9000/8??:4.3bsd:*:*) echo hppa1.0-hp-bsd - exit 0 ;; + exit ;; *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) echo hppa1.0-hp-mpeix - exit 0 ;; + exit ;; hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) echo hppa1.1-hp-osf - exit 0 ;; + exit ;; hp8??:OSF1:*:*) echo hppa1.0-hp-osf - exit 0 ;; + exit ;; i*86:OSF1:*:*) if [ -x /usr/sbin/sysversion ] ; then echo ${UNAME_MACHINE}-unknown-osf1mk else echo ${UNAME_MACHINE}-unknown-osf1 fi - exit 0 ;; + exit ;; parisc*:Lites*:*:*) echo hppa1.1-hp-lites - exit 0 ;; + exit ;; C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) echo c1-convex-bsd - exit 0 ;; + exit ;; C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi - exit 0 ;; + exit ;; C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) echo c34-convex-bsd - exit 0 ;; + exit ;; C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) echo c38-convex-bsd - exit 0 ;; + exit ;; C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) echo c4-convex-bsd - exit 0 ;; + exit ;; CRAY*Y-MP:*:*:*) echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' - exit 0 ;; + exit ;; CRAY*[A-Z]90:*:*:*) echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ -e 's/\.[^.]*$/.X/' - exit 0 ;; + exit ;; CRAY*TS:*:*:*) echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' - exit 0 ;; + exit ;; CRAY*T3E:*:*:*) echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' - exit 0 ;; + exit ;; CRAY*SV1:*:*:*) echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' - exit 0 ;; + exit ;; *:UNICOS/mp:*:*) - echo nv1-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' - exit 0 ;; + echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit ;; F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" - exit 0 ;; + exit ;; + 5000:UNIX_System_V:4.*:*) + FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` + FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` + echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" + exit ;; i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} - exit 0 ;; + exit ;; sparc*:BSD/OS:*:*) echo sparc-unknown-bsdi${UNAME_RELEASE} - exit 0 ;; + exit ;; *:BSD/OS:*:*) echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} - exit 0 ;; - *:FreeBSD:*:*|*:GNU/FreeBSD:*:*) - # Determine whether the default compiler uses glibc. - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c - #include - #if __GLIBC__ >= 2 - LIBC=gnu - #else - LIBC= - #endif -EOF - eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^LIBC=` - # GNU/FreeBSD systems have a "k" prefix to indicate we are using - # FreeBSD's kernel, but not the complete OS. - case ${LIBC} in gnu) kernel_only='k' ;; esac - echo ${UNAME_MACHINE}-unknown-${kernel_only}freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`${LIBC:+-$LIBC} - exit 0 ;; + exit ;; + *:FreeBSD:*:*) + case ${UNAME_MACHINE} in + pc98) + echo i386-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; + amd64) + echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; + *) + echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; + esac + exit ;; i*:CYGWIN*:*) echo ${UNAME_MACHINE}-pc-cygwin - exit 0 ;; - i*:MINGW*:*) + exit ;; + *:MINGW*:*) echo ${UNAME_MACHINE}-pc-mingw32 - exit 0 ;; + exit ;; + i*:windows32*:*) + # uname -m includes "-pc" on this system. + echo ${UNAME_MACHINE}-mingw32 + exit ;; i*:PW*:*) echo ${UNAME_MACHINE}-pc-pw32 - exit 0 ;; - x86:Interix*:[34]*) - echo i586-pc-interix${UNAME_RELEASE}|sed -e 's/\..*//' - exit 0 ;; + exit ;; + *:Interix*:[3456]*) + case ${UNAME_MACHINE} in + x86) + echo i586-pc-interix${UNAME_RELEASE} + exit ;; + EM64T | authenticamd) + echo x86_64-unknown-interix${UNAME_RELEASE} + exit ;; + IA64) + echo ia64-unknown-interix${UNAME_RELEASE} + exit ;; + esac ;; [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) echo i${UNAME_MACHINE}-pc-mks - exit 0 ;; + exit ;; i*:Windows_NT*:* | Pentium*:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we # UNAME_MACHINE based on the output of uname instead of i386? echo i586-pc-interix - exit 0 ;; + exit ;; i*:UWIN*:*) echo ${UNAME_MACHINE}-pc-uwin - exit 0 ;; + exit ;; + amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) + echo x86_64-unknown-cygwin + exit ;; p*:CYGWIN*:*) echo powerpcle-unknown-cygwin - exit 0 ;; + exit ;; prep*:SunOS:5.*:*) echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` - exit 0 ;; + exit ;; *:GNU:*:*) + # the GNU system echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` - exit 0 ;; + exit ;; + *:GNU/*:*:*) + # other systems with GNU libc and userland + echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu + exit ;; i*86:Minix:*:*) echo ${UNAME_MACHINE}-pc-minix - exit 0 ;; + exit ;; arm*:Linux:*:*) + eval $set_cc_for_build + if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ + | grep -q __ARM_EABI__ + then + echo ${UNAME_MACHINE}-unknown-linux-gnu + else + echo ${UNAME_MACHINE}-unknown-linux-gnueabi + fi + exit ;; + avr32*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu - exit 0 ;; + exit ;; cris:Linux:*:*) echo cris-axis-linux-gnu - exit 0 ;; + exit ;; + crisv32:Linux:*:*) + echo crisv32-axis-linux-gnu + exit ;; + frv:Linux:*:*) + echo frv-unknown-linux-gnu + exit ;; ia64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu - exit 0 ;; + exit ;; + m32r*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; m68*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu - exit 0 ;; + exit ;; mips:Linux:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c @@ -832,8 +882,12 @@ #endif #endif EOF - eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=` - test x"${CPU}" != x && echo "${CPU}-unknown-linux-gnu" && exit 0 + eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' + /^CPU/{ + s: ::g + p + }'`" + test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ;; mips64:Linux:*:*) eval $set_cc_for_build @@ -851,15 +905,22 @@ #endif #endif EOF - eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=` - test x"${CPU}" != x && echo "${CPU}-unknown-linux-gnu" && exit 0 + eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' + /^CPU/{ + s: ::g + p + }'`" + test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ;; + or32:Linux:*:*) + echo or32-unknown-linux-gnu + exit ;; ppc:Linux:*:*) echo powerpc-unknown-linux-gnu - exit 0 ;; + exit ;; ppc64:Linux:*:*) echo powerpc64-unknown-linux-gnu - exit 0 ;; + exit ;; alpha:Linux:*:*) case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in EV5) UNAME_MACHINE=alphaev5 ;; @@ -873,7 +934,7 @@ objdump --private-headers /bin/sh | grep ld.so.1 >/dev/null if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} - exit 0 ;; + exit ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in @@ -881,25 +942,31 @@ PA8*) echo hppa2.0-unknown-linux-gnu ;; *) echo hppa-unknown-linux-gnu ;; esac - exit 0 ;; + exit ;; parisc64:Linux:*:* | hppa64:Linux:*:*) echo hppa64-unknown-linux-gnu - exit 0 ;; + exit ;; s390:Linux:*:* | s390x:Linux:*:*) echo ${UNAME_MACHINE}-ibm-linux - exit 0 ;; + exit ;; sh64*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu - exit 0 ;; + exit ;; sh*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu - exit 0 ;; + exit ;; sparc:Linux:*:* | sparc64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu - exit 0 ;; + exit ;; + vax:Linux:*:*) + echo ${UNAME_MACHINE}-dec-linux-gnu + exit ;; x86_64:Linux:*:*) echo x86_64-unknown-linux-gnu - exit 0 ;; + exit ;; + xtensa*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; i*86:Linux:*:*) # The BFD linker knows what the default object file format is, so # first see if it will tell us. cd to the root directory to prevent @@ -917,15 +984,15 @@ ;; a.out-i386-linux) echo "${UNAME_MACHINE}-pc-linux-gnuaout" - exit 0 ;; + exit ;; coff-i386) echo "${UNAME_MACHINE}-pc-linux-gnucoff" - exit 0 ;; + exit ;; "") # Either a pre-BFD a.out linker (linux-gnuoldld) or # one that does not give us useful --help. echo "${UNAME_MACHINE}-pc-linux-gnuoldld" - exit 0 ;; + exit ;; esac # Determine whether the default compiler is a.out or elf eval $set_cc_for_build @@ -942,7 +1009,7 @@ LIBC=gnulibc1 # endif #else - #ifdef __INTEL_COMPILER + #if defined(__INTEL_COMPILER) || defined(__PGI) || defined(__SUNPRO_C) || defined(__SUNPRO_CC) LIBC=gnu #else LIBC=gnuaout @@ -952,16 +1019,23 @@ LIBC=dietlibc #endif EOF - eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^LIBC=` - test x"${LIBC}" != x && echo "${UNAME_MACHINE}-pc-linux-${LIBC}" && exit 0 - test x"${TENTATIVE}" != x && echo "${TENTATIVE}" && exit 0 + eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' + /^LIBC/{ + s: ::g + p + }'`" + test x"${LIBC}" != x && { + echo "${UNAME_MACHINE}-pc-linux-${LIBC}" + exit + } + test x"${TENTATIVE}" != x && { echo "${TENTATIVE}"; exit; } ;; i*86:DYNIX/ptx:4*:*) # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. # earlier versions are messed up and put the nodename in both # sysname and nodename. echo i386-sequent-sysv4 - exit 0 ;; + exit ;; i*86:UNIX_SV:4.2MP:2.*) # Unixware is an offshoot of SVR4, but it has its own version # number series starting with 2... @@ -969,24 +1043,27 @@ # I just have to hope. -- rms. # Use sysv4.2uw... so that sysv4* matches it. echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} - exit 0 ;; + exit ;; i*86:OS/2:*:*) # If we were able to find `uname', then EMX Unix compatibility # is probably installed. echo ${UNAME_MACHINE}-pc-os2-emx - exit 0 ;; + exit ;; i*86:XTS-300:*:STOP) echo ${UNAME_MACHINE}-unknown-stop - exit 0 ;; + exit ;; i*86:atheos:*:*) echo ${UNAME_MACHINE}-unknown-atheos - exit 0 ;; + exit ;; + i*86:syllable:*:*) + echo ${UNAME_MACHINE}-pc-syllable + exit ;; i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.0*:*) echo i386-unknown-lynxos${UNAME_RELEASE} - exit 0 ;; + exit ;; i*86:*DOS:*:*) echo ${UNAME_MACHINE}-pc-msdosdjgpp - exit 0 ;; + exit ;; i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then @@ -994,15 +1071,16 @@ else echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} fi - exit 0 ;; - i*86:*:5:[78]*) + exit ;; + i*86:*:5:[678]*) + # UnixWare 7.x, OpenUNIX and OpenServer 6. case `/bin/uname -X | grep "^Machine"` in *486*) UNAME_MACHINE=i486 ;; *Pentium) UNAME_MACHINE=i586 ;; *Pent*|*Celeron) UNAME_MACHINE=i686 ;; esac echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} - exit 0 ;; + exit ;; i*86:*:3.2:*) if test -f /usr/options/cb.name; then UNAME_REL=`sed -n 's/.*Version //p' /dev/null 2>&1 ; then echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 else # Add other i860-SVR4 vendors below as they are discovered. echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 fi - exit 0 ;; + exit ;; mini*:CTIX:SYS*5:*) # "miniframe" echo m68010-convergent-sysv - exit 0 ;; + exit ;; mc68k:UNIX:SYSTEM5:3.51m) echo m68k-convergent-sysv - exit 0 ;; + exit ;; M680?0:D-NIX:5.3:*) echo m68k-diab-dnix - exit 0 ;; - M68*:*:R3V[567]*:*) - test -r /sysV68 && echo 'm68k-motorola-sysv' && exit 0 ;; - 3[34]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0) + exit ;; + M68*:*:R3V[5678]*:*) + test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;; + 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) OS_REL='' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ - && echo i486-ncr-sysv4.3${OS_REL} && exit 0 + && { echo i486-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ - && echo i586-ncr-sysv4.3${OS_REL} && exit 0 ;; + && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ - && echo i486-ncr-sysv4 && exit 0 ;; + && { echo i486-ncr-sysv4; exit; } ;; m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) echo m68k-unknown-lynxos${UNAME_RELEASE} - exit 0 ;; + exit ;; mc68030:UNIX_System_V:4.*:*) echo m68k-atari-sysv4 - exit 0 ;; + exit ;; TSUNAMI:LynxOS:2.*:*) echo sparc-unknown-lynxos${UNAME_RELEASE} - exit 0 ;; + exit ;; rs6000:LynxOS:2.*:*) echo rs6000-unknown-lynxos${UNAME_RELEASE} - exit 0 ;; + exit ;; PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.0*:*) echo powerpc-unknown-lynxos${UNAME_RELEASE} - exit 0 ;; + exit ;; SM[BE]S:UNIX_SV:*:*) echo mips-dde-sysv${UNAME_RELEASE} - exit 0 ;; + exit ;; RM*:ReliantUNIX-*:*:*) echo mips-sni-sysv4 - exit 0 ;; + exit ;; RM*:SINIX-*:*:*) echo mips-sni-sysv4 - exit 0 ;; + exit ;; *:SINIX-*:*:*) if uname -p 2>/dev/null >/dev/null ; then UNAME_MACHINE=`(uname -p) 2>/dev/null` @@ -1094,68 +1172,81 @@ else echo ns32k-sni-sysv fi - exit 0 ;; + exit ;; PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort # says echo i586-unisys-sysv4 - exit 0 ;; + exit ;; *:UNIX_System_V:4*:FTX*) # From Gerald Hewes . # How about differentiating between stratus architectures? -djm echo hppa1.1-stratus-sysv4 - exit 0 ;; + exit ;; *:*:*:FTX*) # From seanf@swdc.stratus.com. echo i860-stratus-sysv4 - exit 0 ;; + exit ;; + i*86:VOS:*:*) + # From Paul.Green@stratus.com. + echo ${UNAME_MACHINE}-stratus-vos + exit ;; *:VOS:*:*) # From Paul.Green@stratus.com. echo hppa1.1-stratus-vos - exit 0 ;; + exit ;; mc68*:A/UX:*:*) echo m68k-apple-aux${UNAME_RELEASE} - exit 0 ;; + exit ;; news*:NEWS-OS:6*:*) echo mips-sony-newsos6 - exit 0 ;; + exit ;; R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) if [ -d /usr/nec ]; then echo mips-nec-sysv${UNAME_RELEASE} else echo mips-unknown-sysv${UNAME_RELEASE} fi - exit 0 ;; + exit ;; BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. echo powerpc-be-beos - exit 0 ;; + exit ;; BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. echo powerpc-apple-beos - exit 0 ;; + exit ;; BePC:BeOS:*:*) # BeOS running on Intel PC compatible. echo i586-pc-beos - exit 0 ;; + exit ;; SX-4:SUPER-UX:*:*) echo sx4-nec-superux${UNAME_RELEASE} - exit 0 ;; + exit ;; SX-5:SUPER-UX:*:*) echo sx5-nec-superux${UNAME_RELEASE} - exit 0 ;; + exit ;; SX-6:SUPER-UX:*:*) echo sx6-nec-superux${UNAME_RELEASE} - exit 0 ;; + exit ;; + SX-7:SUPER-UX:*:*) + echo sx7-nec-superux${UNAME_RELEASE} + exit ;; + SX-8:SUPER-UX:*:*) + echo sx8-nec-superux${UNAME_RELEASE} + exit ;; + SX-8R:SUPER-UX:*:*) + echo sx8r-nec-superux${UNAME_RELEASE} + exit ;; Power*:Rhapsody:*:*) echo powerpc-apple-rhapsody${UNAME_RELEASE} - exit 0 ;; + exit ;; *:Rhapsody:*:*) echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} - exit 0 ;; + exit ;; *:Darwin:*:*) - case `uname -p` in - *86) UNAME_PROCESSOR=i686 ;; - powerpc) UNAME_PROCESSOR=powerpc ;; + UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown + case $UNAME_PROCESSOR in + unknown) UNAME_PROCESSOR=powerpc ;; esac echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} - exit 0 ;; + exit ;; *:procnto*:*:* | *:QNX:[0123456789]*:*) UNAME_PROCESSOR=`uname -p` if test "$UNAME_PROCESSOR" = "x86"; then @@ -1163,22 +1254,25 @@ UNAME_MACHINE=pc fi echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} - exit 0 ;; + exit ;; *:QNX:*:4*) echo i386-pc-qnx - exit 0 ;; - NSR-[DGKLNPTVWY]:NONSTOP_KERNEL:*:*) + exit ;; + NSE-?:NONSTOP_KERNEL:*:*) + echo nse-tandem-nsk${UNAME_RELEASE} + exit ;; + NSR-?:NONSTOP_KERNEL:*:*) echo nsr-tandem-nsk${UNAME_RELEASE} - exit 0 ;; + exit ;; *:NonStop-UX:*:*) echo mips-compaq-nonstopux - exit 0 ;; + exit ;; BS2000:POSIX*:*:*) echo bs2000-siemens-sysv - exit 0 ;; + exit ;; DS/*:UNIX_System_V:*:*) echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} - exit 0 ;; + exit ;; *:Plan9:*:*) # "uname -m" is not consistent, so use $cputype instead. 386 # is converted to i386 for consistency with other x86 @@ -1189,28 +1283,47 @@ UNAME_MACHINE="$cputype" fi echo ${UNAME_MACHINE}-unknown-plan9 - exit 0 ;; + exit ;; *:TOPS-10:*:*) echo pdp10-unknown-tops10 - exit 0 ;; + exit ;; *:TENEX:*:*) echo pdp10-unknown-tenex - exit 0 ;; + exit ;; KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) echo pdp10-dec-tops20 - exit 0 ;; + exit ;; XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) echo pdp10-xkl-tops20 - exit 0 ;; + exit ;; *:TOPS-20:*:*) echo pdp10-unknown-tops20 - exit 0 ;; + exit ;; *:ITS:*:*) echo pdp10-unknown-its - exit 0 ;; + exit ;; SEI:*:*:SEIUX) echo mips-sei-seiux${UNAME_RELEASE} - exit 0 ;; + exit ;; + *:DragonFly:*:*) + echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` + exit ;; + *:*VMS:*:*) + UNAME_MACHINE=`(uname -p) 2>/dev/null` + case "${UNAME_MACHINE}" in + A*) echo alpha-dec-vms ; exit ;; + I*) echo ia64-dec-vms ; exit ;; + V*) echo vax-dec-vms ; exit ;; + esac ;; + *:XENIX:*:SysV) + echo i386-pc-xenix + exit ;; + i*86:skyos:*:*) + echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//' + exit ;; + i*86:rdos:*:*) + echo ${UNAME_MACHINE}-pc-rdos + exit ;; esac #echo '(No uname command or uname output not recognized.)' 1>&2 @@ -1242,7 +1355,7 @@ #endif #if defined (__arm) && defined (__acorn) && defined (__unix) - printf ("arm-acorn-riscix"); exit (0); + printf ("arm-acorn-riscix\n"); exit (0); #endif #if defined (hp300) && !defined (hpux) @@ -1331,11 +1444,12 @@ } EOF -$CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && $dummy && exit 0 +$CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` && + { echo "$SYSTEM_NAME"; exit; } # Apollos put the system type in the environment. -test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit 0; } +test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; } # Convex versions that predate uname can use getsysinfo(1) @@ -1344,22 +1458,22 @@ case `getsysinfo -f cpu_type` in c1*) echo c1-convex-bsd - exit 0 ;; + exit ;; c2*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi - exit 0 ;; + exit ;; c34*) echo c34-convex-bsd - exit 0 ;; + exit ;; c38*) echo c38-convex-bsd - exit 0 ;; + exit ;; c4*) echo c4-convex-bsd - exit 0 ;; + exit ;; esac fi @@ -1370,7 +1484,9 @@ the operating system you are using. It is advised that you download the most up to date version of the config scripts from - ftp://ftp.gnu.org/pub/gnu/config/ + http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD +and + http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD If the version you run ($0) is already up to date, please send the following data and any information you think might be --- opal-3.6.1~dfsg.orig/opal_defs.mak +++ opal-3.6.1~dfsg/opal_defs.mak @@ -0,0 +1,148 @@ +# +# opal_inc.mak +# +# Make symbols include file for Open Phone Abstraction library +# +# Copyright (c) 2001 Equivalence Pty. Ltd. +# +# The contents of this file are subject to the Mozilla Public License +# Version 1.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.mozilla.org/MPL/ +# +# Software distributed under the License is distributed on an "AS IS" +# basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See +# the License for the specific language governing rights and limitations +# under the License. +# +# The Original Code is Open Phone Abstraction library. +# +# The Initial Developer of the Original Code is Equivalence Pty. Ltd. +# +# Contributor(s): ______________________________________. +# +# $Revision: 21907 $ +# $Author: csoutheren $ +# $Date: 2009-01-09 00:30:05 +0000 (Fri, 09 Jan 2009) $ +# + +ifndef DEBUG_BUILD +DEBUG_BUILD = no +endif +ifndef OPAL_SHARED_LIB +OPAL_SHARED_LIB = yes +endif + + +# Tool names detected by configure +CXX = g++ +CC = gcc +INSTALL = /usr/bin/install -c +AR = ar +RANLIB = ranlib +LD = g++ +ARCHIVE = ar rcs +SWIG = + +# The install directories +prefix = /usr +exec_prefix = ${prefix} +libdir = ${exec_prefix}/lib +includedir = ${prefix}/include +datarootdir = ${prefix}/share + +# The opal source and destination dirs +OPALDIR = /home/ken/working/341367/opal/opal-3.6.1~dfsg +OPAL_SRCDIR = $(OPALDIR)/src +OPAL_INCDIR = $(OPALDIR)/include +OPAL_LIBDIR = ${OPALDIR}/lib_linux_x86 + +# The library file names +RELEASE_LIB_NAME = libopal +RELEASE_LIB_FILENAME_STATIC = libopal_s.a +RELEASE_LIB_FILENAME_SHARED = libopal.so +RELEASE_LIB_FILENAME_SHARED_MAJ = @RELEASE_LIB_FILENAME_SHARED_MAJ@ +RELEASE_LIB_FILENAME_SHARED_MIN = @RELEASE_LIB_FILENAME_SHARED_MIN@ +RELEASE_LIB_FILENAME_SHARED_PAT = libopal.so.3.6.1 +RELEASE_CFLAGS = -Os +RELEASE_LIBS = -lpt -lpthread -lsasl2 -lldap -llber -lldap_r -lssl -lcrypto -lexpat -lSDL -lodbc -lresolv -ldl +RELEASE_OPAL_OBJDIR = ${OPALDIR}/lib_linux_x86/obj +RELEASE_OPAL_DEPDIR = ${OPALDIR}/lib_linux_x86/obj + +# The library file names +DEBUG_LIB_NAME = libopal_d +DEBUG_LIB_FILENAME_STATIC = libopal_d_s.a +DEBUG_LIB_FILENAME_SHARED = libopal_d.so +DEBUG_LIB_FILENAME_SHARED_MAJ = @DEBUG_LIB_FILENAME_SHARED_MAJ@ +DEBUG_LIB_FILENAME_SHARED_MIN = @DEBUG_LIB_FILENAME_SHARED_MIN@ +DEBUG_LIB_FILENAME_SHARED_PAT = libopal_d.so.3.6.1 +DEBUG_CFLAGS = -g3 -ggdb -O0 -D_DEBUG +DEBUG_LIBS = -lpt_d -lpthread -lsasl2 -lldap -llber -lldap_r -lssl -lcrypto -lexpat -lSDL -lodbc -lresolv -ldl +DEBUG_OPAL_OBJDIR = ${OPALDIR}/lib_linux_x86/obj_d +DEBUG_OPAL_DEPDIR = ${OPALDIR}/lib_linux_x86/obj_d + +# Compile and linker flags +CFLAGS = -Wall -g -O2 -Wall -Wextra -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wno-comment -Wno-missing-field-initializers -Wno-unused -fPIC -DPTRACING=1 -D_REENTRANT -D_GNU_SOURCE=1 -fno-exceptions -I/usr/include/SDL +CXXFLAGS = -g -O2 -Wall -Wextra -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wno-comment -Wno-missing-field-initializers -Wno-unused -fPIC -DPTRACING=1 -D_REENTRANT -D_GNU_SOURCE=1 -fno-exceptions -I/usr/include/SDL -felide-constructors -Wreorder +CFLAGS = -Wall -g -O2 -Wall -Wextra -Winit-self -Wstrict-aliasing=2 -Wfloat-equal -Wno-comment -Wno-missing-field-initializers -Wno-unused -fPIC -DPTRACING=1 -D_REENTRANT -D_GNU_SOURCE=1 -fno-exceptions -I/usr/include/SDL +LIBS = -ldl -lspeexdsp +LDSOOPTS = -shared -Wl,-soname,$(LIB_FILENAME_SHARED_PAT) +HAVE_RANLIB = no + +OPAL_H323 = yes +OPAL_SIP = yes +OPAL_IAX2 = yes +OPAL_VIDEO = yes +OPAL_ZRTP = no +OPAL_LID = yes +OPAL_IVR = yes +OPAL_HAS_H224 = yes +OPAL_HAS_H281 = yes +OPAL_H460 = yes +OPAL_SRTP = no +OPAL_RFC4175 = yes +OPAL_AEC = yes +OPAL_G711PLC = yes +OPAL_T38_CAP = yes +OPAL_FAX = yes +OPAL_JAVA = no +SPEEXDSP_SYSTEM = yes +OPAL_HAS_MSRP = no +OPAL_HAS_SIPIM = yes +OPAL_HAS_RFC4103 = yes + +OPAL_PLUGINS = yes +OPAL_SAMPLES = no + +OPAL_PTLIB_SSL = yes +OPAL_PTLIB_SSL_AES= yes +OPAL_PTLIB_ASN = yes +OPAL_PTLIB_EXPAT = yes +OPAL_PTLIB_AUDIO = yes +OPAL_PTLIB_VIDEO = yes +OPAL_PTLIB_WAVFILE= yes +OPAL_PTLIB_DTMF = yes +OPAL_PTLIB_IPV6 = yes +OPAL_PTLIB_DNS = yes +OPAL_PTLIB_LDAP = yes +OPAL_PTLIB_VXML = yes +OPAL_PTLIB_CONFIG_FILE=yes + + +ifeq ($(DEBUG_BUILD),yes) + CFLAGS := $(DEBUG_CFLAGS) $(CFLAGS) + CXXFLAGS := $(DEBUG_CFLAGS) $(CXXFLAGS) + LIBS += $(DEBUG_LIBS) + LIB_NAME = $(DEBUG_LIB_NAME) +else + CFLAGS := $(RELEASE_CFLAGS) $(CFLAGS) + CXXFLAGS := $(RELEASE_CFLAGS) $(CXXFLAGS) + LIBS += $(RELEASE_LIBS) + LIB_NAME = $(RELEASE_LIB_NAME) +endif + +CXXFLAGS += -I$(OPAL_INCDIR) +CFLAGS += -I$(OPAL_INCDIR) + + +# End of file --- opal-3.6.1~dfsg.orig/Makefile +++ opal-3.6.1~dfsg/Makefile @@ -0,0 +1,609 @@ +# +# Makefile +# +# Make file for Open Phone Abstraction library +# +# Copyright (c) 2001 Equivalence Pty. Ltd. +# +# The contents of this file are subject to the Mozilla Public License +# Version 1.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.mozilla.org/MPL/ +# +# Software distributed under the License is distributed on an "AS IS" +# basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See +# the License for the specific language governing rights and limitations +# under the License. +# +# The Original Code is Open Phone Abstraction Library. +# +# The Initial Developer of the Original Code is Equivalence Pty. Ltd. +# +# Contributor(s): ______________________________________. +# +# $Revision: 21984 $ +# $Author: rjongbloed $ +# $Date: 2009-02-04 02:28:53 +0000 (Wed, 04 Feb 2009) $ +# + +include opal_defs.mak + +SHELL := /bin/sh +OS_NAME=$(shell uname -s) +ifeq ($(OS_NAME),SunOS) + override SHELL=/usr/bin/bash +endif + +SUBDIRS := + +ifeq ($(OPAL_PLUGINS),yes) +SUBDIRS += plugins +endif + +ifeq ($(OPAL_SAMPLES),yes) +SUBDIRS += samples/simple samples/opalcodecinfo samples/callgen samples/c_api +endif + + +ifeq ($(DEBUG_BUILD),yes) + LIB_FILENAME_STATIC=$(DEBUG_LIB_FILENAME_STATIC) + LIB_FILENAME_SHARED=$(DEBUG_LIB_FILENAME_SHARED) + LIB_FILENAME_SHARED_PAT=$(DEBUG_LIB_FILENAME_SHARED_PAT) + OPAL_OBJDIR=$(DEBUG_OPAL_OBJDIR) + OPAL_DEPDIR=$(DEBUG_OPAL_DEPDIR) +else + LIB_FILENAME_STATIC=$(RELEASE_LIB_FILENAME_STATIC) + LIB_FILENAME_SHARED=$(RELEASE_LIB_FILENAME_SHARED) + LIB_FILENAME_SHARED_PAT=$(RELEASE_LIB_FILENAME_SHARED_PAT) + OPAL_OBJDIR=$(RELEASE_OPAL_OBJDIR) + OPAL_DEPDIR=$(RELEASE_OPAL_DEPDIR) +endif + + +ASN_SRCDIR := $(OPAL_SRCDIR)/asn +ASN_INCDIR := $(OPAL_INCDIR)/asn + +VPATH_CXX := $(OPAL_SRCDIR)/opal \ + $(OPAL_SRCDIR)/rtp \ + $(OPAL_SRCDIR)/lids \ + $(OPAL_SRCDIR)/codec \ + $(OPAL_SRCDIR)/t38 \ + $(OPAL_SRCDIR)/im + +ifneq (,$(wildcard src/iax2)) +IAX2_AVAIL = yes +VPATH_CXX += $(OPAL_SRCDIR)/iax2 +endif + +ifneq (,$(wildcard src/zrtp)) +ZRTP_AVAIL = yes +VPATH_CXX += $(OPAL_SRCDIR)/zrtp +endif + +ifneq (,$(wildcard src/sip)) +SIP_AVAIL = yes +VPATH_CXX += $(OPAL_SRCDIR)/sip +endif + +ifneq (,$(wildcard src/h323)) +H323_AVAIL = yes +VPATH_CXX += $(OPAL_SRCDIR)/h323 \ + $(OPAL_SRCDIR)/t120 \ + $(OPAL_SRCDIR)/asn +endif + +ifneq (,$(wildcard src/h224)) +H224_AVAIL = yes +VPATH_CXX += $(OPAL_SRCDIR)/h224 + +endif + +ifneq (,$(wildcard src/h460)) +H460_AVAIL = yes +VPATH_CXX += $(OPAL_SRCDIR)/h460 +endif + +VPATH_C := $(OPAL_SRCDIR)/codec + +######################################## +# Source files for library + +SOURCES := $(OPAL_SRCDIR)/opal/manager.cxx \ + $(OPAL_SRCDIR)/opal/endpoint.cxx \ + $(OPAL_SRCDIR)/opal/rtpep.cxx \ + $(OPAL_SRCDIR)/opal/connection.cxx \ + $(OPAL_SRCDIR)/opal/rtpconn.cxx \ + $(OPAL_SRCDIR)/opal/localep.cxx \ + $(OPAL_SRCDIR)/opal/call.cxx \ + $(OPAL_SRCDIR)/opal/mediafmt.cxx \ + $(OPAL_SRCDIR)/opal/mediatype.cxx \ + $(OPAL_SRCDIR)/opal/mediastrm.cxx \ + $(OPAL_SRCDIR)/opal/patch.cxx \ + $(OPAL_SRCDIR)/opal/transcoders.cxx \ + $(OPAL_SRCDIR)/opal/transports.cxx \ + $(OPAL_SRCDIR)/opal/guid.cxx \ + $(OPAL_SRCDIR)/opal/opalmixer.cxx \ + $(OPAL_SRCDIR)/opal/opalglobalstatics.cxx \ + $(OPAL_SRCDIR)/rtp/rtp.cxx \ + $(OPAL_SRCDIR)/rtp/jitter.cxx \ + $(OPAL_SRCDIR)/opal/opal_c.cxx \ + $(OPAL_SRCDIR)/opal/pcss.cxx + +ifeq ($(OPAL_IVR), yes) +SOURCES += $(OPAL_SRCDIR)/opal/ivr.cxx \ + $(OPAL_SRCDIR)/opal/opalvxml.cxx +endif + + +######################################## + +# H.323 files + +ifeq ($(OPAL_H323),yes) +ifdef H323_AVAIL + +H450_ASN_FILES := h4501 h4502 h4503 h4504 h4505 h4506 h4507 h4508 h4509 h45010 h45011 +SIMPLE_ASN_FILES := x880 $(H450_ASN_FILES) mcs gcc + +ASN_H_FILES := $(addprefix $(ASN_INCDIR)/,$(addsuffix .h, $(SIMPLE_ASN_FILES))) +ASN_CXX_FILES := $(addprefix $(ASN_SRCDIR)/,$(addsuffix .cxx,$(SIMPLE_ASN_FILES))) + +ASN_H_FILES += $(ASN_INCDIR)/h225.h +ASN_CXX_FILES += $(ASN_SRCDIR)/h225_1.cxx $(ASN_SRCDIR)/h225_2.cxx + +ASN_H_FILES += $(ASN_INCDIR)/h235.h $(ASN_SRCDIR)/h235_t.cxx +ASN_CXX_FILES += $(ASN_SRCDIR)/h235.cxx + +ASN_H_FILES += $(ASN_INCDIR)/h245.h +ASN_CXX_FILES += $(ASN_SRCDIR)/h245_1.cxx $(ASN_SRCDIR)/h245_2.cxx $(ASN_SRCDIR)/h245_3.cxx + +ASN_H_FILES += $(ASN_INCDIR)/h248.h +ASN_CXX_FILES += $(ASN_SRCDIR)/h248.cxx + +ASN_H_FILES += $(ASN_INCDIR)/h501.h +ASN_CXX_FILES += $(ASN_SRCDIR)/h501.cxx + +.PRECIOUS: $(ASN_CXX_FILES) $(ASN_H_FILES) + + +SOURCES += $(ASN_CXX_FILES) \ + $(OPAL_SRCDIR)/h323/h323ep.cxx \ + $(OPAL_SRCDIR)/h323/h323.cxx \ + $(OPAL_SRCDIR)/h323/h323caps.cxx \ + $(OPAL_SRCDIR)/h323/h323neg.cxx \ + $(OPAL_SRCDIR)/h323/h323pdu.cxx \ + $(OPAL_SRCDIR)/h323/h323rtp.cxx \ + $(OPAL_SRCDIR)/h323/channels.cxx \ + $(OPAL_SRCDIR)/h323/svcctrl.cxx \ + $(OPAL_SRCDIR)/h323/h450pdu.cxx \ + $(OPAL_SRCDIR)/h323/q931.cxx \ + $(OPAL_SRCDIR)/h323/transaddr.cxx \ + $(OPAL_SRCDIR)/h323/gkclient.cxx \ + $(OPAL_SRCDIR)/h323/gkserver.cxx \ + $(OPAL_SRCDIR)/h323/h225ras.cxx \ + $(OPAL_SRCDIR)/h323/h323trans.cxx \ + $(OPAL_SRCDIR)/h323/h235auth.cxx \ + $(OPAL_SRCDIR)/h323/h501pdu.cxx \ + $(OPAL_SRCDIR)/h323/h323annexg.cxx \ + $(OPAL_SRCDIR)/h323/peclient.cxx \ + +ifeq ($(OPAL_H460), yes) +ifdef H460_AVAIL +SOURCES += $(OPAL_SRCDIR)/h460/h4601.cxx \ + $(OPAL_SRCDIR)/h460/h46018.cxx \ + $(OPAL_SRCDIR)/h460/h46019.cxx \ + $(OPAL_SRCDIR)/h460/h4609.cxx \ + $(OPAL_SRCDIR)/h460/h460p.cxx \ + $(OPAL_SRCDIR)/h460/h460pres.cxx \ + $(OPAL_SRCDIR)/h460/h460tm.cxx +endif +endif + +ifdef OPAL_PTLIB_SSL +SOURCES += $(OPAL_SRCDIR)/h235auth1.cxx +endif + +SOURCES += $(OPAL_SRCDIR)/t120/t120proto.cxx \ + $(OPAL_SRCDIR)/t120/h323t120.cxx \ + $(OPAL_SRCDIR)/t120/x224.cxx + +ifeq ($(OPAL_T38_CAP), yes) +SOURCES += $(OPAL_SRCDIR)/t38/h323t38.cxx +endif + +ifeq ($(OPAL_HAS_H224), yes) +ifdef H224_AVAIL +SOURCES += $(OPAL_SRCDIR)/h224/h323h224.cxx +endif +endif + +endif +endif + +################## +# IAX2 files + +ifeq ($(OPAL_IAX2), yes) +ifdef IAX2_AVAIL + +SOURCES += \ + $(OPAL_SRCDIR)/iax2/callprocessor.cxx \ + $(OPAL_SRCDIR)/iax2/frame.cxx \ + $(OPAL_SRCDIR)/iax2/iax2con.cxx \ + $(OPAL_SRCDIR)/iax2/iax2ep.cxx \ + $(OPAL_SRCDIR)/iax2/iax2jitter.cxx \ + $(OPAL_SRCDIR)/iax2/iax2medstrm.cxx \ + $(OPAL_SRCDIR)/iax2/iedata.cxx \ + $(OPAL_SRCDIR)/iax2/ies.cxx \ + $(OPAL_SRCDIR)/iax2/processor.cxx \ + $(OPAL_SRCDIR)/iax2/receiver.cxx \ + $(OPAL_SRCDIR)/iax2/regprocessor.cxx\ + $(OPAL_SRCDIR)/iax2/remote.cxx \ + $(OPAL_SRCDIR)/iax2/safestrings.cxx \ + $(OPAL_SRCDIR)/iax2/sound.cxx \ + $(OPAL_SRCDIR)/iax2/specialprocessor.cxx \ + $(OPAL_SRCDIR)/iax2/transmit.cxx +endif +endif + +################################################################################ +# ZRTP files + +ifeq ($(OPAL_ZRTP),yes) +ifdef ZRTP_AVAIL + +SOURCES += $(OPAL_SRCDIR)/zrtp/opalzrtp.cxx \ + $(OPAL_SRCDIR)/rtp/zrtpudp.cxx + +endif +endif + + +################################################################################ +# SIP files + +ifeq ($(OPAL_SIP),yes) +ifdef SIP_AVAIL + +SOURCES += $(OPAL_SRCDIR)/sip/sipep.cxx \ + $(OPAL_SRCDIR)/sip/sipcon.cxx \ + $(OPAL_SRCDIR)/sip/sippdu.cxx \ + $(OPAL_SRCDIR)/sip/sdp.cxx \ + $(OPAL_SRCDIR)/sip/handlers.cxx \ + +ifeq ($(OPAL_T38_CAP), yes) +SOURCES += $(OPAL_SRCDIR)/t38/sipt38.cxx +endif + +endif +endif + +################## +# H.224 files + +ifeq ($(OPAL_HAS_H224), yes) +ifdef H224_AVAIL + +SOURCES += $(OPAL_SRCDIR)/h224/q922.cxx \ + $(OPAL_SRCDIR)/h224/h224.cxx \ + $(OPAL_SRCDIR)/h224/h281.cxx +endif +endif + +################## +# LIDS + +ifeq ($(OPAL_LID), yes) + +SOURCES += $(OPAL_SRCDIR)/lids/lid.cxx \ + $(OPAL_SRCDIR)/lids/lidep.cxx \ + $(OPAL_SRCDIR)/lids/lidpluginmgr.cxx \ + +endif + +################## +# SRTP + +ifeq ($(OPAL_SRTP), yes) +SOURCES += $(OPAL_SRCDIR)/rtp/srtp.cxx \ + +endif + + +#################################################### +# Java interface + +ifeq ($(OPAL_JAVA), yes) + +JAVA_SRCDIR = $(OPAL_SRCDIR)/java +JAVA_WRAPPER = $(JAVA_SRCDIR)/java_swig_wrapper.c + +VPATH_C += $(JAVA_SRCDIR) +SOURCES += $(JAVA_WRAPPER) + +endif + + +################## +# T.38 Fax + +ifeq ($(OPAL_FAX), yes) +SOURCES += $(OPAL_SRCDIR)/t38/t38proto.cxx \ + $(ASN_SRCDIR)/t38.cxx +endif + + +################## +# IM/MSRP + +SOURCES += $(OPAL_SRCDIR)/im/t140.cxx \ + $(OPAL_SRCDIR)/im/im_mf.cxx \ + $(OPAL_SRCDIR)/im/rfc4103.cxx + +ifeq ($(OPAL_HAS_MSRP), yes) +SOURCES += $(OPAL_SRCDIR)/im/msrp.cxx +endif +ifeq ($(OPAL_HAS_SIPIM), yes) +SOURCES += $(OPAL_SRCDIR)/im/sipim.cxx +endif + +################## +# Software codecs + +SOURCES += $(OPAL_SRCDIR)/codec/g711codec.cxx \ + $(OPAL_SRCDIR)/codec/g711.c \ + $(OPAL_SRCDIR)/codec/g722mf.cxx \ + $(OPAL_SRCDIR)/codec/g7221mf.cxx \ + $(OPAL_SRCDIR)/codec/g7222mf.cxx \ + $(OPAL_SRCDIR)/codec/g7231mf.cxx \ + $(OPAL_SRCDIR)/codec/g726mf.cxx \ + $(OPAL_SRCDIR)/codec/g728mf.cxx \ + $(OPAL_SRCDIR)/codec/g729mf.cxx \ + $(OPAL_SRCDIR)/codec/gsm0610mf.cxx \ + $(OPAL_SRCDIR)/codec/gsmamrmf.cxx \ + $(OPAL_SRCDIR)/codec/iLBCmf.cxx \ + $(OPAL_SRCDIR)/codec/t38mf.cxx \ + $(OPAL_SRCDIR)/codec/rfc2833.cxx \ + $(OPAL_SRCDIR)/codec/opalwavfile.cxx \ + $(OPAL_SRCDIR)/codec/silencedetect.cxx \ + $(OPAL_SRCDIR)/codec/echocancel.cxx \ + $(OPAL_SRCDIR)/codec/opalpluginmgr.cxx \ + $(OPAL_SRCDIR)/codec/ratectl.cxx + +ifeq ($(OPAL_VIDEO), yes) +SOURCES += $(OPAL_SRCDIR)/codec/vidcodec.cxx +endif + +ifeq ($(OPAL_RFC4175), yes) +SOURCES += $(OPAL_SRCDIR)/codec/rfc4175.cxx +endif + +ifeq ($(OPAL_G711PLC), yes) +SOURCES += $(OPAL_SRCDIR)/codec/g711a1_plc.cxx +endif + +ifeq ($(OPAL_AEC), yes) + +ifeq ($(SPEEXDSP_SYSTEM), no) + +SPEEXDSP_SRCDIR = $(OPAL_SRCDIR)/codec/speex/libspeex + +VPATH_C += $(SPEEXDSP_SRCDIR) +VPATH_CXX += $(SPEEXDSP_SRCDIR) + +SOURCES += $(SPEEXDSP_SRCDIR)/speex_preprocess.c \ + $(SPEEXDSP_SRCDIR)/smallft.c \ + $(SPEEXDSP_SRCDIR)/misc.c \ + $(SPEEXDSP_SRCDIR)/mdf.c \ + $(SPEEXDSP_SRCDIR)/math_approx.c \ + $(SPEEXDSP_SRCDIR)/kiss_fftr.c \ + $(SPEEXDSP_SRCDIR)/kiss_fft.c \ + $(SPEEXDSP_SRCDIR)/fftwrap.c +endif # SPEEXDSP_SYSTEM + +endif # ifeq ($(OPAL_AEC), yes) + +#################################################### + +ifeq ($(OSTYPE),Darwin) +CFLAGS += -fno-common -dynamic +ARCHIVE := libtool -static -o +endif # Darwin + +#################################################### + +ifeq ($(OSTYPE),mingw) +LDFLAGS += -enable-auto-import -enable-runtime-pseudo-reloc -enable-stdcall-fixup -fatal-warning +endif # mingw + +############################################################################### +# Build rules + +.SUFFIXES: .cxx .prc + +vpath %.cxx $(VPATH_CXX) +vpath %.cpp $(VPATH_CXX) +vpath %.c $(VPATH_C) +vpath %.o $(OPAL_OBJDIR) +vpath %.dep $(OPAL_DEPDIR) + +# clean whitespace out of source file list +SOURCES := $(strip $(SOURCES)) + +# +# create list of object files +# +SRC_OBJS := $(SOURCES:.c=.o) +SRC_OBJS := $(SRC_OBJS:.cxx=.o) +SRC_OBJS := $(SRC_OBJS:.cpp=.o) +OBJS := $(EXTERNALOBJS) $(patsubst %.o, $(OPAL_OBJDIR)/%.o, $(notdir $(SRC_OBJS) $(OBJS))) + +# +# create list of dependency files +# +SRC_DEPS := $(SOURCES:.c=.dep) +SRC_DEPS := $(SRC_DEPS:.cxx=.dep) +SRC_DEPS := $(SRC_DEPS:.cpp=.dep) +DEPS := $(patsubst %.dep, $(OPAL_DEPDIR)/%.dep, $(notdir $(SRC_DEPS) $(DEPS))) + +# +# define rule for .cxx, .cpp and .c files +# +$(OPAL_OBJDIR)/%.o : %.cxx + @if [ ! -d $(OPAL_OBJDIR) ] ; then mkdir -p $(OPAL_OBJDIR) ; fi + $(CXX) $(CXXFLAGS) -c $< -o $@ + +$(OPAL_OBJDIR)/%.o : %.c + @if [ ! -d $(OPAL_OBJDIR) ] ; then mkdir -p $(OPAL_OBJDIR) ; fi + $(CC) $(CFLAGS) -c $< -o $@ + +# +# define rule for .dep files +# +$(OPAL_DEPDIR)/%.dep : %.cxx + @if [ ! -d $(OPAL_DEPDIR) ] ; then mkdir -p $(OPAL_DEPDIR) ; fi + @printf %s $(OPAL_OBJDIR)/ > $@ + $(CXX) $(CXXFLAGS:-g=) -M $< >> $@ + +$(OPAL_DEPDIR)/%.dep : %.c + @if [ ! -d $(OPAL_DEPDIR) ] ; then mkdir -p $(OPAL_DEPDIR) ; fi + @printf %s $(OPAL_OBJDIR)/ > $@ + $(CC) $(CFLAGS:-g=) -M $< >> $@ + + +##################################################################### +# Main targets + +# This target was intetionally put here since make dumbly executes the first it finds +# when called without an explicit target. + +default: Makefile $(OPAL_LIBDIR)/$(LIB_FILENAME_STATIC) $(OPAL_LIBDIR)/$(LIB_FILENAME_SHARED) subdirs + +subdirs: + @set -e; $(foreach dir,$(SUBDIRS),if test -d ${dir} ; then $(MAKE) -C $(dir); fi ; ) + +clean: + rm -rf $(OPAL_LIBDIR) + @set -e; $(foreach dir,$(SUBDIRS),if test -d ${dir} ; then $(MAKE) -C $(dir) clean; fi ; ) + +depend: Makefile $(DEPS) + @set -e; $(foreach dir,$(SUBDIRS),if test -d ${dir} ; then $(MAKE) -C $(dir) depend; fi ; ) + + +ifneq ($(wildcard $(OPAL_DEPDIR)/*.dep),) +include $(OPAL_DEPDIR)/*.dep +endif + +Makefile: Makefile.in configure + @echo + @echo "*******************************************************" + @echo Makefile is not up to date, is a ./configure necessary? + @echo "*******************************************************" + @false + +ifdef JAVA_WRAPPER +ifneq (,$(SWIG)) +$(JAVA_WRAPPER): $(JAVA_SRCDIR)/opal.i $(OPAL_INCDIR)/opal.h + $(SWIG) -java -package org.opalvoip -w451 -I$(OPAL_INCDIR) -o $@ $< +endif +endif + + +##################################################################### +# Targets for the libraries + +$(OPAL_LIBDIR)/$(LIB_FILENAME_STATIC): $(OBJS) + @if [ ! -d $(OPAL_LIBDIR) ] ; then mkdir $(OPAL_LIBDIR) ; fi + $(ARCHIVE) $(OPAL_LIBDIR)/$(LIB_FILENAME_STATIC) $(OBJS) +ifeq ($(HAVE_RANLIB),yes) + $(RANLIB) $(OPAL_LIBDIR)/$(LIB_FILENAME_STATIC) +endif + +$(OPAL_LIBDIR)/$(LIB_FILENAME_SHARED): $(OPAL_LIBDIR)/$(LIB_FILENAME_STATIC) + +ifeq ($(OPAL_SHARED_LIB),yes) + + $(OPAL_LIBDIR)/$(LIB_FILENAME_SHARED): $(OPAL_LIBDIR)/$(LIB_FILENAME_SHARED_PAT) + rm -f $(OPAL_LIBDIR)/$(LIB_FILENAME_SHARED) ; ln -sf $(LIB_FILENAME_SHARED_PAT) $(OPAL_LIBDIR)/$(LIB_FILENAME_SHARED) + + $(OPAL_LIBDIR)/$(LIB_FILENAME_SHARED_PAT): $(OPAL_LIBDIR)/$(LIB_FILENAME_STATIC) + @echo EXTLIBS = $(EXTLIBS) + @echo SYSLIBS = $(SYSLIBS) + @if [ ! -d $(OPAL_LIBDIR) ] ; then mkdir $(OPAL_LIBDIR) ; fi + $(LD) $(LDSOOPTS) -o $(OPAL_LIBDIR)/$(LIB_FILENAME_SHARED_PAT) $(LDFLAGS) $(EXTLIBS) $(OBJS) $(LIBS) + +endif # OPAL_SHARED_LIB + + +##################################################################### +# Install targets + +install: + mkdir -p $(DESTDIR)$(libdir); chmod 755 $(DESTDIR)$(libdir) + $(INSTALL) -m 755 $(OPAL_LIBDIR)/$(LIB_FILENAME_STATIC) $(DESTDIR)$(libdir) + $(INSTALL) -m 755 $(OPAL_LIBDIR)/$(LIB_FILENAME_SHARED_PAT) $(DESTDIR)$(libdir) + ln -snf $(LIB_FILENAME_SHARED_PAT) $(DESTDIR)$(libdir)/$(LIB_FILENAME_SHARED) + mkdir -p $(DESTDIR)$(libdir)/pkgconfig ; chmod 755 $(DESTDIR)$(libdir)/pkgconfig + $(INSTALL) -m 644 opal.pc $(DESTDIR)$(libdir)/pkgconfig + + mkdir -p $(DESTDIR)$(includedir)/opal; chmod 755 $(DESTDIR)$(includedir)/opal + $(INSTALL) -m 644 include/opal.h $(DESTDIR)$(includedir)/opal + ( for dir in asn codec h323 h460 iax2 im lids opal rtp sip t120 t38 zrtp; \ + do mkdir -p $(DESTDIR)$(includedir)/opal/$$dir ; chmod 755 $(DESTDIR)$(includedir)/opal/$$dir ; \ + ( for fn in include/$$dir/*.h ; do \ + $(INSTALL) -m 644 $$fn $(DESTDIR)$(includedir)/opal/$$dir ; \ + done); \ + done) + + $(MAKE) -C plugins install + +uninstall: + ( for filename in $(LIB_FILENAME_SHARED) \ + $(LIB_FILENAME_SHARED_PAT) \ + $(LIB_FILENAME_STATIC); \ + do rm -f $(DESTDIR)$(libdir)/$$filename ;\ + done) + rm -rf $(DESTDIR)$(includedir)/opal + rm -f $(DESTDIR)$(libdir)/pkgconfig/opal.pc + + $(MAKE) -C plugins uninstall + + +############################################################################### +# A collection or random useful targets + +docs: FORCE + cat opal_cfg.dxy > /tmp/docs.dxy ; echo HAVE_DOT=NO >> /tmp/docs.dxy + doxygen /tmp/docs.dxy + +graphdocs: FORCE + cat opal_cfg.dxy > /tmp/docs.dxy ; echo HAVE_DOT=YES >> /tmp/docs.dxy + doxygen /tmp/docs.dxy + +FORCE: + +opt: + $(MAKE) DEBUG_BUILD=no + +optdepend: + $(MAKE) DEBUG_BUILD=no depend + +debug: + $(MAKE) DEBUG_BUILD=yes + +debugdepend: + $(MAKE) DEBUG_BUILD=yes depend + +both: opt debug + +all: optdepend opt debugdepend debug + +update: + svn -q update + $(MAKE) all + +distclean: clean + rm -rf config.log config.err autom4te.cache config.status a.out aclocal.m4 + rm -rf lib* + +# End of file ################################################################# --- opal-3.6.1~dfsg.orig/opal.spec +++ opal-3.6.1~dfsg/opal.spec @@ -0,0 +1,87 @@ +Summary: Open Phone Abstraction Library +Name: opal +Version: 3.6.1 +Release: 1 +URL: http://www.openh323.org/ +Source0: http://www.ekiga.org/%{name}-%{version}.tar.gz +License: MPL +Group: System Environment/Libraries +Requires: pwlib >= 1.11.2 +BuildRequires: pwlib-devel >= 1.11.2 +BuildRequires: openldap-devel +BuildRequires: SDL-devel +BuildRoot: %{_tmppath}/%{name}-root +Obsoletes: openh323 + +%description +Open Phone Abstraction Library, implementation of the ITU H.323 +teleconferencing protocol, and successor of the openh323 library. + +%package devel +Summary: Development package for opal +Group: Development/Libraries +Requires: opal = %{PACKAGE_VERSION} +Requires: pwlib-devel >= 1.11.2 +Obsoletes: openh323-devel +%description devel +Static libraries and header files for development with opal. + +%prep +%setup -q + +%build +%configure --enable-localspeex --disable-video --disable-sip --disable-h323 --disable-iax --disable-h224--disable-t38 --disable-h460 --disable-lid --disable-ivr + +make debug OPTCCFLAGS="$RPM_OPT_FLAGS" + +%install +rm -rf $RPM_BUILD_ROOT + +make DEBUG=1 DESTDIR=$RPM_BUILD_ROOT install + +rm -f $RPM_BUILD_ROOT/%{_datadir}/opal/opal_defs.mak + +%clean +rm -rf $RPM_BUILD_ROOT + +%post -p /sbin/ldconfig +%postun -p /sbin/ldconfig + +%files +%defattr(-,root,root) +%doc mpl-1.0.htm +%{_libdir}/*.so.* +%{_libdir}/*.so +%{_libdir}/pwlib/* +%{_libdir}/pkgconfig/opal.pc + +%files devel +%defattr(-,root,root) +%{_includedir}/* +%{_datadir}/opal + +%changelog +* Wed May 31 2006 Daniel Veillard - 2.2.2-1 +- new release for ekiga-2.0.2 +- try to fix #192740 mutilib problem + +* Tue Mar 14 2006 Daniel Veillard - 2.2.1-1 +- last minute break fix and new release + +* Tue Mar 14 2006 Ray Strode - 2.2.0-2 +- rebuild + +* Mon Mar 13 2006 Daniel Veillard - 2.2.0-1 +- final version for ekiga-2.0.0 + +* Mon Feb 13 2006 Daniel Veillard - 2.1.3-1 +- new beta version for ekiga + +* Fri Feb 10 2006 Jesse Keating - 2.1-1.2 +- bump again for double-long bug on ppc(64) + +* Tue Feb 07 2006 Jesse Keating - 2.1-1.1 +- rebuilt for new gcc4.1 snapshot and glibc changes + +* Tue Jan 24 2006 Daniel Veillard - 2.1-1 +- initial version based on the openh323 spec file --- opal-3.6.1~dfsg.orig/opal_cfg.dxy +++ opal-3.6.1~dfsg/opal_cfg.dxy @@ -0,0 +1,992 @@ +# Doxyfile 1.2.18 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project +# +# All text after a hash (#) is considered a comment and will be ignored +# The format is: +# TAG = value [value, ...] +# For lists items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (" ") + +#--------------------------------------------------------------------------- +# General configuration options +#--------------------------------------------------------------------------- + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded +# by quotes) that should identify the project. + +PROJECT_NAME = OPAL + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. +# This could be handy for archiving the generated documentation or +# if some version control system is used. + +PROJECT_NUMBER = 3.6.1 + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) +# base path where the generated documentation will be put. +# If a relative path is entered, it will be relative to the location +# where doxygen was started. If left blank the current directory will be used. + +OUTPUT_DIRECTORY = . + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# The default language is English, other supported languages are: +# Brazilian, Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish, Dutch, +# Finnish, French, German, Greek, Hungarian, Italian, Japanese, Japanese-en +# (Japanese with english messages), Korean, Norwegian, Polish, Portuguese, +# Romanian, Russian, Serbian, Slovak, Slovene, Spanish, Swedish and Ukrainian. + +OUTPUT_LANGUAGE = English + +# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in +# documentation are documented, even if no documentation was available. +# Private class members and static file members will be hidden unless +# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES + +EXTRACT_ALL = YES + +# If the EXTRACT_PRIVATE tag is set to YES all private members of a class +# will be included in the documentation. + +EXTRACT_PRIVATE = NO + +# If the EXTRACT_STATIC tag is set to YES all static members of a file +# will be included in the documentation. + +EXTRACT_STATIC = YES + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) +# defined locally in source files will be included in the documentation. +# If set to NO only classes defined in header files are included. + +EXTRACT_LOCAL_CLASSES = YES + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all +# undocumented members of documented classes, files or namespaces. +# If set to NO (the default) these members will be included in the +# various overviews, but no documentation section is generated. +# This option has no effect if EXTRACT_ALL is enabled. + +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. +# If set to NO (the default) these class will be included in the various +# overviews. This option has no effect if EXTRACT_ALL is enabled. + +HIDE_UNDOC_CLASSES = YES + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all +# friend (class|struct|union) declarations. +# If set to NO (the default) these declarations will be included in the +# documentation. + +HIDE_FRIEND_COMPOUNDS = NO + +# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will +# include brief member descriptions after the members that are listed in +# the file and class documentation (similar to JavaDoc). +# Set to NO to disable this. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend +# the brief description of a member or function before the detailed description. +# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. + +REPEAT_BRIEF = YES + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# Doxygen will generate a detailed section even if there is only a brief +# description. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all inherited +# members of a class in the documentation of that class as if those members were +# ordinary class members. Constructors, destructors and assignment operators of +# the base classes will not be shown. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full +# path before files name in the file list and in the header files. If set +# to NO the shortest path that makes the file name unique will be used. + +FULL_PATH_NAMES = NO + +# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag +# can be used to strip a user defined part of the path. Stripping is +# only done if one of the specified strings matches the left-hand part of +# the path. It is allowed to use relative paths in the argument list. + +STRIP_FROM_PATH = + +# The INTERNAL_DOCS tag determines if documentation +# that is typed after a \internal command is included. If the tag is set +# to NO (the default) then the documentation will be excluded. +# Set it to YES to include the internal documentation. + +INTERNAL_DOCS = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct +# doxygen to hide any special comment blocks from generated source code +# fragments. Normal C and C++ comments will always remain visible. + +STRIP_CODE_COMMENTS = YES + +# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate +# file names in lower case letters. If set to YES upper case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# users are adviced to set this option to NO. + +CASE_SENSE_NAMES = YES + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter +# (but less readable) file names. This can be useful is your file systems +# doesn't support long names like on DOS, Mac, or CD-ROM. + +SHORT_NAMES = NO + +# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen +# will show members with their full class and namespace scopes in the +# documentation. If set to YES the scope will be hidden. + +HIDE_SCOPE_NAMES = NO + +# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen +# will generate a verbatim copy of the header file for each class for +# which an include is specified. Set to NO to disable this. + +VERBATIM_HEADERS = YES + +# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen +# will put list of the files that are included by a file in the documentation +# of that file. + +SHOW_INCLUDE_FILES = YES + +# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen +# will interpret the first line (until the first dot) of a JavaDoc-style +# comment as the brief description. If set to NO, the JavaDoc +# comments will behave just like the Qt-style comments (thus requiring an +# explict @brief command for a brief description. + +JAVADOC_AUTOBRIEF = NO + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen +# treat a multi-line C++ special comment block (i.e. a block of //! or /// +# comments) as a brief description. This used to be the default behaviour. +# The new default is to treat a multi-line C++ comment block as a detailed +# description. Set this tag to YES if you prefer the old behaviour instead. + +MULTILINE_CPP_IS_BRIEF = NO + +# If the DETAILS_AT_TOP tag is set to YES then Doxygen +# will output the detailed description near the top, like JavaDoc. +# If set to NO, the detailed description appears after the member +# documentation. + +DETAILS_AT_TOP = NO + +# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented +# member inherits the documentation from any documented member that it +# reimplements. + +INHERIT_DOCS = YES + +# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] +# is inserted in the documentation for inline members. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen +# will sort the (detailed) documentation of file and class members +# alphabetically by member name. If set to NO the members will appear in +# declaration order. + +SORT_MEMBER_DOCS = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES, then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. + +DISTRIBUTE_GROUP_DOC = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. +# Doxygen uses this value to replace tabs by spaces in code fragments. + +TAB_SIZE = 8 + +# The GENERATE_TODOLIST tag can be used to enable (YES) or +# disable (NO) the todo list. This list is created by putting \todo +# commands in the documentation. + +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable (YES) or +# disable (NO) the test list. This list is created by putting \test +# commands in the documentation. + +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable (YES) or +# disable (NO) the bug list. This list is created by putting \bug +# commands in the documentation. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or +# disable (NO) the deprecated list. This list is created by putting \deprecated commands in the documentation. + +GENERATE_DEPRECATEDLIST= YES + +# This tag can be used to specify a number of aliases that acts +# as commands in the documentation. An alias has the form "name=value". +# For example adding "sideeffect=\par Side Effects:\n" will allow you to +# put the command \sideeffect (or @sideeffect) in the documentation, which +# will result in a user defined paragraph with heading "Side Effects:". +# You can put \n's in the value part of an alias to insert newlines. + +ALIASES = + +# The ENABLED_SECTIONS tag can be used to enable conditional +# documentation sections, marked by \if sectionname ... \endif. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines +# the initial value of a variable or define consist of for it to appear in +# the documentation. If the initializer consists of more lines than specified +# here it will be hidden. Use a value of 0 to hide initializers completely. +# The appearance of the initializer of individual variables and defines in the +# documentation can be controlled using \showinitializer or \hideinitializer +# command in the documentation regardless of this setting. + +MAX_INITIALIZER_LINES = 30 + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources +# only. Doxygen will then generate output that is more tailored for C. +# For instance some of the names that are used will be different. The list +# of all members will be omitted, etc. + +OPTIMIZE_OUTPUT_FOR_C = NO + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java sources +# only. Doxygen will then generate output that is more tailored for Java. +# For instance namespaces will be presented as packages, qualified scopes +# will look different, etc. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated +# at the bottom of the documentation of classes and structs. If set to YES the +# list will mention the files that were used to generate the documentation. + +SHOW_USED_FILES = YES + +#--------------------------------------------------------------------------- +# configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated +# by doxygen. Possible values are YES and NO. If left blank NO is used. + +QUIET = NO + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated by doxygen. Possible values are YES and NO. If left blank +# NO is used. + +WARNINGS = YES + +# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings +# for undocumented members. If EXTRACT_ALL is set to YES then this flag will +# automatically be disabled. + +WARN_IF_UNDOCUMENTED = YES + +# The WARN_FORMAT tag determines the format of the warning messages that +# doxygen can produce. The string should contain the $file, $line, and $text +# tags, which will be replaced by the file and line number from which the +# warning originated and the warning text. + +WARN_FORMAT = "$file:$line: $text" + +# The WARN_LOGFILE tag can be used to specify a file to which warning +# and error messages should be written. If left blank the output is written +# to stderr. + +WARN_LOGFILE = + +#--------------------------------------------------------------------------- +# configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag can be used to specify the files and/or directories that contain +# documented source files. You may enter file names like "myfile.cpp" or +# directories like "/usr/src/myproject". Separate the files or directories +# with spaces. + +INPUT = ./opal.dxy ./include + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank the following patterns are tested: +# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx *.hpp +# *.h++ *.idl *.odl + +FILE_PATTERNS = + +# The RECURSIVE tag can be used to turn specify whether or not subdirectories +# should be searched for input files as well. Possible values are YES and NO. +# If left blank NO is used. + +RECURSIVE = YES + +# The EXCLUDE tag can be used to specify files and/or directories that should +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. + +EXCLUDE = + +# The EXCLUDE_SYMLINKS tag can be used select whether or not files or directories +# that are symbolic links (a Unix filesystem feature) are excluded from the input. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. + +EXCLUDE_PATTERNS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or +# directories that contain example code fragments that are included (see +# the \include command). + +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank all files are included. + +EXAMPLE_PATTERNS = + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude +# commands irrespective of the value of the RECURSIVE tag. +# Possible values are YES and NO. If left blank NO is used. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or +# directories that contain image that are included in the documentation (see +# the \image command). + +IMAGE_PATH = docs + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command , where +# is the value of the INPUT_FILTER tag, and is the name of an +# input file. Doxygen will then use the output that the filter program writes +# to standard output. + +INPUT_FILTER = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will be used to filter the input files when producing source +# files to browse (i.e. when SOURCE_BROWSER is set to YES). + +FILTER_SOURCE_FILES = NO + +#--------------------------------------------------------------------------- +# configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will +# be generated. Documented entities will be cross-referenced with these sources. + +SOURCE_BROWSER = NO + +# Setting the INLINE_SOURCES tag to YES will include the body +# of functions and classes directly in the documentation. + +INLINE_SOURCES = NO + +# If the REFERENCED_BY_RELATION tag is set to YES (the default) +# then for each documented function all documented +# functions referencing it will be listed. + +REFERENCED_BY_RELATION = YES + +# If the REFERENCES_RELATION tag is set to YES (the default) +# then for each documented function all documented entities +# called/used by that function will be listed. + +REFERENCES_RELATION = YES + +#--------------------------------------------------------------------------- +# configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index +# of all compounds will be generated. Enable this if the project +# contains a lot of classes, structs, unions or interfaces. + +ALPHABETICAL_INDEX = NO + +# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then +# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns +# in which this list will be split (can be a number in the range [1..20]) + +COLS_IN_ALPHA_INDEX = 5 + +# In case all classes in a project start with a common prefix, all +# classes will be put under the same header in the alphabetical index. +# The IGNORE_PREFIX tag can be used to specify one or more prefixes that +# should be ignored while generating the index headers. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES (the default) Doxygen will +# generate HTML output. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `html' will be used as the default path. + +HTML_OUTPUT = html + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for +# each generated HTML page (for example: .htm,.php,.asp). If it is left blank +# doxygen will generate files with .html extension. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a personal HTML header for +# each generated HTML page. If it is left blank doxygen will generate a +# standard header. + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a personal HTML footer for +# each generated HTML page. If it is left blank doxygen will generate a +# standard footer. + +HTML_FOOTER = + +# The HTML_STYLESHEET tag can be used to specify a user defined cascading +# style sheet that is used by each HTML page. It can be used to +# fine-tune the look of the HTML output. If the tag is left blank doxygen +# will generate a default style sheet + +HTML_STYLESHEET = + +# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, +# files or namespaces will be aligned in HTML using tables. If set to +# NO a bullet list will be used. + +HTML_ALIGN_MEMBERS = YES + +# If the GENERATE_HTMLHELP tag is set to YES, additional index files +# will be generated that can be used as input for tools like the +# Microsoft HTML help workshop to generate a compressed HTML help file (.chm) +# of the generated HTML documentation. + +GENERATE_HTMLHELP = NO + +# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can +# be used to specify the file name of the resulting .chm file. You +# can add a path in front of the file if the result should not be +# written to the html output dir. + +CHM_FILE = + +# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can +# be used to specify the location (absolute path including file name) of +# the HTML help compiler (hhc.exe). If non empty doxygen will try to run +# the html help compiler on the generated index.hhp. + +HHC_LOCATION = + +# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag +# controls if a separate .chi index file is generated (YES) or that +# it should be included in the master .chm file (NO). + +GENERATE_CHI = NO + +# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag +# controls whether a binary table of contents is generated (YES) or a +# normal table of contents (NO) in the .chm file. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members +# to the contents of the Html help documentation and to the tree view. + +TOC_EXPAND = NO + +# The DISABLE_INDEX tag can be used to turn on/off the condensed index at +# top of each HTML page. The value NO (the default) enables the index and +# the value YES disables it. + +DISABLE_INDEX = NO + +# This tag can be used to set the number of enum values (range [1..20]) +# that doxygen will group on one line in the generated HTML documentation. + +ENUM_VALUES_PER_LINE = 4 + +# If the GENERATE_TREEVIEW tag is set to YES, a side panel will be +# generated containing a tree-like index structure (just like the one that +# is generated for HTML Help). For this to work a browser that supports +# JavaScript and frames is required (for instance Mozilla, Netscape 4.0+, +# or Internet explorer 4.0+). Note that for large projects the tree generation +# can take a very long time. In such cases it is better to disable this feature. +# Windows users are probably better off using the HTML help feature. + +GENERATE_TREEVIEW = NO + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be +# used to set the initial width (in pixels) of the frame in which the tree +# is shown. + +TREEVIEW_WIDTH = 250 + +#--------------------------------------------------------------------------- +# configuration options related to the LaTeX output +#--------------------------------------------------------------------------- + +# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will +# generate Latex output. + +GENERATE_LATEX = NO + +# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `latex' will be used as the default path. + +LATEX_OUTPUT = latex + +# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be invoked. If left blank `latex' will be used as the default command name. + +LATEX_CMD_NAME = latex + +# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to +# generate index for LaTeX. If left blank `makeindex' will be used as the +# default command name. + +MAKEINDEX_CMD_NAME = makeindex + +# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact +# LaTeX documents. This may be useful for small projects and may help to +# save some trees in general. + +COMPACT_LATEX = NO + +# The PAPER_TYPE tag can be used to set the paper type that is used +# by the printer. Possible values are: a4, a4wide, letter, legal and +# executive. If left blank a4wide will be used. + +PAPER_TYPE = a4wide + +# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX +# packages that should be included in the LaTeX output. + +EXTRA_PACKAGES = + +# The LATEX_HEADER tag can be used to specify a personal LaTeX header for +# the generated latex document. The header should contain everything until +# the first chapter. If it is left blank doxygen will generate a +# standard header. Notice: only use this tag if you know what you are doing! + +LATEX_HEADER = + +# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated +# is prepared for conversion to pdf (using ps2pdf). The pdf file will +# contain links (just like the HTML output) instead of page references +# This makes the output suitable for online browsing using a pdf viewer. + +PDF_HYPERLINKS = NO + +# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of +# plain latex in the generated Makefile. Set this option to YES to get a +# higher quality PDF documentation. + +USE_PDFLATEX = NO + +# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. +# command to the generated LaTeX files. This will instruct LaTeX to keep +# running if errors occur, instead of asking the user for help. +# This option is also used when generating formulas in HTML. + +LATEX_BATCHMODE = NO + +#--------------------------------------------------------------------------- +# configuration options related to the RTF output +#--------------------------------------------------------------------------- + +# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output +# The RTF output is optimised for Word 97 and may not look very pretty with +# other RTF readers or editors. + +GENERATE_RTF = NO + +# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `rtf' will be used as the default path. + +RTF_OUTPUT = rtf + +# If the COMPACT_RTF tag is set to YES Doxygen generates more compact +# RTF documents. This may be useful for small projects and may help to +# save some trees in general. + +COMPACT_RTF = NO + +# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated +# will contain hyperlink fields. The RTF file will +# contain links (just like the HTML output) instead of page references. +# This makes the output suitable for online browsing using WORD or other +# programs which support those fields. +# Note: wordpad (write) and others do not support links. + +RTF_HYPERLINKS = NO + +# Load stylesheet definitions from file. Syntax is similar to doxygen's +# config file, i.e. a series of assigments. You only have to provide +# replacements, missing definitions are set to their default value. + +RTF_STYLESHEET_FILE = + +# Set optional variables used in the generation of an rtf document. +# Syntax is similar to doxygen's config file. + +RTF_EXTENSIONS_FILE = + +#--------------------------------------------------------------------------- +# configuration options related to the man page output +#--------------------------------------------------------------------------- + +# If the GENERATE_MAN tag is set to YES (the default) Doxygen will +# generate man pages + +GENERATE_MAN = NO + +# The MAN_OUTPUT tag is used to specify where the man pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `man' will be used as the default path. + +MAN_OUTPUT = man + +# The MAN_EXTENSION tag determines the extension that is added to +# the generated man pages (default is the subroutine's section .3) + +MAN_EXTENSION = .3 + +# If the MAN_LINKS tag is set to YES and Doxygen generates man output, +# then it will generate one additional man file for each entity +# documented in the real man page(s). These additional files +# only source the real man page, but without them the man command +# would be unable to find the correct page. The default is NO. + +MAN_LINKS = NO + +#--------------------------------------------------------------------------- +# configuration options related to the XML output +#--------------------------------------------------------------------------- + +# If the GENERATE_XML tag is set to YES Doxygen will +# generate an XML file that captures the structure of +# the code including all documentation. Note that this +# feature is still experimental and incomplete at the +# moment. + +GENERATE_XML = NO + +# The XML_SCHEMA tag can be used to specify an XML schema, +# which can be used by a validating XML parser to check the +# syntax of the XML files. + +XML_SCHEMA = + +# The XML_DTD tag can be used to specify an XML DTD, +# which can be used by a validating XML parser to check the +# syntax of the XML files. + +XML_DTD = + +#--------------------------------------------------------------------------- +# configuration options for the AutoGen Definitions output +#--------------------------------------------------------------------------- + +# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will +# generate an AutoGen Definitions (see autogen.sf.net) file +# that captures the structure of the code including all +# documentation. Note that this feature is still experimental +# and incomplete at the moment. + +GENERATE_AUTOGEN_DEF = NO + +#--------------------------------------------------------------------------- +# Configuration options related to the preprocessor +#--------------------------------------------------------------------------- + +# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will +# evaluate all C-preprocessor directives found in the sources and include +# files. + +ENABLE_PREPROCESSING = YES + +# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro +# names in the source code. If set to NO (the default) only conditional +# compilation will be performed. Macro expansion can be done in a controlled +# way by setting EXPAND_ONLY_PREDEF to YES. + +MACRO_EXPANSION = NO + +# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES +# then the macro expansion is limited to the macros specified with the +# PREDEFINED and EXPAND_AS_PREDEFINED tags. + +EXPAND_ONLY_PREDEF = NO + +# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files +# in the INCLUDE_PATH (see below) will be search if a #include is found. + +SEARCH_INCLUDES = YES + +# The INCLUDE_PATH tag can be used to specify one or more directories that +# contain include files that are not input files but should be processed by +# the preprocessor. + +INCLUDE_PATH = + +# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard +# patterns (like *.h and *.hpp) to filter out the header-files in the +# directories. If left blank, the patterns specified with FILE_PATTERNS will +# be used. + +INCLUDE_FILE_PATTERNS = + +# The PREDEFINED tag can be used to specify one or more macro names that +# are defined before the preprocessor is started (similar to the -D option of +# gcc). The argument of the tag is a list of macros of the form: name +# or name=definition (no spaces). If the definition and the = are +# omitted =1 is assumed. + +PREDEFINED = DOCPLUSLUS DOC_PLUS_PLUS P_AUDIO + +# If the MACRO_EXPANSION and EXPAND_PREDEF_ONLY tags are set to YES then +# this tag can be used to specify a list of macro names that should be expanded. +# The macro definition that is found in the sources will be used. +# Use the PREDEFINED tag if you want to use a different macro definition. + +EXPAND_AS_DEFINED = + +# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then +# doxygen's preprocessor will remove all function-like macros that are alone +# on a line, have an all uppercase name, and do not end with a semicolon. Such +# function macros are typically used for boiler-plate code, and will confuse the +# parser if not removed. + +SKIP_FUNCTION_MACROS = YES + +#--------------------------------------------------------------------------- +# Configuration::addtions related to external references +#--------------------------------------------------------------------------- + +# The TAGFILES tag can be used to specify one or more tagfiles. + +TAGFILES = + +# When a file name is specified after GENERATE_TAGFILE, doxygen will create +# a tag file that is based on the input files it reads. + +GENERATE_TAGFILE = + +# If the ALLEXTERNALS tag is set to YES all external classes will be listed +# in the class index. If set to NO only the inherited external classes +# will be listed. + +ALLEXTERNALS = NO + +# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed +# in the modules index. If set to NO, only the current project's groups will +# be listed. + +EXTERNAL_GROUPS = YES + +# The PERL_PATH should be the absolute path and name of the perl script +# interpreter (i.e. the result of `which perl'). + +PERL_PATH = /usr/bin/perl + +#--------------------------------------------------------------------------- +# Configuration options related to the dot tool +#--------------------------------------------------------------------------- + +# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will +# generate a inheritance diagram (in Html, RTF and LaTeX) for classes with base or +# super classes. Setting the tag to NO turns the diagrams off. Note that this +# option is superceded by the HAVE_DOT option below. This is only a fallback. It is +# recommended to install and use dot, since it yield more powerful graphs. + +CLASS_DIAGRAMS = YES + +# If set to YES, the inheritance and collaboration graphs will hide +# inheritance and usage relations if the target is undocumented +# or is not a class. + +HIDE_UNDOC_RELATIONS = YES + +# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is +# available from the path. This tool is part of Graphviz, a graph visualization +# toolkit from AT&T and Lucent Bell Labs. The other options in this section +# have no effect if this option is set to NO (the default) + +# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect inheritance relations. Setting this tag to YES will force the +# the CLASS_DIAGRAMS tag to NO. + +CLASS_GRAPH = YES + +# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect implementation dependencies (inheritance, containment, and +# class references variables) of the class with other documented classes. + +COLLABORATION_GRAPH = YES + +# If set to YES, the inheritance and collaboration graphs will show the +# relations between templates and their instances. + +TEMPLATE_RELATIONS = YES + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT +# tags are set to YES then doxygen will generate a graph for each documented +# file showing the direct and indirect include dependencies of the file with +# other documented files. + +INCLUDE_GRAPH = YES + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and +# HAVE_DOT tags are set to YES then doxygen will generate a graph for each +# documented header file showing the documented files that directly or +# indirectly include this file. + +INCLUDED_BY_GRAPH = YES + +# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen +# will graphical hierarchy of all classes instead of a textual one. + +GRAPHICAL_HIERARCHY = YES + +# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images +# generated by dot. Possible values are png, jpg, or gif +# If left blank png will be used. + +DOT_IMAGE_FORMAT = png + +# The tag DOT_PATH can be used to specify the path where the dot tool can be +# found. If left blank, it is assumed the dot tool can be found on the path. + +DOT_PATH = + +# The DOTFILE_DIRS tag can be used to specify one or more directories that +# contain dot files that are included in the documentation (see the +# \dotfile command). + +DOTFILE_DIRS = + +# The MAX_DOT_GRAPH_WIDTH tag can be used to set the maximum allowed width +# (in pixels) of the graphs generated by dot. If a graph becomes larger than +# this value, doxygen will try to truncate the graph, so that it fits within +# the specified constraint. Beware that most browsers cannot cope with very +# large images. + +MAX_DOT_GRAPH_WIDTH = 1024 + +# The MAX_DOT_GRAPH_HEIGHT tag can be used to set the maximum allows height +# (in pixels) of the graphs generated by dot. If a graph becomes larger than +# this value, doxygen will try to truncate the graph, so that it fits within +# the specified constraint. Beware that most browsers cannot cope with very +# large images. + +MAX_DOT_GRAPH_HEIGHT = 1024 + +# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will +# generate a legend page explaining the meaning of the various boxes and +# arrows in the dot generated graphs. + +GENERATE_LEGEND = YES + +# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will +# remove the intermedate dot files that are used to generate +# the various graphs. + +DOT_CLEANUP = YES + +#--------------------------------------------------------------------------- +# Configuration::addtions related to the search engine +#--------------------------------------------------------------------------- + +# The SEARCHENGINE tag specifies whether or not a search engine should be +# used. If set to NO the values of all tags below this one will be ignored. + +SEARCHENGINE = NO + +# The CGI_NAME tag should be the name of the CGI script that +# starts the search engine (doxysearch) with the correct parameters. +# A script with this name will be generated by doxygen. + +CGI_NAME = search.cgi + +# The CGI_URL tag should be the absolute URL to the directory where the +# cgi binaries are located. See the documentation of your http daemon for +# details. + +CGI_URL = + +# The DOC_URL tag should be the absolute URL to the directory where the +# documentation is located. If left blank the absolute path to the +# documentation, with file:// prepended to it, will be used. + +DOC_URL = + +# The DOC_ABSPATH tag should be the absolute path to the directory where the +# documentation is located. If left blank the directory on the local machine +# will be used. + +DOC_ABSPATH = + +# The BIN_ABSPATH tag must point to the directory where the doxysearch binary +# is installed. + +BIN_ABSPATH = /usr/local/bin/ + +# The EXT_DOC_PATHS tag can be used to specify one or more paths to +# documentation generated for other projects. This allows doxysearch to search +# the documentation for these projects as well. + +EXT_DOC_PATHS = + --- opal-3.6.1~dfsg.orig/opal.pc +++ opal-3.6.1~dfsg/opal.pc @@ -0,0 +1,37 @@ +prefix=/usr +exec_prefix=${prefix} +libdir=${exec_prefix}/lib +includedir=${prefix}/include +suffix= +machtype=x86 +ostype=linux +objdir=obj_linux_x86${suffix} + +Name: opal +Description: Open Phone Application Library +Version: 3.6.1 +Requires: ptlib speexdsp +Libs: -L${libdir} -lopal${suffix} -ldl +Cflags: -I${includedir} -I${includedir}/opal + +#Optional OPAL features +OPAL_H323=yes +OPAL_SIP=yes +OPAL_IAX2=yes +OPAL_VIDEO=yes +OPAL_ZRTP=no +OPAL_LID=yes +OPAL_IVR=yes +OPAL_HAS_H224=yes +OPAL_HAS_H281=yes +OPAL_H460=yes +OPAL_SRTP=no +OPAL_RFC4175=yes +OPAL_AEC=yes +OPAL_G711PLC=yes +OPAL_T38_CAP=yes +OPAL_FAX=yes +OPAL_JAVA=no +OPAL_HAS_MSRP=no +OPAL_HAS_SIPIM=yes +OPAL_HAS_RFC4103=yes --- opal-3.6.1~dfsg.orig/config.sub +++ opal-3.6.1~dfsg/config.sub @@ -1,9 +1,10 @@ #! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -# 2000, 2001, 2002, 2003 Free Software Foundation, Inc. +# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 +# Free Software Foundation, Inc. -timestamp='2003-08-18' +timestamp='2008-01-16' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software @@ -21,14 +22,15 @@ # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, -# Boston, MA 02111-1307, USA. - +# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA +# 02110-1301, USA. +# # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. + # Please send patches to . Submit a context # diff and a properly formatted ChangeLog entry. # @@ -70,8 +72,8 @@ version="\ GNU config.sub ($timestamp) -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 -Free Software Foundation, Inc. +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, +2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." @@ -83,11 +85,11 @@ while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) - echo "$timestamp" ; exit 0 ;; + echo "$timestamp" ; exit ;; --version | -v ) - echo "$version" ; exit 0 ;; + echo "$version" ; exit ;; --help | --h* | -h ) - echo "$usage"; exit 0 ;; + echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. @@ -99,7 +101,7 @@ *local*) # First pass through any local machine types. echo $1 - exit 0;; + exit ;; * ) break ;; @@ -118,7 +120,9 @@ # Here we must recognize all the valid KERNEL-OS combinations. maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` case $maybe_os in - nto-qnx* | linux-gnu* | linux-dietlibc | kfreebsd*-gnu* | netbsd*-gnu* | storm-chaos* | os2-emx* | rtmk-nova*) + nto-qnx* | linux-gnu* | linux-dietlibc | linux-newlib* | linux-uclibc* | \ + uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | \ + storm-chaos* | os2-emx* | rtmk-nova*) os=-$maybe_os basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` ;; @@ -144,7 +148,7 @@ -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ - -apple | -axis) + -apple | -axis | -knuth | -cray) os= basic_machine=$1 ;; @@ -169,6 +173,10 @@ -hiux*) os=-hiuxwe2 ;; + -sco6) + os=-sco5v6 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; -sco5) os=-sco3.2v5 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` @@ -185,6 +193,10 @@ # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; + -sco5v6*) + # Don't forget version if it is 3.2v4 or newer. + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; -sco*) os=-sco3.2v2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` @@ -229,14 +241,16 @@ | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ | am33_2.0 \ - | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr \ + | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \ + | bfin \ | c4x | clipper \ | d10v | d30v | dlx | dsp16xx \ - | fr30 | frv \ + | fido | fr30 | frv \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | i370 | i860 | i960 | ia64 \ | ip2k | iq2000 \ - | m32r | m68000 | m68k | m88k | mcore \ + | m32c | m32r | m32rle | m68000 | m68k | m88k \ + | maxq | mb | microblaze | mcore | mep \ | mips | mipsbe | mipseb | mipsel | mipsle \ | mips16 \ | mips64 | mips64el \ @@ -245,6 +259,7 @@ | mips64vr4100 | mips64vr4100el \ | mips64vr4300 | mips64vr4300el \ | mips64vr5000 | mips64vr5000el \ + | mips64vr5900 | mips64vr5900el \ | mipsisa32 | mipsisa32el \ | mipsisa32r2 | mipsisa32r2el \ | mipsisa64 | mipsisa64el \ @@ -253,20 +268,24 @@ | mipsisa64sr71k | mipsisa64sr71kel \ | mipstx39 | mipstx39el \ | mn10200 | mn10300 \ + | mt \ | msp430 \ + | nios | nios2 \ | ns16k | ns32k \ - | openrisc | or32 \ + | or32 \ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ | pyramid \ - | sh | sh[1234] | sh[23]e | sh[34]eb | shbe | shle | sh[1234]le | sh3ele \ + | score \ + | sh | sh[1234] | sh[24]a | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ - | sparc | sparc64 | sparc86x | sparclet | sparclite | sparcv9 | sparcv9b \ - | strongarm \ + | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ + | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ + | spu | strongarm \ | tahoe | thumb | tic4x | tic80 | tron \ | v850 | v850e \ | we32k \ - | x86 | xscale | xstormy16 | xtensa \ + | x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \ | z8k) basic_machine=$basic_machine-unknown ;; @@ -277,6 +296,9 @@ ;; m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) ;; + ms1) + basic_machine=mt-unknown + ;; # We use `pc' rather than `unknown' # because (1) that's what they normally are, and @@ -296,20 +318,20 @@ | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ - | avr-* \ - | bs2000-* \ + | avr-* | avr32-* \ + | bfin-* | bs2000-* \ | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \ - | clipper-* | cydra-* \ + | clipper-* | craynv-* | cydra-* \ | d10v-* | d30v-* | dlx-* \ | elxsi-* \ - | f30[01]-* | f700-* | fr30-* | frv-* | fx80-* \ + | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ | h8300-* | h8500-* \ | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ | i*86-* | i860-* | i960-* | ia64-* \ | ip2k-* | iq2000-* \ - | m32r-* \ + | m32c-* | m32r-* | m32rle-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ - | m88110-* | m88k-* | mcore-* \ + | m88110-* | m88k-* | maxq-* | mcore-* \ | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ | mips16-* \ | mips64-* | mips64el-* \ @@ -318,6 +340,7 @@ | mips64vr4100-* | mips64vr4100el-* \ | mips64vr4300-* | mips64vr4300el-* \ | mips64vr5000-* | mips64vr5000el-* \ + | mips64vr5900-* | mips64vr5900el-* \ | mipsisa32-* | mipsisa32el-* \ | mipsisa32r2-* | mipsisa32r2el-* \ | mipsisa64-* | mipsisa64el-* \ @@ -325,27 +348,35 @@ | mipsisa64sb1-* | mipsisa64sb1el-* \ | mipsisa64sr71k-* | mipsisa64sr71kel-* \ | mipstx39-* | mipstx39el-* \ + | mmix-* \ + | mt-* \ | msp430-* \ - | none-* | np1-* | nv1-* | ns16k-* | ns32k-* \ + | nios-* | nios2-* \ + | none-* | np1-* | ns16k-* | ns32k-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ | pyramid-* \ | romp-* | rs6000-* \ - | sh-* | sh[1234]-* | sh[23]e-* | sh[34]eb-* | shbe-* \ + | sh-* | sh[1234]-* | sh[24]a-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ - | sparc-* | sparc64-* | sparc86x-* | sparclet-* | sparclite-* \ - | sparcv9-* | sparcv9b-* | strongarm-* | sv1-* | sx?-* \ + | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ + | sparclite-* \ + | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | strongarm-* | sv1-* | sx?-* \ | tahoe-* | thumb-* \ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ | tron-* \ | v850-* | v850e-* | vax-* \ | we32k-* \ - | x86-* | x86_64-* | xps100-* | xscale-* | xstormy16-* \ - | xtensa-* \ + | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \ + | xstormy16-* | xtensa*-* \ | ymp-* \ | z8k-*) ;; + # Recognize the basic CPU types without company name, with glob match. + xtensa*) + basic_machine=$basic_machine-unknown + ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. 386bsd) @@ -362,6 +393,9 @@ basic_machine=a29k-amd os=-udi ;; + abacus) + basic_machine=abacus-unknown + ;; adobe68k) basic_machine=m68010-adobe os=-scout @@ -379,6 +413,9 @@ amd64) basic_machine=x86_64-pc ;; + amd64-*) + basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; amdahl) basic_machine=580-amdahl os=-sysv @@ -410,6 +447,14 @@ basic_machine=ns32k-sequent os=-dynix ;; + blackfin) + basic_machine=bfin-unknown + os=-linux + ;; + blackfin-*) + basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; c90) basic_machine=c90-cray os=-unicos @@ -438,12 +483,27 @@ basic_machine=j90-cray os=-unicos ;; + craynv) + basic_machine=craynv-cray + os=-unicosmp + ;; + cr16) + basic_machine=cr16-unknown + os=-elf + ;; crds | unos) basic_machine=m68k-crds ;; + crisv32 | crisv32-* | etraxfs*) + basic_machine=crisv32-axis + ;; cris | cris-* | etrax*) basic_machine=cris-axis ;; + crx) + basic_machine=crx-unknown + os=-elf + ;; da30 | da30-*) basic_machine=m68k-da30 ;; @@ -466,6 +526,10 @@ basic_machine=m88k-motorola os=-sysv3 ;; + djgpp) + basic_machine=i586-pc + os=-msdosdjgpp + ;; dpx20 | dpx20-*) basic_machine=rs6000-bull os=-bosx @@ -616,6 +680,14 @@ basic_machine=m68k-isi os=-sysv ;; + m68knommu) + basic_machine=m68k-unknown + os=-linux + ;; + m68knommu-*) + basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; m88k-omron*) basic_machine=m88k-omron ;; @@ -631,6 +703,10 @@ basic_machine=i386-pc os=-mingw32 ;; + mingw32ce) + basic_machine=arm-unknown + os=-mingw32ce + ;; miniframe) basic_machine=m68000-convergent ;; @@ -644,10 +720,6 @@ mips3*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown ;; - mmix*) - basic_machine=mmix-knuth - os=-mmixware - ;; monitor) basic_machine=m68k-rom68k os=-coff @@ -660,6 +732,9 @@ basic_machine=i386-pc os=-msdos ;; + ms1-*) + basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` + ;; mvs) basic_machine=i370-ibm os=-mvs @@ -728,10 +803,6 @@ np1) basic_machine=np1-gould ;; - nv1) - basic_machine=nv1-cray - os=-unicosmp - ;; nsr-tandem) basic_machine=nsr-tandem ;; @@ -739,9 +810,12 @@ basic_machine=hppa1.1-oki os=-proelf ;; - or32 | or32-*) + openrisc | openrisc-*) basic_machine=or32-unknown - os=-coff + ;; + os400) + basic_machine=powerpc-ibm + os=-os400 ;; OSE68000 | ose68000) basic_machine=m68000-ericsson @@ -759,6 +833,14 @@ basic_machine=i860-intel os=-osf ;; + parisc) + basic_machine=hppa-unknown + os=-linux + ;; + parisc-*) + basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'` + os=-linux + ;; pbd) basic_machine=sparc-tti ;; @@ -768,6 +850,12 @@ pc532 | pc532-*) basic_machine=ns32k-pc532 ;; + pc98) + basic_machine=i386-pc + ;; + pc98-*) + basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; pentium | p5 | k5 | k6 | nexgen | viac3) basic_machine=i586-pc ;; @@ -824,6 +912,10 @@ basic_machine=i586-unknown os=-pw32 ;; + rdos) + basic_machine=i386-pc + os=-rdos + ;; rom68k) basic_machine=m68k-rom68k os=-coff @@ -850,6 +942,10 @@ sb1el) basic_machine=mipsisa64sb1el-unknown ;; + sde) + basic_machine=mipsisa32-sde + os=-elf + ;; sei) basic_machine=mips-sei os=-seiux @@ -861,6 +957,9 @@ basic_machine=sh-hitachi os=-hms ;; + sh5el) + basic_machine=sh5le-unknown + ;; sh64) basic_machine=sh64-unknown ;; @@ -950,6 +1049,10 @@ basic_machine=tic6x-unknown os=-coff ;; + tile*) + basic_machine=tile-unknown + os=-linux-gnu + ;; tx39) basic_machine=mipstx39-unknown ;; @@ -963,6 +1066,10 @@ tower | tower-32) basic_machine=m68k-ncr ;; + tpf) + basic_machine=s390x-ibm + os=-tpf + ;; udi29k) basic_machine=a29k-amd os=-udi @@ -1006,6 +1113,10 @@ basic_machine=hppa1.1-winbond os=-proelf ;; + xbox) + basic_machine=i686-pc + os=-mingw32 + ;; xps | xps100) basic_machine=xps100-honeywell ;; @@ -1036,6 +1147,9 @@ romp) basic_machine=romp-ibm ;; + mmix) + basic_machine=mmix-knuth + ;; rs6000) basic_machine=rs6000-ibm ;; @@ -1052,13 +1166,10 @@ we32k) basic_machine=we32k-att ;; - sh3 | sh4 | sh[34]eb | sh[1234]le | sh[23]ele) + sh[1234] | sh[24]a | sh[34]eb | sh[1234]le | sh[23]ele) basic_machine=sh-unknown ;; - sh64) - basic_machine=sh64-unknown - ;; - sparc | sparcv9 | sparcv9b) + sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v) basic_machine=sparc-sun ;; cydra) @@ -1131,19 +1242,23 @@ | -aos* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ - | -hiux* | -386bsd* | -netbsd* | -openbsd* | -kfreebsd* | -freebsd* | -riscix* \ - | -lynxos* | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ + | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ + | -openbsd* | -solidbsd* \ + | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ + | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ | -chorusos* | -chorusrdb* \ | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ - | -mingw32* | -linux-gnu* | -uxpv* | -beos* | -mpeix* | -udk* \ + | -mingw32* | -linux-gnu* | -linux-newlib* | -linux-uclibc* \ + | -uxpv* | -beos* | -mpeix* | -udk* \ | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ - | -powermax* | -dnix* | -nx6 | -nx7 | -sei*) + | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ + | -skyos* | -haiku* | -rdos* | -toppers* | -drops*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) @@ -1161,7 +1276,7 @@ os=`echo $os | sed -e 's|nto|nto-qnx|'` ;; -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ - | -windows* | -osx | -abug | -netware* | -os9* | -beos* \ + | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) ;; -mac*) @@ -1182,6 +1297,9 @@ -opened*) os=-openedition ;; + -os400*) + os=-os400 + ;; -wince*) os=-wince ;; @@ -1203,6 +1321,9 @@ -atheos*) os=-atheos ;; + -syllable*) + os=-syllable + ;; -386bsd) os=-bsd ;; @@ -1225,6 +1346,9 @@ -sinix*) os=-sysv4 ;; + -tpf*) + os=-tpf + ;; -triton*) os=-sysv3 ;; @@ -1261,6 +1385,9 @@ -kaos*) os=-kaos ;; + -zvmoe) + os=-zvmoe + ;; -none) ;; *) @@ -1283,6 +1410,12 @@ # system, and we'll never get to this point. case $basic_machine in + score-*) + os=-elf + ;; + spu-*) + os=-elf + ;; *-acorn) os=-riscix1.2 ;; @@ -1292,9 +1425,9 @@ arm*-semi) os=-aout ;; - c4x-* | tic4x-*) - os=-coff - ;; + c4x-* | tic4x-*) + os=-coff + ;; # This must come before the *-dec entry. pdp10-*) os=-tops20 @@ -1320,6 +1453,9 @@ m68*-cisco) os=-aout ;; + mep-*) + os=-elf + ;; mips*-cisco) os=-elf ;; @@ -1338,9 +1474,15 @@ *-be) os=-beos ;; + *-haiku) + os=-haiku + ;; *-ibm) os=-aix ;; + *-knuth) + os=-mmixware + ;; *-wec) os=-proelf ;; @@ -1473,9 +1615,15 @@ -mvs* | -opened*) vendor=ibm ;; + -os400*) + vendor=ibm + ;; -ptx*) vendor=sequent ;; + -tpf*) + vendor=ibm + ;; -vxsim* | -vxworks* | -windiss*) vendor=wrs ;; @@ -1500,7 +1648,7 @@ esac echo $basic_machine$os -exit 0 +exit # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) --- opal-3.6.1~dfsg.orig/plugins/Makefile +++ opal-3.6.1~dfsg/plugins/Makefile @@ -0,0 +1,82 @@ +SUBDIRS = audio/G722 \ + audio/GSM0610 \ + audio/Speex \ + audio/iLBC \ + audio/LPC_10 \ + audio/G726 \ + audio/IMA_ADPCM \ + audio/gsm-amr \ + video/H.261-vic + +HAVE_SBC= +ifeq ($(HAVE_SBC),yes) +SUBDIRS += audio/SBC +endif + +HAVE_CELT=no +ifeq ($(HAVE_CELT),yes) +SUBDIRS += audio/celt +endif + +HAVE_H263=no +ifeq ($(HAVE_H263),yes) +SUBDIRS += video/H.263-ffmpeg +endif + +HAVE_H264=no +ifeq ($(HAVE_H264),yes) +SUBDIRS += video/H.264 +endif + +HAVE_H263P= +ifeq ($(HAVE_H263P),yes) +SUBDIRS += video/H.263-1998 +endif + +HAVE_MPEG4= +ifeq ($(HAVE_MPEG4),yes) +SUBDIRS += video/MPEG4-ffmpeg +endif + +HAVE_THEORA=yes +ifeq ($(HAVE_THEORA),yes) +SUBDIRS += video/THEORA +endif + +HAVE_IXJ=no +ifeq ($(HAVE_IXJ),yes) +SUBDIRS += LID/IxJ +endif + +HAVE_VPB=yes +ifeq ($(HAVE_VPB),yes) +SUBDIRS += LID/VPB +endif + +HAVE_CAPI=no +ifeq ($(HAVE_CAPI),yes) +SUBDIRS += LID/CAPI +endif + +HAVE_SPANDSP=no +ifeq ($(HAVE_SPANDSP),yes) +ifneq (,$(wildcard fax/fax_spandsp)) +ifneq (,$(wildcard fax/fax_spandsp/spandsp_util)) +SUBDIRS += fax/fax_spandsp +endif +endif +endif + +all debug opt both \ +optshared debugshared bothshared \ +optnoshared debugnoshared bothnoshared: + @set -e; $(foreach dir,$(SUBDIRS),if test -d ${dir} ; then $(MAKE) -C $(dir); fi ; ) + +clean optclean debugclean: + @set -e; $(foreach dir,$(SUBDIRS),if test -d ${dir} ; then $(MAKE) -C $(dir) clean; fi ; ) + +install uninstall: + @set -e; $(foreach dir,$(SUBDIRS),if test -d ${dir} ; then $(MAKE) -C $(dir) $@; fi ; ) + +depend optdepend debugdepend bothdepend release tagbuild: + @echo --- opal-3.6.1~dfsg.orig/plugins/config.status +++ opal-3.6.1~dfsg/plugins/config.status @@ -0,0 +1,941 @@ +#! /bin/bash +# Generated by configure. +# Run this file to recreate the current configuration. +# Compiler output produced by configure, useful for debugging +# configure, is in config.log if it exists. + +debug=false +ac_cs_recheck=false +ac_cs_silent=false +SHELL=${CONFIG_SHELL-/bin/bash} +## --------------------- ## +## M4sh Initialization. ## +## --------------------- ## + +# Be more Bourne compatible +DUALCASE=1; export DUALCASE # for MKS sh +if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which + # is contrary to our usage. Disable this feature. + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST +else + case `(set -o) 2>/dev/null` in + *posix*) set -o posix ;; +esac + +fi + + + + +# PATH needs CR +# Avoid depending upon Character Ranges. +as_cr_letters='abcdefghijklmnopqrstuvwxyz' +as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' +as_cr_Letters=$as_cr_letters$as_cr_LETTERS +as_cr_digits='0123456789' +as_cr_alnum=$as_cr_Letters$as_cr_digits + +# The user is always right. +if test "${PATH_SEPARATOR+set}" != set; then + echo "#! /bin/sh" >conf$$.sh + echo "exit 0" >>conf$$.sh + chmod +x conf$$.sh + if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then + PATH_SEPARATOR=';' + else + PATH_SEPARATOR=: + fi + rm -f conf$$.sh +fi + +# Support unset when possible. +if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then + as_unset=unset +else + as_unset=false +fi + + +# IFS +# We need space, tab and new line, in precisely that order. Quoting is +# there to prevent editors from complaining about space-tab. +# (If _AS_PATH_WALK were called with IFS unset, it would disable word +# splitting by setting IFS to empty value.) +as_nl=' +' +IFS=" "" $as_nl" + +# Find who we are. Look in the path if we contain no directory separator. +case $0 in + *[\\/]* ) as_myself=$0 ;; + *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +for as_dir in $PATH +do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break +done +IFS=$as_save_IFS + + ;; +esac +# We did not find ourselves, most probably we were run as `sh COMMAND' +# in which case we are not to be found in the path. +if test "x$as_myself" = x; then + as_myself=$0 +fi +if test ! -f "$as_myself"; then + echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 + { (exit 1); exit 1; } +fi + +# Work around bugs in pre-3.0 UWIN ksh. +for as_var in ENV MAIL MAILPATH +do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var +done +PS1='$ ' +PS2='> ' +PS4='+ ' + +# NLS nuisances. +for as_var in \ + LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ + LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ + LC_TELEPHONE LC_TIME +do + if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then + eval $as_var=C; export $as_var + else + ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var + fi +done + +# Required to use basename. +if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then + as_expr=expr +else + as_expr=false +fi + +if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then + as_basename=basename +else + as_basename=false +fi + + +# Name of the executable. +as_me=`$as_basename -- "$0" || +$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ + X"$0" : 'X\(//\)$' \| \ + X"$0" : 'X\(/\)' \| . 2>/dev/null || +echo X/"$0" | + sed '/^.*\/\([^/][^/]*\)\/*$/{ + s//\1/ + q + } + /^X\/\(\/\/\)$/{ + s//\1/ + q + } + /^X\/\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + +# CDPATH. +$as_unset CDPATH + + + + as_lineno_1=$LINENO + as_lineno_2=$LINENO + test "x$as_lineno_1" != "x$as_lineno_2" && + test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || { + + # Create $as_me.lineno as a copy of $as_myself, but with $LINENO + # uniformly replaced by the line number. The first 'sed' inserts a + # line-number line after each line using $LINENO; the second 'sed' + # does the real work. The second script uses 'N' to pair each + # line-number line with the line containing $LINENO, and appends + # trailing '-' during substitution so that $LINENO is not a special + # case at line end. + # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the + # scripts with optimization help from Paolo Bonzini. Blame Lee + # E. McMahon (1931-1989) for sed's syntax. :-) + sed -n ' + p + /[$]LINENO/= + ' <$as_myself | + sed ' + s/[$]LINENO.*/&-/ + t lineno + b + :lineno + N + :loop + s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ + t loop + s/-\n.*// + ' >$as_me.lineno && + chmod +x "$as_me.lineno" || + { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 + { (exit 1); exit 1; }; } + + # Don't try to exec as it changes $[0], causing all sort of problems + # (the dirname of $[0] is not the place where we might find the + # original and so on. Autoconf is especially sensitive to this). + . "./$as_me.lineno" + # Exit status is that of the last command. + exit +} + + +if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then + as_dirname=dirname +else + as_dirname=false +fi + +ECHO_C= ECHO_N= ECHO_T= +case `echo -n x` in +-n*) + case `echo 'x\c'` in + *c*) ECHO_T=' ';; # ECHO_T is single tab character. + *) ECHO_C='\c';; + esac;; +*) + ECHO_N='-n';; +esac + +if expr a : '\(a\)' >/dev/null 2>&1 && + test "X`expr 00001 : '.*\(...\)'`" = X001; then + as_expr=expr +else + as_expr=false +fi + +rm -f conf$$ conf$$.exe conf$$.file +if test -d conf$$.dir; then + rm -f conf$$.dir/conf$$.file +else + rm -f conf$$.dir + mkdir conf$$.dir +fi +echo >conf$$.file +if ln -s conf$$.file conf$$ 2>/dev/null; then + as_ln_s='ln -s' + # ... but there are two gotchas: + # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. + # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. + # In both cases, we have to default to `cp -p'. + ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || + as_ln_s='cp -p' +elif ln conf$$.file conf$$ 2>/dev/null; then + as_ln_s=ln +else + as_ln_s='cp -p' +fi +rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file +rmdir conf$$.dir 2>/dev/null + +if mkdir -p . 2>/dev/null; then + as_mkdir_p=: +else + test -d ./-p && rmdir ./-p + as_mkdir_p=false +fi + +if test -x / >/dev/null 2>&1; then + as_test_x='test -x' +else + if ls -dL / >/dev/null 2>&1; then + as_ls_L_option=L + else + as_ls_L_option= + fi + as_test_x=' + eval sh -c '\'' + if test -d "$1"; then + test -d "$1/."; + else + case $1 in + -*)set "./$1";; + esac; + case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in + ???[sx]*):;;*)false;;esac;fi + '\'' sh + ' +fi +as_executable_p=$as_test_x + +# Sed expression to map a string onto a valid CPP name. +as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" + +# Sed expression to map a string onto a valid variable name. +as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" + + +exec 6>&1 + +# Save the log message, to keep $[0] and so on meaningful, and to +# report actual input values of CONFIG_FILES etc. instead of their +# values after options handling. +ac_log=" +This file was extended by $as_me, which was +generated by GNU Autoconf 2.61. Invocation command line was + + CONFIG_FILES = $CONFIG_FILES + CONFIG_HEADERS = $CONFIG_HEADERS + CONFIG_LINKS = $CONFIG_LINKS + CONFIG_COMMANDS = $CONFIG_COMMANDS + $ $0 $@ + +on `(hostname || uname -n) 2>/dev/null | sed 1q` +" + +# Files that config.status was made for. +config_files=" audio/G722/Makefile audio/GSM0610/Makefile audio/gsm-amr/Makefile audio/Speex/Makefile audio/LPC_10/Makefile audio/G726/Makefile audio/IMA_ADPCM/Makefile audio/SBC/Makefile audio/celt/Makefile video/H.261-vic/Makefile video/H.263-1998/Makefile video/MPEG4-ffmpeg/Makefile video/H.264/Makefile video/H.264/gpl/Makefile video/THEORA/Makefile LID/IxJ/Makefile LID/VPB/Makefile LID/CAPI/Makefile fax/fax_spandsp/Makefile Makefile audio/Speex/libspeex/speex_config_types.h" +config_headers=" plugin-config.h" + +ac_cs_usage="\ +\`$as_me' instantiates files from templates according to the +current configuration. + +Usage: $0 [OPTIONS] [FILE]... + + -h, --help print this help, then exit + -V, --version print version number and configuration settings, then exit + -q, --quiet do not print progress messages + -d, --debug don't remove temporary files + --recheck update $as_me by reconfiguring in the same conditions + --file=FILE[:TEMPLATE] + instantiate the configuration file FILE + --header=FILE[:TEMPLATE] + instantiate the configuration header FILE + +Configuration files: +$config_files + +Configuration headers: +$config_headers + +Report bugs to ." + +ac_cs_version="\ +config.status +configured by ./configure, generated by GNU Autoconf 2.61, + with options \"'--prefix=/usr' '--build' 'i486-linux-gnu' '--disable-ffmpeg-h263' 'build_alias=i486-linux-gnu' 'CXXFLAGS=-g -O2' 'LDFLAGS=-Wl,-Bsymbolic-functions -Wl,-z,def' 'CPPFLAGS=' 'CFLAGS=-Wall -g -O2' '--cache-file=/dev/null' '--srcdir=.'\" + +Copyright (C) 2006 Free Software Foundation, Inc. +This config.status script is free software; the Free Software Foundation +gives unlimited permission to copy, distribute and modify it." + +ac_pwd='/home/ken/working/341367/opal/opal-3.6.1~dfsg/plugins' +srcdir='.' +INSTALL='/usr/bin/install -c' +# If no file are specified by the user, then we need to provide default +# value. By we need to know if files were specified by the user. +ac_need_defaults=: +while test $# != 0 +do + case $1 in + --*=*) + ac_option=`expr "X$1" : 'X\([^=]*\)='` + ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` + ac_shift=: + ;; + *) + ac_option=$1 + ac_optarg=$2 + ac_shift=shift + ;; + esac + + case $ac_option in + # Handling of the options. + -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) + ac_cs_recheck=: ;; + --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) + echo "$ac_cs_version"; exit ;; + --debug | --debu | --deb | --de | --d | -d ) + debug=: ;; + --file | --fil | --fi | --f ) + $ac_shift + CONFIG_FILES="$CONFIG_FILES $ac_optarg" + ac_need_defaults=false;; + --header | --heade | --head | --hea ) + $ac_shift + CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg" + ac_need_defaults=false;; + --he | --h) + # Conflict between --help and --header + { echo "$as_me: error: ambiguous option: $1 +Try \`$0 --help' for more information." >&2 + { (exit 1); exit 1; }; };; + --help | --hel | -h ) + echo "$ac_cs_usage"; exit ;; + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ + | -silent | --silent | --silen | --sile | --sil | --si | --s) + ac_cs_silent=: ;; + + # This is an error. + -*) { echo "$as_me: error: unrecognized option: $1 +Try \`$0 --help' for more information." >&2 + { (exit 1); exit 1; }; } ;; + + *) ac_config_targets="$ac_config_targets $1" + ac_need_defaults=false ;; + + esac + shift +done + +ac_configure_extra_args= + +if $ac_cs_silent; then + exec 6>/dev/null + ac_configure_extra_args="$ac_configure_extra_args --silent" +fi + +if $ac_cs_recheck; then + echo "running CONFIG_SHELL=/bin/bash /bin/bash ./configure " '--prefix=/usr' '--build' 'i486-linux-gnu' '--disable-ffmpeg-h263' 'build_alias=i486-linux-gnu' 'CXXFLAGS=-g -O2' 'LDFLAGS=-Wl,-Bsymbolic-functions -Wl,-z,def' 'CPPFLAGS=' 'CFLAGS=-Wall -g -O2' '--cache-file=/dev/null' '--srcdir=.' $ac_configure_extra_args " --no-create --no-recursion" >&6 + CONFIG_SHELL=/bin/bash + export CONFIG_SHELL + exec /bin/bash "./configure" '--prefix=/usr' '--build' 'i486-linux-gnu' '--disable-ffmpeg-h263' 'build_alias=i486-linux-gnu' 'CXXFLAGS=-g -O2' 'LDFLAGS=-Wl,-Bsymbolic-functions -Wl,-z,def' 'CPPFLAGS=' 'CFLAGS=-Wall -g -O2' '--cache-file=/dev/null' '--srcdir=.' $ac_configure_extra_args --no-create --no-recursion +fi + +exec 5>>config.log +{ + echo + sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX +## Running $as_me. ## +_ASBOX + echo "$ac_log" +} >&5 + + +# Handling of arguments. +for ac_config_target in $ac_config_targets +do + case $ac_config_target in + "audio/G722/Makefile") CONFIG_FILES="$CONFIG_FILES audio/G722/Makefile" ;; + "audio/GSM0610/Makefile") CONFIG_FILES="$CONFIG_FILES audio/GSM0610/Makefile" ;; + "audio/gsm-amr/Makefile") CONFIG_FILES="$CONFIG_FILES audio/gsm-amr/Makefile" ;; + "audio/iLBC/Makefile") CONFIG_FILES="$CONFIG_FILES audio/iLBC/Makefile" ;; + "audio/Speex/Makefile") CONFIG_FILES="$CONFIG_FILES audio/Speex/Makefile" ;; + "audio/LPC_10/Makefile") CONFIG_FILES="$CONFIG_FILES audio/LPC_10/Makefile" ;; + "audio/G726/Makefile") CONFIG_FILES="$CONFIG_FILES audio/G726/Makefile" ;; + "audio/IMA_ADPCM/Makefile") CONFIG_FILES="$CONFIG_FILES audio/IMA_ADPCM/Makefile" ;; + "audio/SBC/Makefile") CONFIG_FILES="$CONFIG_FILES audio/SBC/Makefile" ;; + "audio/celt/Makefile") CONFIG_FILES="$CONFIG_FILES audio/celt/Makefile" ;; + "video/H.261-vic/Makefile") CONFIG_FILES="$CONFIG_FILES video/H.261-vic/Makefile" ;; + "video/H.263-1998/Makefile") CONFIG_FILES="$CONFIG_FILES video/H.263-1998/Makefile" ;; + "video/MPEG4-ffmpeg/Makefile") CONFIG_FILES="$CONFIG_FILES video/MPEG4-ffmpeg/Makefile" ;; + "video/H.264/Makefile") CONFIG_FILES="$CONFIG_FILES video/H.264/Makefile" ;; + "video/H.264/gpl/Makefile") CONFIG_FILES="$CONFIG_FILES video/H.264/gpl/Makefile" ;; + "video/THEORA/Makefile") CONFIG_FILES="$CONFIG_FILES video/THEORA/Makefile" ;; + "LID/IxJ/Makefile") CONFIG_FILES="$CONFIG_FILES LID/IxJ/Makefile" ;; + "LID/VPB/Makefile") CONFIG_FILES="$CONFIG_FILES LID/VPB/Makefile" ;; + "LID/CAPI/Makefile") CONFIG_FILES="$CONFIG_FILES LID/CAPI/Makefile" ;; + "fax/fax_spandsp/Makefile") CONFIG_FILES="$CONFIG_FILES fax/fax_spandsp/Makefile" ;; + "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; + "audio/Speex/libspeex/speex_config_types.h") CONFIG_FILES="$CONFIG_FILES audio/Speex/libspeex/speex_config_types.h" ;; + "plugin-config.h") CONFIG_HEADERS="$CONFIG_HEADERS plugin-config.h" ;; + + *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5 +echo "$as_me: error: invalid argument: $ac_config_target" >&2;} + { (exit 1); exit 1; }; };; + esac +done + + +# If the user did not use the arguments to specify the items to instantiate, +# then the envvar interface is used. Set only those that are not. +# We use the long form for the default assignment because of an extremely +# bizarre bug on SunOS 4.1.3. +if $ac_need_defaults; then + test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files + test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers +fi + +# Have a temporary directory for convenience. Make it in the build tree +# simply because there is no reason against having it here, and in addition, +# creating and moving files from /tmp can sometimes cause problems. +# Hook for its removal unless debugging. +# Note that there is a small window in which the directory will not be cleaned: +# after its creation but before its name has been assigned to `$tmp'. +$debug || +{ + tmp= + trap 'exit_status=$? + { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status +' 0 + trap '{ (exit 1); exit 1; }' 1 2 13 15 +} +# Create a (secure) tmp directory for tmp files. + +{ + tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && + test -n "$tmp" && test -d "$tmp" +} || +{ + tmp=./conf$$-$RANDOM + (umask 077 && mkdir "$tmp") +} || +{ + echo "$me: cannot create a temporary directory in ." >&2 + { (exit 1); exit 1; } +} + +# +# Set up the sed scripts for CONFIG_FILES section. +# + +# No need to generate the scripts if there are no CONFIG_FILES. +# This happens for instance when ./config.status config.h +if test -n "$CONFIG_FILES"; then + +cat >"$tmp/subs-1.sed" <<\CEOF +/@[a-zA-Z_][a-zA-Z_0-9]*@/!b +s,@SHELL@,|#_!!_#|/bin/bash,g +s,@PATH_SEPARATOR@,|#_!!_#|:,g +s,@PACKAGE_NAME@,|#_!!_#|,g +s,@PACKAGE_TARNAME@,|#_!!_#|,g +s,@PACKAGE_VERSION@,|#_!!_#|,g +s,@PACKAGE_STRING@,|#_!!_#|,g +s,@PACKAGE_BUGREPORT@,|#_!!_#|,g +s,@exec_prefix@,|#_!!_#|${prefix},g +s,@prefix@,|#_!!_#|/usr,g +s,@program_transform_name@,|#_!!_#|s\,x\,x\,,g +s,@bindir@,|#_!!_#|${exec_prefix}/bin,g +s,@sbindir@,|#_!!_#|${exec_prefix}/sbin,g +s,@libexecdir@,|#_!!_#|${exec_prefix}/libexec,g +s,@datarootdir@,|#_!!_#|${prefix}/share,g +s,@datadir@,|#_!!_#|${datarootdir},g +s,@sysconfdir@,|#_!!_#|${prefix}/etc,g +s,@sharedstatedir@,|#_!!_#|${prefix}/com,g +s,@localstatedir@,|#_!!_#|${prefix}/var,g +s,@includedir@,|#_!!_#|${prefix}/include,g +s,@oldincludedir@,|#_!!_#|/usr/include,g +s,@docdir@,|#_!!_#|${datarootdir}/doc/${PACKAGE},g +s,@infodir@,|#_!!_#|${datarootdir}/info,g +s,@htmldir@,|#_!!_#|${docdir},g +s,@dvidir@,|#_!!_#|${docdir},g +s,@pdfdir@,|#_!!_#|${docdir},g +s,@psdir@,|#_!!_#|${docdir},g +s,@libdir@,|#_!!_#|${exec_prefix}/lib,g +s,@localedir@,|#_!!_#|${datarootdir}/locale,g +s,@mandir@,|#_!!_#|${datarootdir}/man,g +s,@DEFS@,|#_!!_#|-DHAVE_CONFIG_H,g +s,@ECHO_C@,|#_!!_#|,g +s,@ECHO_N@,|#_!!_#|-n,g +s,@ECHO_T@,|#_!!_#|,g +s,@LIBS@,|#_!!_#|,g +s,@build_alias@,|#_!!_#|i486-linux-gnu,g +s,@host_alias@,|#_!!_#|,g +s,@target_alias@,|#_!!_#|,g +s,@PKG_CONFIG@,|#_!!_#|/usr/bin/pkg-config,g +s,@build@,|#_!!_#|i486-pc-linux-gnu,g +s,@build_cpu@,|#_!!_#|i486,g +s,@build_vendor@,|#_!!_#|pc,g +s,@build_os@,|#_!!_#|linux-gnu,g +s,@host@,|#_!!_#|i486-pc-linux-gnu,g +s,@host_cpu@,|#_!!_#|i486,g +s,@host_vendor@,|#_!!_#|pc,g +s,@host_os@,|#_!!_#|linux-gnu,g +s,@target@,|#_!!_#|i486-pc-linux-gnu,g +s,@target_cpu@,|#_!!_#|i486,g +s,@target_vendor@,|#_!!_#|pc,g +s,@target_os@,|#_!!_#|linux-gnu,g +s,@CXX@,|#_!!_#|g++,g +s,@CXXFLAGS@,|#_!!_#| -Os -g -O2,g +s,@LDFLAGS@,|#_!!_#|-Wl\,-Bsymbolic-functions -Wl\,-z\,def,g +s,@CPPFLAGS@,|#_!!_#|,g +s,@ac_ct_CXX@,|#_!!_#|g++,g +s,@EXEEXT@,|#_!!_#|,g +s,@OBJEXT@,|#_!!_#|o,g +s,@CC@,|#_!!_#|gcc,g +s,@CFLAGS@,|#_!!_#| -Os -Wall -g -O2,g +s,@ac_ct_CC@,|#_!!_#|gcc,g +s,@INSTALL_PROGRAM@,|#_!!_#|${INSTALL},g +s,@INSTALL_SCRIPT@,|#_!!_#|${INSTALL},g +s,@INSTALL_DATA@,|#_!!_#|${INSTALL} -m 644,g +s,@RANLIB@,|#_!!_#|ranlib,g +s,@NM@,|#_!!_#|nm,g +s,@LDD@,|#_!!_#|ldd,g +s,@OBJDUMP@,|#_!!_#|objdump,g +s,@CPP@,|#_!!_#|gcc -E,g +s,@GREP@,|#_!!_#|/bin/grep,g +s,@EGREP@,|#_!!_#|/bin/grep -E,g +s,@AC_PLUGIN_DIR@,|#_!!_#|opal-3.6.1/codecs/audio,g +s,@VC_PLUGIN_DIR@,|#_!!_#|opal-3.6.1/codecs/video,g +s,@LID_PLUGIN_DIR@,|#_!!_#|opal-3.6.1/lid,g +s,@FAX_PLUGIN_DIR@,|#_!!_#|opal-3.6.1/fax,g +s,@LDSO@,|#_!!_#|-shared -Wl\,-soname\,$(SONAME),g +s,@PLUGINEXT@,|#_!!_#|so,g +s,@STDCCFLAGS@,|#_!!_#| -fPIC,g +s,@WIN32@,|#_!!_#|no,g +s,@GSM_CFLAGS@,|#_!!_#|,g +s,@GSM_LIBS@,|#_!!_#|-lgsm,g +s,@GSM_SYSTEM@,|#_!!_#|yes,g +s,@SIZE16@,|#_!!_#|short,g +s,@SIZE32@,|#_!!_#|int,g +s,@SPEEX_CFLAGS@,|#_!!_#| ,g +s,@SPEEX_LIBS@,|#_!!_#|-lspeex ,g +s,@SPEEX_SYSTEM@,|#_!!_#|yes,g +s,@HAVE_SBC@,|#_!!_#|,g +s,@HAVE_H263@,|#_!!_#|no,g +s,@DEFAULT_TO_FULL_CAPABILITIES@,|#_!!_#|yes,g +s,@LIBAVCODEC_CFLAGS@,|#_!!_#|,g +s,@LIBAVCODEC_LIBS@,|#_!!_#|,g +s,@HAVE_H263P@,|#_!!_#|,g +s,@HAVE_MPEG4@,|#_!!_#|,g +s,@LIBAVCODEC_LIB_NAME@,|#_!!_#|,g +s,@HAVE_LIBAVCODEC@,|#_!!_#|no,g +s,@LIBAVCODEC_SOURCE_DIR@,|#_!!_#|,g +s,@HAVE_LIBAVCODEC_RTP_MODE@,|#_!!_#|,g +CEOF +cat >"$tmp/subs-2.sed" <<\CEOF +/@[a-zA-Z_][a-zA-Z_0-9]*@/!b end +s,@X264_CFLAGS@,|#_!!_#|,g +s,@X264_LIBS@,|#_!!_#|,g +s,@X264_LIB_NAME@,|#_!!_#|,g +s,@X264_LINK_STATIC@,|#_!!_#|no,g +s,@HAVE_X264@,|#_!!_#|no,g +s,@THEORA_CFLAGS@,|#_!!_#| ,g +s,@THEORA_LIBS@,|#_!!_#|-ltheora -logg ,g +s,@HAVE_THEORA@,|#_!!_#|yes,g +s,@CELT_CFLAGS@,|#_!!_#|,g +s,@CELT_LIBS@,|#_!!_#|,g +s,@HAVE_CELT@,|#_!!_#|no,g +s,@HAVE_LIBDL@,|#_!!_#|yes,g +s,@DL_LIBS@,|#_!!_#|-ldl,g +s,@HAVE_H264@,|#_!!_#|no,g +s,@HAVE_IXJ@,|#_!!_#|no,g +s,@HAVE_VPB@,|#_!!_#|yes,g +s,@HAVE_CAPI@,|#_!!_#|no,g +s,@HAVE_SPANDSP@,|#_!!_#|no,g +s,@SPANDSP_LIBS@,|#_!!_#|,g +s,@LIBOBJS@,|#_!!_#|,g +s,@LTLIBOBJS@,|#_!!_#|,g +:end +s/|#_!!_#|//g +CEOF +fi # test -n "$CONFIG_FILES" + + +for ac_tag in :F $CONFIG_FILES :H $CONFIG_HEADERS +do + case $ac_tag in + :[FHLC]) ac_mode=$ac_tag; continue;; + esac + case $ac_mode$ac_tag in + :[FHL]*:*);; + :L* | :C*:*) { { echo "$as_me:$LINENO: error: Invalid tag $ac_tag." >&5 +echo "$as_me: error: Invalid tag $ac_tag." >&2;} + { (exit 1); exit 1; }; };; + :[FH]-) ac_tag=-:-;; + :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; + esac + ac_save_IFS=$IFS + IFS=: + set x $ac_tag + IFS=$ac_save_IFS + shift + ac_file=$1 + shift + + case $ac_mode in + :L) ac_source=$1;; + :[FH]) + ac_file_inputs= + for ac_f + do + case $ac_f in + -) ac_f="$tmp/stdin";; + *) # Look for the file first in the build tree, then in the source tree + # (if the path is not absolute). The absolute path cannot be DOS-style, + # because $ac_f cannot contain `:'. + test -f "$ac_f" || + case $ac_f in + [\\/$]*) false;; + *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; + esac || + { { echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5 +echo "$as_me: error: cannot find input file: $ac_f" >&2;} + { (exit 1); exit 1; }; };; + esac + ac_file_inputs="$ac_file_inputs $ac_f" + done + + # Let's still pretend it is `configure' which instantiates (i.e., don't + # use $as_me), people would be surprised to read: + # /* config.h. Generated by config.status. */ + configure_input="Generated from "`IFS=: + echo $* | sed 's|^[^:]*/||;s|:[^:]*/|, |g'`" by configure." + if test x"$ac_file" != x-; then + configure_input="$ac_file. $configure_input" + { echo "$as_me:$LINENO: creating $ac_file" >&5 +echo "$as_me: creating $ac_file" >&6;} + fi + + case $ac_tag in + *:-:* | *:-) cat >"$tmp/stdin";; + esac + ;; + esac + + ac_dir=`$as_dirname -- "$ac_file" || +$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$ac_file" : 'X\(//\)[^/]' \| \ + X"$ac_file" : 'X\(//\)$' \| \ + X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || +echo X"$ac_file" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + { as_dir="$ac_dir" + case $as_dir in #( + -*) as_dir=./$as_dir;; + esac + test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || { + as_dirs= + while :; do + case $as_dir in #( + *\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #( + *) as_qdir=$as_dir;; + esac + as_dirs="'$as_qdir' $as_dirs" + as_dir=`$as_dirname -- "$as_dir" || +$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$as_dir" : 'X\(//\)[^/]' \| \ + X"$as_dir" : 'X\(//\)$' \| \ + X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || +echo X"$as_dir" | + sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ + s//\1/ + q + } + /^X\(\/\/\)[^/].*/{ + s//\1/ + q + } + /^X\(\/\/\)$/{ + s//\1/ + q + } + /^X\(\/\).*/{ + s//\1/ + q + } + s/.*/./; q'` + test -d "$as_dir" && break + done + test -z "$as_dirs" || eval "mkdir $as_dirs" + } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 +echo "$as_me: error: cannot create directory $as_dir" >&2;} + { (exit 1); exit 1; }; }; } + ac_builddir=. + +case "$ac_dir" in +.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; +*) + ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` + # A ".." for each directory in $ac_dir_suffix. + ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'` + case $ac_top_builddir_sub in + "") ac_top_builddir_sub=. ac_top_build_prefix= ;; + *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; + esac ;; +esac +ac_abs_top_builddir=$ac_pwd +ac_abs_builddir=$ac_pwd$ac_dir_suffix +# for backward compatibility: +ac_top_builddir=$ac_top_build_prefix + +case $srcdir in + .) # We are building in place. + ac_srcdir=. + ac_top_srcdir=$ac_top_builddir_sub + ac_abs_top_srcdir=$ac_pwd ;; + [\\/]* | ?:[\\/]* ) # Absolute name. + ac_srcdir=$srcdir$ac_dir_suffix; + ac_top_srcdir=$srcdir + ac_abs_top_srcdir=$srcdir ;; + *) # Relative name. + ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix + ac_top_srcdir=$ac_top_build_prefix$srcdir + ac_abs_top_srcdir=$ac_pwd/$srcdir ;; +esac +ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix + + + case $ac_mode in + :F) + # + # CONFIG_FILE + # + + case $INSTALL in + [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; + *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; + esac +# If the template does not know about datarootdir, expand it. +# FIXME: This hack should be removed a few years after 2.60. +ac_datarootdir_hack=; ac_datarootdir_seen= + +case `sed -n '/datarootdir/ { + p + q +} +/@datadir@/p +/@docdir@/p +/@infodir@/p +/@localedir@/p +/@mandir@/p +' $ac_file_inputs` in +*datarootdir*) ac_datarootdir_seen=yes;; +*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) + { echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 +echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} + ac_datarootdir_hack=' + s&@datadir@&${datarootdir}&g + s&@docdir@&${datarootdir}/doc/${PACKAGE}&g + s&@infodir@&${datarootdir}/info&g + s&@localedir@&${datarootdir}/locale&g + s&@mandir@&${datarootdir}/man&g + s&\${datarootdir}&${prefix}/share&g' ;; +esac + sed "/^[ ]*VPATH[ ]*=/{ +s/:*\$(srcdir):*/:/ +s/:*\${srcdir}:*/:/ +s/:*@srcdir@:*/:/ +s/^\([^=]*=[ ]*\):*/\1/ +s/:*$// +s/^[^=]*=[ ]*$// +} + +:t +/@[a-zA-Z_][a-zA-Z_0-9]*@/!b +s&@configure_input@&$configure_input&;t t +s&@top_builddir@&$ac_top_builddir_sub&;t t +s&@srcdir@&$ac_srcdir&;t t +s&@abs_srcdir@&$ac_abs_srcdir&;t t +s&@top_srcdir@&$ac_top_srcdir&;t t +s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t +s&@builddir@&$ac_builddir&;t t +s&@abs_builddir@&$ac_abs_builddir&;t t +s&@abs_top_builddir@&$ac_abs_top_builddir&;t t +s&@INSTALL@&$ac_INSTALL&;t t +$ac_datarootdir_hack +" $ac_file_inputs | sed -f "$tmp/subs-1.sed" | sed -f "$tmp/subs-2.sed" >$tmp/out + +test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && + { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } && + { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } && + { echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir' +which seems to be undefined. Please make sure it is defined." >&5 +echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' +which seems to be undefined. Please make sure it is defined." >&2;} + + rm -f "$tmp/stdin" + case $ac_file in + -) cat "$tmp/out"; rm -f "$tmp/out";; + *) rm -f "$ac_file"; mv "$tmp/out" $ac_file;; + esac + ;; + :H) + # + # CONFIG_HEADER + # + # First, check the format of the line: + cat >"$tmp/defines.sed" <<\CEOF +/^[ ]*#[ ]*undef[ ][ ]*[_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ][_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]*[ ]*$/b def +/^[ ]*#[ ]*define[ ][ ]*[_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ][_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]*[( ]/b def +b +:def +s/$/ / +s,^\([ #]*\)[^ ]*\([ ]*PACKAGE_NAME\)[ (].*,\1define\2 "" , +s,^\([ #]*\)[^ ]*\([ ]*PACKAGE_TARNAME\)[ (].*,\1define\2 "" , +s,^\([ #]*\)[^ ]*\([ ]*PACKAGE_VERSION\)[ (].*,\1define\2 "" , +s,^\([ #]*\)[^ ]*\([ ]*PACKAGE_STRING\)[ (].*,\1define\2 "" , +s,^\([ #]*\)[^ ]*\([ ]*PACKAGE_BUGREPORT\)[ (].*,\1define\2 "" , +s,^\([ #]*\)[^ ]*\([ ]*STDC_HEADERS\)[ (].*,\1define\2 1 , +s,^\([ #]*\)[^ ]*\([ ]*HAVE_SYS_TYPES_H\)[ (].*,\1define\2 1 , +s,^\([ #]*\)[^ ]*\([ ]*HAVE_SYS_STAT_H\)[ (].*,\1define\2 1 , +s,^\([ #]*\)[^ ]*\([ ]*HAVE_STDLIB_H\)[ (].*,\1define\2 1 , +s,^\([ #]*\)[^ ]*\([ ]*HAVE_STRING_H\)[ (].*,\1define\2 1 , +s,^\([ #]*\)[^ ]*\([ ]*HAVE_MEMORY_H\)[ (].*,\1define\2 1 , +s,^\([ #]*\)[^ ]*\([ ]*HAVE_STRINGS_H\)[ (].*,\1define\2 1 , +s,^\([ #]*\)[^ ]*\([ ]*HAVE_INTTYPES_H\)[ (].*,\1define\2 1 , +s,^\([ #]*\)[^ ]*\([ ]*HAVE_STDINT_H\)[ (].*,\1define\2 1 , +s,^\([ #]*\)[^ ]*\([ ]*HAVE_UNISTD_H\)[ (].*,\1define\2 1 , +s,^\([ #]*\)[^ ]*\([ ]*HAVE_STDDEF_H\)[ (].*,\1define\2 1 , +s,^\([ #]*\)[^ ]*\([ ]*HAVE_LIMITS_H\)[ (].*,\1define\2 1 , +s,^\([ #]*\)[^ ]*\([ ]*HAVE_FLOAT_H\)[ (].*,\1define\2 1 , +s,^\([ #]*\)[^ ]*\([ ]*HAVE_FCNTL_H\)[ (].*,\1define\2 1 , +s,^\([ #]*\)[^ ]*\([ ]*HAVE_SYS_TIME_H\)[ (].*,\1define\2 1 , +s,^\([ #]*\)[^ ]*\([ ]*HAVE_SYS_FILE_H\)[ (].*,\1define\2 1 , +s,^\([ #]*\)[^ ]*\([ ]*HAVE_NETINET_IN_H\)[ (].*,\1define\2 1 , +s,^\([ #]*\)[^ ]*\([ ]*HAVE_FORK\)[ (].*,\1define\2 1 , +s,^\([ #]*\)[^ ]*\([ ]*HAVE_VFORK\)[ (].*,\1define\2 1 , +s,^\([ #]*\)[^ ]*\([ ]*HAVE_WORKING_VFORK\)[ (].*,\1define\2 1 , +s,^\([ #]*\)[^ ]*\([ ]*HAVE_WORKING_FORK\)[ (].*,\1define\2 1 , +s,^\([ #]*\)[^ ]*\([ ]*SIZEOF_SHORT\)[ (].*,\1define\2 2 , +s,^\([ #]*\)[^ ]*\([ ]*SIZEOF_INT\)[ (].*,\1define\2 4 , +s,^\([ #]*\)[^ ]*\([ ]*SIZEOF_LONG\)[ (].*,\1define\2 4 , +s,^\([ #]*\)[^ ]*\([ ]*SIZEOF_LONG_LONG\)[ (].*,\1define\2 8 , +s,^\([ #]*\)[^ ]*\([ ]*DEFAULT_TO_FULL_CAPABILITIES\)[ (].*,\1define\2 1 , +s,^\([ #]*\)[^ ]*\([ ]*HAVE_THEORA\)[ (].*,\1define\2 1 , +s,^\([ #]*\)[^ ]*\([ ]*HAVE_DLFCN_H\)[ (].*,\1define\2 1 , +s,^\([ #]*\)[^ ]*\([ ]*HAVE_VPB\)[ (].*,\1define\2 1 , +s/ $// +s,^[ #]*u.*,/* & */, +CEOF + sed -f "$tmp/defines.sed" $ac_file_inputs >"$tmp/out1" +ac_result="$tmp/out1" + if test x"$ac_file" != x-; then + echo "/* $configure_input */" >"$tmp/config.h" + cat "$ac_result" >>"$tmp/config.h" + if diff $ac_file "$tmp/config.h" >/dev/null 2>&1; then + { echo "$as_me:$LINENO: $ac_file is unchanged" >&5 +echo "$as_me: $ac_file is unchanged" >&6;} + else + rm -f $ac_file + mv "$tmp/config.h" $ac_file + fi + else + echo "/* $configure_input */" + cat "$ac_result" + fi + rm -f "$tmp/out12" + ;; + + + esac + +done # for ac_tag + + +{ (exit 0); exit 0; } --- opal-3.6.1~dfsg.orig/plugins/config.log +++ opal-3.6.1~dfsg/plugins/config.log @@ -0,0 +1,1095 @@ +This file contains any messages produced by compilers while +running configure, to aid debugging if configure makes a mistake. + +It was created by configure, which was +generated by GNU Autoconf 2.61. Invocation command line was + + $ ./configure --prefix=/usr --build i486-linux-gnu --disable-ffmpeg-h263 build_alias=i486-linux-gnu CXXFLAGS=-g -O2 LDFLAGS=-Wl,-Bsymbolic-functions -Wl,-z,def CPPFLAGS= CFLAGS=-Wall -g -O2 --cache-file=/dev/null --srcdir=. + +## --------- ## +## Platform. ## +## --------- ## + +hostname = trabajo +uname -m = i686 +uname -r = 2.6.28-10-generic +uname -s = Linux +uname -v = #32-Ubuntu SMP Mon Mar 16 02:49:09 UTC 2009 + +/usr/bin/uname -p = unknown +/bin/uname -X = unknown + +/bin/arch = unknown +/usr/bin/arch -k = unknown +/usr/convex/getsysinfo = unknown +/usr/bin/hostinfo = unknown +/bin/machine = unknown +/usr/bin/oslevel = unknown +/bin/universe = unknown + +PATH: /usr/lib/ccache +PATH: /usr/sbin +PATH: /usr/bin +PATH: /sbin +PATH: /bin +PATH: /usr/bin/X11 + + +## ----------- ## +## Core tests. ## +## ----------- ## + +configure:1865: checking for pkg-config +configure:1883: found /usr/bin/pkg-config +configure:1895: result: /usr/bin/pkg-config +configure:1924: checking pkg-config is at least version 0.9.0 +configure:1927: result: yes +configure:1973: checking build system type +configure:1991: result: i486-pc-linux-gnu +configure:2013: checking host system type +configure:2028: result: i486-pc-linux-gnu +configure:2050: checking target system type +configure:2065: result: i486-pc-linux-gnu +configure:2207: checking Debugging support +configure:2209: result: no +configure:2274: checking for g++ +configure:2290: found /usr/bin/g++ +configure:2301: result: g++ +configure:2332: checking for C++ compiler version +configure:2339: g++ --version >&5 +g++ (Ubuntu 4.3.3-5ubuntu4) 4.3.3 +Copyright (C) 2008 Free Software Foundation, Inc. +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +configure:2342: $? = 0 +configure:2349: g++ -v >&5 +Using built-in specs. +Target: i486-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 4.3.3-5ubuntu4' --with-bugurl=file:///usr/share/doc/gcc-4.3/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --enable-shared --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --enable-nls --with-gxx-include-dir=/usr/include/c++/4.3 --program-suffix=-4.3 --enable-clocale=gnu --enable-libstdcxx-debug --enable-objc-gc --enable-mpfr --enable-targets=all --with-tune=generic --enable-checking=release --build=i486-linux-gnu --host=i486-linux-gnu --target=i486-linux-gnu +Thread model: posix +gcc version 4.3.3 (Ubuntu 4.3.3-5ubuntu4) +configure:2352: $? = 0 +configure:2359: g++ -V >&5 +g++: '-V' option must have argument +configure:2362: $? = 1 +configure:2385: checking for C++ compiler default output file name +configure:2412: g++ -Os -g -O2 -Wl,-Bsymbolic-functions -Wl,-z,def conftest.cpp >&5 +configure:2415: $? = 0 +configure:2453: result: a.out +configure:2470: checking whether the C++ compiler works +configure:2480: ./a.out +configure:2483: $? = 0 +configure:2500: result: yes +configure:2507: checking whether we are cross compiling +configure:2509: result: no +configure:2512: checking for suffix of executables +configure:2519: g++ -o conftest -Os -g -O2 -Wl,-Bsymbolic-functions -Wl,-z,def conftest.cpp >&5 +configure:2522: $? = 0 +configure:2546: result: +configure:2552: checking for suffix of object files +configure:2578: g++ -c -Os -g -O2 conftest.cpp >&5 +configure:2581: $? = 0 +configure:2604: result: o +configure:2608: checking whether we are using the GNU C++ compiler +configure:2637: g++ -c -Os -g -O2 conftest.cpp >&5 +configure:2643: $? = 0 +configure:2660: result: yes +configure:2665: checking whether g++ accepts -g +configure:2695: g++ -c -g conftest.cpp >&5 +configure:2701: $? = 0 +configure:2800: result: yes +configure:2871: checking for gcc +configure:2887: found /usr/bin/gcc +configure:2898: result: gcc +configure:3136: checking for C compiler version +configure:3143: gcc --version >&5 +gcc (Ubuntu 4.3.3-5ubuntu4) 4.3.3 +Copyright (C) 2008 Free Software Foundation, Inc. +This is free software; see the source for copying conditions. There is NO +warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +configure:3146: $? = 0 +configure:3153: gcc -v >&5 +Using built-in specs. +Target: i486-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 4.3.3-5ubuntu4' --with-bugurl=file:///usr/share/doc/gcc-4.3/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --enable-shared --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --enable-nls --with-gxx-include-dir=/usr/include/c++/4.3 --program-suffix=-4.3 --enable-clocale=gnu --enable-libstdcxx-debug --enable-objc-gc --enable-mpfr --enable-targets=all --with-tune=generic --enable-checking=release --build=i486-linux-gnu --host=i486-linux-gnu --target=i486-linux-gnu +Thread model: posix +gcc version 4.3.3 (Ubuntu 4.3.3-5ubuntu4) +configure:3156: $? = 0 +configure:3163: gcc -V >&5 +gcc: '-V' option must have argument +configure:3166: $? = 1 +configure:3169: checking whether we are using the GNU C compiler +configure:3198: gcc -c -Os -Wall -g -O2 conftest.c >&5 +configure:3204: $? = 0 +configure:3221: result: yes +configure:3226: checking whether gcc accepts -g +configure:3256: gcc -c -g conftest.c >&5 +configure:3262: $? = 0 +configure:3361: result: yes +configure:3378: checking for gcc option to accept ISO C89 +configure:3452: gcc -c -Os -Wall -g -O2 conftest.c >&5 +configure:3458: $? = 0 +configure:3481: result: none needed +configure:3512: checking for a BSD-compatible install +configure:3568: result: /usr/bin/install -c +configure:3622: checking for ranlib +configure:3638: found /usr/bin/ranlib +configure:3649: result: ranlib +configure:3718: checking for nm +configure:3734: found /usr/bin/nm +configure:3745: result: nm +configure:3814: checking for ldd +configure:3830: found /usr/bin/ldd +configure:3841: result: ldd +configure:3910: checking for objdump +configure:3926: found /usr/bin/objdump +configure:3937: result: objdump +configure:3970: checking how to run the C preprocessor +configure:4010: gcc -E conftest.c +configure:4016: $? = 0 +configure:4047: gcc -E conftest.c +conftest.c:8:28: error: ac_nonexistent.h: No such file or directory +configure:4053: $? = 1 +configure: failed program was: +| /* confdefs.h. */ +| #define PACKAGE_NAME "" +| #define PACKAGE_TARNAME "" +| #define PACKAGE_VERSION "" +| #define PACKAGE_STRING "" +| #define PACKAGE_BUGREPORT "" +| /* end confdefs.h. */ +| #include +configure:4086: result: gcc -E +configure:4115: gcc -E conftest.c +configure:4121: $? = 0 +configure:4152: gcc -E conftest.c +conftest.c:8:28: error: ac_nonexistent.h: No such file or directory +configure:4158: $? = 1 +configure: failed program was: +| /* confdefs.h. */ +| #define PACKAGE_NAME "" +| #define PACKAGE_TARNAME "" +| #define PACKAGE_VERSION "" +| #define PACKAGE_STRING "" +| #define PACKAGE_BUGREPORT "" +| /* end confdefs.h. */ +| #include +configure:4196: checking for grep that handles long lines and -e +configure:4270: result: /bin/grep +configure:4275: checking for egrep +configure:4353: result: /bin/grep -E +configure:4358: checking for ANSI C header files +configure:4388: gcc -c -Os -Wall -g -O2 conftest.c >&5 +configure:4394: $? = 0 +configure:4493: gcc -o conftest -Os -Wall -g -O2 -Wl,-Bsymbolic-functions -Wl,-z,def conftest.c >&5 +configure:4496: $? = 0 +configure:4502: ./conftest +configure:4505: $? = 0 +configure:4522: result: yes +configure:4546: checking for sys/types.h +configure:4567: gcc -c -Os -Wall -g -O2 conftest.c >&5 +configure:4573: $? = 0 +configure:4589: result: yes +configure:4546: checking for sys/stat.h +configure:4567: gcc -c -Os -Wall -g -O2 conftest.c >&5 +configure:4573: $? = 0 +configure:4589: result: yes +configure:4546: checking for stdlib.h +configure:4567: gcc -c -Os -Wall -g -O2 conftest.c >&5 +configure:4573: $? = 0 +configure:4589: result: yes +configure:4546: checking for string.h +configure:4567: gcc -c -Os -Wall -g -O2 conftest.c >&5 +configure:4573: $? = 0 +configure:4589: result: yes +configure:4546: checking for memory.h +configure:4567: gcc -c -Os -Wall -g -O2 conftest.c >&5 +configure:4573: $? = 0 +configure:4589: result: yes +configure:4546: checking for strings.h +configure:4567: gcc -c -Os -Wall -g -O2 conftest.c >&5 +configure:4573: $? = 0 +configure:4589: result: yes +configure:4546: checking for inttypes.h +configure:4567: gcc -c -Os -Wall -g -O2 conftest.c >&5 +configure:4573: $? = 0 +configure:4589: result: yes +configure:4546: checking for stdint.h +configure:4567: gcc -c -Os -Wall -g -O2 conftest.c >&5 +configure:4573: $? = 0 +configure:4589: result: yes +configure:4546: checking for unistd.h +configure:4567: gcc -c -Os -Wall -g -O2 conftest.c >&5 +configure:4573: $? = 0 +configure:4589: result: yes +configure:4619: checking stddef.h usability +configure:4636: gcc -c -Os -Wall -g -O2 conftest.c >&5 +configure:4642: $? = 0 +configure:4656: result: yes +configure:4660: checking stddef.h presence +configure:4675: gcc -E conftest.c +configure:4681: $? = 0 +configure:4695: result: yes +configure:4723: checking for stddef.h +configure:4731: result: yes +configure:4619: checking limits.h usability +configure:4636: gcc -c -Os -Wall -g -O2 conftest.c >&5 +configure:4642: $? = 0 +configure:4656: result: yes +configure:4660: checking limits.h presence +configure:4675: gcc -E conftest.c +configure:4681: $? = 0 +configure:4695: result: yes +configure:4723: checking for limits.h +configure:4731: result: yes +configure:4619: checking float.h usability +configure:4636: gcc -c -Os -Wall -g -O2 conftest.c >&5 +configure:4642: $? = 0 +configure:4656: result: yes +configure:4660: checking float.h presence +configure:4675: gcc -E conftest.c +configure:4681: $? = 0 +configure:4695: result: yes +configure:4723: checking for float.h +configure:4731: result: yes +configure:4619: checking fcntl.h usability +configure:4636: gcc -c -Os -Wall -g -O2 conftest.c >&5 +configure:4642: $? = 0 +configure:4656: result: yes +configure:4660: checking fcntl.h presence +configure:4675: gcc -E conftest.c +configure:4681: $? = 0 +configure:4695: result: yes +configure:4723: checking for fcntl.h +configure:4731: result: yes +configure:4754: checking OPAL Version +configure:4756: result: 3.6.1 +configure:4783: checking Plugin install directory +configure:4785: result: /usr/lib/opal-3.6.1 +configure:6314: checking sys/time.h usability +configure:6331: gcc -c -Os -Wall -g -O2 conftest.c >&5 +configure:6337: $? = 0 +configure:6351: result: yes +configure:6355: checking sys/time.h presence +configure:6370: gcc -E conftest.c +configure:6376: $? = 0 +configure:6390: result: yes +configure:6418: checking for sys/time.h +configure:6426: result: yes +configure:6314: checking sys/file.h usability +configure:6331: gcc -c -Os -Wall -g -O2 conftest.c >&5 +configure:6337: $? = 0 +configure:6351: result: yes +configure:6355: checking sys/file.h presence +configure:6370: gcc -E conftest.c +configure:6376: $? = 0 +configure:6390: result: yes +configure:6418: checking for sys/file.h +configure:6426: result: yes +configure:6314: checking netinet/in.h usability +configure:6331: gcc -c -Os -Wall -g -O2 conftest.c >&5 +configure:6337: $? = 0 +configure:6351: result: yes +configure:6355: checking netinet/in.h presence +configure:6370: gcc -E conftest.c +configure:6376: $? = 0 +configure:6390: result: yes +configure:6418: checking for netinet/in.h +configure:6426: result: yes +configure:6454: checking vfork.h usability +configure:6471: gcc -c -Os -Wall -g -O2 conftest.c >&5 +conftest.c:58:19: error: vfork.h: No such file or directory +configure:6477: $? = 1 +configure: failed program was: +| /* confdefs.h. */ +| #define PACKAGE_NAME "" +| #define PACKAGE_TARNAME "" +| #define PACKAGE_VERSION "" +| #define PACKAGE_STRING "" +| #define PACKAGE_BUGREPORT "" +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_STDDEF_H 1 +| #define HAVE_LIMITS_H 1 +| #define HAVE_FLOAT_H 1 +| #define HAVE_FCNTL_H 1 +| #define HAVE_SYS_TIME_H 1 +| #define HAVE_SYS_FILE_H 1 +| #define HAVE_NETINET_IN_H 1 +| /* end confdefs.h. */ +| #include +| #ifdef HAVE_SYS_TYPES_H +| # include +| #endif +| #ifdef HAVE_SYS_STAT_H +| # include +| #endif +| #ifdef STDC_HEADERS +| # include +| # include +| #else +| # ifdef HAVE_STDLIB_H +| # include +| # endif +| #endif +| #ifdef HAVE_STRING_H +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H +| # include +| # endif +| # include +| #endif +| #ifdef HAVE_STRINGS_H +| # include +| #endif +| #ifdef HAVE_INTTYPES_H +| # include +| #endif +| #ifdef HAVE_STDINT_H +| # include +| #endif +| #ifdef HAVE_UNISTD_H +| # include +| #endif +| #include +configure:6491: result: no +configure:6495: checking vfork.h presence +configure:6510: gcc -E conftest.c +conftest.c:25:19: error: vfork.h: No such file or directory +configure:6516: $? = 1 +configure: failed program was: +| /* confdefs.h. */ +| #define PACKAGE_NAME "" +| #define PACKAGE_TARNAME "" +| #define PACKAGE_VERSION "" +| #define PACKAGE_STRING "" +| #define PACKAGE_BUGREPORT "" +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_STDDEF_H 1 +| #define HAVE_LIMITS_H 1 +| #define HAVE_FLOAT_H 1 +| #define HAVE_FCNTL_H 1 +| #define HAVE_SYS_TIME_H 1 +| #define HAVE_SYS_FILE_H 1 +| #define HAVE_NETINET_IN_H 1 +| /* end confdefs.h. */ +| #include +configure:6530: result: no +configure:6558: checking for vfork.h +configure:6566: result: no +configure:6584: checking for fork +configure:6640: gcc -o conftest -Os -Wall -g -O2 -Wl,-Bsymbolic-functions -Wl,-z,def conftest.c >&5 +conftest.c:48: warning: conflicting types for built-in function 'fork' +configure:6646: $? = 0 +configure:6664: result: yes +configure:6584: checking for vfork +configure:6640: gcc -o conftest -Os -Wall -g -O2 -Wl,-Bsymbolic-functions -Wl,-z,def conftest.c >&5 +configure:6646: $? = 0 +configure:6664: result: yes +configure:6675: checking for working fork +configure:6707: gcc -o conftest -Os -Wall -g -O2 -Wl,-Bsymbolic-functions -Wl,-z,def conftest.c >&5 +configure:6710: $? = 0 +configure:6716: ./conftest +configure:6719: $? = 0 +configure:6735: result: yes +configure:6756: checking for working vfork +configure:6894: result: yes +configure:7141: checking for gsm_create in -lgsm +configure:7176: gcc -o conftest -Os -Wall -g -O2 -Wl,-Bsymbolic-functions -Wl,-z,def conftest.c -lgsm >&5 +configure:7182: $? = 0 +configure:7200: result: yes +configure:7207: checking if system GSM library has WAV49 +configure:7247: gcc -o conftest -Os -Wall -g -O2 -Wl,-Bsymbolic-functions -Wl,-z,def conftest.c -lgsm >&5 +configure:7250: $? = 0 +configure:7256: ./conftest +configure:7259: $? = 0 +configure:7273: result: yes +configure:7281: checking System GSM +configure:7283: result: yes +configure:7304: result: using system GSM +configure:7315: checking for short +configure:7345: gcc -c conftest.c >&5 +configure:7351: $? = 0 +configure:7366: result: yes +configure:7373: checking size of short +configure:7675: gcc -o conftest -Wl,-Bsymbolic-functions -Wl,-z,def conftest.c >&5 +configure:7678: $? = 0 +configure:7684: ./conftest +configure:7687: $? = 0 +configure:7710: result: 2 +configure:7720: checking for int +configure:7750: gcc -c conftest.c >&5 +configure:7756: $? = 0 +configure:7771: result: yes +configure:7778: checking size of int +configure:8080: gcc -o conftest -Wl,-Bsymbolic-functions -Wl,-z,def conftest.c >&5 +configure:8083: $? = 0 +configure:8089: ./conftest +configure:8092: $? = 0 +configure:8115: result: 4 +configure:8125: checking for long +configure:8155: gcc -c conftest.c >&5 +configure:8161: $? = 0 +configure:8176: result: yes +configure:8183: checking size of long +configure:8485: gcc -o conftest -Wl,-Bsymbolic-functions -Wl,-z,def conftest.c >&5 +configure:8488: $? = 0 +configure:8494: ./conftest +configure:8497: $? = 0 +configure:8520: result: 4 +configure:8530: checking for long long +configure:8560: gcc -c conftest.c >&5 +configure:8566: $? = 0 +configure:8581: result: yes +configure:8588: checking size of long long +configure:8890: gcc -o conftest -Wl,-Bsymbolic-functions -Wl,-z,def conftest.c >&5 +configure:8893: $? = 0 +configure:8899: ./conftest +configure:8902: $? = 0 +configure:8925: result: 8 +configure:8960: checking internal Speex version +configure:8973: result: 1.1.11.1 +configure:9066: checking whether system Speex or internal Speex is more recent +configure:9070: checking for SPEEX +configure:9078: $PKG_CONFIG --exists --print-errors "speex >= $SPEEX_INTERNAL_VERSION" +configure:9081: $? = 0 +configure:9096: $PKG_CONFIG --exists --print-errors "speex >= $SPEEX_INTERNAL_VERSION" +configure:9099: $? = 0 +configure:9143: result: yes +configure:9151: result: using system Speex version 1.2rc1 +configure:9279: checking enable plugin supporting H.263 via patched FFMPEG +configure:9281: result: no +configure:9323: checking default to full capabilities at empty fmtp lines +configure:9325: result: yes +configure:9340: checking for LIBAVCODEC +configure:9348: $PKG_CONFIG --exists --print-errors "libavcodec >= 51.11.0" +Package libavcodec was not found in the pkg-config search path. +Perhaps you should add the directory containing `libavcodec.pc' +to the PKG_CONFIG_PATH environment variable +No package 'libavcodec' found +configure:9351: $? = 1 +configure:9366: $PKG_CONFIG --exists --print-errors "libavcodec >= 51.11.0" +Package libavcodec was not found in the pkg-config search path. +Perhaps you should add the directory containing `libavcodec.pc' +to the PKG_CONFIG_PATH environment variable +No package 'libavcodec' found +configure:9369: $? = 1 +No package 'libavcodec' found +configure:9397: result: no +configure:9853: checking libavcodec source +configure:9874: result: disabled +configure:9937: checking for X264 +configure:9945: $PKG_CONFIG --exists --print-errors "x264 >= 0.48" +Package x264 was not found in the pkg-config search path. +Perhaps you should add the directory containing `x264.pc' +to the PKG_CONFIG_PATH environment variable +No package 'x264' found +configure:9948: $? = 1 +configure:9963: $PKG_CONFIG --exists --print-errors "x264 >= 0.48" +Package x264 was not found in the pkg-config search path. +Perhaps you should add the directory containing `x264.pc' +to the PKG_CONFIG_PATH environment variable +No package 'x264' found +configure:9966: $? = 1 +No package 'x264' found +configure:9994: result: no +configure:10062: checking for THEORA +configure:10070: $PKG_CONFIG --exists --print-errors "theora" +configure:10073: $? = 0 +configure:10088: $PKG_CONFIG --exists --print-errors "theora" +configure:10091: $? = 0 +configure:10131: result: yes +configure:10148: checking for CELT +configure:10156: $PKG_CONFIG --exists --print-errors "celt" +Package celt was not found in the pkg-config search path. +Perhaps you should add the directory containing `celt.pc' +to the PKG_CONFIG_PATH environment variable +No package 'celt' found +configure:10159: $? = 1 +configure:10174: $PKG_CONFIG --exists --print-errors "celt" +Package celt was not found in the pkg-config search path. +Perhaps you should add the directory containing `celt.pc' +to the PKG_CONFIG_PATH environment variable +No package 'celt' found +configure:10177: $? = 1 +No package 'celt' found +configure:10205: result: no +configure:10263: checking dlfcn.h usability +configure:10280: gcc -c -Os -Wall -g -O2 conftest.c >&5 +configure:10286: $? = 0 +configure:10300: result: yes +configure:10304: checking dlfcn.h presence +configure:10319: gcc -E conftest.c +configure:10325: $? = 0 +configure:10339: result: yes +configure:10367: checking for dlfcn.h +configure:10375: result: yes +configure:10391: checking if dlopen is available +configure:10420: gcc -c -Os -Wall -g -O2 conftest.c >&5 +conftest.c: In function 'main': +conftest.c:40: warning: unused variable 'p' +configure:10426: $? = 0 +configure:10444: result: yes +configure:10520: checking for dlopen in -ldl +configure:10555: gcc -o conftest -Os -Wall -g -O2 -Wl,-Bsymbolic-functions -Wl,-z,def conftest.c -ldl >&5 +configure:10561: $? = 0 +configure:10579: result: yes +configure:10623: h264 support disabled due to disabled dependency HAVE_X264 +configure:10631: h264 support disabled due to disabled dependency HAVE_H264_DECODER +configure:10638: checking enable H.264 support +configure:10640: result: no +configure:10998: checking IXJ +configure:11000: result: no +configure:11036: checking enable voicetronix vpb +configure:11038: result: yes +configure:11073: checking capi20.h usability +configure:11090: gcc -c -Os -Wall -g -O2 conftest.c >&5 +conftest.c:70:20: error: capi20.h: No such file or directory +configure:11096: $? = 1 +configure: failed program was: +| /* confdefs.h. */ +| #define PACKAGE_NAME "" +| #define PACKAGE_TARNAME "" +| #define PACKAGE_VERSION "" +| #define PACKAGE_STRING "" +| #define PACKAGE_BUGREPORT "" +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_STDDEF_H 1 +| #define HAVE_LIMITS_H 1 +| #define HAVE_FLOAT_H 1 +| #define HAVE_FCNTL_H 1 +| #define HAVE_SYS_TIME_H 1 +| #define HAVE_SYS_FILE_H 1 +| #define HAVE_NETINET_IN_H 1 +| #define HAVE_FORK 1 +| #define HAVE_VFORK 1 +| #define HAVE_WORKING_VFORK 1 +| #define HAVE_WORKING_FORK 1 +| #define SIZEOF_SHORT 2 +| #define SIZEOF_INT 4 +| #define SIZEOF_LONG 4 +| #define SIZEOF_LONG_LONG 8 +| #define DEFAULT_TO_FULL_CAPABILITIES 1 +| #define HAVE_THEORA 1 +| #define HAVE_DLFCN_H 1 +| #define HAVE_VPB 1 +| /* end confdefs.h. */ +| #include +| #ifdef HAVE_SYS_TYPES_H +| # include +| #endif +| #ifdef HAVE_SYS_STAT_H +| # include +| #endif +| #ifdef STDC_HEADERS +| # include +| # include +| #else +| # ifdef HAVE_STDLIB_H +| # include +| # endif +| #endif +| #ifdef HAVE_STRING_H +| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H +| # include +| # endif +| # include +| #endif +| #ifdef HAVE_STRINGS_H +| # include +| #endif +| #ifdef HAVE_INTTYPES_H +| # include +| #endif +| #ifdef HAVE_STDINT_H +| # include +| #endif +| #ifdef HAVE_UNISTD_H +| # include +| #endif +| #include +configure:11110: result: no +configure:11114: checking capi20.h presence +configure:11129: gcc -E conftest.c +conftest.c:37:20: error: capi20.h: No such file or directory +configure:11135: $? = 1 +configure: failed program was: +| /* confdefs.h. */ +| #define PACKAGE_NAME "" +| #define PACKAGE_TARNAME "" +| #define PACKAGE_VERSION "" +| #define PACKAGE_STRING "" +| #define PACKAGE_BUGREPORT "" +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_STDDEF_H 1 +| #define HAVE_LIMITS_H 1 +| #define HAVE_FLOAT_H 1 +| #define HAVE_FCNTL_H 1 +| #define HAVE_SYS_TIME_H 1 +| #define HAVE_SYS_FILE_H 1 +| #define HAVE_NETINET_IN_H 1 +| #define HAVE_FORK 1 +| #define HAVE_VFORK 1 +| #define HAVE_WORKING_VFORK 1 +| #define HAVE_WORKING_FORK 1 +| #define SIZEOF_SHORT 2 +| #define SIZEOF_INT 4 +| #define SIZEOF_LONG 4 +| #define SIZEOF_LONG_LONG 8 +| #define DEFAULT_TO_FULL_CAPABILITIES 1 +| #define HAVE_THEORA 1 +| #define HAVE_DLFCN_H 1 +| #define HAVE_VPB 1 +| /* end confdefs.h. */ +| #include +configure:11149: result: no +configure:11177: checking for capi20.h +configure:11185: result: no +configure:11203: checking CAPI +configure:11205: result: no +configure:11221: checking for t38_indicator in -lspandsp +configure:11256: gcc -o conftest -Os -Wall -g -O2 -Wl,-Bsymbolic-functions -Wl,-z,def conftest.c -lspandsp -lspandsp >&5 +/usr/bin/ld: cannot find -lspandsp +collect2: ld returned 1 exit status +configure:11262: $? = 1 +configure: failed program was: +| /* confdefs.h. */ +| #define PACKAGE_NAME "" +| #define PACKAGE_TARNAME "" +| #define PACKAGE_VERSION "" +| #define PACKAGE_STRING "" +| #define PACKAGE_BUGREPORT "" +| #define STDC_HEADERS 1 +| #define HAVE_SYS_TYPES_H 1 +| #define HAVE_SYS_STAT_H 1 +| #define HAVE_STDLIB_H 1 +| #define HAVE_STRING_H 1 +| #define HAVE_MEMORY_H 1 +| #define HAVE_STRINGS_H 1 +| #define HAVE_INTTYPES_H 1 +| #define HAVE_STDINT_H 1 +| #define HAVE_UNISTD_H 1 +| #define HAVE_STDDEF_H 1 +| #define HAVE_LIMITS_H 1 +| #define HAVE_FLOAT_H 1 +| #define HAVE_FCNTL_H 1 +| #define HAVE_SYS_TIME_H 1 +| #define HAVE_SYS_FILE_H 1 +| #define HAVE_NETINET_IN_H 1 +| #define HAVE_FORK 1 +| #define HAVE_VFORK 1 +| #define HAVE_WORKING_VFORK 1 +| #define HAVE_WORKING_FORK 1 +| #define SIZEOF_SHORT 2 +| #define SIZEOF_INT 4 +| #define SIZEOF_LONG 4 +| #define SIZEOF_LONG_LONG 8 +| #define DEFAULT_TO_FULL_CAPABILITIES 1 +| #define HAVE_THEORA 1 +| #define HAVE_DLFCN_H 1 +| #define HAVE_VPB 1 +| /* end confdefs.h. */ +| +| /* Override any GCC internal prototype to avoid an error. +| Use char because int might match the return type of a GCC +| builtin and then its argument prototype would still apply. */ +| #ifdef __cplusplus +| extern "C" +| #endif +| char t38_indicator (); +| int +| main () +| { +| return t38_indicator (); +| ; +| return 0; +| } +configure:11280: result: no +configure:11668: creating ./config.status + +## ---------------------- ## +## Running config.status. ## +## ---------------------- ## + +This file was extended by config.status, which was +generated by GNU Autoconf 2.61. Invocation command line was + + CONFIG_FILES = + CONFIG_HEADERS = + CONFIG_LINKS = + CONFIG_COMMANDS = + $ ./config.status + +on trabajo + +config.status:668: creating audio/G722/Makefile +config.status:668: creating audio/GSM0610/Makefile +config.status:668: creating audio/gsm-amr/Makefile +config.status:668: creating audio/Speex/Makefile +config.status:668: creating audio/LPC_10/Makefile +config.status:668: creating audio/G726/Makefile +config.status:668: creating audio/IMA_ADPCM/Makefile +config.status:668: creating audio/SBC/Makefile +config.status:668: creating audio/celt/Makefile +config.status:668: creating video/H.261-vic/Makefile +config.status:668: creating video/H.263-1998/Makefile +config.status:668: creating video/MPEG4-ffmpeg/Makefile +config.status:668: creating video/H.264/Makefile +config.status:668: creating video/H.264/gpl/Makefile +config.status:668: creating video/THEORA/Makefile +config.status:668: creating LID/IxJ/Makefile +config.status:668: creating LID/VPB/Makefile +config.status:668: creating LID/CAPI/Makefile +config.status:668: creating fax/fax_spandsp/Makefile +config.status:668: creating Makefile +config.status:668: creating audio/Speex/libspeex/speex_config_types.h +configure:12783: creating ./config.status + +## ---------------------- ## +## Running config.status. ## +## ---------------------- ## + +This file was extended by config.status, which was +generated by GNU Autoconf 2.61. Invocation command line was + + CONFIG_FILES = + CONFIG_HEADERS = + CONFIG_LINKS = + CONFIG_COMMANDS = + $ ./config.status + +on trabajo + +config.status:685: creating audio/G722/Makefile +config.status:685: creating audio/GSM0610/Makefile +config.status:685: creating audio/gsm-amr/Makefile +config.status:685: creating audio/Speex/Makefile +config.status:685: creating audio/LPC_10/Makefile +config.status:685: creating audio/G726/Makefile +config.status:685: creating audio/IMA_ADPCM/Makefile +config.status:685: creating audio/SBC/Makefile +config.status:685: creating audio/celt/Makefile +config.status:685: creating video/H.261-vic/Makefile +config.status:685: creating video/H.263-1998/Makefile +config.status:685: creating video/MPEG4-ffmpeg/Makefile +config.status:685: creating video/H.264/Makefile +config.status:685: creating video/H.264/gpl/Makefile +config.status:685: creating video/THEORA/Makefile +config.status:685: creating LID/IxJ/Makefile +config.status:685: creating LID/VPB/Makefile +config.status:685: creating LID/CAPI/Makefile +config.status:685: creating fax/fax_spandsp/Makefile +config.status:685: creating Makefile +config.status:685: creating audio/Speex/libspeex/speex_config_types.h +config.status:685: creating plugin-config.h +config.status:922: plugin-config.h is unchanged + +## ---------------- ## +## Cache variables. ## +## ---------------- ## + +ac_cv_build=i486-pc-linux-gnu +ac_cv_c_compiler_gnu=yes +ac_cv_cxx_compiler_gnu=yes +ac_cv_env_CCC_set= +ac_cv_env_CCC_value= +ac_cv_env_CC_set= +ac_cv_env_CC_value= +ac_cv_env_CELT_CFLAGS_set= +ac_cv_env_CELT_CFLAGS_value= +ac_cv_env_CELT_LIBS_set= +ac_cv_env_CELT_LIBS_value= +ac_cv_env_CFLAGS_set=set +ac_cv_env_CFLAGS_value='-Wall -g -O2' +ac_cv_env_CPPFLAGS_set=set +ac_cv_env_CPPFLAGS_value= +ac_cv_env_CPP_set= +ac_cv_env_CPP_value= +ac_cv_env_CXXFLAGS_set=set +ac_cv_env_CXXFLAGS_value='-g -O2' +ac_cv_env_CXX_set= +ac_cv_env_CXX_value= +ac_cv_env_LDFLAGS_set=set +ac_cv_env_LDFLAGS_value='-Wl,-Bsymbolic-functions -Wl,-z,def' +ac_cv_env_LIBAVCODEC_CFLAGS_set= +ac_cv_env_LIBAVCODEC_CFLAGS_value= +ac_cv_env_LIBAVCODEC_LIBS_set= +ac_cv_env_LIBAVCODEC_LIBS_value= +ac_cv_env_LIBS_set= +ac_cv_env_LIBS_value= +ac_cv_env_PKG_CONFIG_set= +ac_cv_env_PKG_CONFIG_value= +ac_cv_env_SPEEX_CFLAGS_set= +ac_cv_env_SPEEX_CFLAGS_value= +ac_cv_env_SPEEX_LIBS_set= +ac_cv_env_SPEEX_LIBS_value= +ac_cv_env_THEORA_CFLAGS_set= +ac_cv_env_THEORA_CFLAGS_value= +ac_cv_env_THEORA_LIBS_set= +ac_cv_env_THEORA_LIBS_value= +ac_cv_env_X264_CFLAGS_set= +ac_cv_env_X264_CFLAGS_value= +ac_cv_env_X264_LIBS_set= +ac_cv_env_X264_LIBS_value= +ac_cv_env_build_alias_set=set +ac_cv_env_build_alias_value=i486-linux-gnu +ac_cv_env_host_alias_set= +ac_cv_env_host_alias_value= +ac_cv_env_target_alias_set= +ac_cv_env_target_alias_value= +ac_cv_func_fork=yes +ac_cv_func_fork_works=yes +ac_cv_func_vfork=yes +ac_cv_func_vfork_works=yes +ac_cv_header_capi20_h=no +ac_cv_header_dlfcn_h=yes +ac_cv_header_fcntl_h=yes +ac_cv_header_float_h=yes +ac_cv_header_inttypes_h=yes +ac_cv_header_limits_h=yes +ac_cv_header_memory_h=yes +ac_cv_header_netinet_in_h=yes +ac_cv_header_stdc=yes +ac_cv_header_stddef_h=yes +ac_cv_header_stdint_h=yes +ac_cv_header_stdlib_h=yes +ac_cv_header_string_h=yes +ac_cv_header_strings_h=yes +ac_cv_header_sys_file_h=yes +ac_cv_header_sys_stat_h=yes +ac_cv_header_sys_time_h=yes +ac_cv_header_sys_types_h=yes +ac_cv_header_unistd_h=yes +ac_cv_header_vfork_h=no +ac_cv_host=i486-pc-linux-gnu +ac_cv_lib_dl_dlopen=yes +ac_cv_lib_gsm_gsm_create=yes +ac_cv_lib_spandsp_t38_indicator=no +ac_cv_objext=o +ac_cv_path_EGREP='/bin/grep -E' +ac_cv_path_GREP=/bin/grep +ac_cv_path_ac_pt_PKG_CONFIG=/usr/bin/pkg-config +ac_cv_path_install='/usr/bin/install -c' +ac_cv_prog_CPP='gcc -E' +ac_cv_prog_ac_ct_CC=gcc +ac_cv_prog_ac_ct_CXX=g++ +ac_cv_prog_ac_ct_LDD=ldd +ac_cv_prog_ac_ct_NM=nm +ac_cv_prog_ac_ct_OBJDUMP=objdump +ac_cv_prog_ac_ct_RANLIB=ranlib +ac_cv_prog_cc_c89= +ac_cv_prog_cc_g=yes +ac_cv_prog_cxx_g=yes +ac_cv_sizeof_int=4 +ac_cv_sizeof_long=4 +ac_cv_sizeof_long_long=8 +ac_cv_sizeof_short=2 +ac_cv_target=i486-pc-linux-gnu +ac_cv_type_int=yes +ac_cv_type_long=yes +ac_cv_type_long_long=yes +ac_cv_type_short=yes +pkg_cv_SPEEX_CFLAGS=' ' +pkg_cv_SPEEX_LIBS='-lspeex ' +pkg_cv_THEORA_CFLAGS=' ' +pkg_cv_THEORA_LIBS='-ltheora -logg ' + +## ----------------- ## +## Output variables. ## +## ----------------- ## + +AC_PLUGIN_DIR='opal-3.6.1/codecs/audio' +CC='gcc' +CELT_CFLAGS='' +CELT_LIBS='' +CFLAGS=' -Os -Wall -g -O2' +CPP='gcc -E' +CPPFLAGS='' +CXX='g++' +CXXFLAGS=' -Os -g -O2' +DEFAULT_TO_FULL_CAPABILITIES='yes' +DEFS='-DHAVE_CONFIG_H' +DL_LIBS='-ldl' +ECHO_C='' +ECHO_N='-n' +ECHO_T='' +EGREP='/bin/grep -E' +EXEEXT='' +FAX_PLUGIN_DIR='opal-3.6.1/fax' +GREP='/bin/grep' +GSM_CFLAGS='' +GSM_LIBS='-lgsm' +GSM_SYSTEM='yes' +HAVE_CAPI='no' +HAVE_CELT='no' +HAVE_H263='no' +HAVE_H263P='' +HAVE_H264='no' +HAVE_IXJ='no' +HAVE_LIBAVCODEC='no' +HAVE_LIBAVCODEC_RTP_MODE='' +HAVE_LIBDL='yes' +HAVE_MPEG4='' +HAVE_SBC='' +HAVE_SPANDSP='no' +HAVE_THEORA='yes' +HAVE_VPB='yes' +HAVE_X264='no' +INSTALL_DATA='${INSTALL} -m 644' +INSTALL_PROGRAM='${INSTALL}' +INSTALL_SCRIPT='${INSTALL}' +LDD='ldd' +LDFLAGS='-Wl,-Bsymbolic-functions -Wl,-z,def' +LDSO='-shared -Wl,-soname,$(SONAME)' +LIBAVCODEC_CFLAGS='' +LIBAVCODEC_LIBS='' +LIBAVCODEC_LIB_NAME='' +LIBAVCODEC_SOURCE_DIR='' +LIBOBJS='' +LIBS='' +LID_PLUGIN_DIR='opal-3.6.1/lid' +LTLIBOBJS='' +NM='nm' +OBJDUMP='objdump' +OBJEXT='o' +PACKAGE_BUGREPORT='' +PACKAGE_NAME='' +PACKAGE_STRING='' +PACKAGE_TARNAME='' +PACKAGE_VERSION='' +PATH_SEPARATOR=':' +PKG_CONFIG='/usr/bin/pkg-config' +PLUGINEXT='so' +RANLIB='ranlib' +SHELL='/bin/bash' +SIZE16='short' +SIZE32='int' +SPANDSP_LIBS='' +SPEEX_CFLAGS=' ' +SPEEX_LIBS='-lspeex ' +SPEEX_SYSTEM='yes' +STDCCFLAGS=' -fPIC' +THEORA_CFLAGS=' ' +THEORA_LIBS='-ltheora -logg ' +VC_PLUGIN_DIR='opal-3.6.1/codecs/video' +WIN32='no' +X264_CFLAGS='' +X264_LIBS='' +X264_LIB_NAME='' +X264_LINK_STATIC='no' +ac_ct_CC='gcc' +ac_ct_CXX='g++' +bindir='${exec_prefix}/bin' +build='i486-pc-linux-gnu' +build_alias='i486-linux-gnu' +build_cpu='i486' +build_os='linux-gnu' +build_vendor='pc' +datadir='${datarootdir}' +datarootdir='${prefix}/share' +docdir='${datarootdir}/doc/${PACKAGE}' +dvidir='${docdir}' +exec_prefix='${prefix}' +host='i486-pc-linux-gnu' +host_alias='' +host_cpu='i486' +host_os='linux-gnu' +host_vendor='pc' +htmldir='${docdir}' +includedir='${prefix}/include' +infodir='${datarootdir}/info' +libdir='${exec_prefix}/lib' +libexecdir='${exec_prefix}/libexec' +localedir='${datarootdir}/locale' +localstatedir='${prefix}/var' +mandir='${datarootdir}/man' +oldincludedir='/usr/include' +pdfdir='${docdir}' +prefix='/usr' +program_transform_name='s,x,x,' +psdir='${docdir}' +sbindir='${exec_prefix}/sbin' +sharedstatedir='${prefix}/com' +sysconfdir='${prefix}/etc' +target='i486-pc-linux-gnu' +target_alias='' +target_cpu='i486' +target_os='linux-gnu' +target_vendor='pc' + +## ----------- ## +## confdefs.h. ## +## ----------- ## + +#define PACKAGE_NAME "" +#define PACKAGE_TARNAME "" +#define PACKAGE_VERSION "" +#define PACKAGE_STRING "" +#define PACKAGE_BUGREPORT "" +#define STDC_HEADERS 1 +#define HAVE_SYS_TYPES_H 1 +#define HAVE_SYS_STAT_H 1 +#define HAVE_STDLIB_H 1 +#define HAVE_STRING_H 1 +#define HAVE_MEMORY_H 1 +#define HAVE_STRINGS_H 1 +#define HAVE_INTTYPES_H 1 +#define HAVE_STDINT_H 1 +#define HAVE_UNISTD_H 1 +#define HAVE_STDDEF_H 1 +#define HAVE_LIMITS_H 1 +#define HAVE_FLOAT_H 1 +#define HAVE_FCNTL_H 1 +#define HAVE_SYS_TIME_H 1 +#define HAVE_SYS_FILE_H 1 +#define HAVE_NETINET_IN_H 1 +#define HAVE_FORK 1 +#define HAVE_VFORK 1 +#define HAVE_WORKING_VFORK 1 +#define HAVE_WORKING_FORK 1 +#define SIZEOF_SHORT 2 +#define SIZEOF_INT 4 +#define SIZEOF_LONG 4 +#define SIZEOF_LONG_LONG 8 +#define DEFAULT_TO_FULL_CAPABILITIES 1 +#define HAVE_THEORA 1 +#define HAVE_DLFCN_H 1 +#define HAVE_VPB 1 + +configure: exit 0 --- opal-3.6.1~dfsg.orig/plugins/LID/IxJ/Makefile +++ opal-3.6.1~dfsg/plugins/LID/IxJ/Makefile @@ -32,10 +32,10 @@ # STDCCFLAGS = -fPIC -CXXFLAGS = -Os +CXXFLAGS = -Os -g -O2 LID_PLUGIN_DIR=opal-3.6.1/lid -prefix=/usr/local +prefix=/usr exec_prefix=${prefix} libdir=${exec_prefix}/lib --- opal-3.6.1~dfsg.orig/plugins/LID/VPB/Makefile +++ opal-3.6.1~dfsg/plugins/LID/VPB/Makefile @@ -40,10 +40,10 @@ # STDCCFLAGS = -fPIC -CXXFLAGS = -Os +CXXFLAGS = -Os -g -O2 LID_PLUGIN_DIR=opal-3.6.1/lid -prefix=/usr/local +prefix=/usr exec_prefix=${prefix} libdir=${exec_prefix}/lib target_os=linux-gnu --- opal-3.6.1~dfsg.orig/plugins/LID/CAPI/Makefile +++ opal-3.6.1~dfsg/plugins/LID/CAPI/Makefile @@ -29,9 +29,9 @@ # STDCCFLAGS = -fPIC -CXXFLAGS = -Os +CXXFLAGS = -Os -g -O2 LID_PLUGIN_DIR=opal-3.6.1/lid -prefix=/usr/local +prefix=/usr exec_prefix=${prefix} libdir=${exec_prefix}/lib --- opal-3.6.1~dfsg.orig/plugins/audio/gsm-amr/Makefile +++ opal-3.6.1~dfsg/plugins/audio/gsm-amr/Makefile @@ -8,7 +8,7 @@ # $Date: 2008-09-17 19:45:23 +0000 (Wed, 17 Sep 2008) $ AC_PLUGIN_DIR=opal-3.6.1/codecs/audio -prefix=/usr/local +prefix=/usr exec_prefix=${prefix} libdir=${exec_prefix}/lib target_os=linux-gnu @@ -21,12 +21,12 @@ SONAME = $(BASENAME) CC =gcc -CFLAGS = -Os +CFLAGS = -Os -Wall -g -O2 CXX =g++ LDSO =-shared -Wl,-soname,$(SONAME) PLUGINEXT =so STDCCFLAGS = -fPIC -LDFLAGS = +LDFLAGS =-Wl,-Bsymbolic-functions -Wl,-z,def SRCS = amrcodec.c \ interf_enc.c \ --- opal-3.6.1~dfsg.orig/plugins/audio/G726/Makefile +++ opal-3.6.1~dfsg/plugins/audio/G726/Makefile @@ -51,7 +51,7 @@ # # AC_PLUGIN_DIR=opal-3.6.1/codecs/audio -prefix=/usr/local +prefix=/usr exec_prefix=${prefix} libdir=${exec_prefix}/lib target_os=linux-gnu @@ -64,12 +64,12 @@ PLUGINDIR=../.. CC =gcc -CFLAGS = -Os +CFLAGS = -Os -Wall -g -O2 CXX =g++ LDSO =-shared -Wl,-soname,$(SONAME) PLUGINEXT =so STDCCFLAGS = -fPIC -LDFLAGS = +LDFLAGS =-Wl,-Bsymbolic-functions -Wl,-z,def EXTRACFLAGS =-I$(PLUGINDIR) SRCS += g726codec.c \ --- opal-3.6.1~dfsg.orig/plugins/audio/Speex/Makefile +++ opal-3.6.1~dfsg/plugins/audio/Speex/Makefile @@ -67,7 +67,7 @@ # AC_PLUGIN_DIR=opal-3.6.1/codecs/audio -prefix=/usr/local +prefix=/usr exec_prefix=${prefix} libdir=${exec_prefix}/lib target_os=linux-gnu @@ -77,18 +77,18 @@ SONAME = speexcodec CC =gcc -CFLAGS = -Os -CXXFLAGS = -Os +CFLAGS = -Os -Wall -g -O2 +CXXFLAGS = -Os -g -O2 CXX =g++ LDSO =-shared -Wl,-soname,$(SONAME) PLUGINEXT =so STDCCFLAGS = -fPIC -LDFLAGS = +LDFLAGS =-Wl,-Bsymbolic-functions -Wl,-z,def -SPEEX_CFLAGS = -SPEEX_LIBS = +SPEEX_CFLAGS = +SPEEX_LIBS =-lspeex -SPEEX_SYSTEM=no +SPEEX_SYSTEM=yes SRCS = speexcodec.cxx --- opal-3.6.1~dfsg.orig/plugins/audio/GSM0610/Makefile +++ opal-3.6.1~dfsg/plugins/audio/GSM0610/Makefile @@ -73,13 +73,13 @@ # AC_PLUGIN_DIR=opal-3.6.1/codecs/audio -prefix=/usr/local +prefix=/usr exec_prefix=${prefix} libdir=${exec_prefix}/lib target_os=linux-gnu -GSM_SYSTEM=no -GSM_LIBS= +GSM_SYSTEM=yes +GSM_LIBS=-lgsm GSM_CFLAGS= SONAME = gsm0610 H323_EMBEDDED_GSM=@H323_EMBEDDED_GSM@ @@ -89,12 +89,12 @@ PLUGINDIR =../.. CC =gcc -CFLAGS = -Os +CFLAGS = -Os -Wall -g -O2 CXX =g++ LDSO =-shared -Wl,-soname,$(SONAME) PLUGINEXT =so STDCCFLAGS = -fPIC -LDFLAGS = +LDFLAGS =-Wl,-Bsymbolic-functions -Wl,-z,def EXTRACFLAGS =-I$(PLUGINDIR) SRCS += gsm06_10_codec.c --- opal-3.6.1~dfsg.orig/plugins/audio/SBC/Makefile +++ opal-3.6.1~dfsg/plugins/audio/SBC/Makefile @@ -23,7 +23,7 @@ # AC_PLUGIN_DIR=opal-3.6.1/codecs/audio -prefix=/usr/local +prefix=/usr exec_prefix=${prefix} libdir=${exec_prefix}/lib @@ -33,13 +33,13 @@ SAMPLERATELIB = -Lsamplerate CC =gcc -CFLAGS = -Os -CXXFLAGS = -Os +CFLAGS = -Os -Wall -g -O2 +CXXFLAGS = -Os -g -O2 CXX =g++ LDSO =-shared -Wl,-soname,$(SONAME) PLUGINEXT =so STDCCFLAGS = -fPIC -DSBC_DISABLE_PTLIB=1 -DOPAL_G711PLC=1 -LDFLAGS = +LDFLAGS =-Wl,-Bsymbolic-functions -Wl,-z,def SBC_CFLAGS =@SBC_CFLAGS@ SBC_LIBS =@SBC_LIBS@ --- opal-3.6.1~dfsg.orig/plugins/audio/LPC_10/Makefile +++ opal-3.6.1~dfsg/plugins/audio/LPC_10/Makefile @@ -50,7 +50,7 @@ # AC_PLUGIN_DIR=opal-3.6.1/codecs/audio -prefix=/usr/local +prefix=/usr exec_prefix=${prefix} libdir=${exec_prefix}/lib target_os=linux-gnu @@ -62,12 +62,12 @@ PLUGINDIR=../.. CC =gcc -CFLAGS = -Os +CFLAGS = -Os -Wall -g -O2 CXX =g++ LDSO =-shared -Wl,-soname,$(SONAME) PLUGINEXT =so STDCCFLAGS = -fPIC -LDFLAGS = +LDFLAGS =-Wl,-Bsymbolic-functions -Wl,-z,def EXTRACFLAGS =-I$(PLUGINDIR) HEADER_FILES += $(LPC10_INCDIR)/lpc10.h --- opal-3.6.1~dfsg.orig/plugins/audio/G722/Makefile +++ opal-3.6.1~dfsg/plugins/audio/G722/Makefile @@ -25,7 +25,7 @@ # AC_PLUGIN_DIR=opal-3.6.1/codecs/audio -prefix=/usr/local +prefix=/usr exec_prefix=${prefix} libdir=${exec_prefix}/lib target_os=linux-gnu @@ -41,7 +41,7 @@ LDSO =-shared -Wl,-soname,$(SONAME) PLUGINEXT =so STDCCFLAGS = -fPIC -LDFLAGS = +LDFLAGS =-Wl,-Bsymbolic-functions -Wl,-z,def SRCS += g722codec.c \ $(SRCDIR)/g722_encode.c \ --- opal-3.6.1~dfsg.orig/plugins/audio/IMA_ADPCM/Makefile +++ opal-3.6.1~dfsg/plugins/audio/IMA_ADPCM/Makefile @@ -49,7 +49,7 @@ # AC_PLUGIN_DIR=opal-3.6.1/codecs/audio -prefix=/usr/local +prefix=/usr exec_prefix=${prefix} libdir=${exec_prefix}/lib target_os=linux-gnu @@ -61,12 +61,12 @@ PLUGINDIR=../.. CC =gcc -CFLAGS = -Os +CFLAGS = -Os -Wall -g -O2 CXX =g++ LDSO =-shared -Wl,-soname,$(SONAME) PLUGINEXT =so STDCCFLAGS = -fPIC -LDFLAGS = +LDFLAGS =-Wl,-Bsymbolic-functions -Wl,-z,def EXTRACFLAGS =-I$(PLUGINDIR) SRCS += ima_adpcm.c --- opal-3.6.1~dfsg.orig/plugins/audio/celt/Makefile +++ opal-3.6.1~dfsg/plugins/audio/celt/Makefile @@ -5,7 +5,7 @@ # AC_PLUGIN_DIR=opal-3.6.1/codecs/audio -prefix=/usr/local +prefix=/usr exec_prefix=${prefix} libdir=${exec_prefix}/lib target_os=linux-gnu @@ -16,12 +16,12 @@ SONAME = $(BASENAME) CC =gcc -CFLAGS = -Os +CFLAGS = -Os -Wall -g -O2 CXX =g++ LDSO =-shared -Wl,-soname,$(SONAME) PLUGINEXT =so STDCCFLAGS = -fPIC -LDFLAGS = +LDFLAGS =-Wl,-Bsymbolic-functions -Wl,-z,def LIBS = SRCS = celtcodec.c --- opal-3.6.1~dfsg.orig/plugins/fax/fax_spandsp/Makefile +++ opal-3.6.1~dfsg/plugins/fax/fax_spandsp/Makefile @@ -34,10 +34,10 @@ # FAX_PLUGIN_DIR=opal-3.6.1/fax -prefix=/usr/local +prefix=/usr exec_prefix=${prefix} libdir=${exec_prefix}/lib -CXXFLAGS = -Os +CXXFLAGS = -Os -g -O2 SONAME = spandsp STDCCFLAGS += -fPIC -fPIC @@ -52,7 +52,7 @@ LDSO =-shared -Wl,-soname,$(SONAME) PLUGINEXT =so STDCCFLAGS = -fPIC -LDFLAGS = +LDFLAGS =-Wl,-Bsymbolic-functions -Wl,-z,def EXTRALIBS = -lspandsp -ltiff SRCS += spandsp_fax.cpp spandsp_util/spandsp_if.cpp --- opal-3.6.1~dfsg.orig/plugins/video/THEORA/Makefile +++ opal-3.6.1~dfsg/plugins/video/THEORA/Makefile @@ -21,7 +21,7 @@ # VC_PLUGIN_DIR=opal-3.6.1/codecs/video -prefix=/usr/local +prefix=/usr exec_prefix=${prefix} libdir=${exec_prefix}/lib target_os=linux-gnu @@ -34,13 +34,13 @@ PLUGINDIR=../.. CC =gcc -CFLAGS = -Os +CFLAGS = -Os -Wall -g -O2 CXX =g++ LDSO =-shared -Wl,-soname,$(SONAME) PLUGINEXT =so STDCCFLAGS = -fPIC -LDFLAGS = -THEORA_LIBS = +LDFLAGS =-Wl,-Bsymbolic-functions -Wl,-z,def +THEORA_LIBS =-ltheora -logg EXTRACCFLAGS += -I$(COMMONDIR) -I$(PLUGINDIR) --- opal-3.6.1~dfsg.orig/plugins/video/MPEG4-ffmpeg/Makefile +++ opal-3.6.1~dfsg/plugins/video/MPEG4-ffmpeg/Makefile @@ -45,7 +45,7 @@ # VC_PLUGIN_DIR=opal-3.6.1/codecs/video -prefix=/usr/local +prefix=/usr exec_prefix=${prefix} libdir=${exec_prefix}/lib target_os=linux-gnu @@ -57,12 +57,12 @@ PLUGINDIR=../../ CC =gcc -CFLAGS = -Os +CFLAGS = -Os -Wall -g -O2 CXX =g++ LDSO =-shared -Wl,-soname,$(SONAME) PLUGINEXT =so STDCCFLAGS = -fPIC -LDFLAGS = +LDFLAGS =-Wl,-Bsymbolic-functions -Wl,-z,def vpath %.cxx $(COMMONDIR) vpath %.o $(OBJDIR) --- opal-3.6.1~dfsg.orig/plugins/video/H.264/Makefile +++ opal-3.6.1~dfsg/plugins/video/H.264/Makefile @@ -69,7 +69,7 @@ # VC_PLUGIN_DIR=opal-3.6.1/codecs/video -prefix=/usr/local +prefix=/usr exec_prefix=${prefix} libdir=${exec_prefix}/lib target_os=linux-gnu @@ -86,12 +86,12 @@ SONAME =$(BASENAME) CC =gcc -CFLAGS = -Os +CFLAGS = -Os -Wall -g -O2 CXX =g++ LDSO =-shared -Wl,-soname,$(SONAME) PLUGINEXT =so STDCCFLAGS = -fPIC -LDFLAGS = +LDFLAGS =-Wl,-Bsymbolic-functions -Wl,-z,def LIBAVCODEC_CFLAGS= EXTRACCFLAGS += $(LIBAVCODEC_CFLAGS) -I$(COMMONDIR) -I$(PLUGINDIR) -DLIB_DIR='"$(libdir)"' -DVC_PLUGIN_DIR='"$(VC_PLUGIN_DIR)"' -DLICENCE_MPL --- opal-3.6.1~dfsg.orig/plugins/video/H.264/gpl/Makefile +++ opal-3.6.1~dfsg/plugins/video/H.264/gpl/Makefile @@ -69,7 +69,7 @@ # VC_PLUGIN_DIR=opal-3.6.1/codecs/video -prefix=/usr/local +prefix=/usr exec_prefix=${prefix} libdir=${exec_prefix}/lib target_os=linux-gnu @@ -84,11 +84,11 @@ SONAME =$(BASENAME) CC =gcc -CFLAGS = -Os +CFLAGS = -Os -Wall -g -O2 CXX =g++ PLUGINEXT =so STDCCFLAGS = -fPIC -LDFLAGS = +LDFLAGS =-Wl,-Bsymbolic-functions -Wl,-z,def X264_CFLAGS = X264_LIBS = X264_LINK_STATIC=no --- opal-3.6.1~dfsg.orig/plugins/video/H.261-vic/Makefile +++ opal-3.6.1~dfsg/plugins/video/H.261-vic/Makefile @@ -56,7 +56,7 @@ # VC_PLUGIN_DIR=opal-3.6.1/codecs/video -prefix=/usr/local +prefix=/usr exec_prefix=${prefix} libdir=${exec_prefix}/lib target_os=linux-gnu @@ -70,12 +70,12 @@ PLUGINDIR =../../ CC =gcc -CFLAGS = -Os +CFLAGS = -Os -Wall -g -O2 CXX =g++ LDSO =-shared -Wl,-soname,$(SONAME) PLUGINEXT =so STDCCFLAGS = -fPIC -LDFLAGS = +LDFLAGS =-Wl,-Bsymbolic-functions -Wl,-z,def EXTRACCFLAGS += -I$(COMMONDIR) -I$(PLUGINDIR) --- opal-3.6.1~dfsg.orig/plugins/video/H.263-1998/Makefile +++ opal-3.6.1~dfsg/plugins/video/H.263-1998/Makefile @@ -21,7 +21,7 @@ # VC_PLUGIN_DIR=opal-3.6.1/codecs/video -prefix=/usr/local +prefix=/usr exec_prefix=${prefix} libdir=${exec_prefix}/lib target_os=linux-gnu @@ -35,13 +35,13 @@ OBJDIR =./obj CC =gcc -CFLAGS = -Os +CFLAGS = -Os -Wall -g -O2 CXX =g++ LDSO =-shared -Wl,-soname,$(SONAME) PLUGINEXT =so STDCCFLAGS = -fPIC LIBAVCODEC_CFLAGS= -LDFLAGS = +LDFLAGS =-Wl,-Bsymbolic-functions -Wl,-z,def HAVE_LIBAVCODEC_RTP_MODE= ifdef HAVE_LIBAVCODEC_RTP_MODE --- opal-3.6.1~dfsg.orig/debian/simpleopal.1 +++ opal-3.6.1~dfsg/debian/simpleopal.1 @@ -0,0 +1,17 @@ +.\" Written by Eugen Dedu, Eugen.Dedu@pu-pm.univ-fcomte.fr +.\" +.TH simpleopal 1 2008-09-21 GNU simpleopal +.SH NAME +simpleopal \- simple SIP and H323 client +.SH SYNOPSIS +.B simpleopal \fR[\fIoptions\fR] \fB-l +.br +.B simpleopal \fR[\fIoptions\fR] [\fIalias@\fR]\fBhostname\fR (no gatekeeper) +.br +.B simpleopal \fR[\fIoptions\fR] \fBalias\fR[\fI@hostname\fR] (with gatekeeper) +.SH DESCRIPTION +Small SIP and H323 client. +.SH OPTIONS +Please execute \fBsimpleopal \-\-help\fR for help. +.SH NOTES +This program is one of the examples given in the OPAL library. --- opal-3.6.1~dfsg.orig/debian/simpleopal.manpages +++ opal-3.6.1~dfsg/debian/simpleopal.manpages @@ -0,0 +1 @@ +debian/simpleopal.1 --- opal-3.6.1~dfsg.orig/debian/libopal-doc.docs +++ opal-3.6.1~dfsg/debian/libopal-doc.docs @@ -0,0 +1,2 @@ +samples +html --- opal-3.6.1~dfsg.orig/debian/simpleopal.dirs +++ opal-3.6.1~dfsg/debian/simpleopal.dirs @@ -0,0 +1 @@ +usr/bin --- opal-3.6.1~dfsg.orig/debian/control +++ opal-3.6.1~dfsg/debian/control @@ -0,0 +1,84 @@ +Source: opal +Section: libs +Priority: optional +Maintainer: Debian VoIP Team +Uploaders: Mark Purcell , Eugen Dedu +Build-Depends: debhelper, libpt2.6.1-dev, dpatch, doxygen, autotools-dev, pkg-config, libtheora-dev, libgsm1-dev, libspeex-dev, libspeexdsp-dev +Build-Conflicts: libopal3.4.2, libopal3.4.1, libopal3.3-beta1, libopal-snapshot-dev, libopal-dev, libopal-2.2, libopal-2.2.0, libopal-2.2-ptrace, libopal-2.2-develop +Standards-Version: 3.8.0.0 +Homepage: http://www.opalvoip.org/ +Vcs-Svn: svn://svn.debian.org/pkg-voip/opal/trunk/ +Vcs-Browser: http://svn.debian.org/wsvn/pkg-voip/opal/?op=log + +Package: libopal3.6.1 +Section: libs +Architecture: any +Depends: ${shlibs:Depends}, libspeex1, libspeexdsp1 +Conflicts: libopal-2.2-ptrace, libopal-2.2-develop, libopal-2.2.0, libopal-snapshot, libopal3.3-beta1, libopal3.4.2 +Replaces: libopal-snapshot, libopal3.3-beta1, libopal3.4.2 +Description: Open Phone Abstraction Library - successor of OpenH323 + This package contains the shared version of the OPAL library. + . + The OPAL project aims to create a full featured, interoperable, Open Source + implementation of the H.323 and SIP protocols that can be used freely by + everybody. These protocols are most used for Voice over IP (VoIP) + conferencing. + . + This package contains the shared version of the OPAL library, together + with several free audio codecs and theora, H263 and H261 video codecs. + +Package: libopal3.6.1-dev +Section: libdevel +Architecture: any +Conflicts: openmpi-dev, libopal-snapshot-dev, libopal3.3-beta1-dev, libopal3.4.2-dev +Depends: libopal3.6.1 (= ${binary:Version}), libpt2.6.1-dev, libspeexdsp-dev +Replaces: libopal-snapshot-dev, libopal3.3-beta1-dev, libopal3.4.2-dev +Description: OPAL library header files + This package contains the headers and a static version of the OPAL library. + . + The OPAL project aims to create a full featured, interoperable, Open Source + implementation of the H.323 and SIP protocols that can be used freely by + everybody. These protocols are most used for Voice over IP (VoIP) + conferencing. + +Package: simpleopal +Section: comm +Architecture: any +Depends: ${shlibs:Depends} +Description: Simple example from the OPAL project + This package contains a small H323 and SIP client given as an example. You + can find its code on the doc package. + . + The OPAL project aims to create a full featured, interoperable, Open Source + implementation of the H.323 and SIP protocols that can be used freely by + everybody. These protocols are most used for Voice over IP (VoIP) + conferencing. + +Package: libopal3.6.1-dbg +Section: libdevel +Priority: extra +Depends: libopal3.6.1 (= ${binary:Version}) +Replaces: libopal-snapshot-dbg, libopal3.3-beta1-dbg, libopal3.4.2-dbg +Conflicts: libopal-snapshot-dbg, libopal3.3-beta1-dbg, libopal3.4.2-dbg +Architecture: any +Description: OPAL library debug symbols + This package contains the shared and static debug symbols of the + OPAL library. + . + The OPAL project aims to create a full featured, interoperable, Open Source + implementation of the H.323 and SIP protocols that can be used freely by + everybody. These protocols are most used for Voice over IP (VoIP) + conferencing. + +Package: libopal3.6.1-doc +Section: doc +Priority: extra +Architecture: all +Description: OPAL library documentation files + This package contains the documentation and samples to program with + the OPAL library. + . + The OPAL project aims to create a full featured, interoperable, Open Source + implementation of the H.323 and SIP protocols that can be used freely by + everybody. These protocols are most used for Voice over IP (VoIP) + conferencing. --- opal-3.6.1~dfsg.orig/debian/copyright +++ opal-3.6.1~dfsg/debian/copyright @@ -0,0 +1,484 @@ +This is the Debian GNU/Linux packaged version of OPAL. + +The author of this software is Equivalence Pty. Ltd. +Some parts of the code have different authors, see below. + +Original packaging for Debian by + Kilian Krause + (derived from openh323) +Actual packaging and maintainer for Debian by + Eugen Dedu +The sources were downloaded from: + https://opalvoip.svn.sourceforge.net/svnroot/opalvoip/opal/trunk +(stable releases are downloaded from +http://www.voxgratia.org/downloads.html) + +This software is released under the terms of the MPL (Mozilla Public +license), though there are some parts that are covered by other +licenses and copyright (see below). + + MOZILLA PUBLIC LICENSE + Version 1.0 + ---------------- + +1. Definitions. + + 1.1. ``Contributor'' means each entity that creates or contributes to + the creation of Modifications. + + 1.2. ``Contributor Version'' means the combination of the Original + Code, prior Modifications used by a Contributor, and the Modifications + made by that particular Contributor. + + 1.3. ``Covered Code'' means the Original Code or Modifications or the + combination of the Original Code and Modifications, in each case + including portions thereof. + + 1.4. ``Electronic Distribution Mechanism'' means a mechanism generally + accepted in the software development community for the electronic + transfer of data. + + 1.5. ``Executable'' means Covered Code in any form other than Source + Code. + + 1.6. ``Initial Developer'' means the individual or entity identified as + the Initial Developer in the Source Code notice required by Exhibit A. + + 1.7. ``Larger Work'' means a work which combines Covered Code or + portions thereof with code not governed by the terms of this License. + + 1.8. ``License'' means this document. + + 1.9. ``Modifications'' means any addition to or deletion from the + substance or structure of either the Original Code or any previous + Modifications. When Covered Code is released as a series of files, a + Modification is: + + A. Any addition to or deletion from the contents of a file + containing Original Code or previous Modifications. + + B. Any new file that contains any part of the Original Code or + previous Modifications. + + 1.10. ``Original Code'' means Source Code of computer software code + which is described in the Source Code notice required by Exhibit A as + Original Code, and which, at the time of its release under this License + is not already Covered Code governed by this License. + + 1.11. ``Source Code'' means the preferred form of the Covered Code for + making modifications to it, including all modules it contains, plus any + associated interface definition files, scripts used to control + compilation and installation of an Executable, or a list of source code + differential comparisons against either the Original Code or another + well known, available Covered Code of the Contributor's choice. The + Source Code can be in a compressed or archival form, provided the + appropriate decompression or de-archiving software is widely available + for no charge. + + 1.12. ``You'' means an individual or a legal entity exercising rights + under, and complying with all of the terms of, this License or a future + version of this License issued under Section 6.1. For legal entities, + ``You'' includes any entity which controls, is controlled by, or is + under common control with You. For purposes of this definition, + ``control'' means (a) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (b) ownership of fifty percent (50%) or more of the + outstanding shares or beneficial ownership of such entity. + +2. Source Code License. + + 2.1. The Initial Developer Grant. + The Initial Developer hereby grants You a world-wide, royalty-free, + non-exclusive license, subject to third party intellectual property + claims: + + (a) to use, reproduce, modify, display, perform, sublicense and + distribute the Original Code (or portions thereof) with or without + Modifications, or as part of a Larger Work; and + + (b) under patents now or hereafter owned or controlled by Initial + Developer, to make, have made, use and sell (``Utilize'') the + Original Code (or portions thereof), but solely to the extent that + any such patent is reasonably necessary to enable You to Utilize + the Original Code (or portions thereof) and not to any greater + extent that may be necessary to Utilize further Modifications or + combinations. + + 2.2. Contributor Grant. + Each Contributor hereby grants You a world-wide, royalty-free, + non-exclusive license, subject to third party intellectual property + claims: + + (a) to use, reproduce, modify, display, perform, sublicense and + distribute the Modifications created by such Contributor (or + portions thereof) either on an unmodified basis, with other + Modifications, as Covered Code or as part of a Larger Work; and + + (b) under patents now or hereafter owned or controlled by + Contributor, to Utilize the Contributor Version (or portions + thereof), but solely to the extent that any such patent is + reasonably necessary to enable You to Utilize the Contributor + Version (or portions thereof), and not to any greater extent that + may be necessary to Utilize further Modifications or combinations. + +3. Distribution Obligations. + + 3.1. Application of License. + The Modifications which You create or to which You contribute are + governed by the terms of this License, including without limitation + Section 2.2. The Source Code version of Covered Code may be distributed + only under the terms of this License or a future version of this + License released under Section 6.1, and You must include a copy of this + License with every copy of the Source Code You distribute. You may not + offer or impose any terms on any Source Code version that alters or + restricts the applicable version of this License or the recipients' + rights hereunder. However, You may include an additional document + offering the additional rights described in Section 3.5. + + 3.2. Availability of Source Code. + Any Modification which You create or to which You contribute must be + made available in Source Code form under the terms of this License + either on the same media as an Executable version or via an accepted + Electronic Distribution Mechanism to anyone to whom you made an + Executable version available; and if made available via Electronic + Distribution Mechanism, must remain available for at least twelve (12) + months after the date it initially became available, or at least six + (6) months after a subsequent version of that particular Modification + has been made available to such recipients. You are responsible for + ensuring that the Source Code version remains available even if the + Electronic Distribution Mechanism is maintained by a third party. + + 3.3. Description of Modifications. + You must cause all Covered Code to which you contribute to contain a + file documenting the changes You made to create that Covered Code and + the date of any change. You must include a prominent statement that the + Modification is derived, directly or indirectly, from Original Code + provided by the Initial Developer and including the name of the Initial + Developer in (a) the Source Code, and (b) in any notice in an + Executable version or related documentation in which You describe the + origin or ownership of the Covered Code. + + 3.4. Intellectual Property Matters + + (a) Third Party Claims. + If You have knowledge that a party claims an intellectual property + right in particular functionality or code (or its utilization + under this License), you must include a text file with the source + code distribution titled ``LEGAL'' which describes the claim and + the party making the claim in sufficient detail that a recipient + will know whom to contact. If you obtain such knowledge after You + make Your Modification available as described in Section 3.2, You + shall promptly modify the LEGAL file in all copies You make + available thereafter and shall take other steps (such as notifying + appropriate mailing lists or newsgroups) reasonably calculated to + inform those who received the Covered Code that new knowledge has + been obtained. + + (b) Contributor APIs. + If Your Modification is an application programming interface and + You own or control patents which are reasonably necessary to + implement that API, you must also include this information in the + LEGAL file. + + 3.5. Required Notices. + You must duplicate the notice in Exhibit A in each file of the Source + Code, and this License in any documentation for the Source Code, where + You describe recipients' rights relating to Covered Code. If You + created one or more Modification(s), You may add your name as a + Contributor to the notice described in Exhibit A. If it is not possible + to put such notice in a particular Source Code file due to its + structure, then you must include such notice in a location (such as a + relevant directory file) where a user would be likely to look for such + a notice. You may choose to offer, and to charge a fee for, warranty, + support, indemnity or liability obligations to one or more recipients + of Covered Code. However, You may do so only on Your own behalf, and + not on behalf of the Initial Developer or any Contributor. You must + make it absolutely clear than any such warranty, support, indemnity or + liability obligation is offered by You alone, and You hereby agree to + indemnify the Initial Developer and every Contributor for any liability + incurred by the Initial Developer or such Contributor as a result of + warranty, support, indemnity or liability terms You offer. + + 3.6. Distribution of Executable Versions. + You may distribute Covered Code in Executable form only if the + requirements of Section 3.1-3.5 have been met for that Covered Code, + and if You include a notice stating that the Source Code version of the + Covered Code is available under the terms of this License, including a + description of how and where You have fulfilled the obligations of + Section 3.2. The notice must be conspicuously included in any notice in + an Executable version, related documentation or collateral in which You + describe recipients' rights relating to the Covered Code. You may + distribute the Executable version of Covered Code under a license of + Your choice, which may contain terms different from this License, + provided that You are in compliance with the terms of this License and + that the license for the Executable version does not attempt to limit + or alter the recipient's rights in the Source Code version from the + rights set forth in this License. If You distribute the Executable + version under a different license You must make it absolutely clear + that any terms which differ from this License are offered by You alone, + not by the Initial Developer or any Contributor. You hereby agree to + indemnify the Initial Developer and every Contributor for any liability + incurred by the Initial Developer or such Contributor as a result of + any such terms You offer. + + 3.7. Larger Works. + You may create a Larger Work by combining Covered Code with other code + not governed by the terms of this License and distribute the Larger + Work as a single product. In such a case, You must make sure the + requirements of this License are fulfilled for the Covered Code. + +4. Inability to Comply Due to Statute or Regulation. + + If it is impossible for You to comply with any of the terms of this + License with respect to some or all of the Covered Code due to statute + or regulation then You must: (a) comply with the terms of this License + to the maximum extent possible; and (b) describe the limitations and + the code they affect. Such description must be included in the LEGAL + file described in Section 3.4 and must be included with all + distributions of the Source Code. Except to the extent prohibited by + statute or regulation, such description must be sufficiently detailed + for a recipient of ordinary skill to be able to understand it. + +5. Application of this License. + + This License applies to code to which the Initial Developer has + attached the notice in Exhibit A, and to related Covered Code. + +6. Versions of the License. + + 6.1. New Versions. + Netscape Communications Corporation (``Netscape'') may publish revised + and/or new versions of the License from time to time. Each version will + be given a distinguishing version number. + + 6.2. Effect of New Versions. + Once Covered Code has been published under a particular version of the + License, You may always continue to use it under the terms of that + version. You may also choose to use such Covered Code under the terms + of any subsequent version of the License published by Netscape. No one + other than Netscape has the right to modify the terms applicable to + Covered Code created under this License. + + 6.3. Derivative Works. + If you create or use a modified version of this License (which you may + only do in order to apply it to code which is not already Covered Code + governed by this License), you must (a) rename Your license so that the + phrases ``Mozilla'', ``MOZILLAPL'', ``MOZPL'', ``Netscape'', ``NPL'' or + any confusingly similar phrase do not appear anywhere in your license + and (b) otherwise make it clear that your version of the license + contains terms which differ from the Mozilla Public License and + Netscape Public License. (Filling in the name of the Initial Developer, + Original Code or Contributor in the notice described in Exhibit A shall + not of themselves be deemed to be modifications of this License.) + +7. DISCLAIMER OF WARRANTY. + + COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN ``AS IS'' BASIS, + WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF + DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. + THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE + IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, + YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE + COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER + OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF + ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. + +8. TERMINATION. + + This License and the rights granted hereunder will terminate + automatically if You fail to comply with terms herein and fail to cure + such breach within 30 days of becoming aware of the breach. All + sublicenses to the Covered Code which are properly granted shall + survive any termination of this License. Provisions which, by their + nature, must remain in effect beyond the termination of this License + shall survive. + +9. LIMITATION OF LIABILITY. + + UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT + (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL THE INITIAL + DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, + OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO YOU OR ANY OTHER + PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES + OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF + GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND + ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE + BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF + LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY + RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW + PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE + EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THAT + EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. + +10. U.S. GOVERNMENT END USERS. + + The Covered Code is a ``commercial item,'' as that term is defined in + 48 C.F.R. 2.101 (Oct. 1995), consisting of ``commercial computer + software'' and ``commercial computer software documentation,'' as such + terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 + C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), + all U.S. Government End Users acquire Covered Code with only those + rights set forth herein. + +11. MISCELLANEOUS. + + This License represents the complete agreement concerning subject + matter hereof. If any provision of this License is held to be + unenforceable, such provision shall be reformed only to the extent + necessary to make it enforceable. This License shall be governed by + California law provisions (except to the extent applicable law, if any, + provides otherwise), excluding its conflict-of-law provisions. With + respect to disputes in which at least one party is a citizen of, or an + entity chartered or registered to do business in, the United States of + America: (a) unless otherwise agreed in writing, all disputes relating + to this License (excepting any dispute relating to intellectual + property rights) shall be subject to final and binding arbitration, + with the losing party paying all costs of arbitration; (b) any + arbitration relating to this Agreement shall be held in Santa Clara + County, California, under the auspices of JAMS/EndDispute; and (c) any + litigation relating to this Agreement shall be subject to the + jurisdiction of the Federal Courts of the Northern District of + California, with venue lying in Santa Clara County, California, with + the losing party responsible for costs, including without limitation, + court costs and reasonable attorneys fees and expenses. The application + of the United Nations Convention on Contracts for the International + Sale of Goods is expressly excluded. Any law or regulation which + provides that the language of a contract shall be construed against the + drafter shall not apply to this License. + +12. RESPONSIBILITY FOR CLAIMS. + + Except in cases where another Contributor has failed to comply with + Section 3.4, You are responsible for damages arising, directly or + indirectly, out of Your utilization of rights under this License, based + on the number of copies of Covered Code you made available, the + revenues you received from utilizing such rights, and other relevant + factors. You agree to work with affected parties to distribute + responsibility on an equitable basis. + +EXHIBIT A. + + ``The contents of this file are subject to the Mozilla Public License + Version 1.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.mozilla.org/MPL/ + + Software distributed under the License is distributed on an "AS IS" + basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the + License for the specific language governing rights and limitations + under the License. + The Original Code is ______________________________________. + The Initial Developer of the Original Code is + ________________________. Portions created by + ______________________ are Copyright (C) ______ + _______________________. All Rights Reserved. + Contributor(s): ______________________________________.'' + + + + src/codec/gsm + ---------------- +Copyright 1992, 1993, 1994 by Jutta Degener and Carsten Bormann, +Technische Universitaet Berlin + +Any use of this software is permitted provided that this notice is not +removed and that neither the authors nor the Technische Universitaet Berlin +are deemed to have made any representations as to the suitability of this +software for any purpose nor are held responsible for any defects of +this software. THERE IS ABSOLUTELY NO WARRANTY FOR THIS SOFTWARE. + +As a matter of courtesy, the authors request to be informed about uses +this software has found, about bugs in this software, and about any +improvements that may be of general interest. + +Berlin, 28.11.1994 +Jutta Degener +Carsten Bormann + + + + src/codec/speex + ------------------ + +Copyright: + Jean-Marc Valin + All the code except the following + + David Rowe via VoiceTronix + lsp.c lsp.h + Also ideas and feedback + + John Francis Edwards: + wave_out.[ch], some #ifdefs for windows port and MSVC project files + + Atsuhiko Yamanaka : + Patch to speexenc.c to add Vorbis comment format + + Radim Kolar : + Patch to speexenc.c for supporting more input formats + +Licence: + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + +- Redistributions of source code must retain the above copyright +notice, this list of conditions and the following disclaimer. + +- Redistributions in binary form must reproduce the above copyright +notice, this list of conditions and the following disclaimer in the +documentation and/or other materials provided with the distribution. + +- Neither the name of the Xiph.org Foundation nor the names of its +contributors may be used to endorse or promote products derived from +this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR +CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + + + src/codec/g726 + ---------------- + + This source code is a product of Sun Microsystems, Inc. and is provided + for unrestricted use. Users may copy or modify this source code without + charge. + + SUN SOURCE CODE IS PROVIDED AS IS WITH NO WARRANTIES OF ANY KIND INCLUDING + THE WARRANTIES OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR + PURPOSE, OR ARISING FROM A COURSE OF DEALING, USAGE OR TRADE PRACTICE. + + Sun source code is provided with no support and without any obligation on + the part of Sun Microsystems, Inc. to assist in its use, correction, + modification or enhancement. + + SUN MICROSYSTEMS, INC. SHALL HAVE NO LIABILITY WITH RESPECT TO THE + INFRINGEMENT OF COPYRIGHTS, TRADE SECRETS OR ANY PATENTS BY THIS SOFTWARE + OR ANY PART THEREOF. + + In no event will Sun Microsystems, Inc. be liable for any lost revenue + or profits or other special, indirect and consequential damages, even if + Sun has been advised of the possibility of such damages. + + Sun Microsystems, Inc. + 2550 Garcia Avenue + Mountain View, California 94043 + + + + src/codec/iLBC + ---------------- +Removed from sources, as it is not distributable due to its license. + + iLBC Speech Coder ANSI-C Source Code + + Copyright (C) The Internet Society (2004). + All Rights Reserved. --- opal-3.6.1~dfsg.orig/debian/dirs +++ opal-3.6.1~dfsg/debian/dirs @@ -0,0 +1 @@ +usr --- opal-3.6.1~dfsg.orig/debian/watch +++ opal-3.6.1~dfsg/debian/watch @@ -0,0 +1,6 @@ +version=3 +# http://www.voxgratia.org/releases/opal-v(\d+)_(\d?[02468]+)([\d_]+)-src[\.-]tar\.gz debian svn-upgrade + +opts=dversionmangle=s/[\.~]dfsg(\d+)?//,uversionmangle=s/[_\.]+/\./g \ + http://sf.net/opalvoip/opal-(\d.*)-src.tar.gz debian svn-upgrade + --- opal-3.6.1~dfsg.orig/debian/changelog +++ opal-3.6.1~dfsg/debian/changelog @@ -0,0 +1,284 @@ +opal (3.6.1~dfsg-0ubuntu1) jaunty; urgency=low + + * New upstream release (LP: #344924) + - Fixed race condition in silence insertion algorithm where silence + buffer is zero length before the first packet is received. Some + downstream channels can't handle this. Now initialise silence + buffer to be at a minimum 10 milliseconds. + - Fixed compile without video + - Reintroduce implicit check for NULL buffer accidentally removed + in revision 22089 + - Fixed empty Alert-Info field being sent in SIP INVITE. + - Fixed display name member of OpalConnection containing ONLY the + display name for SIP. + - Fixed call routing issue in simpleopal + - IF we use string options to override the username + (Calling-Party-Number) then we override it, no ifs buts or + maybes! + - Fixed incorrect detection of remote SIP client putting local side + on hold, thanks hongxing. + - Fixed incorrect trace log messages. + - Fixed fax NSE tone detect of CNG/CED being passed up to + connection and application, for some reason commented out! + - Fixed OpenPhone detection that fax mode is already in use when + get a CNG/CED indication. + - Fixed switching media format for existing channel, e.g. T.38 + mode, was broken by someone. + - Slight change to routing algorithm so if the B-Party is + explicitly determined, even when there is no matching "source" + route in the table. + - Fixed comparison of OpalTransportAddress so wildcard matches are + optional. This is because there is no distinction in a IPv4 + address between INADDRANY and an invalid address, both are zero! + - Fixed a number of issues with fax switching, including deadlocks + and failure to clean up references so calls are never destroyed. + - Fixed garbage collection broken in previous check in, it's never + easy. + - Make sure if unsubscribing/unregistering, it returns true if it + already unsubscribed/unregistered. + - Fixed some NAT related issues. In particular where a SIP register + happens, and Cone NAT is in use, the registered port should be + the external port. Also as some registrars (and gatekeepers!) + only look at the first entry in the list, we make sure the + listener that is on the interface we are talking to the registrar + (or gatekeeper) on is first. + - Include display name in "C" API dialog notification party + identifier strings. + + -- Ken VanDine Wed, 18 Mar 2009 12:53:51 -0400 + +opal (3.4.2~dfsg-2) experimental; urgency=low + + [ Eugen Dedu ] + * Use Debian's speex library. + + [ Mark Purcell ] + * Integrate historic debian/changelog from trunk + * Update debian/watch to check sf.net + * Fix hyphen-used-as-minus-sign debian/simpleopal.1 + + -- Mark Purcell Sat, 15 Nov 2008 11:36:28 +1100 + +opal (3.4.2~dfsg-1) experimental; urgency=low + + [ Eugen Dedu ] + * New release version 3.4.2, with update and simplification of debian files + * Add a minimal man page for simpleopal. + + -- Mark Purcell Thu, 06 Nov 2008 21:44:30 +1100 + +opal (3.3.0+svn20940.dfsg-1) voip; urgency=low + + [ Eugen Dedu ] + * Build from svn snapshot REV 20940, refresh libname patch and rules + * Rename package to -beta1 + * Build-Depends on libgsm1-dev in order to use Debian's library + * Remove h263-ffmpeg video codec, as suggested by upstream + * Remove, if any, plugins for non-free codecs (H263-1998, H264, MPEG4) + + [ Mark Purcell ] + * Switch to svn export + * svn REV checkout is controlled from debian/changelog version + * Update Description: to explict state this svn snapshot + + -- Mark Purcell Thu, 11 Sep 2008 22:33:41 +1000 + +opal (3.3.0+svn20930.dfsg-1) experimental; urgency=low + + * First upload to debian. + + [ Mark Purcell ] + * Ver 3.3.0 was tagged at REV=20681 thus this is 3.3.0+svnXXXX + + -- Eugen Dedu Sun, 16 Aug 2008 00:00:00 +0200 + +opal-snapshot (0-20080418-1) voip; urgency=low + + * Built from SVN snapshots. No package support, please refer to + irc.gimp.net channel #ekiga for support. Do not complain about + these debs at Debian BTS! + + -- Eugen Dedu Sun, 18 Apr 2008 00:00:00 +0200 + +opal-snapshot (0-20071107-03-sid.2) voip-snapshots-debian-sid; urgency=high + + * This is the CVS version! Do not complain about these debs at Debian BTS! + + -- Kilian Krause Sun, 13 Mar 2005 19:14:36 +0100 + +opal (2.2.11~dfsg1-5) UNRELEASED; urgency=low + + * Add description for remove_ilbc.dpatch. + * Remove config.log at clean time. + * Remove duplicated word (the the) in the description of libopal-dev. + + -- Patrick Matthäi Wed, 8 Oct 2008 21:21:56 +0200 + +opal (2.2.11~dfsg1-4) unstable; urgency=low + + [ Kilian Krause ] + * Fix regexp generating UPVRESION for backports. + * Drop notrace build entirely to fixup ABI issues (Closes: #447452) + + [ Faidon Liambotis ] + * Fix bug where shlibs were very strict on binNMUed versions. + * Bump Standards-Version to 3.7.3, no changes needed. + * Remove doxygen from Build-Depends-Indep since it's present in + Build-Depends. + * Drop Build-Conflicts on pre-sarge linux-kernel-headers. + * Remove versioned dependency on pre-etch dpkg-dev. + * Removed versioned dependency on g++ >= 2.95. + * Remove debian/backports/sarge since it's an obsolete distribution. + * Remove Jose Carlos Garcia Sogo and Santiago Garcia Mantinan from + Uploaders and add myself. + * Depend on newly introduced libspeexdsp-dev. (Closes: #474272) + * Fix configure to never try to use the shipped speex version, even if it + (wrongly) thinks it's newer. + + [ Victor Seva ] + * Add patch from Rober Millan to solve FTBFS on parallel build. + (Closes: #459742) + + -- Faidon Liambotis Sat, 05 Apr 2008 10:59:43 +0300 + +opal (2.2.11~dfsg1-3) unstable; urgency=high + + * Add ~ suffix after upstream version to shlibs generation. + (Closes: #448285) + + -- Kilian Krause Mon, 29 Oct 2007 10:43:48 +0100 + +opal (2.2.11~dfsg1-2) unstable; urgency=low + + * Fix build problem in binutils on alpha by using "LDFLAGS+=-Wl,--no-relax". + Thanks goes to Steve Langasek for finding this and Serge Belyshev for the + tested patch. + + -- Kilian Krause Tue, 23 Oct 2007 12:02:11 +0200 + +opal (2.2.11~dfsg1-1) unstable; urgency=low + + * New upstream release. (gcc-4.2 clean. Yeah!) + Requires PWLib 1.10.10 - bump build-depends accordingly. + + [ Kilian Krause ] + * Don't suggest development headers with library. (Closes: #378064) + * Update Source-Version to binary:Version to allow clean binNMUs. + * Update debian/watch. + * Fix remaining debian-rules-ignores-make-clean errors + * Don't set DH_COMPAT in rules. + * Fix dh_strip call using libopal-ptrace rather than $(PACKAGE)-ptrace + (Closes: #442975) + * Conflict with our own binary library packages to fix false negative build + checks (Closes: #440928) + * Remove check-ilbc stamp in clean target + * Add Homepage field as added in dpkg-dev 1.14.6. + + [ Faidon Liambotis ] + * Adapt shlibs to depend on the upstream's version number and not the Debian + version number, since we don't extend the ABI. This also imitates + debhelper's behavior. + + -- Kilian Krause Sat, 22 Sep 2007 12:08:48 +0200 + +opal (2.2.8~dfsg1-2) unstable; urgency=low + + * Add missing conflicts (Closes: #433152, #433155) + + -- Kilian Krause Mon, 16 Jul 2007 13:49:32 +0200 + +opal (2.2.8~dfsg1-1) unstable; urgency=low + + * New upstream release. (Closes: #418485) + * Build opt, opt+ptrace and debug version like PWLib. Bump to pwlib 1.10.7 therefore. + * Change package name to comply with SOVER. + * Cleanup rules to fix double compile problems with leftover files. + (Closes: #424373) + + -- Kilian Krause Tue, 3 Jul 2007 21:45:23 +0200 + +opal (2.2.3.dfsg-3) unstable; urgency=high + + * Conflict with openmpi-dev to make sure we don't have a filename clash + (Closes: #404004). Setting high urgency due to RC-bug. + + -- Kilian Krause Wed, 27 Dec 2006 15:56:46 +0100 + +opal (2.2.3.dfsg-2) unstable; urgency=high + + * Correct the versioned dependency to the lib we're building right now to + overcome problems like #392522. Setting urgency=high, for we're closing an + RC-bug. + + -- Kilian Krause Sun, 22 Oct 2006 11:04:26 +0200 + +opal (2.2.3.dfsg-1) unstable; urgency=low + + * Rename configure target to config.status. + * New upstream release. + + -- Kilian Krause Mon, 9 Oct 2006 13:47:30 +0200 + +opal (2.2.2.dfsg-1) unstable; urgency=low + + * New upstream release. + + -- Kilian Krause Fri, 9 Jun 2006 19:46:19 +0000 + +opal (2.2.1.dfsg-2) unstable; urgency=low + + [ Kilian Krause ] + * debian/rules: Use CURDIR rather than PWD to make sure we can build with + sudo. + + [ Mark Purcell ] + * Update debian/watch for numerics & dfsg mangle + + -- Kilian Krause Sun, 7 May 2006 12:58:43 +0200 + +opal (2.2.1.dfsg-1) unstable; urgency=low + + [ Kilian Krause ] + * debian/control: No need to have debug symbols depend on -dev. + + [ Jose Carlos Garcia Sogo ] + * debian/copyright: state different copyrights and licenses for: + + src/codec/speex: BSD like license + + src/codec/g726: special unrestricted license from Sun + + src/codec/gsm: list copyright holders and license terms + + src/codec/iLBC: removed from upstream source. Non DFSG-compliant + license. (GIPS Royalty Free License) + + * debian/rules: + + check that iLBC code has been removed. It also includes an RFC. + + * debian/patches: + + remove_ilbc: new. Removes any reference to iLBC code in Makefile.in + + -- Kilian Krause Sun, 16 Apr 2006 17:06:06 +0000 + +opal (2.2.1-1) unstable; urgency=low + + * New upstream release (Phobos_release1 tag) to hotfix retransmission of + messages which made Ekiga get stuck + + -- Kilian Krause Tue, 14 Mar 2006 12:46:42 +0100 + +opal (2.2.0-1) unstable; urgency=low + + * New upstream release (Phobos_release tag). + + -- Kilian Krause Tue, 14 Mar 2006 00:14:58 +0000 + +opal (2.1.3-2) unstable; urgency=low + + * Workaround too short SONAME until the fix from CVS HEAD hits next release. + + -- Kilian Krause Tue, 14 Feb 2006 00:04:32 +0100 + +opal (2.1.3-1) unstable; urgency=low + + * Initial release. Taken from Phobos-devel3, named according to final Phobos + stable release version. + + -- Kilian Krause Mon, 13 Feb 2006 21:38:04 +0000 --- opal-3.6.1~dfsg.orig/debian/compat +++ opal-3.6.1~dfsg/debian/compat @@ -0,0 +1 @@ +5 --- opal-3.6.1~dfsg.orig/debian/rules +++ opal-3.6.1~dfsg/debian/rules @@ -0,0 +1,259 @@ +#!/usr/bin/make -f + + +DEBVERSION := $(shell head -n 1 debian/changelog \ + | sed -e 's/^[^(]*(\([^)]*\)).*/\1/') +UPVERSION := $(shell echo $(DEBVERSION) | sed -r -e 's/^.*://' -e 's/-[0-9.]*(\+b[0-9])?$$//' -e 's/.dfsg[0-9]*$$//') + +REV := $(shell echo $(UPVERSION) | sed -r -e 's/^.*svn//') +#REV=20797 + +DEBVERSION := $(shell head -n 1 debian/changelog \ + | sed -e 's/^[^(]*(\([^)]*\)).*/\1/') +#UPVERSION := $(shell echo $(DEBVERSION) | sed -r -e 's/^.*://' -e 's/-[0-9.]*(\+b[0-9])?$$//' -e 's/.dfsg[0-9]*$$//') +#URLVERSION := $(shell echo $(DEBVERSION) | sed -r -e 's/^.*://' -e 's/-[0-9.]*(\+b[0-9])?$$//' -e 's/.dfsg[0-9]*$$//' -e 's/\./_/g') + +FILENAME := opal_$(UPVERSION)~dfsg.orig.tar.gz +UPFILENAME := opal_$(UPVERSION).orig.tar.gz +#URL := http://www.voxgratia.org/releases/opal-v$(URLVERSION)-src-tar.gz +URL := http://ftp.gnome.org/pub/gnome/sources/opal/3.6/opal-$(UPVERSION).tar.gz + +PACKAGE=libopal3.6.1 + +#ifneq (,$(shell test -f version.h&&grep MAJOR_VERSION version.h)) +#VER_MAJOR := $(shell awk '/MAJOR_VERSION/ { print $$3 }' version.h 2>/dev/null) +#VER_MINOR := $(shell awk '/MINOR_VERSION/ { print $$3 }' version.h 2>/dev/null) +#VER_SUB := $(shell awk '/BUILD_NUMBER/ { print $$3 }' version.h 2>/dev/null) +#VER_TYPE := $(shell awk '/BUILD_TYPE/ { print $$3 }' version.h 2>/dev/null) +#endif + +#SHLIBSVER := $(VER_MAJOR).$(VER_MINOR).$(VER_SUB) +#SHLIBSSUFFIX := $(VER_MAJOR).$(VER_MINOR).$(VER_SUB) +#ifneq (,$(findstring Beta,$(VER_TYPE))) +# SHLIBSSUFFIX :=$(VER_MAJOR).$(VER_MINOR)-beta$(VER_SUB) +#endif + +CFLAGS := -Wall -g -O2 + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +endif + +export DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +export DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + +ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE)) + confflags += --build $(DEB_HOST_GNU_TYPE) +else + confflags += --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE) +endif +# Ensure the build aborts when there are still references to undefined +# symbols. +LDFLAGS += -Wl,-z,def + +include /usr/share/dpatch/dpatch.make + +build: build-arch build-indep + +build-arch: config.status build-arch-stamp + +config.status: patch-stamp autotools configure + #don't build h263-ffmpeg codec because it uses an unmaintained binary + ./configure $(confflags) --prefix=/usr --disable-ffmpeg-h263 + +autotools: + rm -f config.sub config.guess + cp /usr/share/misc/config.sub config.sub + cp /usr/share/misc/config.guess config.guess + touch autotools + +check-ilbc: + if [ -d plugins/audio/iLBC ];then \ + echo "ERROR: iLBC code must be removed from upstream sources" ; false ; \ + fi + touch $@ + +build-arch-stamp: config.status + $(MAKE) + + # ensure we do a fresh check with hello world. + # ...first static + #I see no reason to use static, so I comment them out + #$(MAKE)-C samples/simple optnoshared + #samples/simple/obj*/simpleopal --help >/dev/null + + # then shared... + $(MAKE) PTLIBDIR=/usr OPALDIR=$(CURDIR) -C samples/simple + if (samples/simple/obj*/simpleopal --help >/dev/null);then \ + echo shared simpleopal incorrectly compiled static; false;\ + else \ + echo shared simpleopal correctly compiled non-static; \ + fi + ln -s lib* lib ; LD_LIBRARY_PATH=$(CURDIR)/lib samples/simple/obj*/simpleopal --help >/dev/null + rm lib + + cp debian/libopal-doc.docs debian/$(PACKAGE)-doc.docs + cp debian/libopal-dev.dirs debian/$(PACKAGE)-dev.dirs + touch build-arch-stamp + +build-indep: build-indep-stamp +build-indep-stamp: config.status + $(MAKE) docs + touch build-indep-stamp + +clean: check-ilbc clean-patched unpatch +clean-patched: + dh_testdir + dh_testroot + rm -f build-arch-stamp build-indep-stamp patch-stamp check-ilbc + rm -f config.status config.log autotools + if [ -f Makefile ];then \ + $(MAKE) clean;\ + $(MAKE) PTLIB=/usr OPALDIR=$(CURDIR) -C samples/simple clean;\ + fi + rm -f opal_inc.mak include/opal/buildopts.h + rm -rf lib + rm -f src/speex/libspeex/Makefile + rm -rf html + rm -f `find . -name "*~"` + rm -rf `find debian/* -type d -name libopal-*` debian/files* core + rm -rf debian/simpleopal/ + rm -f debian/*substvars + rm -f debian/*.debhelper + rm -f debian/$(PACKAGE)-doc.docs debian/$(PACKAGE)-dev.dirs + rm -f config.status + dh_clean + +install: install-arch install-indep +install-indep: + dh_testdir + dh_testroot + dh_clean -k -i + dh_installdirs -i + +install-arch: + dh_testdir + dh_testroot + dh_clean -k -a + dh_installdirs -a + + $(MAKE) DESTDIR=$(CURDIR)/debian/install install + + #remove non-free video codecs (if any) + -rm debian/install/usr/lib/opal-*/codecs/video/h264* + -rm debian/install/usr/lib/opal-*/codecs/video/h263-1998* + -rm debian/install/usr/lib/opal-*/codecs/video/mpeg4* + + mv debian/install/usr/include debian/$(PACKAGE)-dev/usr + mv debian/install/usr/lib/pkgconfig debian/$(PACKAGE)-dev/usr/lib + mv debian/install/usr/lib/libopal_s.a debian/$(PACKAGE)-dev/usr/lib + mkdir debian/$(PACKAGE)/usr/lib + mv debian/install/usr/lib/libopal.so.*.*[.-]* debian/$(PACKAGE)/usr/lib + mv debian/install/usr/lib/libopal.so* debian/$(PACKAGE)-dev/usr/lib + mv debian/install/usr/lib/opal* debian/$(PACKAGE)/usr/lib + + # to check that it is empty, i.e. all the files have been moved + rmdir debian/install/usr/lib + rmdir debian/install/usr + rmdir debian/install + + # simpleopal + cp -a samples/simple/obj*/simpleopal debian/simpleopal/usr/bin + + #not sure 100%, but not needed anymore, as now pkg-config is used + #sed -e 's#^OPALDIR.*#OPALDIR = \/usr\/lib\/opal#g' \ + # opal_inc.mak > debian/$(PACKAGE)-dev/usr/share/opal/opal_inc.mak + #find debian/$(PACKAGE)-dev/usr/include -type f -exec chmod 644 {} \; + + cp version.h debian/$(PACKAGE)-dev/usr/include/opal/ + + # linking stuff under usr/share/opal + #ln -s ../../include/opal/version.h debian/$(PACKAGE)-dev/usr/share/opal/ + #ln -s ../../include/opal debian/$(PACKAGE)-dev/usr/share/opal/include + #ln -s ../../lib debian/$(PACKAGE)-dev/usr/share/opal/ + +# Must not depend on anything. This is to be called by +# binary-arch/binary-multi +# in another 'make' thread. +binary-common: + dh_testdir + dh_testroot + #only $(PACKAGE) has a directory, the others have just links + dh_installdocs -N$(PACKAGE)-dev -N$(PACKAGE)-dbg + dh_installman + dh_installexamples -p$(PACKAGE) + dh_installchangelogs -N$(PACKAGE)-dev -N$(PACKAGE)-dbg + -test "x$(DH_OPTIONS)" = "x-a" && for pkg in dev dbg; do mkdir -p debian/$(PACKAGE)-$$pkg/usr/share/doc; ln -s $(PACKAGE) debian/$(PACKAGE)-$$pkg/usr/share/doc/$(PACKAGE)-$$pkg; done + + dh_link + dh_compress + dh_fixperms + # a new variable will be needed if an epoch is introduced to our versioning + dh_makeshlibs -V '$(PACKAGE) (>= $(UPVERSION)~)' + dh_installdeb + + dh_shlibdeps -L $(PACKAGE) -l debian/$(PACKAGE)/usr/lib + dh_gencontrol + dh_md5sums + dh_builddeb + +binary-strip: + dh_testdir + dh_testroot +ifneq (4,$(DH_COMPAT)) + dh_strip -N$(PACKAGE)-dbg --dbg-package=$(PACKAGE)-dbg + # can't ship those in $(PACKAGE)-dbg due to namespace overlap +else + # As dh_strip does not work fine for multiple binary package + # we need to workaround that manually + dh_strip --exclude=libopal_d --keep-debug + + for pack in $(PACKAGE) simpleopal ; do \ + cp -af debian/$$pack/usr/lib/debug debian/$(PACKAGE)-dbg/usr/lib && \ + rm -rf debian/$$pack/usr/lib/debug; \ + done +endif + +# Build architecture independant packages using the common target. +binary-indep: build-indep install-indep + $(MAKE) -f debian/rules DH_OPTIONS=-i binary-common + +# Build architecture dependant packages using the common target. +binary-arch: build-arch install-arch + $(MAKE) -f debian/rules DH_OPTIONS=-a binary-strip + $(MAKE) -f debian/rules DH_OPTIONS=-a binary-common + +print-version: + @@echo "Debian version: $(DEBVERSION)" + @@echo "Upstream version: $(UPVERSION)" + @@echo "svn REV: $(REV)" + + +get-orig-source: + @@dh_testdir + @@[ -d ../tarballs/. ]||mkdir -p ../tarballs + @@#this is for stable versions + @@echo Downloading $(UPFILENAME) from $(URL) ... + @@wget -N -nv -T10 -t3 -O ../tarballs/$(UPFILENAME) $(URL) + @@echo 'Repacking as DFSG-free (removing iLBC)...' + @@mkdir -p ../tarballs/opal-$(UPVERSION).tmp/ + @@cd ../tarballs/opal-$(UPVERSION).tmp ; tar xfz ../$(UPFILENAME) + @@rm -rf ../tarballs/opal-$(UPVERSION).tmp/opal*/plugins/audio/iLBC + @@echo Writing archive ../tarballs/$(FILENAME) ... + @@cd ../tarballs/opal-$(UPVERSION).tmp ; tar cfz ../$(FILENAME) * + @@echo Cleaning up... + @@$(RM) -rf ../tarballs/opal-$(UPVERSION).tmp/ ../tarballs/$(UPFILENAME) + @@#and this is for SVN + @@#echo 'Checking out for repacking (might take 15 min) ...' + @@#svn export https://opalvoip.svn.sourceforge.net/svnroot/opalvoip/opal/trunk@$(REV) ../tarballs/opal-$(REV).tmp + @@#echo 'Getting the changelog (might take 15 min) ...' + @@#cd ../tarballs/opal-$(REV).tmp; svn2cl -o changelog + @@#echo Removing iLBC non-free code... + @@#cd ../tarballs/opal-$(REV).tmp; rm -rf plugins/audio/iLBC + @@#echo Creating the tarball ... + @@#cd ../tarballs/opal-$(REV)tmp; tar zcf ../opal_$(UPVERSION).orig.tar.gz * + @@#rm -rf ../tarballs/opal-$(REV).tmp + @@echo Ready for packaging. + +binary: binary-arch binary-indep +.PHONY: build clean binary-indep binary-arch binary install install-indep install-arch clean-patched --- opal-3.6.1~dfsg.orig/debian/libopal-dev.dirs +++ opal-3.6.1~dfsg/debian/libopal-dev.dirs @@ -0,0 +1,2 @@ +usr/include +usr/lib \ No newline at end of file --- opal-3.6.1~dfsg.orig/debian/patches/alpha-no-relax.dpatch +++ opal-3.6.1~dfsg/debian/patches/alpha-no-relax.dpatch @@ -0,0 +1,19 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## alpha-no-relax.dpatch by Kilian Krause +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: circumvent binutils bug #440015 on alpha. Thanks goes to Serge Belyshev. + +@DPATCH@ +diff -urNad opal~/opal_inc.mak.in opal/opal_inc.mak.in +--- opal~/opal_inc.mak.in 2006-01-31 08:10:37.000000000 +0000 ++++ opal/opal_inc.mak.in 2007-10-23 20:53:08.000000000 +0000 +@@ -63,7 +63,7 @@ + OPAL_BASE = opal_$(PLATFORM_TYPE)_$(OPAL_SUFFIX) + OPAL_FILE = lib$(OPAL_BASE)$(LIB_TYPE).$(LIB_SUFFIX) + +-LDFLAGS += -L$(OPAL_LIBDIR) ++LDFLAGS += -L$(OPAL_LIBDIR) -Wl,--no-relax + LDLIBS := -l$(OPAL_BASE)$(LIB_TYPE) $(LDLIBS) + + STDCCFLAGS += -I$(OPAL_INCDIR) --- opal-3.6.1~dfsg.orig/debian/patches/00list +++ opal-3.6.1~dfsg/debian/patches/00list @@ -0,0 +1 @@ +simpleopal --- opal-3.6.1~dfsg.orig/debian/patches/00list.alpha +++ opal-3.6.1~dfsg/debian/patches/00list.alpha @@ -0,0 +1 @@ +#alpha-no-relax --- opal-3.6.1~dfsg.orig/debian/patches/simpleopal.dpatch +++ opal-3.6.1~dfsg/debian/patches/simpleopal.dpatch @@ -0,0 +1,21 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## libname.dpatch by Eugen Dedu +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: allow compilation of simple without having opal installed. + +@DPATCH@ +diff -u opal-svn/samples/simple/Makefile opal/samples/simple/Makefile +--- opal-svn/samples/simple/Makefile 2008-09-20 23:05:19.000000000 +0200 ++++ opal/samples/simple/Makefile 2008-09-21 13:08:56.000000000 +0200 +@@ -53,8 +53,8 @@ + endif + # Get required flags from library + +-CFLAGS += $(shell PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) pkg-config $(PKG_FLAGS) --cflags opal) +-LDFLAGS += $(shell PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) pkg-config $(PKG_FLAGS) --libs opal) ++CFLAGS += $(shell PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) pkg-config $(PKG_FLAGS) --cflags opal) -I../../include ++LDFLAGS += $(shell PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) pkg-config $(PKG_FLAGS) --libs opal) -L ../../lib* + + + # This part is we like to be tidy and put all the build products