diff --git a/code/gc.lisp b/code/gc.lisp
index 9e33dca47de349da6c89052da190ea98c2742386..35b436a7df67d0028bb72cc2436afe259e4d1dc5 100644
--- a/code/gc.lisp
+++ b/code/gc.lisp
@@ -5,7 +5,7 @@
 ;;; Carnegie Mellon University, and has been placed in the public domain.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/gc.lisp,v 1.34 2003/04/11 15:17:45 pmai Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/gc.lisp,v 1.35 2003/05/29 12:35:05 gerd Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -57,15 +57,17 @@
 ;; #+(or cgc gencgc)
 ;; (c-var-frob dynamic-usage "bytes_allocated")
 
-#+(or cgc gencgc)
+#+gencgc
 (progn
-(alien:def-alien-routine get_bytes_allocated_lower c-call:int)
-(alien:def-alien-routine get_bytes_allocated_upper c-call:int)
+  (alien:def-alien-routine get_bytes_allocated_lower c-call:int)
+  (alien:def-alien-routine get_bytes_allocated_upper c-call:int)
 
-(defun dynamic-usage ()
-  (dfixnum:dfixnum-pair-integer
-   (get_bytes_allocated_upper) (get_bytes_allocated_lower)))
-)
+  (defun dynamic-usage ()
+    (dfixnum:dfixnum-pair-integer
+     (get_bytes_allocated_upper) (get_bytes_allocated_lower))))
+
+#+cgc
+(c-var-frob dynamic-usage "bytes_allocated")
 
 (defun static-space-usage ()
   (- (* lisp::*static-space-free-pointer* vm:word-bytes)
diff --git a/lisp/Config.FreeBSD b/lisp/Config.FreeBSD
index 3a884e451cb1d58958a212d1393ab7c5d39aeb4d..3070b0e29ac620a569fb0e4de9af179b4ee9e4e4 100644
--- a/lisp/Config.FreeBSD
+++ b/lisp/Config.FreeBSD
@@ -9,7 +9,7 @@ LD = ld
 CPP = cpp
 CFLAGS = -Wstrict-prototypes -Wall -O2 -g -DWANT_CGC -m486
 ASFLAGS = -g -DWANT_CGC
-NM = nm -gp
+NM = $(PATH1)/linux-nm
 UNDEFSYMPATTERN = -Xlinker -u -Xlinker &
 ASSEM_SRC = x86-assem.S
 ARCH_SRC = x86-arch.c