f76d5d
We now need to explicitly link to libraries that we use because we can no
f76d5d
longer depend on our dependencies to pull them in for us.  See
f76d5d
http://fedoraproject.org/wiki/UnderstandingDSOLinkChange
f76d5d
f76d5d
--- libdv-1.0.0/playdv/#Makefile.am~	2010-02-15 14:49:06.000000000 -0500
f76d5d
+++ libdv-1.0.0/playdv/Makefile.am	2010-02-15 14:49:06.000000000 -0500
f76d5d
@@ -15,4 +15,4 @@ bin_PROGRAMS= playdv
f76d5d
 noinst_HEADERS=  display.h oss.h
f76d5d
 
f76d5d
 playdv_SOURCES= playdv.c display.c display.h oss.c
f76d5d
-playdv_LDADD= $(SDL_LIBS) $(GTK_LIBS) $(XV_LIB) ../libdv/libdv.la $(POPT_LIB)
f76d5d
+playdv_LDADD= $(SDL_LIBS) $(GTK_LIBS) $(XV_LIB) ../libdv/libdv.la $(POPT_LIB) -lX11 -lXext
f76d5d
--- libdv-1.0.0/Makefile.orig.am	2006-08-06 22:10:42.000000000 +0200
f76d5d
+++ libdv-1.0.0/Makefile.am	2016-08-01 12:31:11.622234099 +0200
f76d5d
@@ -5,6 +5,7 @@
f76d5d
 endif
f76d5d
 
f76d5d
 SUBDIRS                   = libdv encodedv $(gtk_subdirs)
f76d5d
+ACLOCAL_AMFLAGS           = -I m4
f76d5d
 
f76d5d
 AUX_DIST                  = $(ac_aux_dir)/config.guess \
f76d5d
                                    $(ac_aux_dir)/config.sub \