- build with external libdvdread for older releases - fix version.h - fix soname - fix lib paths on 64bit
29 lines
1.0 KiB
Diff
29 lines
1.0 KiB
Diff
Index: misc/dvdnav-config2.sh
|
|
===================================================================
|
|
--- misc/dvdnav-config2.sh (revision 966)
|
|
+++ misc/dvdnav-config2.sh (working copy)
|
|
@@ -73,9 +73,9 @@
|
|
fi
|
|
|
|
if test "$echo_libs" = "yes"; then
|
|
- echo -L$prefix/lib -ldvdnav $dvdreadlib $threadlib
|
|
+ echo -L$libdir -ldvdnav $dvdreadlib $threadlib
|
|
fi
|
|
|
|
if test "$echo_minilibs" = "yes"; then
|
|
- echo -L$prefix/lib -ldvdnavmini $threadlib
|
|
+ echo -L$libdir -ldvdnavmini $threadlib
|
|
fi
|
|
Index: Makefile
|
|
===================================================================
|
|
--- Makefile (revision 966)
|
|
+++ Makefile (working copy)
|
|
@@ -159,6 +159,7 @@
|
|
|
|
dvdnav-config: $(.OBJDIR)
|
|
echo -e '#!/bin/sh\n\nprefix='$(PREFIX)'\n' > $(.OBJDIR)/dvdnav-config
|
|
+ echo -e 'libdir='$(shlibdir)'\n' >> $(.OBJDIR)/dvdnav-config
|
|
echo -e 'version='$(SHLIB_VERSION)'\n' >> $(.OBJDIR)/dvdnav-config
|
|
echo -e 'dvdread='$(DVDREAD)'\n' >> $(.OBJDIR)/dvdnav-config
|
|
echo -e 'dvdreaddir='$(DVDREAD_DIR)'\n' >> $(.OBJDIR)/dvdnav-config
|