From owner-cvs-all Thu Aug 6 16:01:53 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA27747 for cvs-all-outgoing; Thu, 6 Aug 1998 16:01:53 -0700 (PDT) (envelope-from owner-cvs-all) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA27735; Thu, 6 Aug 1998 16:01:51 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA05514; Thu, 6 Aug 1998 16:01:50 -0700 (PDT) Date: Thu, 6 Aug 1998 16:01:50 -0700 (PDT) Message-Id: <199808062301.QAA05514@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/makemap Makefile Sender: owner-cvs-all@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk jb 1998/08/06 16:01:49 PDT Modified files: usr.sbin/makemap Makefile Log: Add snprintf.c to SRCS so that the function quad_to_string exists. The snprintf function itself is still #ifdef'd out by conf.h. This allows this program to link when compiled without optimization. With optimization, the call to quad_to_string gets removed by the compiler. Unfortunately the linker still links in the quad_to_string function even though it isn't called. 8-( Revision Changes Path 1.2 +1 -1 src/usr.sbin/makemap/Makefile