Author: jkim
Date: Tue Jul 13 16:57:52 2010
New Revision: 210005
URL: http://svn.freebsd.org/changeset/base/210005

Log:
  Define SMP unconditionally for amd64 and remove opt_global.h from SRCS.
  Note it is done just for correctness sake because we do not build, ship, or
  support acpi.ko on amd64.
  
  Prodded by:   bde

Modified:
  head/sys/modules/acpi/acpi/Makefile

Modified: head/sys/modules/acpi/acpi/Makefile
==============================================================================
--- head/sys/modules/acpi/acpi/Makefile Tue Jul 13 16:47:29 2010        
(r210004)
+++ head/sys/modules/acpi/acpi/Makefile Tue Jul 13 16:57:52 2010        
(r210005)
@@ -99,7 +99,10 @@ SRCS+=       assym.s madt.c
 CLEANFILES+=   acpi_wakecode.bin acpi_wakecode.h acpi_wakecode.o
 
 .if ${MACHINE_ARCH} == "amd64"
-SRCS+= acpi_switch.S acpi_wakedata.h opt_global.h
+.if !defined(KERNBUILDDIR)
+CFLAGS+=-DSMP
+.endif
+SRCS+= acpi_switch.S acpi_wakedata.h
 CLEANFILES+=   acpi_wakedata.h
 ASM_CFLAGS=    -x assembler-with-cpp -DLOCORE ${CFLAGS}
 acpi_switch.o: acpi_switch.S
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to