diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2007-08-26 14:51:29 +0000 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2007-08-26 14:51:29 +0000 |
commit | 95a758d88e2d9411152b3a77624e23a06f5577ec (patch) | |
tree | 8c6dacf594b645bc1925fc3691e030c502d1236d | |
parent | 0549bc408dc6a780b390c39b666108af1736d30b (diff) |
workaround for problems splint has in parsing system header files
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/nss-ldapd@365 ef36b2f9-881f-0410-afb5-c4e39611909c
-rw-r--r-- | Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index ef72aad..cb2377b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -88,7 +88,8 @@ splint.txt: -globstate \ -I. -I$(srcdir) -I$(top_builddir) $(DEFS) -D_REENTRANT -DDEBUG \ -D__signed__=signed -D__thread= -D__gnuc_va_list=__ptr_t \ - -Dkrb5_int32=int32_t -Dkrb5_ui_4=uint32_t \ + -Dkrb5_int32=int32_t -Dkrb5_ui_4=uint32_t \ + -D__u16=uint16_t -D__u32=uint32_t \ *.[ch] nss/*.[ch] nslcd/*.[ch] > $@ 2>&1 .PHONY: flawfinder.html pscan.txt rats.html splint.txt |