diff options
| author | Marius Strobl <marius@FreeBSD.org> | 2007-09-15 11:58:51 +0000 |
|---|---|---|
| committer | Marius Strobl <marius@FreeBSD.org> | 2007-09-15 11:58:51 +0000 |
| commit | 5d238a2c8d9495216808372a93aace4044e3a3ce (patch) | |
| tree | 269ef5220ae4a5c36f45e318e0de48cf220543f1 /sysutils/cdrdao/files/patch-utils::Makefile.in | |
| parent | Update to 0.6.1.29 (diff) | |
- Update to 1.2.2. Relevant parts from the release notes:
Cdrdao changes:
o Man page cleanup (Andrew Suffield)
GCDMaster changes:
o Fixed GCC 4.1 compilation issues
o Fixed hang when inserting WAV file
- Ensure that the libraries built by the port are linked in and not
already installed ones. For example in case of libcdda_paranoia
installed by audio/cdparanoia can't be used to build cddao. Such
problems only happen when using non-standard compiler and/or linker
flags are used but it doesn't hurt to add some anti-footshooting
measurements to the port. [1]
PR: 115616 [1]
Approved by: netchild
Diffstat (limited to 'sysutils/cdrdao/files/patch-utils::Makefile.in')
| -rw-r--r-- | sysutils/cdrdao/files/patch-utils::Makefile.in | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/sysutils/cdrdao/files/patch-utils::Makefile.in b/sysutils/cdrdao/files/patch-utils::Makefile.in new file mode 100644 index 000000000000..ca4b959011de --- /dev/null +++ b/sysutils/cdrdao/files/patch-utils::Makefile.in @@ -0,0 +1,17 @@ +--- utils/Makefile.in.orig Sun Feb 15 04:04:35 2004 ++++ utils/Makefile.in Mon Feb 16 00:50:20 2004 +@@ -237,11 +237,11 @@ + toc2cue_SOURCES = toc2cue.cc + cue2toc_SOURCES = main.c cue2toc.c cue2toc.h timecode.c timecode.h + toc2mp3_SOURCES = toc2mp3.cc +-toc2cddb_LDADD = -L$(top_builddir)/trackdb -ltrackdb $(am__append_1) \ ++toc2cddb_LDADD = $(top_builddir)/trackdb/libtrackdb.a $(am__append_1) \ + $(am__append_4) @AO_LIBS@ +-toc2cue_LDADD = -L$(top_builddir)/trackdb -ltrackdb $(am__append_2) \ ++toc2cue_LDADD = $(top_builddir)/trackdb/libtrackdb.a $(am__append_2) \ + $(am__append_5) @AO_LIBS@ +-toc2mp3_LDADD = -L$(top_builddir)/trackdb -ltrackdb @LAME_LIBS@ \ ++toc2mp3_LDADD = $(top_builddir)/trackdb/libtrackdb.a @LAME_LIBS@ \ + $(am__append_3) $(am__append_6) @AO_LIBS@ + toc2mp3_CXXFLAGS = @LAME_CFLAGS@ + INCLUDES = -I$(top_builddir)/trackdb |
