public inbox for linux-bluetooth@vger.kernel.org
 help / color / mirror / Atom feed
* [Bluez-devel] [btsco] automake error
@ 2005-01-18 14:50 Luca Capello
  2005-01-18 17:11 ` Brad Midgley
  0 siblings, 1 reply; 4+ messages in thread
From: Luca Capello @ 2005-01-18 14:50 UTC (permalink / raw)
  To: ML bluez-devel

[-- Attachment #1: Type: text/plain, Size: 1432 bytes --]

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Hello,

I'm new to the list, so hello to everyone :-)

I just bought a Bluetake i-Phono and I was trying to test it (Debian
unstable, kernel 2.6.10, ALSA 1.0.8), but I got an automake error:
=====
luca@gismo:~/src/kernel/bluetooth$ cvs
- -d:pserver:anonymous@cvs.sf.net:/cvsroot/bluetooth-alsa login
Logging in to :pserver:anonymous@cvs.sf.net:2401/cvsroot/bluetooth-alsa
CVS password:
luca@gismo:~/src/kernel/bluetooth$ cvs
- -d:pserver:anonymous@cvs.sf.net:/cvsroot/bluetooth-alsa co btsco
cvs checkout: Updating btsco
<cut>
U btsco/sbc/sbcinfo.c

luca@gismo:~/src/kernel/bluetooth$ cd btsco/
luca@gismo:~/src/kernel/bluetooth/btsco$ ./bootstrap
automake: unrecognized option -- `--ignore-deps'
Try `automake --help' for more information.

luca@gismo:~/src/kernel/bluetooth/btsco$ automake --help | grep ignore
luca@gismo:~/src/kernel/bluetooth/btsco$ automake --version | grep automake
automake (GNU automake) 1.4-p6
=====

So, the attached patch check for automake-1.7 during the bootstrap
process and add an info in the README.

But I still have some compilation problems... (new post, IMHO it's better).

Thx, bye,
Gismo / Luca
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.5 (GNU/Linux)
Comment: Using GnuPG with Debian - http://enigmail.mozdev.org

iD8DBQFB7R1mVAp7Xm10JmkRAsS6AJ0cJCqjyaxxDdVW2HafWJFWwJbatQCdF002
OXtjJYOo4mfeYcpDZyGT9Y0=
=eIey
-----END PGP SIGNATURE-----

[-- Attachment #2: btsco_cvs-20050118-1520_automake1.7-check.diff --]
[-- Type: text/plain, Size: 1224 bytes --]

diff -Naur btsco_cvs-20050118-1520/bootstrap btsco/bootstrap
--- btsco_cvs-20050118-1520/bootstrap	2005-01-18 15:22:44.000000000 +0100
+++ btsco/bootstrap	2005-01-18 15:19:38.000000000 +0100
@@ -1,2 +1,10 @@
 #! /bin/sh
-aclocal && autoheader && automake --add-missing --copy --ignore-deps && autoconf
+
+if [ ! `which automake-1.7` ]; then
+    echo -e "\n*** You need automake-1.7 to compile this software ***\n"
+    exit 1
+elif [ ! `automake --version | grep -q 1.7` ]; then
+    AUTOMAKE_VERSION="-1.7"
+fi
+ 
+aclocal$AUTOMAKE_VERSION && autoheader && automake$AUTOMAKE_VERSION --add-missing --copy --ignore-deps && autoconf
diff -Naur btsco_cvs-20050118-1520/README btsco/README
--- btsco_cvs-20050118-1520/README	2005-01-18 15:23:32.000000000 +0100
+++ btsco/README	2004-11-25 01:51:40.000000000 +0100
@@ -37,7 +37,7 @@
     1. The CVS repository must be checked out:
         cvs -d:pserver:anonymous@cvs.sf.net:/cvsroot/bluetooth-alsa login
         cvs -d:pserver:anonymous@cvs.sf.net:/cvsroot/bluetooth-alsa co btsco
-    2. After that it must be compiled, you need automake1.7 to do it:
+    2. After that it must be compiled:
         ./bootstrap
         ./configure
         make

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Bluez-devel] [btsco] automake error
  2005-01-18 14:50 [Bluez-devel] [btsco] automake error Luca Capello
@ 2005-01-18 17:11 ` Brad Midgley
  2005-01-18 19:56   ` Marcel Holtmann
  2005-01-18 20:10   ` Luca Capello
  0 siblings, 2 replies; 4+ messages in thread
From: Brad Midgley @ 2005-01-18 17:11 UTC (permalink / raw)
  To: bluez-devel

thanks Luca. keep those patches coming :)

