diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2010-07-16 12:30:13 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2010-07-16 12:30:13 +0300 |
commit | 66b0bdd602e952f20fa98f6ce5430cea68d4f598 (patch) | |
tree | 0b5f379a44720da132f3bd6a66cd900ca821a9aa /pc | |
parent | 61bb57af53ebe916d2db6e3585d4fc7ac1d99b92 (diff) | |
download | egawk-66b0bdd602e952f20fa98f6ce5430cea68d4f598.tar.gz egawk-66b0bdd602e952f20fa98f6ce5430cea68d4f598.tar.bz2 egawk-66b0bdd602e952f20fa98f6ce5430cea68d4f598.zip |
Move to gawk-2.15.4.
Diffstat (limited to 'pc')
-rw-r--r-- | pc/Makefile.emx | 2 | ||||
-rw-r--r-- | pc/Makefile.msc | 2 | ||||
-rw-r--r-- | pc/Makefile.os2 | 2 | ||||
-rw-r--r-- | pc/config.h | 2 | ||||
-rw-r--r-- | pc/makegawk.bat | 10 |
5 files changed, 9 insertions, 9 deletions
diff --git a/pc/Makefile.emx b/pc/Makefile.emx index 622a3a30..3be4a844 100644 --- a/pc/Makefile.emx +++ b/pc/Makefile.emx @@ -26,7 +26,7 @@ GNUOBJS= getopt$O getopt1$O regex$O dfa$O .SUFFIXES: $O .c .y
.c$O:
- $(CC) $(CFLAGS) -DGAWK -c $<
+ $(CC) $(CFLAGS) -DGAWK -DHAVE_CONFIG_H -c $<
all: gawk.exe
diff --git a/pc/Makefile.msc b/pc/Makefile.msc index 2821128d..078aab54 100644 --- a/pc/Makefile.msc +++ b/pc/Makefile.msc @@ -38,7 +38,7 @@ GNUOBJS= getopt$O getopt1$O regex$O dfa$O .SUFFIXES: $O .c .y
.c$O:
- $(CC) $(CFLAGS) -DGAWK -c $<
+ $(CC) $(CFLAGS) -DGAWK -DHAVE_CONFIG_H -c $<
all: gawk.exe
diff --git a/pc/Makefile.os2 b/pc/Makefile.os2 index 072264ec..635f12a8 100644 --- a/pc/Makefile.os2 +++ b/pc/Makefile.os2 @@ -98,7 +98,7 @@ GNUOBJS= getopt$O getopt1$O regex$O dfa$O .SUFFIXES: $O .c .y
.c$O:
- $(CC) $(CFLAGS) -DGAWK -c $<
+ $(CC) $(CFLAGS) -DGAWK -DHAVE_CONFIG_H -c $<
all: gawk.exe
diff --git a/pc/config.h b/pc/config.h index 85b3c638..06b3beca 100644 --- a/pc/config.h +++ b/pc/config.h @@ -5,7 +5,7 @@ */ /* - * Copyright (C) 1991, 1992 the Free Software Foundation, Inc. + * Copyright (C) 1991-1993 the Free Software Foundation, Inc. * * This file is part of GAWK, the GNU implementation of the * AWK Progamming Language. diff --git a/pc/makegawk.bat b/pc/makegawk.bat index eaf9fac2..2e69c7fa 100644 --- a/pc/makegawk.bat +++ b/pc/makegawk.bat @@ -6,7 +6,7 @@ REM Written by Arnold Robbins, May 1991 REM Modified by Scott Deifik, July, 1992, Sep 1993
REM Based on earlier makefile for dos
REM
-REM Copyright (C) 1986, 1988, 1989, 1991 the Free Software Foundation, Inc.
+REM Copyright (C) 1986, 1988, 1989, 1991, 1993 the Free Software Foundation, Inc.
REM
REM This file is part of GAWK, the GNU implementation of the
REM AWK Progamming Language.
@@ -42,12 +42,12 @@ rem (MSC 5.1 sets __STDC__=0 regardless of ANSI switch) cl -Za -c -AL %CFLAGS% -DGAWK array.c
cl -Za -c -AL %CFLAGS% -DGAWK awktab.c
cl -Za -c -AL %CFLAGS% -DGAWK builtin.c
-cl -Za -c -AL %CFLAGS% -DGAWK dfa.c
+cl -Za -c -AL %CFLAGS% -DGAWK -DHAVE_CONFIG_H dfa.c
cl -Za -c -AL %CFLAGS% -DGAWK eval.c
cl -Za -c -AL %CFLAGS% -DGAWK field.c
cl -Za -c -AL %CFLAGS% -DGAWK getid.c
-cl -Za -c -AL %CFLAGS% -DGAWK getopt.c
-cl -Za -c -AL %CFLAGS% -DGAWK getopt1.c
+cl -Za -c -AL %CFLAGS% -DGAWK -DHAVE_CONFIG_H getopt.c
+cl -Za -c -AL %CFLAGS% -DGAWK -DHAVE_CONFIG_H getopt1.c
cl -Za -c -AL %CFLAGS% -DGAWK io.c
cl -Za -c -AL %CFLAGS% -DGAWK iop.c
cl -Za -c -AL %CFLAGS% -DGAWK main.c
@@ -57,7 +57,7 @@ cl -Za -c -AL %CFLAGS% -DGAWK node.c cl -Za -c -AL %CFLAGS% -DGAWK popen.c
cl -Za -c -AL %CFLAGS% -DGAWK re.c
REM You can ignore the warnings you will get
-cl -Za -c -AL %CFLAGS% -DGAWK regex.c
+cl -Za -c -AL %CFLAGS% -DGAWK -DHAVE_CONFIG_H regex.c
cl -Za -c -AL %CFLAGS% -DGAWK version.c
REM
REM link debug flags: /CO /NOE /NOI /st:30000
|