Use #ifdef or equivalent to test XP_UNIX, not #if or equiv.

This commit is contained in:
brendan%netscape.com 1999-04-26 23:14:12 +00:00
Родитель b6fa4a666a
Коммит ae96a869e6
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -195,7 +195,7 @@
#if defined(XP_MAC) || defined(XP_PC)
# include "jscpucfg.h" /* Use standard Mac or Windows configuration */
#elif XP_UNIX
#elif defined(XP_UNIX)
# include "jsautocfg.h" /* Use auto-detected configuration */
#else
# error "Must define one of XP_PC, XP_MAC or XP_UNIX"