This list is closed, nobody may subscribe to it.
| 2000 |
Jan
|
Feb
|
Mar
|
Apr
(18) |
May
(14) |
Jun
(1) |
Jul
(8) |
Aug
(2) |
Sep
|
Oct
|
Nov
(18) |
Dec
(1) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2001 |
Jan
(23) |
Feb
(11) |
Mar
(10) |
Apr
(21) |
May
|
Jun
(21) |
Jul
|
Aug
|
Sep
|
Oct
(8) |
Nov
|
Dec
(1) |
| 2002 |
Jan
|
Feb
(6) |
Mar
(1) |
Apr
(14) |
May
(30) |
Jun
(6) |
Jul
(5) |
Aug
(1) |
Sep
|
Oct
(4) |
Nov
(9) |
Dec
(5) |
| 2003 |
Jan
(14) |
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
(9) |
Jul
(19) |
Aug
(4) |
Sep
(2) |
Oct
(14) |
Nov
(40) |
Dec
(1) |
| 2004 |
Jan
(25) |
Feb
(1) |
Mar
(4) |
Apr
(2) |
May
(10) |
Jun
(2) |
Jul
(32) |
Aug
|
Sep
|
Oct
(4) |
Nov
(6) |
Dec
(4) |
| 2005 |
Jan
(2) |
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2006 |
Jan
(4) |
Feb
|
Mar
(3) |
Apr
(2) |
May
|
Jun
|
Jul
|
Aug
(9) |
Sep
(3) |
Oct
|
Nov
|
Dec
|
|
From: Dan D. <dde...@us...> - 2006-09-25 20:20:36
|
Update of /cvsroot/libdv/libdv In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv4626 Modified Files: ChangeLog Log Message: change 1.0.0 release date Index: ChangeLog =================================================================== RCS file: /cvsroot/libdv/libdv/ChangeLog,v retrieving revision 1.120 retrieving revision 1.121 diff -C2 -r1.120 -r1.121 *** ChangeLog 3 Sep 2006 19:49:20 -0000 1.120 --- ChangeLog 25 Sep 2006 20:20:30 -0000 1.121 *************** *** 1,5 **** libdv ChangeLog ! 2006-09-04 Dan Dennedy <da...@de...> * libdv 1.0.0 release. --- 1,5 ---- libdv ChangeLog ! 2006-09-25 Dan Dennedy <da...@de...> * libdv 1.0.0 release. |
|
From: Dan D. <dde...@us...> - 2006-09-03 19:49:26
|
Update of /cvsroot/libdv/libdv In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv3182 Modified Files: ChangeLog Log Message: apply patch (1550898) from Craig Lawson to prevent noise when dv_encode_full_audio() is called with zero samples Index: ChangeLog =================================================================== RCS file: /cvsroot/libdv/libdv/ChangeLog,v retrieving revision 1.119 retrieving revision 1.120 diff -C2 -r1.119 -r1.120 *** ChangeLog 6 Aug 2006 21:45:46 -0000 1.119 --- ChangeLog 3 Sep 2006 19:49:20 -0000 1.120 *************** *** 1,4 **** --- 1,12 ---- libdv ChangeLog + 2006-09-04 Dan Dennedy <da...@de...> + * libdv 1.0.0 release. + + 2006-09-03 Dan Dennedy <da...@de...> + * libdv/encode.c, libdv/enc_output.c: apply patch (1550898) from Craig + Lawson to prevent noise when dv_encode_full_audio() is called with + zero samples. + 2006-08-06 Dan Dennedy <da...@de...> * libdv/*.S: apply patch from Mike Frysinger <va...@ge...> to |
|
From: Dan D. <dde...@us...> - 2006-09-03 19:49:23
|
Update of /cvsroot/libdv/libdv/libdv In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv3182/libdv Modified Files: enc_output.c encode.c Log Message: apply patch (1550898) from Craig Lawson to prevent noise when dv_encode_full_audio() is called with zero samples Index: enc_output.c =================================================================== RCS file: /cvsroot/libdv/libdv/libdv/enc_output.c,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** enc_output.c 27 Oct 2003 17:21:25 -0000 1.9 --- enc_output.c 3 Sep 2006 19:49:20 -0000 1.10 *************** *** 116,120 **** int dif_seg; int dif_seg_max = isPAL ? 12 : 10; ! int samplesperframe = audio->bytesperframe; int bits_per_sample = 16; --- 116,120 ---- int dif_seg; int dif_seg_max = isPAL ? 12 : 10; ! int samplesperframe = audio->bytesperframe/(2*audio->channels); int bits_per_sample = 16; Index: encode.c =================================================================== RCS file: /cvsroot/libdv/libdv/libdv/encode.c,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -r1.27 -r1.28 *** encode.c 15 Jan 2006 21:10:29 -0000 1.27 --- encode.c 3 Sep 2006 19:49:20 -0000 1.28 *************** *** 1822,1826 **** for (i = 0; i < (DV_WIDTH * (dv_enc->isPAL ? DV_PAL_HEIGHT : DV_NTSC_HEIGHT)); ! dv_enc->img_y[i] = CLAMP(dv_enc->img_y[i++], -224, 214) ); } --- 1822,1827 ---- for (i = 0; i < (DV_WIDTH * (dv_enc->isPAL ? DV_PAL_HEIGHT : DV_NTSC_HEIGHT)); ! i++ ) ! dv_enc->img_y[i] = CLAMP(dv_enc->img_y[i], -224, 214); } *************** *** 1920,1924 **** audio.bytesperframe = audio.bytespersecond/(dv_enc->isPAL ? 25 : 30); else ! audio.bytesperframe = dv_enc->samples_this_frame; --- 1921,1925 ---- audio.bytesperframe = audio.bytespersecond/(dv_enc->isPAL ? 25 : 30); else ! audio.bytesperframe = dv_enc->samples_this_frame * 2 * channels; |
|
From: Dan D. <dde...@us...> - 2006-08-06 21:45:50
|
Update of /cvsroot/libdv/libdv/libdv In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv22261/libdv Modified Files: Makefile.am Makefile.in Log Message: bump versions Index: Makefile.am =================================================================== RCS file: /cvsroot/libdv/libdv/libdv/Makefile.am,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -r1.17 -r1.18 *** Makefile.am 20 Oct 2004 03:49:24 -0000 1.17 --- Makefile.am 6 Aug 2006 21:45:47 -0000 1.18 *************** *** 60,64 **** $(libdv_la_ASMS) ! libdv_la_LDFLAGS = -version-info 4:2:0 dovlc_SOURCES= dovlc.c --- 60,64 ---- $(libdv_la_ASMS) ! libdv_la_LDFLAGS = -version-info 4:3:0 dovlc_SOURCES= dovlc.c Index: Makefile.in =================================================================== RCS file: /cvsroot/libdv/libdv/libdv/Makefile.in,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** Makefile.in 6 Aug 2006 20:56:37 -0000 1.6 --- Makefile.in 6 Aug 2006 21:45:47 -0000 1.7 *************** *** 306,310 **** $(libdv_la_ASMS) ! libdv_la_LDFLAGS = -version-info 4:2:0 dovlc_SOURCES = dovlc.c dovlc_LDADD = libdv.la --- 306,310 ---- $(libdv_la_ASMS) ! libdv_la_LDFLAGS = -version-info 4:3:0 dovlc_SOURCES = dovlc.c dovlc_LDADD = libdv.la |
|
From: Dan D. <dde...@us...> - 2006-08-06 21:45:50
|
Update of /cvsroot/libdv/libdv In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv22261 Modified Files: ChangeLog config.guess config.sub configure configure.ac libtool Log Message: bump versions Index: ChangeLog =================================================================== RCS file: /cvsroot/libdv/libdv/ChangeLog,v retrieving revision 1.118 retrieving revision 1.119 diff -C2 -r1.118 -r1.119 *** ChangeLog 6 Aug 2006 20:29:52 -0000 1.118 --- ChangeLog 6 Aug 2006 21:45:46 -0000 1.119 *************** *** 7,10 **** --- 7,12 ---- automatically disable GTK-based features (playdv) when GTK+ 1.2 is not found and to fix dist make target behavior with GTK+ disabled. + * libdv/Makefile.am: bump libtool revision. + * configure.ac: bump project version to 1.0.0. 2006-04-10 Dan Dennedy <da...@de...> Index: config.guess =================================================================== RCS file: /cvsroot/libdv/libdv/config.guess,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** config.guess 6 Aug 2006 20:56:37 -0000 1.4 --- config.guess 6 Aug 2006 21:45:46 -0000 1.5 *************** *** 4,8 **** # 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. ! timestamp='2005-07-08' # This file is free software; you can redistribute it and/or modify it --- 4,8 ---- # 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. ! timestamp='2005-12-13' # This file is free software; you can redistribute it and/or modify it *************** *** 780,784 **** echo ${UNAME_MACHINE}-pc-pw32 exit ;; ! x86:Interix*:[34]*) echo i586-pc-interix${UNAME_RELEASE}|sed -e 's/\..*//' exit ;; --- 780,784 ---- echo ${UNAME_MACHINE}-pc-pw32 exit ;; ! x86:Interix*:[345]*) echo i586-pc-interix${UNAME_RELEASE}|sed -e 's/\..*//' exit ;; *************** *** 795,799 **** echo ${UNAME_MACHINE}-pc-uwin exit ;; ! amd64:CYGWIN*:*:*) echo x86_64-unknown-cygwin exit ;; --- 795,799 ---- echo ${UNAME_MACHINE}-pc-uwin exit ;; ! amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) echo x86_64-unknown-cygwin exit ;; *************** *** 852,856 **** #endif EOF ! eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=` test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ;; --- 852,856 ---- #endif EOF ! 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; } ;; *************** *** 871,877 **** #endif EOF ! eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=` test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ;; ppc:Linux:*:*) echo powerpc-unknown-linux-gnu --- 871,880 ---- #endif EOF ! 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 *************** *** 917,920 **** --- 920,926 ---- echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; + vax:Linux:*:*) + echo ${UNAME_MACHINE}-dec-linux-gnu + exit ;; x86_64:Linux:*:*) echo x86_64-unknown-linux-gnu *************** *** 962,966 **** # endif #else ! #ifdef __INTEL_COMPILER LIBC=gnu #else --- 968,972 ---- # endif #else ! #if defined(__INTEL_COMPILER) || defined(__PGI) LIBC=gnu #else *************** *** 972,976 **** #endif EOF ! eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^LIBC=` test x"${LIBC}" != x && { echo "${UNAME_MACHINE}-pc-linux-${LIBC}" --- 978,982 ---- #endif EOF ! 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}" *************** *** 1183,1187 **** UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown case $UNAME_PROCESSOR in - *86) UNAME_PROCESSOR=i686 ;; unknown) UNAME_PROCESSOR=powerpc ;; esac --- 1189,1192 ---- *************** *** 1262,1265 **** --- 1267,1273 ---- echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//' exit ;; + i*86:rdos:*:*) + echo ${UNAME_MACHINE}-pc-rdos + exit ;; esac Index: config.sub =================================================================== RCS file: /cvsroot/libdv/libdv/config.sub,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** config.sub 6 Aug 2006 20:56:37 -0000 1.4 --- config.sub 6 Aug 2006 21:45:46 -0000 1.5 *************** *** 4,8 **** # 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. ! timestamp='2005-07-08' # This file is (in principle) common to ALL GNU software. --- 4,8 ---- # 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. ! timestamp='2005-12-11' # This file is (in principle) common to ALL GNU software. *************** *** 120,125 **** maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` case $maybe_os in ! nto-qnx* | linux-gnu* | linux-dietlibc | 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/'` --- 120,126 ---- maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` case $maybe_os in ! 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/'` *************** *** 172,175 **** --- 173,180 ---- os=-hiuxwe2 ;; + -sco6) + os=-sco5v6 + basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` + ;; -sco5) os=-sco3.2v5 *************** *** 188,191 **** --- 193,200 ---- 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 *************** *** 258,262 **** | mipstx39 | mipstx39el \ | mn10200 | mn10300 \ ! | ms1 \ | msp430 \ | ns16k | ns32k \ --- 267,271 ---- | mipstx39 | mipstx39el \ | mn10200 | mn10300 \ ! | mt \ | msp430 \ | ns16k | ns32k \ *************** *** 287,290 **** --- 296,302 ---- m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) ;; + ms1) + basic_machine=mt-unknown + ;; # We use `pc' rather than `unknown' *************** *** 337,341 **** | mipstx39-* | mipstx39el-* \ | mmix-* \ ! | ms1-* \ | msp430-* \ | none-* | np1-* | ns16k-* | ns32k-* \ --- 349,353 ---- | mipstx39-* | mipstx39el-* \ | mmix-* \ ! | mt-* \ | msp430-* \ | none-* | np1-* | ns16k-* | ns32k-* \ *************** *** 697,700 **** --- 709,715 ---- os=-msdos ;; + ms1-*) + basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` + ;; mvs) basic_machine=i370-ibm *************** *** 860,863 **** --- 875,882 ---- os=-pw32 ;; + rdos) + basic_machine=i386-pc + os=-rdos + ;; rom68k) basic_machine=m68k-rom68k *************** *** 1182,1186 **** | -chorusos* | -chorusrdb* \ | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ ! | -mingw32* | -linux-gnu* | -linux-uclibc* | -uxpv* | -beos* | -mpeix* | -udk* \ | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ --- 1201,1206 ---- | -chorusos* | -chorusrdb* \ | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ ! | -mingw32* | -linux-gnu* | -linux-newlib* | -linux-uclibc* \ ! | -uxpv* | -beos* | -mpeix* | -udk* \ | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ *************** *** 1189,1193 **** | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ ! | -skyos* | -haiku*) # Remember, each alternative MUST END IN *, to match a version number. ;; --- 1209,1213 ---- | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ ! | -skyos* | -haiku* | -rdos*) # Remember, each alternative MUST END IN *, to match a version number. ;; Index: configure =================================================================== RCS file: /cvsroot/libdv/libdv/configure,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -r1.15 -r1.16 *** configure 6 Aug 2006 20:56:37 -0000 1.15 --- configure 6 Aug 2006 21:45:46 -0000 1.16 *************** *** 2405,2409 **** # Define the identity of the package. PACKAGE=libdv ! VERSION=0.104 --- 2405,2409 ---- # Define the identity of the package. PACKAGE=libdv ! VERSION=1.0.0 Index: configure.ac =================================================================== RCS file: /cvsroot/libdv/libdv/configure.ac,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -r1.24 -r1.25 *** configure.ac 6 Aug 2006 20:29:52 -0000 1.24 --- configure.ac 6 Aug 2006 21:45:47 -0000 1.25 *************** *** 7,11 **** AC_CANONICAL_HOST AC_CANONICAL_TARGET ! AM_INIT_AUTOMAKE(libdv, 0.104) AM_MAINTAINER_MODE --- 7,11 ---- AC_CANONICAL_HOST AC_CANONICAL_TARGET ! AM_INIT_AUTOMAKE(libdv, 1.0.0) AM_MAINTAINER_MODE Index: libtool =================================================================== RCS file: /cvsroot/libdv/libdv/libtool,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** libtool 6 Aug 2006 20:56:37 -0000 1.6 --- libtool 6 Aug 2006 21:45:47 -0000 1.7 *************** *** 2,6 **** # libtoolT - Provide generalized library-building support services. ! # Generated automatically by (GNU libdv 0.104) # NOTE: Changes made to this file will be lost: look at ltmain.sh. # --- 2,6 ---- # libtoolT - Provide generalized library-building support services. ! # Generated automatically by (GNU libdv 1.0.0) # NOTE: Changes made to this file will be lost: look at ltmain.sh. # |
|
From: Dan D. <dde...@us...> - 2006-08-06 20:56:41
|
Update of /cvsroot/libdv/libdv In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv2194 Modified Files: INSTALL Makefile.in aclocal.m4 bootstrap config.guess config.h.in config.sub configure depcomp install-sh libtool ltmain.sh missing Log Message: make bootstrap use autoreconf Index: INSTALL =================================================================== RCS file: /cvsroot/libdv/libdv/INSTALL,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** INSTALL 17 Nov 2004 03:36:29 -0000 1.2 --- INSTALL 6 Aug 2006 20:56:37 -0000 1.3 *************** *** 2,6 **** ************************* ! Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004 Free Software Foundation, Inc. --- 2,6 ---- ************************* ! Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005 Free Software Foundation, Inc. *************** *** 103,116 **** ================== ! By default, `make install' will install the package's files in ! `/usr/local/bin', `/usr/local/man', etc. You can specify an ! installation prefix other than `/usr/local' by giving `configure' the ! option `--prefix=PREFIX'. You can specify separate installation prefixes for architecture-specific files and architecture-independent files. If you ! give `configure' the option `--exec-prefix=PREFIX', the package will ! use PREFIX as the prefix for installing programs and libraries. ! Documentation and other data files will still use the regular prefix. In addition, if you use an unusual directory layout you can give --- 103,116 ---- ================== ! By default, `make install' installs the package's commands under ! `/usr/local/bin', include files under `/usr/local/include', etc. You ! can specify an installation prefix other than `/usr/local' by giving ! `configure' the option `--prefix=PREFIX'. You can specify separate installation prefixes for architecture-specific files and architecture-independent files. If you ! pass the option `--exec-prefix=PREFIX' to `configure', the package uses ! PREFIX as the prefix for installing programs and libraries. ! Documentation and other data files still use the regular prefix. In addition, if you use an unusual directory layout you can give *************** *** 160,164 **** If you are _building_ compiler tools for cross-compiling, you should ! use the `--target=TYPE' option to select the type of system they will produce code for. --- 160,164 ---- If you are _building_ compiler tools for cross-compiling, you should ! use the option `--target=TYPE' to select the type of system they will produce code for. *************** *** 190,195 **** ./configure CC=/usr/local2/bin/gcc ! will cause the specified gcc to be used as the C compiler (unless it is ! overridden in the site shell script). `configure' Invocation --- 190,200 ---- ./configure CC=/usr/local2/bin/gcc ! causes the specified `gcc' to be used as the C compiler (unless it is ! overridden in the site shell script). Here is a another example: ! ! /bin/bash ./configure CONFIG_SHELL=/bin/bash ! ! Here the `CONFIG_SHELL=/bin/bash' operand causes subsequent ! configuration-related scripts to be executed by `/bin/bash'. `configure' Invocation Index: Makefile.in =================================================================== RCS file: /cvsroot/libdv/libdv/Makefile.in,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** Makefile.in 17 Nov 2004 03:36:29 -0000 1.6 --- Makefile.in 6 Aug 2006 20:56:37 -0000 1.7 *************** *** 1,7 **** ! # Makefile.in generated by automake 1.9.2 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, --- 1,7 ---- ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, *************** *** 73,77 **** ETAGS = etags CTAGS = ctags ! DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) --- 73,77 ---- ETAGS = etags CTAGS = ctags ! DIST_SUBDIRS = libdv encodedv playdv DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) *************** *** 116,122 **** F77 = @F77@ FFLAGS = @FFLAGS@ GTK_CFLAGS = @GTK_CFLAGS@ - GTK_CONFIG = @GTK_CONFIG@ GTK_LIBS = @GTK_LIBS@ HOST_X86_64_FALSE = @HOST_X86_64_FALSE@ HOST_X86_64_TRUE = @HOST_X86_64_TRUE@ --- 116,124 ---- F77 = @F77@ FFLAGS = @FFLAGS@ + GREP = @GREP@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ + HAVE_GTK_FALSE = @HAVE_GTK_FALSE@ + HAVE_GTK_TRUE = @HAVE_GTK_TRUE@ HOST_X86_64_FALSE = @HOST_X86_64_FALSE@ HOST_X86_64_TRUE = @HOST_X86_64_TRUE@ *************** *** 146,150 **** PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ - PLAYDV_SUBDIR = @PLAYDV_SUBDIR@ POPT_LIB = @POPT_LIB@ PTHREAD_LIBS = @PTHREAD_LIBS@ --- 148,151 ---- *************** *** 159,170 **** STRIP = @STRIP@ VERSION = @VERSION@ XV_LIB = @XV_LIB@ ac_aux_dir = @ac_aux_dir@ - ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ --- 160,169 ---- STRIP = @STRIP@ VERSION = @VERSION@ + XMKMF = @XMKMF@ XV_LIB = @XV_LIB@ ac_aux_dir = @ac_aux_dir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ *************** *** 183,186 **** --- 182,188 ---- build_vendor = @build_vendor@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ *************** *** 189,192 **** --- 191,195 ---- host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ *************** *** 194,203 **** --- 197,209 ---- libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ *************** *** 208,212 **** target_os = @target_os@ target_vendor = @target_vendor@ ! SUBDIRS = libdv encodedv @PLAYDV_SUBDIR@ AUX_DIST = $(ac_aux_dir)/config.guess \ $(ac_aux_dir)/config.sub \ --- 214,220 ---- target_os = @target_os@ target_vendor = @target_vendor@ ! @HAVE_GTK_FALSE@gtk_subdirs = ! @HAVE_GTK_TRUE@gtk_subdirs = playdv ! SUBDIRS = libdv encodedv $(gtk_subdirs) AUX_DIST = $(ac_aux_dir)/config.guess \ $(ac_aux_dir)/config.sub \ *************** *** 321,325 **** # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): ! @set fnord $$MAKEFLAGS; amf=$$2; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ --- 329,339 ---- # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): ! @failcom='exit 1'; \ ! for f in x $$MAKEFLAGS; do \ ! case $$f in \ ! *=* | --[!k]*);; \ ! *k*) failcom='fail=yes';; \ ! esac; \ ! done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ *************** *** 333,337 **** fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ ! || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ done; \ if test "$$dot_seen" = "no"; then \ --- 347,351 ---- fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ ! || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ *************** *** 341,345 **** mostlyclean-recursive clean-recursive distclean-recursive \ maintainer-clean-recursive: ! @set fnord $$MAKEFLAGS; amf=$$2; \ dot_seen=no; \ case "$@" in \ --- 355,365 ---- mostlyclean-recursive clean-recursive distclean-recursive \ maintainer-clean-recursive: ! @failcom='exit 1'; \ ! for f in x $$MAKEFLAGS; do \ ! case $$f in \ ! *=* | --[!k]*);; \ ! *k*) failcom='fail=yes';; \ ! esac; \ ! done; \ dot_seen=no; \ case "$@" in \ *************** *** 362,366 **** fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ ! || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ done && test -z "$$fail" tags-recursive: --- 382,386 ---- fi; \ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ ! || eval $$failcom; \ done && test -z "$$fail" tags-recursive: Index: aclocal.m4 =================================================================== RCS file: /cvsroot/libdv/libdv/aclocal.m4,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** aclocal.m4 30 Nov 2004 03:39:35 -0000 1.5 --- aclocal.m4 6 Aug 2006 20:56:37 -0000 1.6 *************** *** 1,6 **** ! # generated automatically by aclocal 1.9.2 -*- Autoconf -*- ! # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 ! # Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, --- 1,6 ---- ! # generated automatically by aclocal 1.9.6 -*- Autoconf -*- ! # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, [...5123 lines suppressed...] ! # along with this program; if not, write to the Free Software ! # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA ! # 02111-1307, USA. ! ! # serial 1 # _AM_PROG_TAR(FORMAT) --- 7533,7543 ---- # Check how to create a tarball. -*- Autoconf -*- ! # Copyright (C) 2004, 2005 Free Software Foundation, Inc. ! # ! # This file is free software; the Free Software Foundation ! # gives unlimited permission to copy and/or distribute it, ! # with or without modifications, as long as this notice is preserved. + # serial 2 # _AM_PROG_TAR(FORMAT) Index: bootstrap =================================================================== RCS file: /cvsroot/libdv/libdv/bootstrap,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** bootstrap 7 Mar 2006 05:59:17 -0000 1.9 --- bootstrap 6 Aug 2006 20:56:37 -0000 1.10 *************** *** 1,138 **** #! /bin/bash - #set -x - - DIE=0 - package=libdv - srcfile=libdv/dv.c - - # Local settings for autotools, set them - # as appropriate for your system. - - export AUTOCONF=autoconf - export AUTOHEADER=autoheader - export AUTOMAKE=automake - export ACLOCAL=aclocal - export LIBTOOLIZE=libtoolize - export LIBTOOL=libtool - - # End of local settings - - function autoconf_version_msg() { - echo - echo "You must have autoconf 2.50 or greater to bootstrap $package." - echo "Get the latest version from ftp://ftp.gnu.org/gnu/autoconf/" - DIE=1 - } - - ($AUTOCONF --version) < /dev/null > /dev/null 2>&1 || { - autoconf_version_msg - } - - autoconf_major=`$AUTOCONF --version | head -n 1 | sed 's/^[^0-9]*//' | sed 's/\([0-9]*\).\([0-9]*\)\([a-z]*\)/\1/'` - autoconf_minor=`$AUTOCONF --version | head -n 1 | sed 's/^[^0-9]*//' | sed 's/\([0-9]*\).\([0-9]*\)\([a-z]*\)/\2/'` - - if [ $autoconf_major -le 2 ]; then - if [ $autoconf_major -lt 2 ]; then - autoconf_version_msg - elif [ $autoconf_minor -lt 50 ]; then - autoconf_version_msg - fi - fi - - function automake_version_msg () { - echo - echo "You must have automake 1.5 or greater to bootstrap $package." - echo "Get the latest version from ftp://ftp.gnu.org/gnu/automake/" - DIE=1 - } - ($AUTOMAKE --version) < /dev/null > /dev/null 2>&1 || { - automake_version_msg - } - - - automake_major=`$AUTOMAKE --version | head -n 1 | sed 's/^.*\([0-9][0-9]*\)\.\([0-9][0-9]*\)\(-[^-]*\)*/\1/'` - automake_minor=`$AUTOMAKE --version | head -n 1 | sed 's/^.*\([0-9][0-9]*\)\.\([0-9][0-9]*\)\(-[^-]*\)*/\2/'` - - if [ $automake_major -le 1 ]; then - if [ $automake_major -lt 1 ]; then - automake_version_msg - elif [ $automake_minor -lt 5 ]; then - automake_version_msg - fi - fi - - function libtool_version_msg () { - echo - echo "You must have libtool 1.4 or greater to bootstrap $package." - echo "Get the latest version from ftp://alpha.gnu.org/gnu/libtool/" - DIE=1 - } - - ($LIBTOOL --version) < /dev/null > /dev/null 2>&1 || { - libtool_version_msg - } - - libtool_version=`$LIBTOOL --version | head -n 1 | sed 's/^.* \([0-9\.]*\) .*$/\1/'` - libtool_major=`echo $libtool_version | cut -d. -f1` - libtool_minor=`echo $libtool_version | cut -d. -f2` - if [ $libtool_major -le 1 ]; then - if [ $libtool_major -lt 1 ]; then - libtool_version_msg - elif [ $libtool_minor -lt 4 ]; then - libtool_version_msg - fi - fi - - function pkgconfig_version_msg () { - echo - echo "You must have pkg-config 0.7.0 or greater to bootstrap $package." - echo "I got mine from ftp://ftp.gtk.org/pub/gtk/v1.3/dependencies/" - DIE=1 - } - - (pkg-config --version) < /dev/null > /dev/null 2>&1 || { - pkgconfig_version_msg - } - - pkgconfig_major=`pkg-config --version | sed 's/\([0-9][0-9]*\)\.\([0-9][0-9]*\)/\1/'` - pkgconfig_minor=`pkg-config --version | sed 's/\([0-9][0-9]*\)\.\([0-9][0-9]*\)/\2/'` - - if [ $pkgconfig_major -lt 1 ]; then - if [ $pkgconfig_minor -lt 7 ]; then - pkgconfig_version_msg - fi - fi - - # - # Sigh, we need this here because of SDL_PATH_CONFIG in configure.in - # - function sdl_version_msg () { - echo - echo "You must have SDL installed to bootstrap $package." - echo "Download the appropriate package for your distribution," - echo "or get the source tarball at http://libsdl.org/" - DIE=1 - } - - (sdl-config --version) < /dev/null > /dev/null 2>&1 || { - sdl_version_msg - } - - - if test "$DIE" -eq 1; then - exit 1 - fi - - test -f $srcfile || { - echo "You must run this script in the top-level $package directory" - exit 1 - } - - set -x - $ACLOCAL - $LIBTOOLIZE --force --copy - $ACLOCAL - $AUTOHEADER - $AUTOMAKE --foreign --copy --add-missing - $AUTOCONF --- 1,3 ---- #! /bin/bash + autoreconf --force --install Index: config.guess =================================================================== RCS file: /cvsroot/libdv/libdv/config.guess,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** config.guess 30 Nov 2004 03:39:35 -0000 1.3 --- config.guess 6 Aug 2006 20:56:37 -0000 1.4 *************** *** 2,8 **** # 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. ! timestamp='2003-06-17' # This file is free software; you can redistribute it and/or modify it --- 2,8 ---- # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, [...1745 lines suppressed...] c4*) echo c4-convex-bsd ! exit ;; esac fi *************** *** 1372,1376 **** download the most up to date version of the config scripts from ! ftp://ftp.gnu.org/pub/gnu/config/ If the version you run ($0) is already up to date, please --- 1422,1428 ---- download the most up to date version of the config scripts from ! http://savannah.gnu.org/cgi-bin/viewcvs/*checkout*/config/config/config.guess ! and ! http://savannah.gnu.org/cgi-bin/viewcvs/*checkout*/config/config/config.sub If the version you run ($0) is already up to date, please Index: config.h.in =================================================================== RCS file: /cvsroot/libdv/libdv/config.h.in,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** config.h.in 20 Oct 2004 03:49:23 -0000 1.2 --- config.h.in 6 Aug 2006 20:56:37 -0000 1.3 *************** *** 124,130 **** #endif ! /* Define to `long' if <sys/types.h> does not define. */ #undef off_t ! /* Define to `unsigned' if <sys/types.h> does not define. */ #undef size_t --- 124,130 ---- #endif ! /* Define to `long int' if <sys/types.h> does not define. */ #undef off_t ! /* Define to `unsigned int' if <sys/types.h> does not define. */ #undef size_t Index: config.sub =================================================================== RCS file: /cvsroot/libdv/libdv/config.sub,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** config.sub 30 Nov 2004 03:39:35 -0000 1.3 --- config.sub 6 Aug 2006 20:56:37 -0000 1.4 *************** *** 2,8 **** # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, ! # 2000, 2001, 2002, 2003 Free Software Foundation, Inc. ! timestamp='2003-06-18' # This file is (in principle) common to ALL GNU software. --- 2,8 ---- # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, ! # 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. ! timestamp='2005-07-08' # This file is (in principle) common to ALL GNU software. *************** *** 22,28 **** # 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. ! # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a --- 22,28 ---- # 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., 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 *************** *** 30,33 **** --- 30,34 ---- # the same distribution terms that you use for the rest of that program. + # Please send patches to <con...@gn...>. Submit a context # diff and a properly formatted ChangeLog entry. *************** *** 71,75 **** GNU config.sub ($timestamp) ! Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc. --- 72,76 ---- GNU config.sub ($timestamp) ! Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. *************** *** 84,92 **** case $1 in --time-stamp | --time* | -t ) ! echo "$timestamp" ; exit 0 ;; --version | -v ) ! echo "$version" ; exit 0 ;; --help | --h* | -h ) ! echo "$usage"; exit 0 ;; -- ) # Stop option processing shift; break ;; --- 85,93 ---- case $1 in --time-stamp | --time* | -t ) ! echo "$timestamp" ; exit ;; --version | -v ) ! echo "$version" ; exit ;; --help | --h* | -h ) ! echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; *************** *** 100,104 **** # First pass through any local machine types. echo $1 ! exit 0;; * ) --- 101,105 ---- # First pass through any local machine types. echo $1 ! exit ;; * ) *************** *** 119,123 **** maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` case $maybe_os in ! nto-qnx* | linux-gnu* | freebsd*-gnu* | netbsd*-gnu* | storm-chaos* | os2-emx* | rtmk-nova*) os=-$maybe_os basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` --- 120,125 ---- maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` case $maybe_os in ! nto-qnx* | linux-gnu* | linux-dietlibc | 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/'` *************** *** 145,149 **** -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ ! -apple | -axis) os= basic_machine=$1 --- 147,151 ---- -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ ! -apple | -axis | -knuth | -cray) os= basic_machine=$1 *************** *** 229,233 **** --- 231,237 ---- | 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 \ + | bfin \ | c4x | clipper \ | d10v | d30v | dlx | dsp16xx \ *************** *** 235,240 **** | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | i370 | i860 | i960 | ia64 \ ! | ip2k \ ! | m32r | m68000 | m68k | m88k | mcore \ | mips | mipsbe | mipseb | mipsel | mipsle \ | mips16 \ --- 239,244 ---- | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | i370 | i860 | i960 | ia64 \ ! | ip2k | iq2000 \ ! | m32r | m32rle | m68000 | m68k | m88k | maxq | mcore \ | mips | mipsbe | mipseb | mipsel | mipsle \ | mips16 \ *************** *** 245,273 **** | mips64vr4300 | mips64vr4300el \ | mips64vr5000 | mips64vr5000el \ | mipsisa32 | mipsisa32el \ | mipsisa32r2 | mipsisa32r2el \ | mipsisa64 | mipsisa64el \ | mipsisa64sb1 | mipsisa64sb1el \ | mipsisa64sr71k | mipsisa64sr71kel \ | mipstx39 | mipstx39el \ | mn10200 | mn10300 \ | msp430 \ | ns16k | ns32k \ ! | openrisc | or32 \ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ | pyramid \ ! | s390 | s390x \ ! | sh | sh[1234] | sh[23]e | sh[34]eb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ ! | sparc | sparc64 | sparc86x | sparclet | sparclite | sparcv9 | sparcv9b \ | strongarm \ | tahoe | thumb | tic4x | tic80 | tron \ | v850 | v850e \ | we32k \ ! | x86 | xscale | xstormy16 | xtensa \ | z8k) basic_machine=$basic_machine-unknown ;; m6811 | m68hc11 | m6812 | m68hc12) # Motorola 68HC11/12. --- 249,283 ---- | mips64vr4300 | mips64vr4300el \ | mips64vr5000 | mips64vr5000el \ + | mips64vr5900 | mips64vr5900el \ | mipsisa32 | mipsisa32el \ | mipsisa32r2 | mipsisa32r2el \ | mipsisa64 | mipsisa64el \ + | mipsisa64r2 | mipsisa64r2el \ | mipsisa64sb1 | mipsisa64sb1el \ | mipsisa64sr71k | mipsisa64sr71kel \ | mipstx39 | mipstx39el \ | mn10200 | mn10300 \ + | ms1 \ | msp430 \ | ns16k | ns32k \ ! | or32 \ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ | pyramid \ ! | sh | sh[1234] | sh[24]a | sh[23]e | sh[34]eb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ ! | sparc | sparc64 | sparc64b | sparc86x | sparclet | sparclite \ ! | sparcv8 | sparcv9 | sparcv9b \ | strongarm \ | tahoe | thumb | tic4x | tic80 | tron \ | v850 | v850e \ | we32k \ ! | x86 | xscale | xscalee[bl] | xstormy16 | xtensa \ | z8k) basic_machine=$basic_machine-unknown ;; + m32c) + basic_machine=$basic_machine-unknown + ;; m6811 | m68hc11 | m6812 | m68hc12) # Motorola 68HC11/12. *************** *** 297,303 **** | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ | avr-* \ ! | bs2000-* \ | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \ ! | clipper-* | cydra-* \ | d10v-* | d30v-* | dlx-* \ | elxsi-* \ --- 307,313 ---- | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ | avr-* \ ! | bfin-* | bs2000-* \ | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \ ! | clipper-* | craynv-* | cydra-* \ | d10v-* | d30v-* | dlx-* \ | elxsi-* \ *************** *** 306,313 **** | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ | i*86-* | i860-* | i960-* | ia64-* \ ! | ip2k-* \ ! | m32r-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ ! | m88110-* | m88k-* | mcore-* \ | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ | mips16-* \ --- 316,323 ---- | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ | i*86-* | i860-* | i960-* | ia64-* \ ! | ip2k-* | iq2000-* \ ! | m32r-* | m32rle-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ ! | m88110-* | m88k-* | maxq-* | mcore-* \ | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ | mips16-* \ *************** *** 318,329 **** | mips64vr4300-* | mips64vr4300el-* \ | mips64vr5000-* | mips64vr5000el-* \ | mipsisa32-* | mipsisa32el-* \ | mipsisa32r2-* | mipsisa32r2el-* \ | mipsisa64-* | mipsisa64el-* \ | mipsisa64sb1-* | mipsisa64sb1el-* \ | mipsisa64sr71k-* | mipsisa64sr71kel-* \ | mipstx39-* | mipstx39el-* \ | msp430-* \ ! | none-* | np1-* | nv1-* | ns16k-* | ns32k-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ --- 328,343 ---- | mips64vr4300-* | mips64vr4300el-* \ | mips64vr5000-* | mips64vr5000el-* \ + | mips64vr5900-* | mips64vr5900el-* \ | mipsisa32-* | mipsisa32el-* \ | mipsisa32r2-* | mipsisa32r2el-* \ | mipsisa64-* | mipsisa64el-* \ + | mipsisa64r2-* | mipsisa64r2el-* \ | mipsisa64sb1-* | mipsisa64sb1el-* \ | mipsisa64sr71k-* | mipsisa64sr71kel-* \ | mipstx39-* | mipstx39el-* \ + | mmix-* \ + | ms1-* \ | msp430-* \ ! | none-* | np1-* | ns16k-* | ns32k-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ *************** *** 331,339 **** | pyramid-* \ | romp-* | rs6000-* \ ! | s390-* | s390x-* \ ! | sh-* | sh[1234]-* | sh[23]e-* | sh[34]eb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ ! | sparc-* | sparc64-* | sparc86x-* | sparclet-* | sparclite-* \ ! | sparcv9-* | sparcv9b-* | strongarm-* | sv1-* | sx?-* \ | tahoe-* | thumb-* \ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ --- 345,353 ---- | pyramid-* \ | romp-* | rs6000-* \ ! | sh-* | sh[1234]-* | sh[24]a-* | sh[23]e-* | sh[34]eb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ ! | sparc-* | sparc64-* | sparc64b-* | sparc86x-* | sparclet-* \ ! | sparclite-* \ ! | sparcv8-* | sparcv9-* | sparcv9b-* | strongarm-* | sv1-* | sx?-* \ | tahoe-* | thumb-* \ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ *************** *** 341,349 **** | v850-* | v850e-* | vax-* \ | we32k-* \ ! | x86-* | x86_64-* | xps100-* | xscale-* | xstormy16-* \ ! | xtensa-* \ | ymp-* \ | z8k-*) ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. --- 355,365 ---- | v850-* | v850e-* | vax-* \ | we32k-* \ ! | x86-* | x86_64-* | xps100-* | xscale-* | xscalee[bl]-* \ ! | xstormy16-* | xtensa-* \ | ymp-* \ | z8k-*) ;; + m32c-*) + ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. *************** *** 362,365 **** --- 378,384 ---- os=-udi ;; + abacus) + basic_machine=abacus-unknown + ;; adobe68k) basic_machine=m68010-adobe *************** *** 379,382 **** --- 398,404 ---- basic_machine=x86_64-pc ;; + amd64-*) + basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; amdahl) basic_machine=580-amdahl *************** *** 438,447 **** --- 460,484 ---- os=-unicos ;; + craynv) + basic_machine=craynv-cray + os=-unicosmp + ;; + cr16c) + basic_machine=cr16c-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,469 **** --- 503,510 ---- os=-sysv3 ;; + djgpp) + basic_machine=i586-pc + os=-msdosdjgpp + ;; dpx20 | dpx20-*) basic_machine=rs6000-bull *************** *** 644,651 **** basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown ;; - mmix*) - basic_machine=mmix-knuth - os=-mmixware - ;; monitor) basic_machine=m68k-rom68k --- 685,688 ---- *************** *** 728,735 **** basic_machine=np1-gould ;; - nv1) - basic_machine=nv1-cray - os=-unicosmp - ;; nsr-tandem) basic_machine=nsr-tandem --- 765,768 ---- *************** *** 739,745 **** os=-proelf ;; ! or32 | or32-*) basic_machine=or32-unknown ! os=-coff ;; OSE68000 | ose68000) --- 772,781 ---- os=-proelf ;; ! openrisc | openrisc-*) basic_machine=or32-unknown ! ;; ! os400) ! basic_machine=powerpc-ibm ! os=-os400 ;; OSE68000 | ose68000) *************** *** 834,837 **** --- 870,879 ---- basic_machine=romp-ibm ;; + s390 | s390-*) + basic_machine=s390-ibm + ;; + s390x | s390x-*) + basic_machine=s390x-ibm + ;; sa29200) basic_machine=a29k-amd *************** *** 957,960 **** --- 999,1006 ---- basic_machine=m68k-ncr ;; + tpf) + basic_machine=s390x-ibm + os=-tpf + ;; udi29k) basic_machine=a29k-amd *************** *** 1000,1003 **** --- 1046,1053 ---- os=-proelf ;; + xbox) + basic_machine=i686-pc + os=-mingw32 + ;; xps | xps100) basic_machine=xps100-honeywell *************** *** 1030,1033 **** --- 1080,1086 ---- basic_machine=romp-ibm ;; + mmix) + basic_machine=mmix-knuth + ;; rs6000) basic_machine=rs6000-ibm *************** *** 1046,1056 **** basic_machine=we32k-att ;; ! sh3 | sh4 | sh[34]eb | sh[1234]le | sh[23]ele) basic_machine=sh-unknown ;; ! sh64) ! basic_machine=sh64-unknown ! ;; ! sparc | sparcv9 | sparcv9b) basic_machine=sparc-sun ;; --- 1099,1106 ---- basic_machine=we32k-att ;; ! sh[1234] | sh[24]a | sh[34]eb | sh[1234]le | sh[23]ele) basic_machine=sh-unknown ;; ! sparc | sparcv8 | sparcv9 | sparcv9b) basic_machine=sparc-sun ;; *************** *** 1125,1135 **** | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ ! | -hiux* | -386bsd* | -netbsd* | -openbsd* | -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* \ | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ --- 1175,1186 ---- | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ ! | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* | -openbsd* \ ! | -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* | -linux-uclibc* | -uxpv* | -beos* | -mpeix* | -udk* \ | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ *************** *** 1137,1141 **** | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ ! | -powermax* | -dnix* | -nx6 | -nx7 | -sei*) # Remember, each alternative MUST END IN *, to match a version number. ;; --- 1188,1193 ---- | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ ! | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ ! | -skyos* | -haiku*) # Remember, each alternative MUST END IN *, to match a version number. ;; *************** *** 1155,1159 **** ;; -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ ! | -windows* | -osx | -abug | -netware* | -os9* | -beos* \ | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) ;; --- 1207,1211 ---- ;; -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ ! | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) ;; *************** *** 1161,1164 **** --- 1213,1219 ---- os=`echo $os | sed -e 's|mac|macos|'` ;; + -linux-dietlibc) + os=-linux-dietlibc + ;; -linux*) os=`echo $os | sed -e 's|linux|linux-gnu|'` *************** *** 1173,1176 **** --- 1228,1234 ---- os=-openedition ;; + -os400*) + os=-os400 + ;; -wince*) os=-wince *************** *** 1194,1197 **** --- 1252,1258 ---- os=-atheos ;; + -syllable*) + os=-syllable + ;; -386bsd) os=-bsd *************** *** 1216,1219 **** --- 1277,1283 ---- os=-sysv4 ;; + -tpf*) + os=-tpf + ;; -triton*) os=-sysv3 *************** *** 1252,1255 **** --- 1316,1322 ---- os=-kaos ;; + -zvmoe) + os=-zvmoe + ;; -none) ;; *************** *** 1283,1289 **** os=-aout ;; ! c4x-* | tic4x-*) ! os=-coff ! ;; # This must come before the *-dec entry. pdp10-*) --- 1350,1356 ---- os=-aout ;; ! c4x-* | tic4x-*) ! os=-coff ! ;; # This must come before the *-dec entry. pdp10-*) *************** *** 1329,1335 **** --- 1396,1408 ---- os=-beos ;; + *-haiku) + os=-haiku + ;; *-ibm) os=-aix ;; + *-knuth) + os=-mmixware + ;; *-wec) os=-proelf *************** *** 1464,1470 **** --- 1537,1549 ---- vendor=ibm ;; + -os400*) + vendor=ibm + ;; -ptx*) vendor=sequent ;; + -tpf*) + vendor=ibm + ;; -vxsim* | -vxworks* | -windiss*) vendor=wrs *************** *** 1491,1495 **** echo $basic_machine$os ! exit 0 # Local variables: --- 1570,1574 ---- echo $basic_machine$os ! exit # Local variables: Index: configure =================================================================== RCS file: /cvsroot/libdv/libdv/configure,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -r1.14 -r1.15 *** configure 30 Nov 2004 03:39:35 -0000 1.14 --- configure 6 Aug 2006 20:56:37 -0000 1.15 *************** *** 1,7 **** #! /bin/sh # Guess values for system-dependent variables and create Makefiles. ! # Generated by GNU Autoconf 2.59. # ! # Copyright (C) 2003 Free Software Foundation, Inc. # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. --- 1,8 ---- #! /bin/sh # Guess values for system-dependent variables and create Makefiles. [...27099 lines suppressed...] *************** *** 23481,23489 **** done ;; esac ! done ! _ACEOF - cat >>$CONFIG_STATUS <<\_ACEOF { (exit 0); exit 0; } --- 24053,24060 ---- done ;; + esac ! done # for ac_tag { (exit 0); exit 0; } Index: depcomp =================================================================== RCS file: /cvsroot/libdv/libdv/depcomp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** depcomp 20 Oct 2004 03:49:24 -0000 1.2 --- depcomp 6 Aug 2006 20:56:37 -0000 1.3 *************** *** 2,8 **** # depcomp - compile a program generating dependencies as side-effects ! scriptversion=2004-05-31.23 ! # Copyright (C) 1999, 2000, 2003, 2004 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify --- 2,8 ---- # depcomp - compile a program generating dependencies as side-effects ! scriptversion=2005-07-09.11 ! # Copyright (C) 1999, 2000, 2003, 2004, 2005 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify *************** *** 18,23 **** # 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. # As a special exception to the GNU General Public License, if you --- 18,23 ---- # 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., 51 Franklin Street, Fifth Floor, Boston, MA ! # 02110-1301, USA. # As a special exception to the GNU General Public License, if you *************** *** 51,59 **** Report bugs to <bug...@gn...>. EOF ! exit 0 ;; -v | --v*) echo "depcomp $scriptversion" ! exit 0 ;; esac --- 51,59 ---- Report bugs to <bug...@gn...>. EOF ! exit $? ;; -v | --v*) echo "depcomp $scriptversion" ! exit $? ;; esac *************** *** 288,304 **** if test "$libtool" = yes; then ! # Dependencies are output in .lo.d with libtool 1.4. ! # With libtool 1.5 they are output both in $dir.libs/$base.o.d ! # and in $dir.libs/$base.o.d and $dir$base.o.d. We process the ! # latter, because the former will be cleaned when $dir.libs is ! # erased. ! tmpdepfile1="$dir.libs/$base.lo.d" ! tmpdepfile2="$dir$base.o.d" ! tmpdepfile3="$dir.libs/$base.d" "$@" -Wc,-MD else ! tmpdepfile1="$dir$base.o.d" ! tmpdepfile2="$dir$base.d" ! tmpdepfile3="$dir$base.d" "$@" -MD fi --- 288,314 ---- if test "$libtool" = yes; then ! # With Tru64 cc, shared objects can also be used to make a ! # static library. This mecanism is used in libtool 1.4 series to ! # handle both shared and static libraries in a single compilation. ! # With libtool 1.4, dependencies were output in $dir.libs/$base.lo.d. ! # ! # With libtool 1.5 this exception was removed, and libtool now ! # generates 2 separate objects for the 2 libraries. These two ! # compilations output dependencies in in $dir.libs/$base.o.d and ! # in $dir$base.o.d. We have to check for both files, because ! # one of the two compilations can be disabled. We should prefer ! # $dir$base.o.d over $dir.libs/$base.o.d because the latter is ! # automatically cleaned when .libs/ is deleted, while ignoring ! # the former would cause a distcleancheck panic. ! tmpdepfile1=$dir.libs/$base.lo.d # libtool 1.4 ! tmpdepfile2=$dir$base.o.d # libtool 1.5 ! tmpdepfile3=$dir.libs/$base.o.d # libtool 1.5 ! tmpdepfile4=$dir.libs/$base.d # Compaq CCC V6.2-504 "$@" -Wc,-MD else ! tmpdepfile1=$dir$base.o.d ! tmpdepfile2=$dir$base.d ! tmpdepfile3=$dir$base.d ! tmpdepfile4=$dir$base.d "$@" -MD fi *************** *** 307,321 **** if test $stat -eq 0; then : else ! rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi ! if test -f "$tmpdepfile1"; then ! tmpdepfile="$tmpdepfile1" ! elif test -f "$tmpdepfile2"; then ! tmpdepfile="$tmpdepfile2" ! else ! tmpdepfile="$tmpdepfile3" ! fi if test -f "$tmpdepfile"; then sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" --- 317,328 ---- if test $stat -eq 0; then : else ! rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" exit $stat fi ! for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" ! do ! test -f "$tmpdepfile" && break ! done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" *************** *** 461,465 **** "$@" -E | ! sed -n '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' | sed '$ s: \\$::' > "$tmpdepfile" rm -f "$depfile" --- 468,473 ---- "$@" -E | ! sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ ! -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' | sed '$ s: \\$::' > "$tmpdepfile" rm -f "$depfile" Index: install-sh =================================================================== RCS file: /cvsroot/libdv/libdv/install-sh,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** install-sh 20 Oct 2004 03:49:24 -0000 1.2 --- install-sh 6 Aug 2006 20:56:37 -0000 1.3 *************** *** 2,6 **** # install - install a program, script, or datafile ! scriptversion=2004-09-10.20 # This originates from X11R5 (mit/util/scripts/install.sh), which was --- 2,6 ---- # install - install a program, script, or datafile ! scriptversion=2005-05-14.22 # This originates from X11R5 (mit/util/scripts/install.sh), which was *************** *** 110,114 **** continue;; ! --help) echo "$usage"; exit 0;; -m) chmodcmd="$chmodprog $2" --- 110,114 ---- continue;; ! --help) echo "$usage"; exit $?;; -m) chmodcmd="$chmodprog $2" *************** *** 135,139 **** continue;; ! --version) echo "$0 $scriptversion"; exit 0;; *) # When -d is used, all remaining arguments are directories to create. --- 135,139 ---- continue;; ! --version) echo "$0 $scriptversion"; exit $?;; *) # When -d is used, all remaining arguments are directories to create. *************** *** 214,218 **** # This sed command emulates the dirname command. ! dstdir=`echo "$dst" | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'` # Make sure that the destination directory exists. --- 214,218 ---- # This sed command emulates the dirname command. ! dstdir=`echo "$dst" | sed -e 's,/*$,,;s,[^/]*$,,;s,/*$,,;s,^$,.,'` # Make sure that the destination directory exists. *************** *** 227,231 **** # Some sh's can't handle IFS=/ for some reason. IFS='%' ! set - `echo "$dstdir" | sed -e 's@/@%@g' -e 's@^%@/@'` IFS=$oIFS --- 227,232 ---- # Some sh's can't handle IFS=/ for some reason. IFS='%' ! set x `echo "$dstdir" | sed -e 's@/@%@g' -e 's@^%@/@'` ! shift IFS=$oIFS *************** *** 296,300 **** || { echo "$0: cannot unlink or rename $dstdir/$dstfile" >&2 ! (exit 1); exit } else --- 297,301 ---- || { echo "$0: cannot unlink or rename $dstdir/$dstfile" >&2 ! (exit 1); exit 1 } else *************** *** 307,316 **** } } ! fi || { (exit 1); exit; } done # The final little trick to "correctly" pass the exit status to the exit trap. { ! (exit 0); exit } --- 308,317 ---- } } ! fi || { (exit 1); exit 1; } done # The final little trick to "correctly" pass the exit status to the exit trap. { ! (exit 0); exit 0 } Index: libtool =================================================================== RCS file: /cvsroot/libdv/libdv/libtool,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** libtool 31 Jan 2005 13:27:53 -0000 1.5 --- libtool 6 Aug 2006 20:56:37 -0000 1.6 *************** *** 23,27 **** # 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. # # As a special exception to the GNU General Public License, if you --- 23,27 ---- # 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # [...3009 lines suppressed...] # Set to yes if building a shared library automatically hardcodes DIR into the library *************** *** 7038,7045 **** # Compile-time system search path for libraries ! sys_lib_search_path_spec=" /usr/lib/gcc/i686-pc-linux-gnu/3.4.3/ /usr/lib/gcc/i686-pc-linux-gnu/3.4.3/ /usr/lib/gcc/i686-pc-linux-gnu/3.4.3/../../../../i686-pc-linux-gnu/lib/i686-pc-linux-gnu/3.4.3/ /usr/lib/gcc/i686-pc-linux-gnu/3.4.3/../../../../i686-pc-linux-gnu/lib/ /usr/lib/gcc/i686-pc-linux-gnu/3.4.3/../../../i686-pc-linux-gnu/3.4.3/ /usr/lib/gcc/i686-pc-linux-gnu/3.4.3/../../../ /lib/i686-pc-linux-gnu/3.4.3/ /lib/ /usr/lib/i686-pc-linux-gnu/3.4.3/ /usr/lib/" # Run-time system search path for libraries ! sys_lib_dlsearch_path_spec="/lib /usr/lib # # /etc/ld.so.conf # /usr/X11R6/lib /usr/local/lib # End of file /opt/mozilla/lib/mozilla /opt/gnome/lib /opt/gecko-sdk/lib /opt/gecko-sdk/bin /opt/qt/lib /opt/kde/lib " # Fix the shell variable $srcfile for the compiler. --- 7494,7501 ---- # Compile-time system search path for libraries ! sys_lib_search_path_spec=" /usr/lib/gcc/i686-pc-linux-gnu/4.1.1/ /usr/lib/gcc/i686-pc-linux-gnu/4.1.1/ /usr/lib/gcc/i686-pc-linux-gnu/4.1.1/../../../../i686-pc-linux-gnu/lib/i686-pc-linux-gnu/4.1.1/ /usr/lib/gcc/i686-pc-linux-gnu/4.1.1/../../../../i686-pc-linux-gnu/lib/ /usr/lib/gcc/i686-pc-linux-gnu/4.1.1/../../../i686-pc-linux-gnu/4.1.1/ /usr/lib/gcc/i686-pc-linux-gnu/4.1.1/../../../ /lib/i686-pc-linux-gnu/4.1.1/ /lib/ /usr/lib/i686-pc-linux-gnu/4.1.1/ /usr/lib/" # Run-time system search path for libraries ! sys_lib_dlsearch_path_spec="/lib /usr/lib /usr/X11R6/lib /usr/local/lib /opt/gnome/lib /opt/gecko-sdk/lib /opt/gecko-sdk/bin /opt/qt/lib /opt/xfce4/lib /usr/lib/libfakeroot /opt/kde/lib /opt/vmware/lib " # Fix the shell variable $srcfile for the compiler. Index: ltmain.sh =================================================================== RCS file: /cvsroot/libdv/libdv/ltmain.sh,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** ltmain.sh 30 Nov 2004 03:39:36 -0000 1.3 --- ltmain.sh 6 Aug 2006 20:56:37 -0000 1.4 *************** *** 2,6 **** # NOTE: Changing this file will not affect anything until you rerun configure. # ! # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004 # Free Software Foundation, Inc. # Originally by Gordon Matzigkeit <go...@gn...>, 1996 --- 2,6 ---- # NOTE: Changing this file will not affect anything until you rerun configure. # ! # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005 # Free Software Foundation, Inc. [...2710 lines suppressed...] # ### BEGIN LIBTOOL TAG CONFIG: disable-shared ! build_libtool_libs=no ! build_old_libs=yes # ### END LIBTOOL TAG CONFIG: disable-shared # ### BEGIN LIBTOOL TAG CONFIG: disable-static ! build_old_libs=`case $build_libtool_libs in yes) $echo no;; *) $echo yes;; esac` # ### END LIBTOOL TAG CONFIG: disable-static --- 6851,6859 ---- # ### BEGIN LIBTOOL TAG CONFIG: disable-shared ! disable_libs=shared # ### END LIBTOOL TAG CONFIG: disable-shared # ### BEGIN LIBTOOL TAG CONFIG: disable-static ! disable_libs=static # ### END LIBTOOL TAG CONFIG: disable-static Index: missing =================================================================== RCS file: /cvsroot/libdv/libdv/missing,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** missing 20 Oct 2004 03:49:24 -0000 1.2 --- missing 6 Aug 2006 20:56:37 -0000 1.3 *************** *** 2,8 **** # Common stub for a few missing GNU programs while installing. ! scriptversion=2004-09-07.08 ! # Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004 # Free Software Foundation, Inc. # Originally by Fran,cois Pinard <pi...@ir...>, 1996. --- 2,8 ---- # Common stub for a few missing GNU programs while installing. ! scriptversion=2005-06-08.21 ! # Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005 # Free Software Foundation, Inc. # Originally by Fran,cois Pinard <pi...@ir...>, 1996. *************** *** 20,25 **** # 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. # As a special exception to the GNU General Public License, if you --- 20,25 ---- # 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., 51 Franklin Street, Fifth Floor, Boston, MA ! # 02110-1301, USA. # As a special exception to the GNU General Public License, if you *************** *** 88,97 **** Send bug reports to <bug...@gn...>." ! exit 0 ;; -v|--v|--ve|--ver|--vers|--versi|--versio|--version) echo "missing $scriptversion (GNU Automake)" ! exit 0 ;; --- 88,97 ---- Send bug reports to <bug...@gn...>." ! exit $? ;; -v|--v|--ve|--ver|--vers|--versi|--versio|--version) echo "missing $scriptversion (GNU Automake)" ! exit $? ;; *************** *** 289,297 **** DU, IRIX). You might want to install the \`Texinfo' package or the \`GNU make' package. Grab either from any GNU archive site." file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'` if test -z "$file"; then ! file=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'` ! file=`sed -n '/^@setfilename/ { s/.* \([^ ]*\) *$/\1/; p; q; }' $file` ! fi touch $file ;; --- 289,304 ---- DU, IRIX). You might want to install the \`Texinfo' package or the \`GNU make' package. Grab either from any GNU archive site." + # The file to touch is that specified with -o ... file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'` if test -z "$file"; then ! # ... or it is the one specified with @setfilename ... ! infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'` ! file=`sed -n '/^@setfilename/ { s/.* \([^ ]*\) *$/\1/; p; q; }' $infile` ! # ... or it is derived from the source name (dir/f.texi becomes f.info) ! test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info ! fi ! # If the file does not exist, the user really needs makeinfo; ! # let's fail without touching anything. ! test -f $file || exit 1 touch $file ;; |
|
From: Dan D. <dde...@us...> - 2006-08-06 20:56:41
|
Update of /cvsroot/libdv/libdv/libdv In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv2194/libdv Modified Files: Makefile.in Log Message: make bootstrap use autoreconf Index: Makefile.in =================================================================== RCS file: /cvsroot/libdv/libdv/libdv/Makefile.in,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** Makefile.in 17 Nov 2004 03:36:30 -0000 1.5 --- Makefile.in 6 Aug 2006 20:56:37 -0000 1.6 *************** *** 1,7 **** ! # Makefile.in generated by automake 1.9.2 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, --- 1,7 ---- ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, *************** *** 17,22 **** - SOURCES = $(libdv_la_SOURCES) $(dovlc_SOURCES) $(enctest_SOURCES) $(gasmoff_SOURCES) $(recode_SOURCES) $(reppm_SOURCES) $(testbitstream_SOURCES) $(testvlc_SOURCES) - srcdir = @srcdir@ top_srcdir = @top_srcdir@ --- 17,20 ---- *************** *** 124,132 **** COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --mode=compile --tag=CC $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --mode=link --tag=CC $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libdv_la_SOURCES) $(dovlc_SOURCES) $(enctest_SOURCES) \ --- 122,130 ---- COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libdv_la_SOURCES) $(dovlc_SOURCES) $(enctest_SOURCES) \ *************** *** 177,183 **** F77 = @F77@ FFLAGS = @FFLAGS@ GTK_CFLAGS = @GTK_CFLAGS@ - GTK_CONFIG = @GTK_CONFIG@ GTK_LIBS = @GTK_LIBS@ HOST_X86_64_FALSE = @HOST_X86_64_FALSE@ HOST_X86_64_TRUE = @HOST_X86_64_TRUE@ --- 175,183 ---- F77 = @F77@ FFLAGS = @FFLAGS@ + GREP = @GREP@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ + HAVE_GTK_FALSE = @HAVE_GTK_FALSE@ + HAVE_GTK_TRUE = @HAVE_GTK_TRUE@ HOST_X86_64_FALSE = @HOST_X86_64_FALSE@ HOST_X86_64_TRUE = @HOST_X86_64_TRUE@ *************** *** 207,211 **** PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ - PLAYDV_SUBDIR = @PLAYDV_SUBDIR@ POPT_LIB = @POPT_LIB@ PTHREAD_LIBS = @PTHREAD_LIBS@ --- 207,210 ---- *************** *** 220,231 **** STRIP = @STRIP@ VERSION = @VERSION@ XV_LIB = @XV_LIB@ ac_aux_dir = @ac_aux_dir@ - ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ --- 219,228 ---- STRIP = @STRIP@ VERSION = @VERSION@ + XMKMF = @XMKMF@ XV_LIB = @XV_LIB@ ac_aux_dir = @ac_aux_dir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ *************** *** 244,247 **** --- 241,247 ---- build_vendor = @build_vendor@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ *************** *** 250,253 **** --- 250,254 ---- host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ *************** *** 255,264 **** --- 256,268 ---- libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ |
|
From: Dan D. <dde...@us...> - 2006-08-06 20:56:41
|
Update of /cvsroot/libdv/libdv/playdv In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv2194/playdv Modified Files: Makefile.in Log Message: make bootstrap use autoreconf Index: Makefile.in =================================================================== RCS file: /cvsroot/libdv/libdv/playdv/Makefile.in,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** Makefile.in 17 Nov 2004 03:36:31 -0000 1.5 --- Makefile.in 6 Aug 2006 20:56:37 -0000 1.6 *************** *** 1,7 **** ! # Makefile.in generated by automake 1.9.2 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, --- 1,7 ---- ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, *************** *** 16,21 **** - SOURCES = $(playdv_SOURCES) - srcdir = @srcdir@ top_srcdir = @top_srcdir@ --- 16,19 ---- *************** *** 65,73 **** COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --mode=compile --tag=CC $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --mode=link --tag=CC $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(playdv_SOURCES) --- 63,71 ---- COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(playdv_SOURCES) *************** *** 111,117 **** F77 = @F77@ FFLAGS = @FFLAGS@ GTK_CFLAGS = @GTK_CFLAGS@ - GTK_CONFIG = @GTK_CONFIG@ GTK_LIBS = @GTK_LIBS@ HOST_X86_64_FALSE = @HOST_X86_64_FALSE@ HOST_X86_64_TRUE = @HOST_X86_64_TRUE@ --- 109,117 ---- F77 = @F77@ FFLAGS = @FFLAGS@ + GREP = @GREP@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ + HAVE_GTK_FALSE = @HAVE_GTK_FALSE@ + HAVE_GTK_TRUE = @HAVE_GTK_TRUE@ HOST_X86_64_FALSE = @HOST_X86_64_FALSE@ HOST_X86_64_TRUE = @HOST_X86_64_TRUE@ *************** *** 141,145 **** PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ - PLAYDV_SUBDIR = @PLAYDV_SUBDIR@ POPT_LIB = @POPT_LIB@ PTHREAD_LIBS = @PTHREAD_LIBS@ --- 141,144 ---- *************** *** 154,165 **** STRIP = @STRIP@ VERSION = @VERSION@ XV_LIB = @XV_LIB@ ac_aux_dir = @ac_aux_dir@ - ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ --- 153,162 ---- STRIP = @STRIP@ VERSION = @VERSION@ + XMKMF = @XMKMF@ XV_LIB = @XV_LIB@ ac_aux_dir = @ac_aux_dir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ *************** *** 178,181 **** --- 175,181 ---- build_vendor = @build_vendor@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ *************** *** 184,187 **** --- 184,188 ---- host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ *************** *** 189,198 **** --- 190,202 ---- libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ |
|
From: Dan D. <dde...@us...> - 2006-08-06 20:56:40
|
Update of /cvsroot/libdv/libdv/encodedv In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv2194/encodedv Modified Files: Makefile.in Log Message: make bootstrap use autoreconf Index: Makefile.in =================================================================== RCS file: /cvsroot/libdv/libdv/encodedv/Makefile.in,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** Makefile.in 17 Nov 2004 03:36:30 -0000 1.5 --- Makefile.in 6 Aug 2006 20:56:37 -0000 1.6 *************** *** 1,7 **** ! # Makefile.in generated by automake 1.9.2 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, --- 1,7 ---- ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, *************** *** 15,20 **** @SET_MAKE@ - SOURCES = $(dubdv_SOURCES) $(dvavi_SOURCES) $(dvconnect_SOURCES) $(encodedv_SOURCES) $(fix_headers_SOURCES) $(ppmqscale_SOURCES) $(scan_packet_headers_SOURCES) $(steal_header_SOURCES) - srcdir = @srcdir@ top_srcdir = @top_srcdir@ --- 15,18 ---- *************** *** 85,93 **** COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --mode=compile --tag=CC $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --mode=link --tag=CC $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(dubdv_SOURCES) $(dvavi_SOURCES) $(dvconnect_SOURCES) \ --- 83,91 ---- COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(dubdv_SOURCES) $(dvavi_SOURCES) $(dvconnect_SOURCES) \ *************** *** 136,142 **** F77 = @F77@ FFLAGS = @FFLAGS@ GTK_CFLAGS = @GTK_CFLAGS@ - GTK_CONFIG = @GTK_CONFIG@ GTK_LIBS = @GTK_LIBS@ HOST_X86_64_FALSE = @HOST_X86_64_FALSE@ HOST_X86_64_TRUE = @HOST_X86_64_TRUE@ --- 134,142 ---- F77 = @F77@ FFLAGS = @FFLAGS@ + GREP = @GREP@ GTK_CFLAGS = @GTK_CFLAGS@ GTK_LIBS = @GTK_LIBS@ + HAVE_GTK_FALSE = @HAVE_GTK_FALSE@ + HAVE_GTK_TRUE = @HAVE_GTK_TRUE@ HOST_X86_64_FALSE = @HOST_X86_64_FALSE@ HOST_X86_64_TRUE = @HOST_X86_64_TRUE@ *************** *** 166,170 **** PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ - PLAYDV_SUBDIR = @PLAYDV_SUBDIR@ POPT_LIB = @POPT_LIB@ PTHREAD_LIBS = @PTHREAD_LIBS@ --- 166,169 ---- *************** *** 179,190 **** STRIP = @STRIP@ VERSION = @VERSION@ XV_LIB = @XV_LIB@ ac_aux_dir = @ac_aux_dir@ - ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ --- 178,187 ---- STRIP = @STRIP@ VERSION = @VERSION@ + XMKMF = @XMKMF@ XV_LIB = @XV_LIB@ ac_aux_dir = @ac_aux_dir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_F77 = @ac_ct_F77@ am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ *************** *** 203,206 **** --- 200,206 ---- build_vendor = @build_vendor@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ *************** *** 209,212 **** --- 209,213 ---- host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ *************** *** 214,223 **** --- 215,227 ---- libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ |
|
From: Dan D. <dde...@us...> - 2006-08-06 20:29:56
|
Update of /cvsroot/libdv/libdv In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv23435 Modified Files: ChangeLog configure.ac Makefile.am Log Message: apply gtk build patch from Burkhard Plaum Index: ChangeLog =================================================================== RCS file: /cvsroot/libdv/libdv/ChangeLog,v retrieving revision 1.117 retrieving revision 1.118 diff -C2 -r1.117 -r1.118 *** ChangeLog 6 Aug 2006 20:07:52 -0000 1.117 --- ChangeLog 6 Aug 2006 20:29:52 -0000 1.118 *************** *** 4,7 **** --- 4,10 ---- * libdv/*.S: apply patch from Mike Frysinger <va...@ge...> to cleanup assembly symbols by hiding them and/or setting their type. + * configure.ac, Makefile.am: apply patch from Burkhard Plaum to + automatically disable GTK-based features (playdv) when GTK+ 1.2 + is not found and to fix dist make target behavior with GTK+ disabled. 2006-04-10 Dan Dennedy <da...@de...> Index: configure.ac =================================================================== RCS file: /cvsroot/libdv/libdv/configure.ac,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -r1.23 -r1.24 *** configure.ac 18 Feb 2005 22:20:47 -0000 1.23 --- configure.ac 6 Aug 2006 20:29:52 -0000 1.24 *************** *** 161,171 **** dnl Checks for libraries. ! if $use_gtk; then REQUIRES='glib >= 1.2.4 gtk+ >= 1.2.4' ! PKG_CHECK_MODULES(GTK,$REQUIRES) AC_DEFINE(HAVE_GTK) fi dnl used in Makefile.am AC_SUBST(GTK_CFLAGS) --- 161,173 ---- dnl Checks for libraries. ! have_gtk="false" if $use_gtk; then REQUIRES='glib >= 1.2.4 gtk+ >= 1.2.4' ! PKG_CHECK_MODULES(GTK,$REQUIRES,have_gtk="true",have_gtk="false") AC_DEFINE(HAVE_GTK) fi + AM_CONDITIONAL(HAVE_GTK, test x$have_gtk = xtrue) + dnl used in Makefile.am AC_SUBST(GTK_CFLAGS) *************** *** 190,200 **** fi - if $use_gtk; then - PLAYDV_SUBDIR='playdv' - else - PLAYDV_SUBDIR='' - fi - AC_SUBST(PLAYDV_SUBDIR) - dnl ********************************************************************* --- 192,195 ---- Index: Makefile.am =================================================================== RCS file: /cvsroot/libdv/libdv/Makefile.am,v retrieving revision 1.32 retrieving revision 1.33 diff -C2 -r1.32 -r1.33 *** Makefile.am 14 Jul 2004 15:55:11 -0000 1.32 --- Makefile.am 6 Aug 2006 20:29:52 -0000 1.33 *************** *** 1,3 **** ! SUBDIRS = libdv encodedv @PLAYDV_SUBDIR@ AUX_DIST = $(ac_aux_dir)/config.guess \ --- 1,9 ---- ! if HAVE_GTK ! gtk_subdirs = playdv ! else ! gtk_subdirs = ! endif ! ! SUBDIRS = libdv encodedv $(gtk_subdirs) AUX_DIST = $(ac_aux_dir)/config.guess \ |
|
From: Dan D. <dde...@us...> - 2006-08-06 20:07:55
|
Update of /cvsroot/libdv/libdv/libdv In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv14890/libdv Modified Files: dct_block_mmx.S dct_block_mmx_x86_64.S encode_x86.S encode_x86_64.S idct_block_mmx.S idct_block_mmx_x86_64.S quant_x86.S quant_x86_64.S rgbtoyuv.S rgbtoyuv_x86_64.S transpose_x86.S transpose_x86_64.S vlc_x86.S vlc_x86_64.S Log Message: apply assembly symbol cleanup patch from Mike Frysinger Index: dct_block_mmx.S =================================================================== RCS file: /cvsroot/libdv/libdv/libdv/dct_block_mmx.S,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** dct_block_mmx.S 31 Jan 2005 13:27:54 -0000 1.4 --- dct_block_mmx.S 6 Aug 2006 20:07:52 -0000 1.5 *************** *** 60,63 **** --- 60,65 ---- .align 8 .global _dv_dct_88_block_mmx + .hidden _dv_dct_88_block_mmx + .type _dv_dct_88_block_mmx,@function _dv_dct_88_block_mmx: *************** *** 275,278 **** --- 277,282 ---- .align 8 .global _dv_dct_block_mmx_postscale_88 + .hidden _dv_dct_block_mmx_postscale_88 + .type _dv_dct_block_mmx_postscale_88,@function _dv_dct_block_mmx_postscale_88: *************** *** 751,754 **** --- 755,760 ---- .align 8 .global _dv_dct_248_block_mmx + .hidden _dv_dct_248_block_mmx + .type _dv_dct_248_block_mmx,@function _dv_dct_248_block_mmx: *************** *** 915,918 **** --- 921,926 ---- .align 8 .global _dv_dct_248_block_mmx_post_sum + .hidden _dv_dct_248_block_mmx_post_sum + .type _dv_dct_248_block_mmx_post_sum,@function _dv_dct_248_block_mmx_post_sum: *************** *** 995,998 **** --- 1003,1008 ---- .align 8 .global _dv_dct_block_mmx_postscale_248 + .hidden _dv_dct_block_mmx_postscale_248 + .type _dv_dct_block_mmx_postscale_248,@function _dv_dct_block_mmx_postscale_248: Index: dct_block_mmx_x86_64.S =================================================================== RCS file: /cvsroot/libdv/libdv/libdv/dct_block_mmx_x86_64.S,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** dct_block_mmx_x86_64.S 31 Jan 2005 13:27:54 -0000 1.2 --- dct_block_mmx_x86_64.S 6 Aug 2006 20:07:52 -0000 1.3 *************** *** 60,63 **** --- 60,65 ---- .align 8 .global _dv_dct_88_block_mmx_x86_64 + .hidden _dv_dct_88_block_mmx_x86_64 + .type _dv_dct_88_block_mmx_x86_64,@function _dv_dct_88_block_mmx_x86_64: *************** *** 272,275 **** --- 274,279 ---- .align 8 .global _dv_dct_block_mmx_x86_64_postscale_88 + .hidden _dv_dct_block_mmx_x86_64_postscale_88 + .type _dv_dct_block_mmx_x86_64_postscale_88,@function _dv_dct_block_mmx_x86_64_postscale_88: *************** *** 747,750 **** --- 751,756 ---- .align 8 .global _dv_dct_248_block_mmx_x86_64 + .hidden _dv_dct_248_block_mmx_x86_64 + .type _dv_dct_248_block_mmx_x86_64,@function _dv_dct_248_block_mmx_x86_64: *************** *** 907,910 **** --- 913,918 ---- .align 8 .global _dv_dct_248_block_mmx_x86_64_post_sum + .hidden _dv_dct_248_block_mmx_x86_64_post_sum + .type _dv_dct_248_block_mmx_x86_64_post_sum,@function _dv_dct_248_block_mmx_x86_64_post_sum: *************** *** 985,988 **** --- 993,998 ---- .align 8 .global _dv_dct_block_mmx_x86_64_postscale_248 + .hidden _dv_dct_block_mmx_x86_64_postscale_248 + .type _dv_dct_block_mmx_x86_64_postscale_248,@function _dv_dct_block_mmx_x86_64_postscale_248: Index: encode_x86.S =================================================================== RCS file: /cvsroot/libdv/libdv/libdv/encode_x86.S,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** encode_x86.S 31 Jan 2005 13:27:54 -0000 1.4 --- encode_x86.S 6 Aug 2006 20:07:52 -0000 1.5 *************** *** 34,38 **** .global _dv_vlc_encode_block_mmx ! _dv_vlc_encode_block_mmx: pushl %ebx pushl %esi --- 34,40 ---- .global _dv_vlc_encode_block_mmx ! .hidden _dv_vlc_encode_block_mmx ! .type _dv_vlc_encode_block_mmx,@function ! _dv_vlc_encode_block_mmx: pushl %ebx pushl %esi *************** *** 110,114 **** .global _dv_vlc_num_bits_block_x86 ! _dv_vlc_num_bits_block_x86: pushl %ebx pushl %esi --- 112,118 ---- .global _dv_vlc_num_bits_block_x86 ! .hidden _dv_vlc_num_bits_block_x86 ! .type _dv_vlc_num_bits_block_x86,@function ! _dv_vlc_num_bits_block_x86: pushl %ebx pushl %esi *************** *** 167,172 **** ret ! .global _dv_vlc_encode_block_pass_1_x86 ! _dv_vlc_encode_block_pass_1_x86: pushl %ebx pushl %esi --- 171,178 ---- ret ! .global _dv_vlc_encode_block_pass_1_x86 ! .hidden _dv_vlc_encode_block_pass_1_x86 ! .type _dv_vlc_encode_block_pass_1_x86,@function ! _dv_vlc_encode_block_pass_1_x86: pushl %ebx pushl %esi *************** *** 244,247 **** --- 250,255 ---- .global _dv_classify_mmx + .hidden _dv_classify_mmx + .type _dv_classify_mmx,@function _dv_classify_mmx: *************** *** 349,352 **** --- 357,362 ---- .global _dv_reorder_block_mmx + .hidden _dv_reorder_block_mmx + .type _dv_reorder_block_mmx,@function _dv_reorder_block_mmx: *************** *** 464,467 **** --- 474,479 ---- .global _dv_need_dct_248_mmx_rows + .hidden _dv_need_dct_248_mmx_rows + .type _dv_need_dct_248_mmx_rows,@function _dv_need_dct_248_mmx_rows: Index: encode_x86_64.S =================================================================== RCS file: /cvsroot/libdv/libdv/libdv/encode_x86_64.S,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** encode_x86_64.S 31 Jan 2005 13:27:54 -0000 1.4 --- encode_x86_64.S 6 Aug 2006 20:07:52 -0000 1.5 *************** *** 33,36 **** --- 33,38 ---- .global _dv_vlc_encode_block_mmx_x86_64 + .hidden _dv_vlc_encode_block_mmx_x86_64 + .type _dv_vlc_encode_block_mmx_x86_64,@function _dv_vlc_encode_block_mmx_x86_64: *************** *** 116,119 **** --- 118,123 ---- .global _dv_vlc_num_bits_block_x86_64 + .hidden _dv_vlc_num_bits_block_x86_64 + .type _dv_vlc_num_bits_block_x86_64,@function _dv_vlc_num_bits_block_x86_64: *************** *** 176,179 **** --- 180,185 ---- .global _dv_vlc_encode_block_pass_1_x86_64 + .hidden _dv_vlc_encode_block_pass_1_x86_64 + .type _dv_vlc_encode_block_pass_1_x86_64,@function _dv_vlc_encode_block_pass_1_x86_64: *************** *** 254,257 **** --- 260,265 ---- .global _dv_classify_mmx_x86_64 + .hidden _dv_classify_mmx_x86_64 + .type _dv_classify_mmx_x86_64,@function _dv_classify_mmx_x86_64: *************** *** 358,361 **** --- 366,371 ---- .global _dv_reorder_block_mmx_x86_64 + .hidden _dv_reorder_block_mmx_x86_64 + .type _dv_reorder_block_mmx_x86_64,@function _dv_reorder_block_mmx_x86_64: *************** *** 472,475 **** --- 482,487 ---- .global _dv_need_dct_248_mmx_x86_64_rows + .hidden _dv_need_dct_248_mmx_x86_64_rows + .type _dv_need_dct_248_mmx_x86_64_rows,@function _dv_need_dct_248_mmx_x86_64_rows: Index: idct_block_mmx.S =================================================================== RCS file: /cvsroot/libdv/libdv/libdv/idct_block_mmx.S,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** idct_block_mmx.S 31 Jan 2005 13:27:54 -0000 1.3 --- idct_block_mmx.S 6 Aug 2006 20:07:52 -0000 1.4 *************** *** 11,16 **** .text .align 4 ! .globl _dv_idct_block_mmx ! .type _dv_idct_block_mmx,@function _dv_idct_block_mmx: pushl %ebp --- 11,17 ---- .text .align 4 ! .global _dv_idct_block_mmx ! .hidden _dv_idct_block_mmx ! .type _dv_idct_block_mmx,@function _dv_idct_block_mmx: pushl %ebp Index: idct_block_mmx_x86_64.S =================================================================== RCS file: /cvsroot/libdv/libdv/libdv/idct_block_mmx_x86_64.S,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** idct_block_mmx_x86_64.S 31 Jan 2005 13:27:54 -0000 1.3 --- idct_block_mmx_x86_64.S 6 Aug 2006 20:07:52 -0000 1.4 *************** *** 18,23 **** .text .align 4 ! .globl _dv_idct_block_mmx_x86_64 ! .type _dv_idct_block_mmx_x86_64,@function _dv_idct_block_mmx_x86_64: /* void _dv_idct_88(dv_coeff_t *block) */ --- 18,24 ---- .text .align 4 ! .global _dv_idct_block_mmx_x86_64 ! .hidden _dv_idct_block_mmx_x86_64 ! .type _dv_idct_block_mmx_x86_64,@function _dv_idct_block_mmx_x86_64: /* void _dv_idct_88(dv_coeff_t *block) */ Index: quant_x86.S =================================================================== RCS file: /cvsroot/libdv/libdv/libdv/quant_x86.S,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** quant_x86.S 31 Jan 2005 13:27:54 -0000 1.4 --- quant_x86.S 6 Aug 2006 20:07:52 -0000 1.5 *************** *** 58,62 **** .align 4 .globl _dv_quant_88_inverse_x86 ! _dv_quant_88_inverse_x86: pushl %ebx pushl %esi --- 58,64 ---- .align 4 .globl _dv_quant_88_inverse_x86 ! .hidden _dv_quant_88_inverse_x86 ! .type _dv_quant_88_inverse_x86,@function ! _dv_quant_88_inverse_x86: pushl %ebx pushl %esi *************** *** 196,200 **** .align 4 .globl _dv_quant_x86 ! _dv_quant_x86: pushl %ebx pushl %ecx --- 198,204 ---- .align 4 .globl _dv_quant_x86 ! .hidden _dv_quant_x86 ! .type _dv_quant_x86,@function ! _dv_quant_x86: pushl %ebx pushl %ecx Index: quant_x86_64.S =================================================================== RCS file: /cvsroot/libdv/libdv/libdv/quant_x86_64.S,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** quant_x86_64.S 31 Jan 2005 13:27:54 -0000 1.4 --- quant_x86_64.S 6 Aug 2006 20:07:52 -0000 1.5 *************** *** 58,61 **** --- 58,63 ---- .align 4 .globl _dv_quant_88_inverse_x86_64 + .hidden _dv_quant_88_inverse_x86_64 + .type _dv_quant_88_inverse_x86_64,@function _dv_quant_88_inverse_x86_64: *************** *** 198,201 **** --- 200,205 ---- .align 4 .globl _dv_quant_x86_64 + .hidden _dv_quant_x86_64 + .type _dv_quant_x86_64,@function _dv_quant_x86_64: Index: rgbtoyuv.S =================================================================== RCS file: /cvsroot/libdv/libdv/libdv/rgbtoyuv.S,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** rgbtoyuv.S 31 Jan 2005 13:27:54 -0000 1.6 --- rgbtoyuv.S 6 Aug 2006 20:07:52 -0000 1.7 *************** *** 123,126 **** --- 123,129 ---- #define _outvPtr 28 + .global _dv_rgbtoycb_mmx + .hidden _dv_rgbtoycb_mmx + .type _dv_rgbtoycb_mmx,@function _dv_rgbtoycb_mmx: *************** *** 375,378 **** --- 378,383 ---- .global _dv_ppm_copy_y_block_mmx + .hidden _dv_ppm_copy_y_block_mmx + .type _dv_ppm_copy_y_block_mmx,@function _dv_ppm_copy_y_block_mmx: *************** *** 425,428 **** --- 430,435 ---- .global _dv_pgm_copy_y_block_mmx + .hidden _dv_pgm_copy_y_block_mmx + .type _dv_pgm_copy_y_block_mmx,@function _dv_pgm_copy_y_block_mmx: *************** *** 567,570 **** --- 574,579 ---- .global _dv_video_copy_y_block_mmx + .hidden _dv_video_copy_y_block_mmx + .type _dv_video_copy_y_block_mmx,@function _dv_video_copy_y_block_mmx: *************** *** 712,715 **** --- 721,726 ---- .global _dv_ppm_copy_pal_c_block_mmx + .hidden _dv_ppm_copy_pal_c_block_mmx + .type _dv_ppm_copy_pal_c_block_mmx,@function _dv_ppm_copy_pal_c_block_mmx: *************** *** 855,858 **** --- 866,871 ---- .global _dv_pgm_copy_pal_c_block_mmx + .hidden _dv_pgm_copy_pal_c_block_mmx + .type _dv_pgm_copy_pal_c_block_mmx,@function _dv_pgm_copy_pal_c_block_mmx: *************** *** 1003,1006 **** --- 1016,1021 ---- .global _dv_video_copy_pal_c_block_mmx + .hidden _dv_video_copy_pal_c_block_mmx + .type _dv_video_copy_pal_c_block_mmx,@function _dv_video_copy_pal_c_block_mmx: *************** *** 1098,1101 **** --- 1113,1118 ---- .global _dv_ppm_copy_ntsc_c_block_mmx + .hidden _dv_ppm_copy_ntsc_c_block_mmx + .type _dv_ppm_copy_ntsc_c_block_mmx,@function _dv_ppm_copy_ntsc_c_block_mmx: *************** *** 1171,1174 **** --- 1188,1193 ---- .global _dv_pgm_copy_ntsc_c_block_mmx + .hidden _dv_pgm_copy_ntsc_c_block_mmx + .type _dv_pgm_copy_ntsc_c_block_mmx,@function _dv_pgm_copy_ntsc_c_block_mmx: *************** *** 1328,1331 **** --- 1347,1352 ---- .global _dv_video_copy_ntsc_c_block_mmx + .hidden _dv_video_copy_ntsc_c_block_mmx + .type _dv_video_copy_ntsc_c_block_mmx,@function _dv_video_copy_ntsc_c_block_mmx: Index: rgbtoyuv_x86_64.S =================================================================== RCS file: /cvsroot/libdv/libdv/libdv/rgbtoyuv_x86_64.S,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** rgbtoyuv_x86_64.S 31 Jan 2005 13:27:54 -0000 1.2 --- rgbtoyuv_x86_64.S 6 Aug 2006 20:07:52 -0000 1.3 *************** *** 123,126 **** --- 123,129 ---- #define _outvPtr 28 + .global _dv_rgbtoycb_mmx_x86_64 + .hidden _dv_rgbtoycb_mmx_x86_64 + .type _dv_rgbtoycb_mmx_x86_64,@function _dv_rgbtoycb_mmx_x86_64: *************** *** 377,381 **** .global _dv_ppm_copy_y_block_mmx_x86_64 ! _dv_ppm_copy_y_block_mmx_x86_64: /* extern void _dv_ppm_copy_y_block_mmx_x86_64(short * dst, short * src); */ --- 380,386 ---- .global _dv_ppm_copy_y_block_mmx_x86_64 ! .hidden _dv_ppm_copy_y_block_mmx_x86_64 ! .type _dv_ppm_copy_y_block_mmx_x86_64,@function ! _dv_ppm_copy_y_block_mmx_x86_64: /* extern void _dv_ppm_copy_y_block_mmx_x86_64(short * dst, short * src); */ *************** *** 420,424 **** .global _dv_pgm_copy_y_block_mmx_x86_64 ! _dv_pgm_copy_y_block_mmx_x86_64: /* extern void _dv_pgm_copy_y_block_mmx_x86_64(short * dst, unsigned char * src); */ --- 425,431 ---- .global _dv_pgm_copy_y_block_mmx_x86_64 ! .hidden _dv_pgm_copy_y_block_mmx_x86_64 ! .type _dv_pgm_copy_y_block_mmx_x86_64,@function ! _dv_pgm_copy_y_block_mmx_x86_64: /* extern void _dv_pgm_copy_y_block_mmx_x86_64(short * dst, unsigned char * src); */ *************** *** 555,558 **** --- 562,567 ---- .global _dv_video_copy_y_block_mmx_x86_64 + .hidden _dv_video_copy_y_block_mmx_x86_64 + .type _dv_video_copy_y_block_mmx_x86_64,@function _dv_video_copy_y_block_mmx_x86_64: *************** *** 693,696 **** --- 702,707 ---- .global _dv_ppm_copy_pal_c_block_mmx_x86_64 + .hidden _dv_ppm_copy_pal_c_block_mmx_x86_64 + .type _dv_ppm_copy_pal_c_block_mmx_x86_64,@function _dv_ppm_copy_pal_c_block_mmx_x86_64: *************** *** 827,830 **** --- 838,843 ---- .global _dv_pgm_copy_pal_c_block_mmx_x86_64 + .hidden _dv_pgm_copy_pal_c_block_mmx_x86_64 + .type _dv_pgm_copy_pal_c_block_mmx_x86_64,@function _dv_pgm_copy_pal_c_block_mmx_x86_64: *************** *** 965,968 **** --- 978,983 ---- .global _dv_video_copy_pal_c_block_mmx_x86_64 + .hidden _dv_video_copy_pal_c_block_mmx_x86_64 + .type _dv_video_copy_pal_c_block_mmx_x86_64,@function _dv_video_copy_pal_c_block_mmx_x86_64: *************** *** 1055,1058 **** --- 1070,1075 ---- .global _dv_ppm_copy_ntsc_c_block_mmx_x86_64 + .hidden _dv_ppm_copy_ntsc_c_block_mmx_x86_64 + .type _dv_ppm_copy_ntsc_c_block_mmx_x86_64,@function _dv_ppm_copy_ntsc_c_block_mmx_x86_64: *************** *** 1123,1126 **** --- 1140,1145 ---- .global _dv_pgm_copy_ntsc_c_block_mmx_x86_64 + .hidden _dv_pgm_copy_ntsc_c_block_mmx_x86_64 + .type _dv_pgm_copy_ntsc_c_block_mmx_x86_64,@function _dv_pgm_copy_ntsc_c_block_mmx_x86_64: *************** *** 1273,1276 **** --- 1292,1297 ---- .global _dv_video_copy_ntsc_c_block_mmx_x86_64 + .hidden _dv_video_copy_ntsc_c_block_mmx_x86_64 + .type _dv_video_copy_ntsc_c_block_mmx_x86_64,@function _dv_video_copy_ntsc_c_block_mmx_x86_64: Index: transpose_x86.S =================================================================== RCS file: /cvsroot/libdv/libdv/libdv/transpose_x86.S,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** transpose_x86.S 31 Jan 2005 13:27:54 -0000 1.3 --- transpose_x86.S 6 Aug 2006 20:07:52 -0000 1.4 *************** *** 2,7 **** .text .global _dv_transpose_mmx ! _dv_transpose_mmx: pushl %ebp --- 2,9 ---- .text + .global _dv_transpose_mmx ! .hidden _dv_transpose_mmx ! .type _dv_transpose_mmx,@function _dv_transpose_mmx: pushl %ebp Index: transpose_x86_64.S =================================================================== RCS file: /cvsroot/libdv/libdv/libdv/transpose_x86_64.S,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** transpose_x86_64.S 31 Jan 2005 13:27:54 -0000 1.2 --- transpose_x86_64.S 6 Aug 2006 20:07:52 -0000 1.3 *************** *** 2,7 **** .text .global _dv_transpose_mmx_x86_64 ! _dv_transpose_mmx_x86_64: --- 2,9 ---- .text + .global _dv_transpose_mmx_x86_64 ! .hidden _dv_transpose_mmx_x86_64 ! .type _dv_transpose_mmx_x86_64,@function _dv_transpose_mmx_x86_64: Index: vlc_x86.S =================================================================== RCS file: /cvsroot/libdv/libdv/libdv/vlc_x86.S,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** vlc_x86.S 31 Jan 2005 13:27:54 -0000 1.3 --- vlc_x86.S 6 Aug 2006 20:07:52 -0000 1.4 *************** *** 144,147 **** --- 144,148 ---- .align 4 .globl dv_parse_ac_coeffs_pass0 + .type dv_parse_ac_coeffs_pass0,@function dv_parse_ac_coeffs_pass0: pushl %ebx *************** *** 362,365 **** --- 363,367 ---- */ .globl dv_parse_video_segment + .type dv_parse_video_segment,@function dv_parse_video_segment: pushl %ebx Index: vlc_x86_64.S =================================================================== RCS file: /cvsroot/libdv/libdv/libdv/vlc_x86_64.S,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** vlc_x86_64.S 31 Jan 2005 13:27:54 -0000 1.3 --- vlc_x86_64.S 6 Aug 2006 20:07:52 -0000 1.4 *************** *** 172,176 **** .align 4 .globl dv_parse_ac_coeffs_pass0 ! dv_parse_ac_coeffs_pass0: --- 172,177 ---- .align 4 .globl dv_parse_ac_coeffs_pass0 ! .type dv_parse_ac_coeffs_pass0,@function ! dv_parse_ac_coeffs_pass0: *************** *** 425,428 **** --- 426,430 ---- */ .globl dv_parse_video_segment + .type dv_parse_video_segment,@function dv_parse_video_segment: |
|
From: Dan D. <dde...@us...> - 2006-08-06 20:07:54
|
Update of /cvsroot/libdv/libdv In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv14890 Modified Files: ChangeLog Log Message: apply assembly symbol cleanup patch from Mike Frysinger Index: ChangeLog =================================================================== RCS file: /cvsroot/libdv/libdv/ChangeLog,v retrieving revision 1.116 retrieving revision 1.117 diff -C2 -r1.116 -r1.117 *** ChangeLog 11 Apr 2006 04:06:57 -0000 1.116 --- ChangeLog 6 Aug 2006 20:07:52 -0000 1.117 *************** *** 1,4 **** --- 1,8 ---- libdv ChangeLog + 2006-08-06 Dan Dennedy <da...@de...> + * libdv/*.S: apply patch from Mike Frysinger <va...@ge...> to + cleanup assembly symbols by hiding them and/or setting their type. + 2006-04-10 Dan Dennedy <da...@de...> * playdv/playdv.c: bugfix segfault on exit due to dv_display_exit being |
|
From: Dan D. <dde...@us...> - 2006-04-11 04:07:08
|
Update of /cvsroot/libdv/libdv In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20710 Modified Files: ChangeLog Log Message: bugfix segfault at exit of playdv Index: ChangeLog =================================================================== RCS file: /cvsroot/libdv/libdv/ChangeLog,v retrieving revision 1.115 retrieving revision 1.116 diff -C2 -r1.115 -r1.116 *** ChangeLog 7 Mar 2006 05:54:46 -0000 1.115 --- ChangeLog 11 Apr 2006 04:06:57 -0000 1.116 *************** *** 1,2 **** --- 1,8 ---- + libdv ChangeLog + + 2006-04-10 Dan Dennedy <da...@de...> + * playdv/playdv.c: bugfix segfault on exit due to dv_display_exit being + called twice. + 2006-03-06 Dan Dennedy <da...@de...> * mmx.h: apply patches from Zan Lynx and Richard Guenther to fix x86 *************** *** 20,24 **** 2004-12-20 Dan Dennedy <da...@de...> * vlc.h, mmx.h: apply patch from Daniel Kobras to improve ! compile compatibillity by making extern inlinei, static inline.. 2004-12-12 Dan Dennedy <da...@de...> --- 26,30 ---- 2004-12-20 Dan Dennedy <da...@de...> * vlc.h, mmx.h: apply patch from Daniel Kobras to improve ! compile compatibillity by making extern inline, static inline. 2004-12-12 Dan Dennedy <da...@de...> *************** *** 159,166 **** 2003-07-22 Dan Dennedy <da...@de...> * applied feature patches to insert_audio.c and dvconnect.c from ! Marko Mäkelä. 2003-07-08 Stefan Lucke <st...@lu...> ! * applied yv12 part of transcode's patch (by Thomas Östreich) 2003-07-05 Stefan Lucke <st...@lu...> --- 165,172 ---- 2003-07-22 Dan Dennedy <da...@de...> * applied feature patches to insert_audio.c and dvconnect.c from ! Marko M�el� 2003-07-08 Stefan Lucke <st...@lu...> ! * applied yv12 part of transcode's patch (by Thomas �treich) 2003-07-05 Stefan Lucke <st...@lu...> *************** *** 171,175 **** * encode.c: bugfix default encoding params result in poor quality due to not setting DCT method. ! * dvconnect.c: bugfix fopen mode on capture spotted by Marko Mäkelä. * dv.c, audio.c: cleanup compilation warnings. --- 177,181 ---- * encode.c: bugfix default encoding params result in poor quality due to not setting DCT method. ! * dvconnect.c: bugfix fopen mode on capture spotted by Marko M�el� * dv.c, audio.c: cleanup compilation warnings. |
|
From: Dan D. <dde...@us...> - 2006-04-11 04:07:05
|
Update of /cvsroot/libdv/libdv/playdv In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20710/playdv Modified Files: playdv.c Log Message: bugfix segfault at exit of playdv Index: playdv.c =================================================================== RCS file: /cvsroot/libdv/libdv/playdv/playdv.c,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -r1.15 -r1.16 *** playdv.c 15 Jan 2006 21:23:15 -0000 1.15 --- playdv.c 11 Apr 2006 04:06:57 -0000 1.16 *************** *** 509,515 **** fprintf(stderr,"Processed %d frames in %05.2f seconds (%05.2f fps)\n", frame_count, seconds, (double)frame_count/seconds); - if(!dv_player->arg_disable_video) { - dv_display_exit(dv_player->display); - } /* if */ dv_decoder_free(dv_player->decoder); free(dv_player); --- 509,512 ---- |
|
From: Dan D. <dde...@us...> - 2006-03-07 05:59:21
|
Update of /cvsroot/libdv/libdv In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15976 Modified Files: bootstrap Log Message: allow 2 digits in revision when checking pkg-config version Index: bootstrap =================================================================== RCS file: /cvsroot/libdv/libdv/bootstrap,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** bootstrap 13 Nov 2003 03:18:40 -0000 1.8 --- bootstrap 7 Mar 2006 05:59:17 -0000 1.9 *************** *** 96,101 **** } ! pkgconfig_major=`pkg-config --version | sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\1/'` ! pkgconfig_minor=`pkg-config --version | sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\2/'` if [ $pkgconfig_major -lt 1 ]; then --- 96,101 ---- } ! pkgconfig_major=`pkg-config --version | sed 's/\([0-9][0-9]*\)\.\([0-9][0-9]*\)/\1/'` ! pkgconfig_minor=`pkg-config --version | sed 's/\([0-9][0-9]*\)\.\([0-9][0-9]*\)/\2/'` if [ $pkgconfig_major -lt 1 ]; then |
|
From: Dan D. <dde...@us...> - 2006-03-07 05:54:54
|
Update of /cvsroot/libdv/libdv/libdv In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13762/libdv Modified Files: mmx.h Log Message: apply patches from Zan Lynx and Richard Guenther to fix x88 asm compilation on gcc 4.1. Index: mmx.h =================================================================== RCS file: /cvsroot/libdv/libdv/libdv/mmx.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** mmx.h 21 Dec 2004 05:08:03 -0000 1.3 --- mmx.h 7 Mar 2006 05:54:48 -0000 1.4 *************** *** 273,277 **** mmx_trace.d[1], mmx_trace.d[0]); \ __asm__ __volatile__ ("movq %%" #reg ", %0" \ ! : "=X" (mmx_trace) \ : /* nothing */ ); \ fprintf(stderr, #reg "=0x%08x%08x) => ", \ --- 273,277 ---- mmx_trace.d[1], mmx_trace.d[0]); \ __asm__ __volatile__ ("movq %%" #reg ", %0" \ ! : "=m" (mmx_trace) \ : /* nothing */ ); \ fprintf(stderr, #reg "=0x%08x%08x) => ", \ *************** *** 279,285 **** __asm__ __volatile__ (#op " %0, %%" #reg \ : /* nothing */ \ ! : "X" (mem)); \ __asm__ __volatile__ ("movq %%" #reg ", %0" \ ! : "=X" (mmx_trace) \ : /* nothing */ ); \ fprintf(stderr, #reg "=0x%08x%08x\n", \ --- 279,285 ---- __asm__ __volatile__ (#op " %0, %%" #reg \ : /* nothing */ \ ! : "m" (mem)); \ __asm__ __volatile__ ("movq %%" #reg ", %0" \ ! : "=m" (mmx_trace) \ : /* nothing */ ); \ fprintf(stderr, #reg "=0x%08x%08x\n", \ *************** *** 291,295 **** mmx_t mmx_trace; \ __asm__ __volatile__ ("movq %%" #reg ", %0" \ ! : "=X" (mmx_trace) \ : /* nothing */ ); \ fprintf(stderr, #op "_r2m(" #reg "=0x%08x%08x, ", \ --- 291,295 ---- mmx_t mmx_trace; \ __asm__ __volatile__ ("movq %%" #reg ", %0" \ ! : "=m" (mmx_trace) \ : /* nothing */ ); \ fprintf(stderr, #op "_r2m(" #reg "=0x%08x%08x, ", \ *************** *** 299,303 **** mmx_trace.d[1], mmx_trace.d[0]); \ __asm__ __volatile__ (#op " %%" #reg ", %0" \ ! : "=X" (mem) \ : /* nothing */ ); \ mmx_trace = (mem); \ --- 299,303 ---- mmx_trace.d[1], mmx_trace.d[0]); \ __asm__ __volatile__ (#op " %%" #reg ", %0" \ ! : "=m" (mem) \ : /* nothing */ ); \ mmx_trace = (mem); \ *************** *** 339,344 **** #op " %1, %%mm0\n\t" \ "movq %%mm0, %0" \ ! : "=X" (memd) \ ! : "X" (mems)); \ mmx_trace = (memd); \ fprintf(stderr, #memd "=0x%08x%08x\n", \ --- 339,344 ---- #op " %1, %%mm0\n\t" \ "movq %%mm0, %0" \ ! : "=m" (memd) \ ! : "m" (mems)); \ mmx_trace = (memd); \ fprintf(stderr, #memd "=0x%08x%08x\n", \ *************** *** 354,367 **** __asm__ __volatile__ (#op " %0, %%" #reg \ : /* nothing */ \ ! : "X" (imm) ) #define mmx_m2r(op, mem, reg) \ __asm__ __volatile__ (#op " %0, %%" #reg \ : /* nothing */ \ ! : "X" (mem)) #define mmx_r2m(op, reg, mem) \ __asm__ __volatile__ (#op " %%" #reg ", %0" \ ! : "=X" (mem) \ : /* nothing */ ) --- 354,367 ---- __asm__ __volatile__ (#op " %0, %%" #reg \ : /* nothing */ \ ! : "i" (imm) ) #define mmx_m2r(op, mem, reg) \ __asm__ __volatile__ (#op " %0, %%" #reg \ : /* nothing */ \ ! : "m" (mem)) #define mmx_r2m(op, reg, mem) \ __asm__ __volatile__ (#op " %%" #reg ", %0" \ ! : "=m" (mem) \ : /* nothing */ ) *************** *** 373,378 **** #op " %1, %%mm0\n\t" \ "movq %%mm0, %0" \ ! : "=X" (memd) \ ! : "X" (mems)) #endif --- 373,378 ---- #op " %1, %%mm0\n\t" \ "movq %%mm0, %0" \ ! : "=m" (memd) \ ! : "m" (mems)) #endif |
|
From: Dan D. <dde...@us...> - 2006-03-07 05:54:54
|
Update of /cvsroot/libdv/libdv In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13762 Modified Files: ChangeLog Log Message: apply patches from Zan Lynx and Richard Guenther to fix x88 asm compilation on gcc 4.1. Index: ChangeLog =================================================================== RCS file: /cvsroot/libdv/libdv/ChangeLog,v retrieving revision 1.114 retrieving revision 1.115 diff -C2 -r1.114 -r1.115 *** ChangeLog 15 Jan 2006 21:23:15 -0000 1.114 --- ChangeLog 7 Mar 2006 05:54:46 -0000 1.115 *************** *** 1,2 **** --- 1,6 ---- + 2006-03-06 Dan Dennedy <da...@de...> + * mmx.h: apply patches from Zan Lynx and Richard Guenther to fix x86 + compilation on gcc 4.1. + 2006-01-15 Dan Dennedy <da...@de...> * encode.c: apply patch from Burkhard Plaum to use gcc |
|
From: Dan D. <dde...@us...> - 2006-01-15 21:23:25
|
Update of /cvsroot/libdv/libdv/playdv In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25443/playdv Modified Files: playdv.c Log Message: bugfix segfault on exit of playdv Index: playdv.c =================================================================== RCS file: /cvsroot/libdv/libdv/playdv/playdv.c,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -r1.14 -r1.15 *** playdv.c 23 Nov 2003 22:59:08 -0000 1.14 --- playdv.c 15 Jan 2006 21:23:15 -0000 1.15 *************** *** 512,518 **** dv_display_exit(dv_player->display); } /* if */ - if(!dv_player->arg_disable_audio) { - dv_oss_close(dv_player->oss); - } /* if */ dv_decoder_free(dv_player->decoder); free(dv_player); --- 512,515 ---- |
|
From: Dan D. <dde...@us...> - 2006-01-15 21:23:23
|
Update of /cvsroot/libdv/libdv In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25443 Modified Files: ChangeLog Log Message: bugfix segfault on exit of playdv Index: ChangeLog =================================================================== RCS file: /cvsroot/libdv/libdv/ChangeLog,v retrieving revision 1.113 retrieving revision 1.114 diff -C2 -r1.113 -r1.114 *** ChangeLog 15 Jan 2006 21:10:27 -0000 1.113 --- ChangeLog 15 Jan 2006 21:23:15 -0000 1.114 *************** *** 4,7 **** --- 4,12 ---- libdv after loading dynamically and thereby fixing a memory leak. + + * playdv.c: bugfix segfault on exit due to dv_display_exit() + being called twice: once in main() and second in atexit + handler created by dv_display. Thanks for hint provided + by Jean-Francois Panisset. 2005-01-31 Dan Dennedy <da...@de...> |
|
From: Dan D. <dde...@us...> - 2006-01-15 21:10:39
|
Update of /cvsroot/libdv/libdv In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22043 Modified Files: ChangeLog Log Message: Apply patch from Burkhard Plaum to invoke gcc destructor which calls dv_cleanup() upon unloading. Index: ChangeLog =================================================================== RCS file: /cvsroot/libdv/libdv/ChangeLog,v retrieving revision 1.112 retrieving revision 1.113 diff -C2 -r1.112 -r1.113 *** ChangeLog 31 Jan 2005 13:27:53 -0000 1.112 --- ChangeLog 15 Jan 2006 21:10:27 -0000 1.113 *************** *** 1,2 **** --- 1,8 ---- + 2006-01-15 Dan Dennedy <da...@de...> + * encode.c: apply patch from Burkhard Plaum to use gcc + destructor attribute to invoke dv_cleanup() when unloading + libdv after loading dynamically and thereby fixing a + memory leak. + 2005-01-31 Dan Dennedy <da...@de...> * *.S: apply patch from Nicholas Miell <nm...@gm...> |
|
From: Dan D. <dde...@us...> - 2006-01-15 21:10:38
|
Update of /cvsroot/libdv/libdv/libdv In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22043/libdv Modified Files: encode.c Log Message: Apply patch from Burkhard Plaum to invoke gcc destructor which calls dv_cleanup() upon unloading. Index: encode.c =================================================================== RCS file: /cvsroot/libdv/libdv/libdv/encode.c,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -r1.26 -r1.27 *** encode.c 17 Nov 2004 03:36:30 -0000 1.26 --- encode.c 15 Jan 2006 21:10:29 -0000 1.27 *************** *** 1582,1585 **** --- 1582,1598 ---- } /* dv_encoder_free */ + /** @brief call dv_cleanup() automatically + * + * This function calls dv_cleanup() automatically before a dynamic + * libdv is unloaded. + * This fixes potential memory leaks when repeatedly loading + * and unloading libdv. + */ + + static void do_free() __attribute__ ((destructor)); + + static void do_free() { + dv_cleanup(); + } /* do_free */ /** @brief Free the dynamically allocated global memory. |
|
From: Dan D. <dde...@us...> - 2005-02-18 22:20:57
|
Update of /cvsroot/libdv/libdv In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22031 Modified Files: configure.ac Log Message: remove dependency on gtk-config and AM_PATH_GTK Index: configure.ac =================================================================== RCS file: /cvsroot/libdv/libdv/configure.ac,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -r1.22 -r1.23 *** configure.ac 20 Oct 2004 03:49:24 -0000 1.22 --- configure.ac 18 Feb 2005 22:20:47 -0000 1.23 *************** *** 165,168 **** --- 165,169 ---- REQUIRES='glib >= 1.2.4 gtk+ >= 1.2.4' PKG_CHECK_MODULES(GTK,$REQUIRES) + AC_DEFINE(HAVE_GTK) fi *************** *** 170,175 **** AC_SUBST(GTK_CFLAGS) AC_SUBST(GTK_LIBS) - dnl CPPFLAGS="$CPPFLAGS $GTK_CFLAGS" - dnl LDFLAGS="$LDFLAGS $GTK_LIBS" if $use_sdl; then --- 171,174 ---- *************** *** 180,190 **** fi - if $use_gtk; then - AM_PATH_GTK(1.2.4, - [ - AC_DEFINE(HAVE_GTK) - ]) - fi - if [ $use_gtk && $use_xv ]; then AC_CHECK_LIB(Xv, XvQueryAdaptors, --- 179,182 ---- |
|
From: Dan D. <dde...@us...> - 2005-01-31 13:28:08
|
Update of /cvsroot/libdv/libdv/libdv In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2501/libdv Modified Files: dct_block_mmx.S dct_block_mmx_x86_64.S encode_x86.S encode_x86_64.S idct_block_mmx.S idct_block_mmx_x86_64.S quant_x86.S quant_x86_64.S rgbtoyuv.S rgbtoyuv_x86_64.S transpose_x86.S transpose_x86_64.S vlc_x86.S vlc_x86_64.S Log Message: remove execution stack from assembler functions Index: dct_block_mmx.S =================================================================== RCS file: /cvsroot/libdv/libdv/libdv/dct_block_mmx.S,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** dct_block_mmx.S 20 Oct 2003 19:46:49 -0000 1.3 --- dct_block_mmx.S 31 Jan 2005 13:27:54 -0000 1.4 *************** *** 54,57 **** --- 54,59 ---- scratch4: .quad 0 + .section .note.GNU-stack, "", @progbits + .text Index: dct_block_mmx_x86_64.S =================================================================== RCS file: /cvsroot/libdv/libdv/libdv/dct_block_mmx_x86_64.S,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** dct_block_mmx_x86_64.S 20 Oct 2004 03:49:24 -0000 1.1 --- dct_block_mmx_x86_64.S 31 Jan 2005 13:27:54 -0000 1.2 *************** *** 54,57 **** --- 54,59 ---- scratch4: .quad 0 + .section .note.GNU-stack, "", @progbits + .text Index: encode_x86.S =================================================================== RCS file: /cvsroot/libdv/libdv/libdv/encode_x86.S,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** encode_x86.S 20 Oct 2003 19:46:50 -0000 1.3 --- encode_x86.S 31 Jan 2005 13:27:54 -0000 1.4 *************** *** 28,31 **** --- 28,34 ---- VLCADDMASK: .byte 255,0,0,0,255,0,0,0 + + .section .note.GNU-stack, "", @progbits + .text Index: encode_x86_64.S =================================================================== RCS file: /cvsroot/libdv/libdv/libdv/encode_x86_64.S,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** encode_x86_64.S 13 Dec 2004 01:48:51 -0000 1.3 --- encode_x86_64.S 31 Jan 2005 13:27:54 -0000 1.4 *************** *** 28,31 **** --- 28,33 ---- VLCADDMASK: .byte 255,0,0,0,255,0,0,0 + .section .note.GNU-stack, "", @progbits + .text Index: idct_block_mmx.S =================================================================== RCS file: /cvsroot/libdv/libdv/libdv/idct_block_mmx.S,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** idct_block_mmx.S 31 Dec 2002 23:04:02 -0000 1.2 --- idct_block_mmx.S 31 Jan 2005 13:27:54 -0000 1.3 *************** *** 7,11 **** */ ! .text --- 7,11 ---- */ ! .section .note.GNU-stack, "", @progbits .text Index: idct_block_mmx_x86_64.S =================================================================== RCS file: /cvsroot/libdv/libdv/libdv/idct_block_mmx_x86_64.S,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** idct_block_mmx_x86_64.S 13 Dec 2004 01:48:51 -0000 1.2 --- idct_block_mmx_x86_64.S 31 Jan 2005 13:27:54 -0000 1.3 *************** *** 14,17 **** --- 14,18 ---- prescale here instead of _dv_weight_init */ + .section .note.GNU-stack, "", @progbits .text Index: quant_x86.S =================================================================== RCS file: /cvsroot/libdv/libdv/libdv/quant_x86.S,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** quant_x86.S 20 Oct 2003 19:46:50 -0000 1.3 --- quant_x86.S 31 Jan 2005 13:27:54 -0000 1.4 *************** *** 25,28 **** --- 25,30 ---- */ + .section .note.GNU-stack, "", @progbits + .previous /* Index: quant_x86_64.S =================================================================== RCS file: /cvsroot/libdv/libdv/libdv/quant_x86_64.S,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** quant_x86_64.S 13 Dec 2004 01:48:51 -0000 1.3 --- quant_x86_64.S 31 Jan 2005 13:27:54 -0000 1.4 *************** *** 25,28 **** --- 25,30 ---- */ + .section .note.GNU-stack, "", @progbits + .previous /* Index: rgbtoyuv.S =================================================================== RCS file: /cvsroot/libdv/libdv/libdv/rgbtoyuv.S,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** rgbtoyuv.S 20 Oct 2003 19:46:50 -0000 1.5 --- rgbtoyuv.S 31 Jan 2005 13:27:54 -0000 1.6 *************** *** 112,115 **** --- 112,117 ---- #endif + .section .note.GNU-stack, "", @progbits + .text Index: rgbtoyuv_x86_64.S =================================================================== RCS file: /cvsroot/libdv/libdv/libdv/rgbtoyuv_x86_64.S,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** rgbtoyuv_x86_64.S 20 Oct 2004 03:49:24 -0000 1.1 --- rgbtoyuv_x86_64.S 31 Jan 2005 13:27:54 -0000 1.2 *************** *** 112,115 **** --- 112,117 ---- #endif + .section .note.GNU-stack, "", @progbits + .text Index: transpose_x86.S =================================================================== RCS file: /cvsroot/libdv/libdv/libdv/transpose_x86.S,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** transpose_x86.S 31 Dec 2002 23:04:03 -0000 1.2 --- transpose_x86.S 31 Jan 2005 13:27:54 -0000 1.3 *************** *** 1,2 **** --- 1,4 ---- + .section .note.GNU-stack, "", @progbits + .text .global _dv_transpose_mmx Index: transpose_x86_64.S =================================================================== RCS file: /cvsroot/libdv/libdv/libdv/transpose_x86_64.S,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** transpose_x86_64.S 20 Oct 2004 03:49:24 -0000 1.1 --- transpose_x86_64.S 31 Jan 2005 13:27:54 -0000 1.2 *************** *** 1,2 **** --- 1,4 ---- + .section .note.GNU-stack, "", @progbits + .text .global _dv_transpose_mmx_x86_64 Index: vlc_x86.S =================================================================== RCS file: /cvsroot/libdv/libdv/libdv/vlc_x86.S,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** vlc_x86.S 20 May 2002 12:31:25 -0000 1.2 --- vlc_x86.S 31 Jan 2005 13:27:54 -0000 1.3 *************** *** 1,3 **** --- 1,5 ---- #include "asmoff.h" + .section .note.GNU-stack, "", @progbits + .text .align 4 Index: vlc_x86_64.S =================================================================== RCS file: /cvsroot/libdv/libdv/libdv/vlc_x86_64.S,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** vlc_x86_64.S 13 Dec 2004 01:48:51 -0000 1.2 --- vlc_x86_64.S 31 Jan 2005 13:27:54 -0000 1.3 *************** *** 1,3 **** --- 1,5 ---- #include "asmoff.h" + .section .note.GNU-stack, "", @progbits + .text .align 4 |
|
From: Dan D. <dde...@us...> - 2005-01-31 13:28:08
|
Update of /cvsroot/libdv/libdv In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2501 Modified Files: ChangeLog libtool Log Message: remove execution stack from assembler functions Index: ChangeLog =================================================================== RCS file: /cvsroot/libdv/libdv/ChangeLog,v retrieving revision 1.111 retrieving revision 1.112 diff -C2 -r1.111 -r1.112 *** ChangeLog 21 Dec 2004 05:08:02 -0000 1.111 --- ChangeLog 31 Jan 2005 13:27:53 -0000 1.112 *************** *** 1,2 **** --- 1,6 ---- + 2005-01-31 Dan Dennedy <da...@de...> + * *.S: apply patch from Nicholas Miell <nm...@gm...> + to not require execution stack for assembler functions. + 2004-12-20 Dan Dennedy <da...@de...> * vlc.h, mmx.h: apply patch from Daniel Kobras to improve Index: libtool =================================================================== RCS file: /cvsroot/libdv/libdv/libtool,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** libtool 30 Nov 2004 03:39:35 -0000 1.4 --- libtool 31 Jan 2005 13:27:53 -0000 1.5 *************** *** 41,49 **** # The names of the tagged configurations supported by this script. ! available_tags=" CXX F77" # ### BEGIN LIBTOOL CONFIG ! # Libtool was configured on host localhost.localdomain: # Shell to use when invoking shell scripts. --- 41,49 ---- # The names of the tagged configurations supported by this script. ! available_tags=" CXX" # ### BEGIN LIBTOOL CONFIG ! # Libtool was configured on host kino: # Shell to use when invoking shell scripts. *************** *** 67,71 **** # The host system. host_alias= ! host=i686-redhat-linux-gnu # An echo program that does not interpret backslashes. --- 67,71 ---- # The host system. host_alias= ! host=i686-pc-linux-gnu # An echo program that does not interpret backslashes. *************** *** 317,324 **** # Compile-time system search path for libraries ! sys_lib_search_path_spec=" /usr/lib/gcc/i386-redhat-linux/3.4.2/ /usr/lib/gcc/i386-redhat-linux/3.4.2/ /usr/lib/gcc/i386-redhat-linux/3.4.2/../../../../i386-redhat-linux/lib/i386-redhat-linux/3.4.2/ /usr/lib/gcc/i386-redhat-linux/3.4.2/../../../../i386-redhat-linux/lib/ /usr/lib/gcc/i386-redhat-linux/3.4.2/../../../i386-redhat-linux/3.4.2/ /usr/lib/gcc/i386-redhat-linux/3.4.2/../../../ /lib/i386-redhat-linux/3.4.2/ /lib/ /usr/lib/i386-redhat-linux/3.4.2/ /usr/lib/" # Run-time system search path for libraries ! sys_lib_dlsearch_path_spec="/lib /usr/lib /usr/X11R6/lib/nvidia-graphics-1.0-4363 include ld.so.conf.d/*.conf /usr/kerberos/lib /usr/lib/sane /usr/local/lib /usr/lib/mysql /usr/lib/qt-3.3/lib /usr/X11R6/lib " # Fix the shell variable $srcfile for the compiler. --- 317,324 ---- # Compile-time system search path for libraries ! sys_lib_search_path_spec=" /usr/lib/gcc/i686-pc-linux-gnu/3.4.3/ /usr/lib/gcc/i686-pc-linux-gnu/3.4.3/ /usr/lib/gcc/i686-pc-linux-gnu/3.4.3/../../../../i686-pc-linux-gnu/lib/i686-pc-linux-gnu/3.4.3/ /usr/lib/gcc/i686-pc-linux-gnu/3.4.3/../../../../i686-pc-linux-gnu/lib/ /usr/lib/gcc/i686-pc-linux-gnu/3.4.3/../../../i686-pc-linux-gnu/3.4.3/ /usr/lib/gcc/i686-pc-linux-gnu/3.4.3/../../../ /lib/i686-pc-linux-gnu/3.4.3/ /lib/ /usr/lib/i686-pc-linux-gnu/3.4.3/ /usr/lib/" # Run-time system search path for libraries ! sys_lib_dlsearch_path_spec="/lib /usr/lib # # /etc/ld.so.conf # /usr/X11R6/lib /usr/local/lib # End of file /opt/mozilla/lib/mozilla /opt/gnome/lib /opt/gecko-sdk/lib /opt/gecko-sdk/bin /opt/qt/lib /opt/kde/lib " # Fix the shell variable $srcfile for the compiler. *************** *** 6769,6773 **** # ### BEGIN LIBTOOL TAG CONFIG: CXX ! # Libtool was configured on host localhost.localdomain: # Shell to use when invoking shell scripts. --- 6769,6773 ---- # ### BEGIN LIBTOOL TAG CONFIG: CXX ! # Libtool was configured on host kino: # Shell to use when invoking shell scripts. *************** *** 6791,6795 **** # The host system. host_alias= ! host=i686-redhat-linux-gnu # An echo program that does not interpret backslashes. --- 6791,6795 ---- # The host system. host_alias= ! host=i686-pc-linux-gnu # An echo program that does not interpret backslashes. *************** *** 6942,6950 **** # Dependencies to place before the objects being linked to create a # shared library. ! predep_objects="/usr/lib/gcc/i386-redhat-linux/3.4.2/../../../crti.o /usr/lib/gcc/i386-redhat-linux/3.4.2/crtbeginS.o" # Dependencies to place after the objects being linked to create a # shared library. ! postdep_objects="/usr/lib/gcc/i386-redhat-linux/3.4.2/crtendS.o /usr/lib/gcc/i386-redhat-linux/3.4.2/../../../crtn.o" # Dependencies to place before the objects being linked to create a --- 6942,6950 ---- # Dependencies to place before the objects being linked to create a # shared library. ! predep_objects="/usr/lib/gcc/i686-pc-linux-gnu/3.4.3/../../../crti.o /usr/lib/gcc/i686-pc-linux-gnu/3.4.3/crtbeginS.o" # Dependencies to place after the objects being linked to create a # shared library. ! postdep_objects="/usr/lib/gcc/i686-pc-linux-gnu/3.4.3/crtendS.o /usr/lib/gcc/i686-pc-linux-gnu/3.4.3/../../../crtn.o" # Dependencies to place before the objects being linked to create a *************** *** 6958,6962 **** # The library search path used internally by the compiler when linking # a shared library. ! compiler_lib_search_path="-L/usr/lib/gcc/i386-redhat-linux/3.4.2 -L/usr/lib/gcc/i386-redhat-linux/3.4.2 -L/usr/lib/gcc/i386-redhat-linux/3.4.2/../../.." # Method to check whether dependent libraries are shared objects. --- 6958,6962 ---- # The library search path used internally by the compiler when linking # a shared library. ! compiler_lib_search_path="-L/usr/lib/gcc/i686-pc-linux-gnu/3.4.3 -L/usr/lib/gcc/i686-pc-linux-gnu/3.4.3 -L/usr/lib/gcc/i686-pc-linux-gnu/3.4.3/../../.." # Method to check whether dependent libraries are shared objects. *************** *** 7038,7045 **** # Compile-time system search path for libraries ! sys_lib_search_path_spec=" /usr/lib/gcc/i386-redhat-linux/3.4.2/ /usr/lib/gcc/i386-redhat-linux/3.4.2/ /usr/lib/gcc/i386-redhat-linux/3.4.2/../../../../i386-redhat-linux/lib/i386-redhat-linux/3.4.2/ /usr/lib/gcc/i386-redhat-linux/3.4.2/../../../../i386-redhat-linux/lib/ /usr/lib/gcc/i386-redhat-linux/3.4.2/../../../i386-redhat-linux/3.4.2/ /usr/lib/gcc/i386-redhat-linux/3.4.2/../../../ /lib/i386-redhat-linux/3.4.2/ /lib/ /usr/lib/i386-redhat-linux/3.4.2/ /usr/lib/" # Run-time system search path for libraries ! sys_lib_dlsearch_path_spec="/lib /usr/lib /usr/X11R6/lib/nvidia-graphics-1.0-4363 include ld.so.conf.d/*.conf /usr/kerberos/lib /usr/lib/sane /usr/local/lib /usr/lib/mysql /usr/lib/qt-3.3/lib /usr/X11R6/lib " # Fix the shell variable $srcfile for the compiler. --- 7038,7045 ---- # Compile-time system search path for libraries ! sys_lib_search_path_spec=" /usr/lib/gcc/i686-pc-linux-gnu/3.4.3/ /usr/lib/gcc/i686-pc-linux-gnu/3.4.3/ /usr/lib/gcc/i686-pc-linux-gnu/3.4.3/../../../../i686-pc-linux-gnu/lib/i686-pc-linux-gnu/3.4.3/ /usr/lib/gcc/i686-pc-linux-gnu/3.4.3/../../../../i686-pc-linux-gnu/lib/ /usr/lib/gcc/i686-pc-linux-gnu/3.4.3/../../../i686-pc-linux-gnu/3.4.3/ /usr/lib/gcc/i686-pc-linux-gnu/3.4.3/../../../ /lib/i686-pc-linux-gnu/3.4.3/ /lib/ /usr/lib/i686-pc-linux-gnu/3.4.3/ /usr/lib/" # Run-time system search path for libraries ! sys_lib_dlsearch_path_spec="/lib /usr/lib # # /etc/ld.so.conf # /usr/X11R6/lib /usr/local/lib # End of file /opt/mozilla/lib/mozilla /opt/gnome/lib /opt/gecko-sdk/lib /opt/gecko-sdk/bin /opt/qt/lib /opt/kde/lib " # Fix the shell variable $srcfile for the compiler. *************** *** 7063,7363 **** # ### END LIBTOOL TAG CONFIG: CXX - # ### BEGIN LIBTOOL TAG CONFIG: F77 - - # Libtool was configured on host localhost.localdomain: - - # Shell to use when invoking shell scripts. - SHELL="/bin/sh" - - # Whether or not to build shared libraries. - build_libtool_libs=yes - - # Whether or not to build static libraries. - build_old_libs=yes - - # Whether or not to add -lc for building shared libraries. - build_libtool_need_lc=no - - # Whether or not to disallow shared libs when runtime libs are static - allow_libtool_libs_with_static_runtimes=no - - # Whether or not to optimize for fast installation. - fast_install=yes - - # The host system. - host_alias= - host=i686-redhat-linux-gnu - - # An echo program that does not interpret backslashes. - echo="echo" - - # The archiver. - AR="ar" - AR_FLAGS="cru" - - # A C compiler. - LTCC="gcc" - - # A language-specific compiler. - CC="g77" - - # Is the compiler the GNU C compiler? - with_gcc=yes - - # An ERE matcher. - EGREP="grep -E" - - # The linker used to build libraries. - LD="/usr/bin/ld" - - # Whether we need hard or soft links. - LN_S="ln -s" - - # A BSD-compatible nm program. - NM="/usr/bin/nm -B" - - # A symbol stripping program - STRIP="strip" - - # Used to examine libraries when file_magic_cmd begins "file" - MAGIC_CMD=file - - # Used on cygwin: DLL creation program. - DLLTOOL="dlltool" - - # Used on cygwin: object dumper. - OBJDUMP="objdump" - - # Used on cygwin: assembler. - AS="gcc" - - # The name of the directory that contains temporary libtool files. - objdir=.libs - - # How to create reloadable object files. - reload_flag=" -r" - reload_cmds="\$LD\$reload_flag -o \$output\$reload_objs" - - # How to pass a linker flag through the compiler. - wl="-Wl," - - # Object file suffix (normally "o"). - objext="o" - - # Old archive suffix (normally "a"). - libext="a" - - # Shared library suffix (normally ".so"). - shrext_cmds='.so' - - # Executable file suffix (normally ""). - exeext="" - - # Additional compiler flags for building library objects. - pic_flag=" -fPIC" - pic_mode=default - - # What is the maximum length of a command? - max_cmd_len=32768 - - # Does compiler simultaneously support -c and -o options? - compiler_c_o="yes" - - # Must we lock files when doing compilation ? - need_locks="no" - - # Do we need the lib prefix for modules? - need_lib_prefix=no - - # Do we need a version for libraries? - need_version=no - - # Whether dlopen is supported. - dlopen_support=unknown - - # Whether dlopen of programs is supported. - dlopen_self=unknown - - # Whether dlopen of statically linked programs is supported. - dlopen_self_static=unknown - - # Compiler flag to prevent dynamic linking. - link_static_flag="-static" - - # Compiler flag to turn off builtin functions. - no_builtin_flag="" - - # Compiler flag to allow reflexive dlopens. - export_dynamic_flag_spec="\${wl}--export-dynamic" - - # Compiler flag to generate shared objects directly from archives. - whole_archive_flag_spec="\${wl}--whole-archive\$convenience \${wl}--no-whole-archive" - - # Compiler flag to generate thread-safe objects. - thread_safe_flag_spec="" - - # Library versioning type. - version_type=linux - - # Format of library name prefix. - libname_spec="lib\$name" - - # List of archive names. First name is the real one, the rest are links. - # The last name is the one that the linker finds with -lNAME. - library_names_spec="\${libname}\${release}\${shared_ext}\$versuffix \${libname}\${release}\${shared_ext}\$major \$libname\${shared_ext}" - - # The coded name of the library, if different from the real name. - soname_spec="\${libname}\${release}\${shared_ext}\$major" - - # Commands used to build and install an old-style archive. - RANLIB="ranlib" - old_archive_cmds="\$AR \$AR_FLAGS \$oldlib\$oldobjs\$old_deplibs~\$RANLIB \$oldlib" - old_postinstall_cmds="\$RANLIB \$oldlib~chmod 644 \$oldlib" - old_postuninstall_cmds="" - - # Create an old-style archive from a shared archive. - old_archive_from_new_cmds="" - - # Create a temporary old-style archive to link instead of a shared archive. - old_archive_from_expsyms_cmds="" - - # Commands used to build and install a shared archive. - archive_cmds="\$CC -shared \$libobjs \$deplibs \$compiler_flags \${wl}-soname \$wl\$soname -o \$lib" - archive_expsym_cmds="\$echo \\\"{ global:\\\" > \$output_objdir/\$libname.ver~ - cat \$export_symbols | sed -e \\\"s/\\\\(.*\\\\)/\\\\1;/\\\" >> \$output_objdir/\$libname.ver~ - \$echo \\\"local: *; };\\\" >> \$output_objdir/\$libname.ver~ - \$CC -shared \$libobjs \$deplibs \$compiler_flags \${wl}-soname \$wl\$soname \${wl}-version-script \${wl}\$output_objdir/\$libname.ver -o \$lib" - postinstall_cmds="" - postuninstall_cmds="" - - # Commands used to build a loadable module (assumed same as above if empty) - module_cmds="" - module_expsym_cmds="" - - # Commands to strip libraries. - old_striplib="strip --strip-debug" - striplib="strip --strip-unneeded" - - # Dependencies to place before the objects being linked to create a - # shared library. - predep_objects="" - - # Dependencies to place after the objects being linked to create a - # shared library. - postdep_objects="" - - # Dependencies to place before the objects being linked to create a - # shared library. - predeps="" - - # Dependencies to place after the objects being linked to create a - # shared library. - postdeps="" - - # The library search path used internally by the compiler when linking - # a shared library. - compiler_lib_search_path="" - - # Method to check whether dependent libraries are shared objects. - deplibs_check_method="pass_all" - - # Command to use when deplibs_check_method == file_magic. - file_magic_cmd="\$MAGIC_CMD" - - # Flag that allows shared libraries with undefined symbols to be built. - allow_undefined_flag="" - - # Flag that forces no undefined symbols. - no_undefined_flag="" - - # Commands used to finish a libtool library installation in a directory. - finish_cmds="PATH=\\\"\\\$PATH:/sbin\\\" ldconfig -n \$libdir" - - # Same as above, but a single script fragment to be evaled but not shown. - finish_eval="" - - # Take the output of nm and produce a listing of raw symbols and C names. - global_symbol_pipe="sed -n -e 's/^.*[ ]\\([ABCDGIRSTW][ABCDGIRSTW]*\\)[ ][ ]*\\(\\)\\([_A-Za-z][_A-Za-z0-9]*\\)\$/\\1 \\2\\3 \\3/p'" - - # Transform the output of nm in a proper C declaration - global_symbol_to_cdecl="sed -n -e 's/^. .* \\(.*\\)\$/extern int \\1;/p'" - - # Transform the output of nm in a C name address pair - global_symbol_to_c_name_address="sed -n -e 's/^: \\([^ ]*\\) \$/ {\\\"\\1\\\", (lt_ptr) 0},/p' -e 's/^[BCDEGRST] \\([^ ]*\\) \\([^ ]*\\)\$/ {\"\\2\", (lt_ptr) \\&\\2},/p'" - - # This is the shared library runtime path variable. - runpath_var=LD_RUN_PATH - - # This is the shared library path variable. - shlibpath_var=LD_LIBRARY_PATH - - # Is shlibpath searched before the hard-coded library search path? - shlibpath_overrides_runpath=no - - # How to hardcode a shared library path into an executable. - hardcode_action=immediate - - # Whether we should hardcode library paths into libraries. - hardcode_into_libs=yes - - # Flag to hardcode $libdir into a binary during linking. - # This must work even if $libdir does not exist. - hardcode_libdir_flag_spec="\${wl}--rpath \${wl}\$libdir" - - # If ld is used when linking, flag to hardcode $libdir into - # a binary during linking. This must work even if $libdir does - # not exist. - hardcode_libdir_flag_spec_ld="" - - # Whether we need a single -rpath flag with a separated argument. - hardcode_libdir_separator="" - - # Set to yes if using DIR/libNAME during linking hardcodes DIR into the - # resulting binary. - hardcode_direct=no - - # Set to yes if using the -LDIR flag during linking hardcodes DIR into the - # resulting binary. - hardcode_minus_L=no - - # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into - # the resulting binary. - hardcode_shlibpath_var=unsupported - - # Set to yes if building a shared library automatically hardcodes DIR into the library - # and all subsequent libraries and executables linked against it. - hardcode_automatic=no - - # Variables whose values should be saved in libtool wrapper scripts and - # restored at relink time. - variables_saved_for_relink="PATH LD_LIBRARY_PATH LD_RUN_PATH GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" - - # Whether libtool must link a program against all its dependency libraries. - link_all_deplibs=unknown - - # Compile-time system search path for libraries - sys_lib_search_path_spec=" /usr/lib/gcc/i386-redhat-linux/3.4.2/ /usr/lib/gcc/i386-redhat-linux/3.4.2/ /usr/lib/gcc/i386-redhat-linux/3.4.2/../../../../i386-redhat-linux/lib/i386-redhat-linux/3.4.2/ /usr/lib/gcc/i386-redhat-linux/3.4.2/../../../../i386-redhat-linux/lib/ /usr/lib/gcc/i386-redhat-linux/3.4.2/../../../i386-redhat-linux/3.4.2/ /usr/lib/gcc/i386-redhat-linux/3.4.2/../../../ /lib/i386-redhat-linux/3.4.2/ /lib/ /usr/lib/i386-redhat-linux/3.4.2/ /usr/lib/" - - # Run-time system search path for libraries - sys_lib_dlsearch_path_spec="/lib /usr/lib /usr/X11R6/lib/nvidia-graphics-1.0-4363 include ld.so.conf.d/*.conf /usr/kerberos/lib /usr/lib/sane /usr/local/lib /usr/lib/mysql /usr/lib/qt-3.3/lib /usr/X11R6/lib " - - # Fix the shell variable $srcfile for the compiler. - fix_srcfile_path="" - - # Set to yes if exported symbols are required. - always_export_symbols=no - - # The commands to list exported symbols. - export_symbols_cmds="\$NM \$libobjs \$convenience | \$global_symbol_pipe | \$SED 's/.* //' | sort | uniq > \$export_symbols" - - # The commands to extract the exported symbol list from a shared archive. - extract_expsyms_cmds="" - - # Symbols that should not be listed in the preloaded symbols. - exclude_expsyms="_GLOBAL_OFFSET_TABLE_" - - # Symbols that must always be exported. - include_expsyms="" - - # ### END LIBTOOL TAG CONFIG: F77 - --- 7063,7064 ---- |
|
From: Dan D. <dde...@us...> - 2004-12-21 05:08:29
|
Update of /cvsroot/libdv/libdv/libdv In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29880/libdv Modified Files: mmx.h vlc.h Log Message: convert extern inline to static inline Index: mmx.h =================================================================== RCS file: /cvsroot/libdv/libdv/libdv/mmx.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** mmx.h 28 Oct 2001 03:23:57 -0000 1.2 --- mmx.h 21 Dec 2004 05:08:03 -0000 1.3 *************** *** 60,64 **** /* Function to test if multimedia instructions are supported... */ ! inline extern int mm_support(void) { --- 60,64 ---- /* Function to test if multimedia instructions are supported... */ ! inline static int mm_support(void) { *************** *** 224,228 **** /* Function to test if mmx instructions are supported... */ ! inline extern int mmx_ok(void) { --- 224,228 ---- /* Function to test if mmx instructions are supported... */ ! inline static int mmx_ok(void) { Index: vlc.h =================================================================== RCS file: /cvsroot/libdv/libdv/libdv/vlc.h,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** vlc.h 20 Oct 2003 19:46:50 -0000 1.6 --- vlc.h 21 Dec 2004 05:08:04 -0000 1.7 *************** *** 70,74 **** extern void __dv_decode_vlc(int bits, dv_vlc_t *result); ! extern __inline__ void dv_peek_vlc(bitstream_t *bs,int maxbits, dv_vlc_t *result) { if(maxbits < 16) dv_decode_vlc(bitstream_show(bs,16),maxbits,result); --- 70,74 ---- extern void __dv_decode_vlc(int bits, dv_vlc_t *result); ! static inline void dv_peek_vlc(bitstream_t *bs,int maxbits, dv_vlc_t *result) { if(maxbits < 16) dv_decode_vlc(bitstream_show(bs,16),maxbits,result); |