libdv-1.0.0-dso-linking.patch 637 B

12345678910111213
  1. We now need to explicitly link to libraries that we use because we can no
  2. longer depend on our dependencies to pull them in for us. See
  3. http://fedoraproject.org/wiki/UnderstandingDSOLinkChange
  4. --- libdv-1.0.0/playdv/#Makefile.am~ 2010-02-15 14:49:06.000000000 -0500
  5. +++ libdv-1.0.0/playdv/Makefile.am 2010-02-15 14:49:06.000000000 -0500
  6. @@ -15,4 +15,4 @@ bin_PROGRAMS= playdv
  7. noinst_HEADERS= display.h oss.h
  8. playdv_SOURCES= playdv.c display.c display.h oss.c
  9. -playdv_LDADD= $(SDL_LIBS) $(GTK_LIBS) $(XV_LIB) ../libdv/libdv.la $(POPT_LIB)
  10. +playdv_LDADD= $(SDL_LIBS) $(GTK_LIBS) $(XV_LIB) ../libdv/libdv.la $(POPT_LIB) -lX11 -lXext