aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--ChangeLog.ja6
-rw-r--r--configure.in6
-rw-r--r--src/Makefile.am4
4 files changed, 15 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 6eb3c7ab..45048fa4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-12-27
+
+ * configure.in
+ src/Makefile.am: don't enable windres on non-win32 platforms.
+
2007-12-21
* version 2.4.8
diff --git a/ChangeLog.ja b/ChangeLog.ja
index 6d97e8f1..046858c1 100644
--- a/ChangeLog.ja
+++ b/ChangeLog.ja
@@ -1,3 +1,9 @@
+2007-12-27
+
+ * configure.in
+ src/Makefile.am: win32 以外のプラットフォームで windres を有効に
+ しないようにした。
+
2007-12-21
* version 2.4.8
diff --git a/configure.in b/configure.in
index e2e8f4bc..90394137 100644
--- a/configure.in
+++ b/configure.in
@@ -56,9 +56,6 @@ AM_PROG_LEX
AC_PROG_YACC
AM_PROG_LIBTOOL
-AC_CHECK_PROG(WINDRES, windres, windres)
-AM_CONDITIONAL(HAVE_WINDRES, test x"$WINDRES" != x)
-
SYLPHEED_ACLOCAL_INCLUDE(ac)
native_win32=no
@@ -71,9 +68,12 @@ case "$target" in
native_win32=yes
CFLAGS="$CFLAGS -mms-bitfields -mwindows"
LIBS="$LIBS -lws2_32"
+ AC_CHECK_PROG(WINDRES, windres, windres)
;;
esac
+AM_CONDITIONAL(NATIVE_WIN32, test "$native_win32" = "yes")
+
dnl Checks for libraries.
AM_PATH_GLIB_2_0(2.4.0,, AC_MSG_ERROR(Test for GLib failed. See the 'INSTALL' for help.))
diff --git a/src/Makefile.am b/src/Makefile.am
index 47902071..15ab682c 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -112,10 +112,8 @@ INCLUDES = \
-I$(includedir) \
-I$(top_srcdir)/libsylph
-if HAVE_WINDRES
+if NATIVE_WIN32
SYLPHEED_RES = sylpheed.res
-#sylpheed.rc:
-# echo "SYLPHEED ICON icons/sylpheed.ico" >$@
sylpheed.res: sylpheed.rc
$(WINDRES) $< -O coff -o $@
else