[xiph-commits] r9853 - trunk/theora/examples

giles at svn.xiph.org giles at svn.xiph.org
Thu Aug 25 12:00:40 PDT 2005


Author: giles
Date: 2005-08-25 12:00:39 -0700 (Thu, 25 Aug 2005)
New Revision: 9853

Modified:
   trunk/theora/examples/Makefile.am
Log:
Add getopt replacement to the dump_video example build. We started
depending on it without hooking up the replacement, breaking things
on systems that didn't provide it by default.


Modified: trunk/theora/examples/Makefile.am
===================================================================
--- trunk/theora/examples/Makefile.am	2005-08-25 16:59:59 UTC (rev 9852)
+++ trunk/theora/examples/Makefile.am	2005-08-25 19:00:39 UTC (rev 9853)
@@ -11,7 +11,9 @@
 LDADD = ../lib/libtheora.la $(OGG_LIBS)
 
 dump_video_SOURCES = dump_video.c
-dump_video_LDADD = $(LDADD)
+EXTRA_dump_video_SOURCES = getopt.c getopt1.c getopt.h
+dump_video_LDADD = $(GETOPT_OBJS) $(LDADD)
+dump_video_DEPENDENCIES = $(GETOPT_OBJS)
 
 player_example_SOURCES = player_example.c
 player_example_LDADD = $(LDADD) $(SDL_LIBS) $(VORBIS_LIBS)



More information about the commits mailing list