sox-devel@lists.sourceforge.net unofficial mirror
 help / color / mirror / code / Atom feed
* Outdated config.guess and config.sub
@ 2013-02-23  4:41 Pascal Giard
  2013-02-27  2:33 ` Ulrich Klauer
  0 siblings, 1 reply; 4+ messages in thread
From: Pascal Giard @ 2013-02-23  4:41 UTC (permalink / raw)
  To: sox developers list

Hi guys,
 FWIW the 14.4.1 source tarball contains outdated versions of
config.guess and config.sub .

It's not a big deal as I can easily workaround this and update them
for Debian, but it may be useful to users if you could include the
latest ones in the next releases.

This can be done by e.g. calling "autoreconf --force".

Cheers,

-Pascal
-- 
Homepage (http://organact.mine.nu)
Debian GNU/Linux (http://www.debian.org)
COMunité/LACIME: École de technologie supérieure (http://www.comunite.ca)
Integrated Microsystems Laboratory: McGill (http://www.iml.ece.mcgill.ca)

------------------------------------------------------------------------------
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_feb

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

* Re: Outdated config.guess and config.sub
  2013-02-23  4:41 Outdated config.guess and config.sub Pascal Giard
@ 2013-02-27  2:33 ` Ulrich Klauer
  2013-02-28 11:14   ` Ulrich Klauer
  0 siblings, 1 reply; 4+ messages in thread
From: Ulrich Klauer @ 2013-02-27  2:33 UTC (permalink / raw)
  To: sox-devel

Pascal Giard <evilynux@gmail.com>:

>  FWIW the 14.4.1 source tarball contains outdated versions of
> config.guess and config.sub .
>
> It's not a big deal as I can easily workaround this and update them
> for Debian, but it may be useful to users if you could include the
> latest ones in the next releases.
>
> This can be done by e.g. calling "autoreconf --force".

Perhaps we should make this run unconditionally in release.sh. Running  
the script will take a few seconds more, but we'd be sure to have the  
most recent versions in each release.

Ulrich


------------------------------------------------------------------------------
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_feb

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

* Re: Outdated config.guess and config.sub
  2013-02-27  2:33 ` Ulrich Klauer
@ 2013-02-28 11:14   ` Ulrich Klauer
  2013-03-01  8:46     ` Eric Wong
  0 siblings, 1 reply; 4+ messages in thread
From: Ulrich Klauer @ 2013-02-28 11:14 UTC (permalink / raw)
  To: sox-devel

> > This can be done by e.g. calling "autoreconf --force".
> Perhaps we should make this run unconditionally in release.sh. Running
> the script will take a few seconds more, but we'd be sure to have the
> most recent versions in each release.

As it turns out, "autoreconf --force" doesn't update the auxiliary  
files. "autoreconf --install --force" *does* do it, but also  
overwrites INSTALL. :-(  So the right way seems to be to delete the  
relevant files (config.guess, config.sub; depcomp, install-sh, missing  
as well? more?) and then run "autoreconf -i" without --force.

Ulrich


------------------------------------------------------------------------------
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_feb

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

* Re: Outdated config.guess and config.sub
  2013-02-28 11:14   ` Ulrich Klauer
@ 2013-03-01  8:46     ` Eric Wong
  0 siblings, 0 replies; 4+ messages in thread
From: Eric Wong @ 2013-03-01  8:46 UTC (permalink / raw)
  To: sox-devel

Ulrich Klauer <ulrich@chirlu.de> wrote:
> > > This can be done by e.g. calling "autoreconf --force".
> > Perhaps we should make this run unconditionally in release.sh. Running
> > the script will take a few seconds more, but we'd be sure to have the
> > most recent versions in each release.
> 
> As it turns out, "autoreconf --force" doesn't update the auxiliary  
> files. "autoreconf --install --force" *does* do it, but also  
> overwrites INSTALL. :-(  So the right way seems to be to delete the  
> relevant files (config.guess, config.sub; depcomp, install-sh, missing  
> as well? more?) and then run "autoreconf -i" without --force.

AM_INIT_AUTOMAKE([foreign]) seems to avoid clobbering INSTALL.
I'm no autotools expert, but I remember reading somewhere foreign
was recommended for nearly all non-GNU projects...

--- a/configure.ac
+++ b/configure.ac
@@ -9,7 +9,7 @@ m4_ifdef([AC_CONFIG_MACRO_DIR], [AC_CONFIG_MACRO_DIR([m4])])
 dnl Find target architecture
 AC_CANONICAL_TARGET
 
-AM_INIT_AUTOMAKE
+AM_INIT_AUTOMAKE([foreign])
 
 dnl create a config.h file (Automake will add -DHAVE_CONFIG_H)
 AM_CONFIG_HEADER(src/soxconfig.h)

------------------------------------------------------------------------------
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_feb

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

end of thread, other threads:[~2013-03-01 11:18 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-02-23  4:41 Outdated config.guess and config.sub Pascal Giard
2013-02-27  2:33 ` Ulrich Klauer
2013-02-28 11:14   ` Ulrich Klauer
2013-03-01  8:46     ` Eric Wong

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/sox.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).