# HG changeset patch # User deitarion # Date 1180063808 25200 # Node ID 325c52b01e569b467c2d851b6d3e4c1ddaa8b201 # Parent b2f24bd2b7db9d09dbb290064f0ee07f8af9c5f6 [svn] Switch pkg-config for cdaudio-ng from libcdio to libcdio_cdda (At the request of Crazy_Hopper) The change makes sense, and a quick manual call to pkg-config looks good, but blame him if something goes wrong. diff -r b2f24bd2b7db -r 325c52b01e56 ChangeLog --- a/ChangeLog Thu May 24 20:06:47 2007 -0700 +++ b/ChangeLog Thu May 24 20:30:08 2007 -0700 @@ -1,3 +1,11 @@ +2007-05-25 03:06:47 +0000 Stephen Sokolow + revision [2330] + Fixed a typo in the cdaudio-ng portion of configure.ac as discovered by Crazy_Hopper. + + trunk/configure.ac | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + + 2007-05-24 23:34:36 +0000 William Pitcock revision [2328] - modplug: transition to plugin API v2 diff -r b2f24bd2b7db -r 325c52b01e56 configure.ac --- a/configure.ac Thu May 24 20:06:47 2007 -0700 +++ b/configure.ac Thu May 24 20:30:08 2007 -0700 @@ -1064,8 +1064,8 @@ if test "$enable_cdaudio_ng" = "yes"; then PKG_CHECK_MODULES(CDIO, [libcdio >= 0.78.2], [INPUT_PLUGINS="$INPUT_PLUGINS cdaudio-ng" - CDIO_LIBS=`pkg-config --libs libcdio` - CDIO_CFLAGS=`pkg-config --cflags libcdio` + CDIO_LIBS=`pkg-config --libs libcdio_cdda` + CDIO_CFLAGS=`pkg-config --cflags libcdio_cdda` AC_SUBST(CDIO_LIBS) AC_SUBST(CDIO_CFLAGS)], [AC_MSG_WARN([*** Cannot find libcdio 0.78.2 or newer, cdaudio-ng will not be built ***])]