From 5d98725c10a7385e14d9e34db52c166b07ed7e5a Mon Sep 17 00:00:00 2001 From: rocky Date: Tue, 18 Oct 2005 01:21:37 +0000 Subject: [PATCH] Not sure if this commit is correct and/or why it should be needed (if it is correct). We note a dependencies between cd-paranoia and its libraries. Section 7.4 "Program and Library Variables" of the automake 1.9.5 manual says: If `_DEPENDENCIES' is not supplied, it is computed by Automake. The automatically-assigned value is the contents of `_LDADD' or `_LIBADD', with most configure substitutions, `-l', `-L', `-dlopen' and `-dlpreopen' options removed. The configure substitutions that are left in are only `$(LIBOBJS)' and `$(ALLOCA)'; these are left because it is known that they will not cause an invalid value for `_DEPENDENCIES' to be generated. --- src/cd-paranoia/Makefile.am | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/cd-paranoia/Makefile.am b/src/cd-paranoia/Makefile.am index 893195db..895b3543 100644 --- a/src/cd-paranoia/Makefile.am +++ b/src/cd-paranoia/Makefile.am @@ -1,4 +1,4 @@ -# $Id: Makefile.am,v 1.17 2005/10/16 22:21:14 rocky Exp $ +# $Id: Makefile.am,v 1.18 2005/10/18 01:21:37 rocky Exp $ # # Copyright (C) 2004, 2005 Rocky Bernstein # Copyright (C) 1998 Monty xiphmont@mit.edu @@ -37,6 +37,9 @@ cd_paranoia_SOURCES = cd-paranoia.c \ cd_paranoia_LDADD = $(LIBCDIO_LIBS) $(LIBCDIO_CDDA_LIBS) $(LIBCDIO_PARANOIA_LIBS) @LIBGETOPT_LIB@ +cd_paranoia_DEPENDENCIES = $(LIBCDIO_LIBS) $(LIBCDIO_CDDA_LIBS) $(LIBCDIO_PARANOIA_LIBS) @LIBGETOPT_LIB@ + + bin_PROGRAMS = cd-paranoia INCLUDES = -I$(top_srcdir) $(LIBCDIO_CFLAGS)