From: Ralph Giles Date: Sun, 19 Sep 2004 23:41:19 +0000 (+0000) Subject: Don't build static code examples by default. Static linking is broken X-Git-Tag: v1.3.3~507 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=97754d1b34eca6df4863fd1d4093901046a5e2e0;p=platform%2Fupstream%2Flibvorbis.git Don't build static code examples by default. Static linking is broken (and unsupported) on recent MacOS X, but libtool hasn't learned this yet. svn path=/trunk/vorbis/; revision=7807 --- diff --git a/examples/Makefile.am b/examples/Makefile.am index cb1b6ac..53db402 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -7,7 +7,8 @@ INCLUDES = -I$(top_srcdir)/include @OGG_CFLAGS@ noinst_PROGRAMS = decoder_example encoder_example chaining_example\ vorbisfile_example seeking_example -LDFLAGS = -all-static +# uncomment to build static executables from the example code +#LDFLAGS = -all-static LDADD = ../lib/libvorbis.la decoder_example_SOURCES = decoder_example.c