diff options
author | František Dvořák <valtri@users.sourceforge.net> | 2005-11-28 12:24:56 +0000 |
---|---|---|
committer | František Dvořák <valtri@users.sourceforge.net> | 2005-11-28 12:24:56 +0000 |
commit | 29889061262a94aeb8871b185b29a1699f55af63 (patch) | |
tree | 5ce0740455e3e6051dbf726abb090165f8abfcec /doc | |
parent | e9ad6a71dbf9f5f0b1e249ad7969afa1fd8665ba (diff) | |
download | xine-lib-29889061262a94aeb8871b185b29a1699f55af63.tar.gz xine-lib-29889061262a94aeb8871b185b29a1699f55af63.tar.bz2 |
*BUGFIX*
Improved cross-compiling: detect and precedence of the host-specific libs
W32dll: enabled by platforms as originaly, user can override it
Fixed shell errors in the Makefile of the hackersguide
Detect the place of SDL header independently on platform
Fixed spelling in CDDA, include the header sys/param.h if available
Fixed format strings (fix warnings (or even bugs) on Gentoo/FreeBSD)
CVS patchset: 7815
CVS date: 2005/11/28 12:24:56
Diffstat (limited to 'doc')
-rw-r--r-- | doc/hackersguide/Makefile.am | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/doc/hackersguide/Makefile.am b/doc/hackersguide/Makefile.am index 7fdc77706..e6812c19e 100644 --- a/doc/hackersguide/Makefile.am +++ b/doc/hackersguide/Makefile.am @@ -7,12 +7,16 @@ hackersguide_sgml = hackersguide.sgml \ internals.sgml \ stream.sgml \ output.sgml +hackersguide_fig = architecture.fig \ + library.fig \ + overlays.fig \ + post_frame.fig docs_DATA = hackersguide.html \ architecture.png library.png overlays.png post_frame.png -EXTRA_DIST = README $(hackersguide_sgml) \ - architecture.fig library.fig overlays.fig post_frame.fig $(docs_DATA) +EXTRA_DIST = README $(hackersguide_sgml) $(hackersguide_fig) \ + $(docs_DATA) docsdir = $(prefix)/share/doc/xine/hackersguide @@ -20,9 +24,9 @@ docs: $(docs_DATA) distclean-local: clean-docs -docs-prepare: $(addprefix $(srcdir)/, $(hackersguide_sgml) $(wildcard *.fig)) +docs-prepare: $(addprefix $(srcdir)/, $(hackersguide_sgml)) if test "$(srcdir)" != "." ; then \ - for file in $(hackersguide_sgml) *.fig ; do \ + for file in $(hackersguide_sgml) ; do \ test -f ./$$file -a ./$$file -nt $(srcdir)/$$file || cp $(srcdir)/$$file .; \ done ; \ fi @@ -58,11 +62,9 @@ endif if HAVE_FIG2DEV %.png: %.fig - @$(MAKE) docs-prepare $(FIG2DEV) -L png -S 4 $< $@; else %.png: %.fig - @$(MAKE) docs-prepare if test x"$(fail_if_missing)" = x"yes"; then \ echo "Please install fig2dev."; \ exit 1; \ |