diff options
| author | Miles Bader | 2008-02-01 16:01:31 +0000 |
|---|---|---|
| committer | Miles Bader | 2008-02-01 16:01:31 +0000 |
| commit | 6cc41fb06c37234822d5aedf7ce0f77b88bb450a (patch) | |
| tree | a130326faf29d4410ed126e4f0d6a13f11a19df3 /nt | |
| parent | b502217bd845bc6280fd2bb1eacce176ed4f7d90 (diff) | |
| parent | dd559368b0db67654f643320b1d84afdabe60e97 (diff) | |
| download | emacs-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.unicode | 22 | ||||
| -rwxr-xr-x | nt/configure.bat | 10 |
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 @@ | |||
| 1 | 2007-10-21 Jason Rumney <jasonr@gnu.org> | ||
| 2 | |||
| 3 | * configure.bat (withfont): Set sep1 after modifying usercflags. | ||
| 4 | |||
| 5 | 2007-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 | |||
| 10 | 2007-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 | |||
| 108 | if "%1" == "--without-gif" goto withoutgif | 108 | if "%1" == "--without-gif" goto withoutgif |
| 109 | if "%1" == "--without-tiff" goto withouttiff | 109 | if "%1" == "--without-tiff" goto withouttiff |
| 110 | if "%1" == "--without-xpm" goto withoutxpm | 110 | if "%1" == "--without-xpm" goto withoutxpm |
| 111 | if "%1" == "--enable-font-backend" goto withfont | ||
| 111 | if "%1" == "" goto checkutils | 112 | if "%1" == "" goto checkutils |
| 112 | :usage | 113 | :usage |
| 113 | echo Usage: configure [options] | 114 | echo Usage: configure [options] |
| @@ -125,6 +126,7 @@ echo. --without-jpeg do not use jpeg-6b | |||
| 125 | echo. --without-gif do not use giflib or libungif | 126 | echo. --without-gif do not use giflib or libungif |
| 126 | echo. --without-tiff do not use libtiff | 127 | echo. --without-tiff do not use libtiff |
| 127 | echo. --without-xpm do not use libXpm | 128 | echo. --without-xpm do not use libXpm |
| 129 | echo. --enable-font-backend build with font backend support | ||
| 128 | goto end | 130 | goto end |
| 129 | rem ---------------------------------------------------------------------- | 131 | rem ---------------------------------------------------------------------- |
| 130 | :setprefix | 132 | :setprefix |
| @@ -211,6 +213,13 @@ set HAVE_XPM= | |||
| 211 | shift | 213 | shift |
| 212 | goto again | 214 | goto again |
| 213 | 215 | ||
| 216 | :withfont | ||
| 217 | set usercflags=%usercflags%%sep1%-DUSE_FONT_BACKEND | ||
| 218 | set sep1= %nothing% | ||
| 219 | set usefontbackend=Y | ||
| 220 | shift | ||
| 221 | goto again | ||
| 222 | |||
| 214 | rem ---------------------------------------------------------------------- | 223 | rem ---------------------------------------------------------------------- |
| 215 | rem Check that necessary utilities (cp and rm) are present. | 224 | rem 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 | |||
| 481 | if (%docflags%)==(Y) echo USER_CFLAGS=%usercflags%>>config.settings | 490 | if (%docflags%)==(Y) echo USER_CFLAGS=%usercflags%>>config.settings |
| 482 | for %%v in (%userldflags%) do if not (%%v)==() set doldflags=Y | 491 | for %%v in (%userldflags%) do if not (%%v)==() set doldflags=Y |
| 483 | if (%doldflags%)==(Y) echo USER_LDFLAGS=%userldflags%>>config.settings | 492 | if (%doldflags%)==(Y) echo USER_LDFLAGS=%userldflags%>>config.settings |
| 493 | if (%usefontbackend%) == (Y) echo USE_FONTBACKEND=1 >>config.settings | ||
| 484 | echo # End of settings from configure.bat>>config.settings | 494 | echo # End of settings from configure.bat>>config.settings |
| 485 | echo. >>config.settings | 495 | echo. >>config.settings |
| 486 | 496 | ||