We turn on a few extra warnings and fix the fallout that occurs when building with --enable-developer. Note that we get different warnings on different machines and so this will be a work in progress. So far, we have built on NetBSD/amd64 5.99.64 (which uses gcc 4.5.3) and Ubuntu 10.04.3 LTS (which uses gcc 4.4.3). Notably, we fixed 1. a lot of missing structure initialisers, 2. unchecked return values for functions that glibc marks as __attribute__((warn-unused-result)), 3. made minor modifications to slc and asn1_compile which can generate code which generates warnings, and 4. a few stragglers here and there. We turned off the extended warnings for many programs in appl/ as they are nearing the end of their useful lifetime, e.g. rsh, rcp, popper, ftp and telnet. Interestingly, glibc's strncmp() macro needed to be worked around whereas the function calls did not. We have not yet tried this on 32 bit platforms, so there will be a few more warnings when we do.
47 lines
1.3 KiB
Makefile
47 lines
1.3 KiB
Makefile
# $Id$
|
|
|
|
include $(top_srcdir)/Makefile.am.common
|
|
|
|
WFLAGS += $(WFLAGS_LITE)
|
|
|
|
noinst_PROGRAMS = tcp_client tcp_server gssapi_server gssapi_client \
|
|
uu_server uu_client nt_gss_server nt_gss_client http_client
|
|
|
|
tcp_client_SOURCES = tcp_client.c common.c test_locl.h
|
|
|
|
tcp_server_SOURCES = tcp_server.c common.c test_locl.h
|
|
|
|
gssapi_server_SOURCES = gssapi_server.c gss_common.c common.c \
|
|
gss_common.h test_locl.h
|
|
|
|
gssapi_client_SOURCES = gssapi_client.c gss_common.c common.c \
|
|
gss_common.h test_locl.h
|
|
|
|
http_client_SOURCES = http_client.c gss_common.c common.c \
|
|
gss_common.h test_locl.h
|
|
|
|
uu_server_SOURCES = uu_server.c common.c test_locl.h
|
|
|
|
uu_client_SOURCES = uu_client.c common.c test_locl.h
|
|
|
|
gssapi_server_LDADD = $(top_builddir)/lib/gssapi/libgssapi.la $(LDADD)
|
|
|
|
gssapi_client_LDADD = $(gssapi_server_LDADD)
|
|
|
|
http_client_LDADD = $(top_builddir)/lib/gssapi/libgssapi.la $(LDADD)
|
|
|
|
nt_gss_client_SOURCES = nt_gss_client.c nt_gss_common.c nt_gss_common.h common.c
|
|
|
|
nt_gss_server_SOURCES = nt_gss_server.c nt_gss_common.c nt_gss_common.h
|
|
|
|
nt_gss_client_LDADD = $(gssapi_server_LDADD)
|
|
|
|
nt_gss_server_LDADD = $(nt_gss_client_LDADD)
|
|
|
|
LDADD = $(top_builddir)/lib/krb5/libkrb5.la \
|
|
$(LIB_hcrypto) \
|
|
$(top_builddir)/lib/asn1/libasn1.la \
|
|
$(LIB_roken)
|
|
|
|
EXTRA_DIST = NTMakefile jgssapi_server.java
|