diff options
author | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2006-08-04 01:29:57 +0000 |
---|---|---|
committer | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2006-08-04 01:29:57 +0000 |
commit | 476b7acfecdce96c2fac1f99dbec216029547179 (patch) | |
tree | 8652cf91f374a23e3fcd1cbff7a1ac37cab83c1a | |
parent | 21161e9ecb7ade63c81ab126281ef5e2b9ee3ccc (diff) |
generate sylpheed.rc from sylpheed.rc.in.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@1115 ee746299-78ed-0310-b773-934348b2243d
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | ChangeLog.ja | 6 | ||||
-rw-r--r-- | configure.in | 1 | ||||
-rw-r--r-- | src/Makefile.am | 7 | ||||
-rw-r--r-- | src/sylpheed.rc.in | 1 |
5 files changed, 18 insertions, 3 deletions
@@ -1,3 +1,9 @@ +2006-08-04 + + * src/sylpheed.rc.in + src/Makefile.am + configure.in: generate sylpheed.rc from sylpheed.rc.in. + 2006-08-03 * configure.in: fixed a bug that $LIBS was not properly restored diff --git a/ChangeLog.ja b/ChangeLog.ja index fbcc6df2..a3096662 100644 --- a/ChangeLog.ja +++ b/ChangeLog.ja @@ -1,3 +1,9 @@ +2006-08-04 + + * src/sylpheed.rc.in + src/Makefile.am + configure.in: sylpheed.rc.in から sylpheed.rc を生成。 + 2006-08-03 * configure.in: OpenSSL のテストが失敗したときに $LIBS を正しく復元 diff --git a/configure.in b/configure.in index 4bd98824..78e4285f 100644 --- a/configure.in +++ b/configure.in @@ -406,6 +406,7 @@ sylpheed.spec ac/Makefile libsylph/Makefile src/version.h +src/sylpheed.rc src/Makefile src/icons/Makefile po/Makefile.in diff --git a/src/Makefile.am b/src/Makefile.am index 1befcfe8..aa90623c 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -96,7 +96,8 @@ BUILT_SOURCES = \ EXTRA_DIST = \ quote_fmt_parse.h \ sylpheed-marshal.list \ - version.h.in + version.h.in \ + sylpheed.rc.in INCLUDES = \ -DG_LOG_DOMAIN=\"Sylpheed\" \ @@ -108,8 +109,8 @@ INCLUDES = \ if HAVE_WINDRES SYLPHEED_RES = sylpheed.res -sylpheed.rc: - echo "SYLPHEED ICON icons/sylpheed.ico" >$@ +#sylpheed.rc: +# echo "SYLPHEED ICON icons/sylpheed.ico" >$@ sylpheed.res: sylpheed.rc $(WINDRES) $< -O coff -o $@ else diff --git a/src/sylpheed.rc.in b/src/sylpheed.rc.in new file mode 100644 index 00000000..9ca090f9 --- /dev/null +++ b/src/sylpheed.rc.in @@ -0,0 +1 @@ +SYLPHEED ICON icons/sylpheed.ico |