Luca Capello wrote:
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
> 
> Hello,
> 
> I'm new to the list, so hello to everyone :-)
> 
> I just bought a Bluetake i-Phono and I was trying to test it (Debian
> unstable, kernel 2.6.10, ALSA 1.0.8), but I got an automake error:
> =====
> luca@gismo:~/src/kernel/bluetooth$ cvs
> - -d:pserver:anonymous@cvs.sf.net:/cvsroot/bluetooth-alsa login
> Logging in to :pserver:anonymous@cvs.sf.net:2401/cvsroot/bluetooth-alsa
> CVS password:
> luca@gismo:~/src/kernel/bluetooth$ cvs
> - -d:pserver:anonymous@cvs.sf.net:/cvsroot/bluetooth-alsa co btsco
> cvs checkout: Updating btsco
> <cut>
> U btsco/sbc/sbcinfo.c
> 
> luca@gismo:~/src/kernel/bluetooth$ cd btsco/
> luca@gismo:~/src/kernel/bluetooth/btsco$ ./bootstrap
> automake: unrecognized option -- `--ignore-deps'
> Try `automake --help' for more information.
> 
> luca@gismo:~/src/kernel/bluetooth/btsco$ automake --help | grep ignore
> luca@gismo:~/src/kernel/bluetooth/btsco$ automake --version | grep automake
> automake (GNU automake) 1.4-p6
> =====
> 
> So, the attached patch check for automake-1.7 during the bootstrap
> process and add an info in the README.
> 
> But I still have some compilation problems... (new post, IMHO it's better).
> 
> Thx, bye,
> Gismo / Luca
> -----BEGIN PGP SIGNATURE-----
> Version: GnuPG v1.2.5 (GNU/Linux)
> Comment: Using GnuPG with Debian - http://enigmail.mozdev.org
> 
> iD8DBQFB7R1mVAp7Xm10JmkRAsS6AJ0cJCqjyaxxDdVW2HafWJFWwJbatQCdF002
> OXtjJYOo4mfeYcpDZyGT9Y0=
> =eIey
> -----END PGP SIGNATURE-----
> 
> 
> ------------------------------------------------------------------------
> 
> diff -Naur btsco_cvs-20050118-1520/bootstrap btsco/bootstrap
> --- btsco_cvs-20050118-1520/bootstrap	2005-01-18 15:22:44.000000000 +0100
> +++ btsco/bootstrap	2005-01-18 15:19:38.000000000 +0100
> @@ -1,2 +1,10 @@
>  #! /bin/sh
> -aclocal && autoheader && automake --add-missing --copy --ignore-deps && autoconf
> +
> +if [ ! `which automake-1.7` ]; then
> +    echo -e "\n*** You need automake-1.7 to compile this software ***\n"
> +    exit 1
> +elif [ ! `automake --version | grep -q 1.7` ]; then
> +    AUTOMAKE_VERSION="-1.7"
> +fi
> + 
> +aclocal$AUTOMAKE_VERSION && autoheader && automake$AUTOMAKE_VERSION --add-missing --copy --ignore-deps && autoconf
> diff -Naur btsco_cvs-20050118-1520/README btsco/README
> --- btsco_cvs-20050118-1520/README	2005-01-18 15:23:32.000000000 +0100
> +++ btsco/README	2004-11-25 01:51:40.000000000 +0100
> @@ -37,7 +37,7 @@
>      1. The CVS repository must be checked out:
>          cvs -d:pserver:anonymous@cvs.sf.net:/cvsroot/bluetooth-alsa login
>          cvs -d:pserver:anonymous@cvs.sf.net:/cvsroot/bluetooth-alsa co btsco
> -    2. After that it must be compiled, you need automake1.7 to do it:
> +    2. After that it must be compiled:
>          ./bootstrap
>          ./configure
>          make


-------------------------------------------------------
The SF.Net email is sponsored by: Beat the post-holiday blues
Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
It's fun and FREE -- well, almost....http://www.thinkgeek.com/sfshirt
_______________________________________________
Bluez-devel mailing list
Bluez-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bluez-devel

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Bluez-devel] [btsco] automake error
  2005-01-18 17:11 ` Brad Midgley
@ 2005-01-18 19:56   ` Marcel Holtmann
  2005-01-18 20:10   ` Luca Capello
  1 sibling, 0 replies; 4+ messages in thread
From: Marcel Holtmann @ 2005-01-18 19:56 UTC (permalink / raw)
  To: BlueZ Mailing List

Hi Brad,

> thanks Luca. keep those patches coming :)

the Debian users should consider to use update-alternatives to choose
their prefered automake. The CVS is for developers and they should know
what they are doing. In a released tarball this doesn't matter anymore.
On the other hand you can simply remove --ignore-deps from the bootstrap
file. I personally don't like this depend stuff and so I don't use it.

Regards

Marcel




-------------------------------------------------------
The SF.Net email is sponsored by: Beat the post-holiday blues
Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
It's fun and FREE -- well, almost....http://www.thinkgeek.com/sfshirt
_______________________________________________
Bluez-devel mailing list
Bluez-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bluez-devel

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Bluez-devel] [btsco] automake error
  2005-01-18 17:11 ` Brad Midgley
  2005-01-18 19:56   ` Marcel Holtmann
@ 2005-01-18 20:10   ` Luca Capello
  1 sibling, 0 replies; 4+ messages in thread
From: Luca Capello @ 2005-01-18 20:10 UTC (permalink / raw)
  To: bluez-devel

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Hello Brad,

on 01/18/2005 06:11 PM, Brad Midgley wrote:
> thanks Luca. keep those patches coming :)
sure, I'd like to stream music from my IBM ThinkPad T42p to the Bluetake
i-Phono, changing the song with my SE K700i ;-)

So, I'll do my best, which is a bit limited if we speak about
programming skills.

Thx, bye,
Gismo / Luca
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.5 (GNU/Linux)
Comment: Using GnuPG with Debian - http://enigmail.mozdev.org

iD8DBQFB7W0jVAp7Xm10JmkRAkbaAJ9tiRvHo+EXMg1gPynoJKebP7vOcwCfRRzC
dqiqdWHyK5hNVyWKZopxbEI=
=l04J
-----END PGP SIGNATURE-----


-------------------------------------------------------
The SF.Net email is sponsored by: Beat the post-holiday blues
Get a FREE limited edition SourceForge.net t-shirt from ThinkGeek.
It's fun and FREE -- well, almost....http://www.thinkgeek.com/sfshirt
_______________________________________________
Bluez-devel mailing list
Bluez-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bluez-devel

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2005-01-18 20:10 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-01-18 14:50 [Bluez-devel] [btsco] automake error Luca Capello
2005-01-18 17:11 ` Brad Midgley
2005-01-18 19:56   ` Marcel Holtmann
2005-01-18 20:10   ` Luca Capello

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox