[Pkg-alsa-devel] [Debian ALSA CVS] debian/alsa-lib (6 files)
David B Harris
dbharris-guest@quantz.debian.org
Mon, 01 Mar 2004 01:33:38 +0100
Date: Monday, March 1, 2004 @ 01:33:38
Author: dbharris-guest
Path: /cvsroot/pkg-alsa/debian/alsa-lib
Modified: Makefile.in configure debian/changelog include/config.h.in
libtool test/Makefile.in
New upstream release of alsa-utils, 1.0.3
---------------------+
Makefile.in | 1 +
configure | 29 ++++++++++++++++++++++++-----
debian/changelog | 3 ++-
include/config.h.in | 3 +++
libtool | 2 +-
test/Makefile.in | 3 ++-
6 files changed, 33 insertions(+), 8 deletions(-)
Index: debian/alsa-lib/Makefile.in
diff -u debian/alsa-lib/Makefile.in:1.6 debian/alsa-lib/Makefile.in:1.7
--- debian/alsa-lib/Makefile.in:1.6 Thu Dec 25 04:09:19 2003
+++ debian/alsa-lib/Makefile.in Mon Mar 1 01:33:37 2004
@@ -137,6 +137,7 @@
target_vendor = @target_vendor@
SUBDIRS = doc include src aserver alsalisp test utils
EXTRA_DIST = ChangeLog INSTALL TODO NOTES configure cvscompile libtool depcomp version MEMORY-LEAK
+AUTOMAKE_OPTIONS = foreign
INCLUDES = -I$(top_srcdir)/include
subdir = .
Index: debian/alsa-lib/configure
diff -u debian/alsa-lib/configure:1.11 debian/alsa-lib/configure:1.12
--- debian/alsa-lib/configure:1.11 Fri Feb 13 20:38:58 2004
+++ debian/alsa-lib/configure Mon Mar 1 01:33:37 2004
@@ -1022,6 +1022,7 @@
--with-pic try to use only PIC/non-PIC objects default=use both
--with-versioned=yes,no shared library will (not) be compiled with versioned symbols
--with-debug=yes,no library will (not) be compiled with asserts
+ --with-tmpdir=directory directory to put tmp socket files (/tmp)
--with-softfloat do you have floating point unit on this machine? (optional)
Some influential environment variables:
@@ -1795,7 +1796,7 @@
# Define the identity of the package.
PACKAGE=alsa-lib
- VERSION=1.0.2
+ VERSION=1.0.3
cat >>confdefs.h <<_ACEOF
@@ -4605,7 +4606,7 @@
case $host in
*-*-irix6*)
# Find out which ABI we are using.
- echo '#line 4608 "configure"' > conftest.$ac_ext
+ echo '#line 4609 "configure"' > conftest.$ac_ext
if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
(eval $ac_compile) 2>&5
ac_status=$?
@@ -5129,7 +5130,7 @@
save_CFLAGS="$CFLAGS"
CFLAGS="$CFLAGS -o out/conftest2.$ac_objext"
compiler_c_o=no
-if { (eval echo configure:5132: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>out/conftest.err; } && test -s out/conftest2.$ac_objext; then
+if { (eval echo configure:5133: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>out/conftest.err; } && test -s out/conftest2.$ac_objext; then
# The compiler can only warn and ignore the option if not recognized
# So say no if there are warnings
if test -s out/conftest.err; then
@@ -6940,7 +6941,7 @@
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<EOF
-#line 6943 "configure"
+#line 6944 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -7038,7 +7039,7 @@
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<EOF
-#line 7041 "configure"
+#line 7042 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -8407,6 +8408,24 @@
echo "$as_me:$LINENO: result: no" >&5
echo "${ECHO_T}no" >&6
fi
+
+echo "$as_me:$LINENO: checking for tmpdir" >&5
+echo $ECHO_N "checking for tmpdir... $ECHO_C" >&6
+
+# Check whether --with-tmpdir or --without-tmpdir was given.
+if test "${with_tmpdir+set}" = set; then
+ withval="$with_tmpdir"
+ tmpdir="$withval"
+else
+ tmpdir="/tmp"
+fi;
+echo "$as_me:$LINENO: result: $tmpdir" >&5
+echo "${ECHO_T}$tmpdir" >&6
+
+cat >>confdefs.h <<_ACEOF
+#define TMPDIR "$tmpdir"
+_ACEOF
+
echo "$as_me:$LINENO: checking for softfloat" >&5
echo $ECHO_N "checking for softfloat... $ECHO_C" >&6
Index: debian/alsa-lib/debian/changelog
diff -u debian/alsa-lib/debian/changelog:1.65 debian/alsa-lib/debian/changelog:1.66
--- debian/alsa-lib/debian/changelog:1.65 Thu Feb 26 04:40:51 2004
+++ debian/alsa-lib/debian/changelog Mon Mar 1 01:33:37 2004
@@ -1,6 +1,7 @@
-alsa-lib (1.0.2-2) unstable; urgency=low
+alsa-lib (1.0.3-1) unstable; urgency=low
* Unreleased
+ * New upstream release
* David B. Harris:
+ Change Maintainer: email address from my private address to
dbharris@debian.org
Index: debian/alsa-lib/include/config.h.in
diff -u debian/alsa-lib/include/config.h.in:1.4 debian/alsa-lib/include/config.h.in:1.5
--- debian/alsa-lib/include/config.h.in:1.4 Thu Dec 25 04:09:20 2003
+++ debian/alsa-lib/include/config.h.in Mon Mar 1 01:33:38 2004
@@ -66,6 +66,9 @@
/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
#undef TIME_WITH_SYS_TIME
+/* directory to put tmp socket files */
+#undef TMPDIR
+
/* sound library version string */
#undef VERSION
Index: debian/alsa-lib/libtool
diff -u debian/alsa-lib/libtool:1.11 debian/alsa-lib/libtool:1.12
--- debian/alsa-lib/libtool:1.11 Fri Feb 13 20:38:58 2004
+++ debian/alsa-lib/libtool Mon Mar 1 01:33:37 2004
@@ -1,7 +1,7 @@
#! /bin/sh
# libtool - Provide generalized library-building support services.
-# Generated automatically by (GNU alsa-lib 1.0.2)
+# Generated automatically by (GNU alsa-lib 1.0.3)
# NOTE: Changes made to this file will be lost: look at ltmain.sh.
#
# Copyright (C) 1996-2000 Free Software Foundation, Inc.
Index: debian/alsa-lib/test/Makefile.in
diff -u debian/alsa-lib/test/Makefile.in:1.7 debian/alsa-lib/test/Makefile.in:1.8
--- debian/alsa-lib/test/Makefile.in:1.7 Fri Jan 9 01:12:39 2004
+++ debian/alsa-lib/test/Makefile.in Mon Mar 1 01:33:38 2004
@@ -50,7 +50,7 @@
AWK = @AWK@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
-CFLAGS = -static -Wall -pipe -g
+CFLAGS = @CFLAGS@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CYGPATH_W = @CYGPATH_W@
@@ -154,6 +154,7 @@
code_CFLAGS = -Wall -pipe -g -O2
INCLUDES = -I$(top_srcdir)/include
+AM_CFLAGS = -static -Wall -pipe -g
EXTRA_DIST = seq-decoder.c seq-sender.c midifile.h midifile.c midifile.3
subdir = test