• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revisión57a256b9a3eb28e97ee9b92ae339642180649eb9 (tree)
Tiempo2017-03-31 09:19:30
AutorT.Furukawa <tfuruka1 at hoge>
CommiterT.Furukawa

Log Message

ソースファイルの文字コードと実行時の文字コードを指定するようにしました。

Cambiar Resumen

Diferencia incremental

--- a/src/base64.c
+++ b/src/base64.c
@@ -1,6 +1,6 @@
11 /*
22 * Copyright(C) 2005 T.Furukawa
3- * $Id: base64.c,v 1.1 2005/08/03 01:33:47 tfuruka1 Exp $
3+ * $Id$
44 *
55 * Base64関連
66 *
--- a/src/base64.h
+++ b/src/base64.h
@@ -1,6 +1,6 @@
11 /* -*- mode: c++; coding: sjis; -*-
22 * Copyright (C) 2005 Tadamegu Furukawa
3- * $Id: base64.h,v 1.1 2005/08/03 01:33:47 tfuruka1 Exp $
3+ * $Id$
44 * $Name: $
55 *
66 * Base64関連
--- a/src/main.c
+++ b/src/main.c
@@ -13,7 +13,7 @@
1313 #include "base64.h"
1414
1515 #define VERSION "1.00"
16-#define BUILD "(internal: $Rev$ Build: " __DATE__ " " __TIME__ ")"
16+#define BUILD "(Build: " __DATE__ " " __TIME__ ")"
1717
1818 typedef struct {
1919 const char *lpszMimeType;
--- a/src/makefile
+++ b/src/makefile
@@ -1,8 +1,13 @@
11 # $Id$
22 #
33
4+EXEC_CHARSET=utf-8
5+# EXEC_CHARSET=cp932
6+
47 CFLAGS = -g -Wall -W -Wformat=2 -Wcast-qual -Wcast-align -Wwrite-strings \
5- -Wconversion -Wfloat-equal -Wpointer-arith
8+ -Wconversion -Wfloat-equal -Wpointer-arith \
9+ --input-charset=utf-8 \
10+ --exec-charset=$(EXEC_CHARSET)
611
712 OBJS = main.o base64.o
813