Fix for bug 83589 -- fix the mac build scripts so that a commercial tree doesn't clobber config files in the mozilla tree. Make a MoreFilesDebug.lib. r=peterv,sr=scc -- Part of patch that sfraser forgot to check in.

This commit is contained in:
peterv%netscape.com 2001-10-27 15:54:47 +00:00
Родитель 4d2830186b
Коммит 61888315b5
1 изменённых файлов: 6 добавлений и 2 удалений

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

@ -50,8 +50,12 @@
/* Read compiler options */
#include "IDE_Options.h"
/* Read generated build options. */
#include "DefinesOptions.h" // written at build time
/* Read generated build options (written at build time). */
#ifdef DEBUG
#include "DefinesOptionsDebug.h"
#else
#include "DefinesOptions.h"
#endif
/* Read file of defines global to the Mac build */
#include "DefinesMac.h"