Explicitly tell cpp where to look for include files.

This commit is contained in:
Poul-Henning Kamp 1994-11-04 21:40:39 +00:00
parent 70da208d21
commit bf859da2b2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=4144

View File

@ -33,13 +33,11 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#undef CPP_PREDEFINES #undef CPP_PREDEFINES
#define CPP_PREDEFINES "-Dunix -Di386 -D__FreeBSD__=2 -Asystem(unix) -Asystem(FreeBSD) -Acpu(i386) -Amachine(i386)" #define CPP_PREDEFINES "-Dunix -Di386 -D__FreeBSD__=2 -Asystem(unix) -Asystem(FreeBSD) -Acpu(i386) -Amachine(i386)"
#if 0
#define INCLUDE_DEFAULTS { \ #define INCLUDE_DEFAULTS { \
{ "/usr/include", 0 }, \ { "/usr/include", 0 }, \
{ "/usr/include/g++", 1 }, \ { "/usr/include/g++", 1 }, \
{ 0, 0} \ { 0, 0} \
} }
#endif
/* Like the default, except no -lg. */ /* Like the default, except no -lg. */
#define LIB_SPEC "%{!p:%{!pg:-lc}}%{p:-lc_p}%{pg:-lc_p}" #define LIB_SPEC "%{!p:%{!pg:-lc}}%{p:-lc_p}%{pg:-lc_p}"