2 rem ----------------------------------------------------------------------
\r
3 rem Configuration script for MSDOS
\r
4 rem Copyright (C) 1994 Free Software Foundation, Inc.
\r
6 rem This file is part of GNU Emacs.
\r
8 rem GNU Emacs is free software; you can redistribute it and/or modify
\r
9 rem it under the terms of the GNU General Public License as published by
\r
10 rem the Free Software Foundation; either version 2, or (at your option)
\r
11 rem any later version.
\r
13 rem GNU Emacs is distributed in the hope that it will be useful,
\r
14 rem but WITHOUT ANY WARRANTY; without even the implied warranty of
\r
15 rem MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
\r
16 rem GNU General Public License for more details.
\r
18 rem You should have received a copy of the GNU General Public License
\r
19 rem along with GNU Emacs; see the file COPYING. If not, write to
\r
20 rem the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
\r
21 rem ----------------------------------------------------------------------
\r
22 rem YOU'LL NEED THE FOLLOWING UTILITIES TO MAKE EMACS:
\r
24 rem + msdos version 3 or better.
\r
25 rem + djgpp version 1,11 maint 4 or better (but not version 2).
\r
26 rem + make utility that allows breaking of the 128 chars limit on
\r
27 rem command lines. ndmake (as of version 4.5) won't work due to a
\r
28 rem line length limit. The make that comes with djgpp does work.
\r
29 rem + rm, mv, chmod (From GNU file utilities).
\r
32 rem You should be able to get all the above utilities from
\r
33 rem oak.oakland.edu in the directories
\r
34 rem "/pub/msdos/djgpp" and "/pub/msdos/gnuish". There are other mirror
36 rem ----------------------------------------------------------------------
\r
40 if "%1" == "" goto usage
\r
41 if "%1" == "--with-x" goto withx
\r
42 if "%1" == "--no-debug" goto nodebug
\r
43 if "%1" == "msdos" goto msdos
\r
45 echo Usage: config [--with-x] [--no-debug] msdos
\r
46 echo [Read the script before you run it.]
\r
48 rem ----------------------------------------------------------------------
\r
53 rem ----------------------------------------------------------------------
\r
58 rem ----------------------------------------------------------------------
\r
60 Echo Checking whether 'sed' is available...
\r
61 sed -e "w junk.$$$" <Nul
\r
62 If Exist junk.$$$ Goto sedOk
\r
63 Echo To configure 'Emacs' you need to have 'sed'!
\r
66 Echo Checking whether 'rm' is available...
\r
68 If Not Exist junk.$$$ Goto rmOk
\r
69 Echo To configure 'Emacs' you need to have 'rm'!
\r
72 Echo Checking whether 'mv' is available...
\r
76 If Exist junk.2 Goto mvOk
\r
77 Echo To configure 'Emacs' you need to have 'mv'!
\r
82 Echo Checking whether 'gcc' is available...
\r
83 echo main(){} >junk.c
\r
85 if exist junk.o goto gccOk
\r
86 Echo To configure 'Emacs' you need to have 'gcc'!
\r
91 Rem ----------------------------------------------------------------------
\r
92 Echo Configuring the source directory...
\r
95 rem Create "paths.h"
\r
96 sed -f ../msdos/sed4.inp <paths.in >paths.tmp
\r
97 update paths.tmp paths.h >nul
\r
100 rem Create "config.h"
\r
101 rm -f config.h2 config.tmp
\r
102 cp config.in config.tmp
\r
103 if "%X11%" == "" goto src4
\r
104 sed -f ../msdos/sed2x.inp <config.in >config.tmp
\r
106 sed -f ../msdos/sed2.inp <config.tmp >config.h2
\r
107 update config.h2 config.h >nul
\r
108 rm -f config.tmp config.h2
\r
110 rem On my system dir.h gets in the way. It's a VMS file so who cares.
\r
111 if exist dir.h ren dir.h vmsdir.h
\r
113 rem Create "makefile" from "makefile.in".
\r
114 rm -f makefile junk.c
\r
115 sed -e "1,/cpp stuff/s@^# .*$@@" <makefile.in >junk.c
\r
116 gcc -E junk.c | sed -f ../msdos/sed1.inp >makefile
\r
119 if "%X11%" == "" goto src5
\r
120 mv makefile makefile.tmp
\r
121 sed -f ../msdos/sed1x.inp <makefile.tmp >makefile
\r
125 if "%nodebug%" == "" goto src6
\r
126 sed -e "/^CFLAGS *=/s/ *-g//" <makefile >makefile.tmp
\r
127 mv -f makefile.tmp makefile
\r
130 rem ----------------------------------------------------------------------
\r
131 Echo Configuring the library source directory...
\r
133 rem Create "makefile" from "makefile.in".
\r
134 sed -e "1,/cpp stuff/s@^# .*$@@" <makefile.in >junk.c
\r
135 gcc -E -I. -I../src junk.c | sed -e "s/^ / /" -e "/^#/d" -e "/^[
\f]*$/d" >makefile.new
\r
136 sed -f ../msdos/sed3.inp <makefile.new >makefile
\r
137 rm -f makefile.new junk.c
\r
138 if "%nodebug%" == "" goto libsrc2
\r
139 sed -e "/^CFLAGS *=/s/ *-g//" <makefile >makefile.tmp
\r
140 mv -f makefile.tmp makefile
\r
143 rem ----------------------------------------------------------------------
\r
144 if "%X11%" == "" goto oldx1
\r
145 Echo Configuring the oldxmenu directory...
\r
147 sed -f ../msdos/sed5x.inp <makefile.in >makefile
\r
148 if "%nodebug%" == "" goto oldx2
\r
149 sed -e "/^CFLAGS *=/s/ *-g//" <makefile >makefile.tmp
\r
150 mv -f makefile.tmp makefile
\r
154 rem ----------------------------------------------------------------------
\r
155 Echo Configuring the main directory...
\r
156 copy msdos\mainmake makefile >nul
\r
157 rem ----------------------------------------------------------------------
\r