aboutsummaryrefslogtreecommitdiffstats
path: root/nt
diff options
context:
space:
mode:
authorMiles Bader2008-02-01 16:01:31 +0000
committerMiles Bader2008-02-01 16:01:31 +0000
commit6cc41fb06c37234822d5aedf7ce0f77b88bb450a (patch)
treea130326faf29d4410ed126e4f0d6a13f11a19df3 /nt
parentb502217bd845bc6280fd2bb1eacce176ed4f7d90 (diff)
parentdd559368b0db67654f643320b1d84afdabe60e97 (diff)
downloademacs-6cc41fb06c37234822d5aedf7ce0f77b88bb450a.tar.gz
emacs-6cc41fb06c37234822d5aedf7ce0f77b88bb450a.zip
Merge unicode branch
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-1037
Diffstat (limited to 'nt')
-rw-r--r--nt/ChangeLog.unicode22
-rwxr-xr-xnt/configure.bat10
2 files changed, 32 insertions, 0 deletions
diff --git a/nt/ChangeLog.unicode b/nt/ChangeLog.unicode
new file mode 100644
index 00000000000..f4f50085462
--- /dev/null
+++ b/nt/ChangeLog.unicode
@@ -0,0 +1,22 @@
12007-10-21 Jason Rumney <jasonr@gnu.org>
2
3 * configure.bat (withfont): Set sep1 after modifying usercflags.
4
52007-06-04 Jason Rumney <jasonr@gnu.org>
6
7 * configure.bat: Rename --with-font-backend to --enable-font-backend
8 for consistency with other platforms.
9
102007-05-31 Jason Rumney <jasonr@gnu.org>
11
12 * configure.bat: Add --with-font-backend option.
13
14;; Local Variables:
15;; coding: iso-2022-7bit
16;; End:
17
18 Copyright (C) 2007 Free Software Foundation, Inc.
19 Copying and distribution of this file, with or without modification,
20 are permitted provided the copyright notice and this notice are preserved.
21
22;; arch-tag: d84beebb-6c36-40b7-af5d-4121fb59ea1e
diff --git a/nt/configure.bat b/nt/configure.bat
index a88cd5df413..9f51e1dc57e 100755
--- a/nt/configure.bat
+++ b/nt/configure.bat
@@ -108,6 +108,7 @@ if "%1" == "--without-jpeg" goto withoutjpeg
108if "%1" == "--without-gif" goto withoutgif 108if "%1" == "--without-gif" goto withoutgif
109if "%1" == "--without-tiff" goto withouttiff 109if "%1" == "--without-tiff" goto withouttiff
110if "%1" == "--without-xpm" goto withoutxpm 110if "%1" == "--without-xpm" goto withoutxpm
111if "%1" == "--enable-font-backend" goto withfont
111if "%1" == "" goto checkutils 112if "%1" == "" goto checkutils
112:usage 113:usage
113echo Usage: configure [options] 114echo Usage: configure [options]
@@ -125,6 +126,7 @@ echo. --without-jpeg do not use jpeg-6b
125echo. --without-gif do not use giflib or libungif 126echo. --without-gif do not use giflib or libungif
126echo. --without-tiff do not use libtiff 127echo. --without-tiff do not use libtiff
127echo. --without-xpm do not use libXpm 128echo. --without-xpm do not use libXpm
129echo. --enable-font-backend build with font backend support
128goto end 130goto end
129rem ---------------------------------------------------------------------- 131rem ----------------------------------------------------------------------
130:setprefix 132:setprefix
@@ -211,6 +213,13 @@ set HAVE_XPM=
211shift 213shift
212goto again 214goto again
213 215
216:withfont
217set usercflags=%usercflags%%sep1%-DUSE_FONT_BACKEND
218set sep1= %nothing%
219set usefontbackend=Y
220shift
221goto again
222
214rem ---------------------------------------------------------------------- 223rem ----------------------------------------------------------------------
215rem Check that necessary utilities (cp and rm) are present. 224rem Check that necessary utilities (cp and rm) are present.
216:checkutils 225:checkutils
@@ -481,6 +490,7 @@ for %%v in (%usercflags%) do if not (%%v)==() set docflags=Y
481if (%docflags%)==(Y) echo USER_CFLAGS=%usercflags%>>config.settings 490if (%docflags%)==(Y) echo USER_CFLAGS=%usercflags%>>config.settings
482for %%v in (%userldflags%) do if not (%%v)==() set doldflags=Y 491for %%v in (%userldflags%) do if not (%%v)==() set doldflags=Y
483if (%doldflags%)==(Y) echo USER_LDFLAGS=%userldflags%>>config.settings 492if (%doldflags%)==(Y) echo USER_LDFLAGS=%userldflags%>>config.settings
493if (%usefontbackend%) == (Y) echo USE_FONTBACKEND=1 >>config.settings
484echo # End of settings from configure.bat>>config.settings 494echo # End of settings from configure.bat>>config.settings
485echo. >>config.settings 495echo. >>config.settings
486 496