diff options
author | gad <gad@FreeBSD.org> | 2004-03-08 20:01:34 +0000 |
---|---|---|
committer | gad <gad@FreeBSD.org> | 2004-03-08 20:01:34 +0000 |
commit | e7d237f567f13bd1c2a97b48e9d7dce0049b9a69 (patch) | |
tree | 6d3ddf0ebba8c3c53f5f2e8a92ec393f9e923b9d /usr.sbin/ac | |
parent | bd237d8435533135c5ed1d8b97b085f6c889a33a (diff) | |
download | FreeBSD-src-e7d237f567f13bd1c2a97b48e9d7dce0049b9a69.zip FreeBSD-src-e7d237f567f13bd1c2a97b48e9d7dce0049b9a69.tar.gz |
Compile 'ac' with DEBUG when arch==sparc64.
Diffstat (limited to 'usr.sbin/ac')
-rw-r--r-- | usr.sbin/ac/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/usr.sbin/ac/Makefile b/usr.sbin/ac/Makefile index 0960c2f..c45a0d6 100644 --- a/usr.sbin/ac/Makefile +++ b/usr.sbin/ac/Makefile @@ -5,6 +5,11 @@ MAN= ac.8 WARNS?= 4 +# Temporary, while tracking down problem wrt 64-bit time_t's on sparc64 +.if ${MACHINE_ARCH} == "sparc64" +CFLAGS+=-DDEBUG +.endif + # If "CONSOLE_TTY" is not defined, this program is compatible with the # traditional implementation (using SunOS 4.x as the sample traditional # implementation). This is the default. |