forked from kazu-yamamoto/Mew
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
2,944 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,3 +18,8 @@ bin/hs/cmew | |
bin/hs/dist | ||
TAGS | ||
info/dir | ||
.vs | ||
*.res | ||
*.ZIP | ||
*.sha1 | ||
stack.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
|
||
Additional Information about "Mew on Win32" | ||
=========================================== | ||
|
||
First, read documents (00readme, ...) | ||
Second, install Mew. | ||
Third, read info (M-x info) | ||
|
||
|
||
INPORTANT! | ||
---------- | ||
o Mew 6.8 and later supports Emacs 24.3 or later. | ||
|
||
|
||
REQUIRED SOFTWARE | ||
----------------- | ||
o GNU Emacs for Windows | ||
|
||
http://www.gnu.org/software/emacs/index.html | ||
|
||
Before using Mew installer(mew.exe), you must set environment variable | ||
"emacs_dir" like this: | ||
|
||
[My Computer] -> [System Properties] -> [Advanced] -> | ||
[Environment Variables] -> [New] -> | ||
|
||
Variable name: => emacs_dir | ||
Variable value: => c:\emacs-26.1 (your Emacs path) | ||
|
||
|
||
HOW TO INSTALL | ||
-------------- | ||
o Make HOME directory and set environment variable. | ||
|
||
HOME ... x:\homedir\someone | ||
TZ ... JST-9 (Japan) | ||
|
||
and reboot your machine. | ||
|
||
o Type "mew" | ||
|
||
> mew | ||
|
||
|
||
USING CMEW.EXE/SMEW.EXE | ||
----------------------- | ||
o If you want to use cmew.exe/smew.exe(Haskell version), you must | ||
install sqlite3.dll to your environment. | ||
|
||
1. download "sqlite-dll-win32-x86-???????.zip" from | ||
http://www.sqlite.org/download.html | ||
2. extract archive and copy sqlite3.dll to executable path. | ||
(e.g. emacs-26.1\bin) | ||
|
||
|
||
FAQ AND OTHER INFORMATION | ||
------------------------- | ||
Mew Official Homepage : | ||
http://www.Mew.org/ | ||
Mew on Win32 Project : | ||
https://github.com/shkit/mew-win32/releases | ||
|
||
|
||
SPECIAL THANKS | ||
-------------- | ||
Icon design : Akari Uemoto / Team TUKUE. LOCKON CO., LTD. | ||
|
||
|
||
CONTACTING WIN32 MAINTAINER | ||
--------------------------- | ||
E-Mail : Shuichi KITAGUCHI <kit@ysnb.net> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# | ||
# Makefile for Mew installer | ||
# | ||
|
||
CC = cl | ||
CFLAGS = -nologo -O2 -W3 -D_CRT_SECURE_NO_WARNINGS | ||
RC = rc | ||
LINK = link | ||
|
||
INCLUDES = common.h env.h | ||
LIBS = kernel32.lib user32.lib gdi32.lib advapi32.lib comdlg32.lib imm32.lib | ||
|
||
OBJS = mew.obj env.obj common.obj | ||
RESS = mew.res | ||
|
||
all : mew.exe | ||
|
||
mew.exe : $(OBJS) $(RESS) | ||
$(LINK) -subsystem:windows -machine:I386 -out:mew.exe $(OBJS) $(LIBS) $(RESS) | ||
mew.res : mew.rc resource.h | ||
$(RC) mew.rc | ||
mew.obj : mew.c $(INCLUDES) resource.h | ||
$(CC) $(CFLAGS) -c mew.c | ||
env.obj : env.c $(INCLUDES) | ||
$(CC) $(CFLAGS) -c env.c | ||
common.obj : common.c $(INCLUDES) | ||
$(CC) $(CFLAGS) -c common.c |
Oops, something went wrong.