diff options
author | Max Kellermann <max@duempel.org> | 2016-05-14 10:33:54 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2016-05-14 10:34:05 +0200 |
commit | 49597b0e9cb8581e891c77d097c2f85a55e5a6a9 (patch) | |
tree | 4ae6bcc64dac8323aff5375d4bb8220992685e8a | |
parent | b5ecfb4c9aa498edf7647bb1f65430b9b7bdc0e3 (diff) |
Makefile.am: compile OggVisitor.cxx only if libogg is used
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index c8604d1e1..70d899350 100644 --- a/Makefile.am +++ b/Makefile.am @@ -585,7 +585,6 @@ if HAVE_XIPH noinst_LIBRARIES += libxiph.a libxiph_a_SOURCES = \ - src/lib/xiph/OggVisitor.cxx src/lib/xiph/OggVisitor.hxx \ src/lib/xiph/VorbisComment.hxx \ src/lib/xiph/VorbisComments.cxx src/lib/xiph/VorbisComments.hxx \ src/lib/xiph/XiphTags.cxx src/lib/xiph/XiphTags.hxx @@ -594,6 +593,7 @@ libxiph_a_CPPFLAGS = $(AM_CPPFLAGS) \ if HAVE_OGG libxiph_a_SOURCES += \ + src/lib/xiph/OggVisitor.cxx src/lib/xiph/OggVisitor.hxx \ src/lib/xiph/OggSerial.cxx src/lib/xiph/OggSerial.hxx \ src/lib/xiph/OggSyncState.cxx src/lib/xiph/OggSyncState.hxx \ src/lib/xiph/OggPage.hxx \ |