You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
637 B
13 lines
637 B
15 years ago
|
We now need to explicitly link to libraries that we use because we can no
|
||
|
longer depend on our dependencies to pull them in for us. See
|
||
|
http://fedoraproject.org/wiki/UnderstandingDSOLinkChange
|
||
|
|
||
|
--- libdv-1.0.0/playdv/#Makefile.am~ 2010-02-15 14:49:06.000000000 -0500
|
||
|
+++ libdv-1.0.0/playdv/Makefile.am 2010-02-15 14:49:06.000000000 -0500
|
||
|
@@ -15,4 +15,4 @@ bin_PROGRAMS= playdv
|
||
|
noinst_HEADERS= display.h oss.h
|
||
|
|
||
|
playdv_SOURCES= playdv.c display.c display.h oss.c
|
||
|
-playdv_LDADD= $(SDL_LIBS) $(GTK_LIBS) $(XV_LIB) ../libdv/libdv.la $(POPT_LIB)
|
||
|
+playdv_LDADD= $(SDL_LIBS) $(GTK_LIBS) $(XV_LIB) ../libdv/libdv.la $(POPT_LIB) -lX11 -lXext
|