diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2009-06-15 15:12:50 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2009-06-15 15:12:50 +0000 |
commit | 9c6a5c2e6b8d400f89e8c57ed0ed9f18ec2bad7d (patch) | |
tree | 7d8b8d294a9b164d2ef69cdec61fd457f6185857 /Build/source/texk/bibtex8 | |
parent | 44686714a168a1117a294067e0d9943947aeeb7d (diff) |
enable compiler warnings
git-svn-id: svn://tug.org/texlive/trunk@13753 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/bibtex8')
-rw-r--r-- | Build/source/texk/bibtex8/Makefile.am | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Build/source/texk/bibtex8/Makefile.am b/Build/source/texk/bibtex8/Makefile.am index 982bd2f4bf4..6da1721a524 100644 --- a/Build/source/texk/bibtex8/Makefile.am +++ b/Build/source/texk/bibtex8/Makefile.am @@ -6,7 +6,12 @@ ACLOCAL_AMFLAGS = -I ../../m4 INCLUDES = $(KPATHSEA_INCLUDES) -AM_CPPFLAGS = -DUNIX -DKPATHSEA -DSUPPORT_8BIT -funsigned-char +AM_CPPFLAGS = -DUNIX -DKPATHSEA -DSUPPORT_8BIT +## FIXME: (1) this should go away once the code has been carefully +## FIXME: analyzed and uses 'unsigned char' where necessary. +## FIXME: (2) this should go to AM_CFLAGS, but AIX xlc only +## FIXME: accepts this flag when compiling, not when linking. +AM_CPPFLAGS += -funsigned-char bin_PROGRAMS = bibtex8 |