diff options
author | František Dvořák <valtri@users.sourceforge.net> | 2006-10-10 21:39:56 +0000 |
---|---|---|
committer | František Dvořák <valtri@users.sourceforge.net> | 2006-10-10 21:39:56 +0000 |
commit | 4b1a5fc89cae36c9390e0e42f877f474feb632cb (patch) | |
tree | bfd2d6361014d39b13cac91ef83142b05dbc1bdd /include | |
parent | c0b61a323556a3bb6d8f2f5015853daf379f3421 (diff) | |
download | xine-lib-4b1a5fc89cae36c9390e0e42f877f474feb632cb.tar.gz xine-lib-4b1a5fc89cae36c9390e0e42f877f474feb632cb.tar.bz2 |
Install inttypes.h on stone age platforms (xine.h needs it).
Small improvements.
CVS patchset: 8332
CVS date: 2006/10/10 21:39:56
Diffstat (limited to 'include')
-rw-r--r-- | include/Makefile.am | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/include/Makefile.am b/include/Makefile.am index cda4494e0..bbf090750 100644 --- a/include/Makefile.am +++ b/include/Makefile.am @@ -1,8 +1,12 @@ EXTRA_DIST = xine.h.in -include_HEADERS = xine.h +if GENERATED_INTTYPES_H +inttypes_h = inttypes.h +endif -CONFIG_CLEAN_FILES = xine.h +include_HEADERS = xine.h $(inttypes_h) + +CONFIG_CLEAN_FILES = xine.h $(inttypes_h) debug: @$(MAKE) CFLAGS="$(DEBUG_CFLAGS)" |