Skip to content

Commit

Permalink
Merge tag 'v6.8+w0' into v6.8+w1
Browse files Browse the repository at this point in the history
  • Loading branch information
shkit committed Jun 14, 2018
2 parents a8a6409 + f785ff3 commit 6e0f30d
Show file tree
Hide file tree
Showing 17 changed files with 2,944 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,8 @@ bin/hs/cmew
bin/hs/dist
TAGS
info/dir
.vs
*.res
*.ZIP
*.sha1
stack.yaml
71 changes: 71 additions & 0 deletions 00readme.w32
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>
27 changes: 27 additions & 0 deletions bin/instsrc/Makefile
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
Loading

0 comments on commit 6e0f30d

Please sign in to comment.