From: Bruno Haible Date: Tue, 16 May 2006 12:56:24 +0000 (+0000) Subject: Remove unused variable. X-Git-Tag: v0.15~134 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=010dc0edcf71b635bae1d5a2f6bc94e635d8a470;p=thirdparty%2Fgettext.git Remove unused variable. --- diff --git a/gettext-tools/lib/ChangeLog b/gettext-tools/lib/ChangeLog index ea605620f..57b97b730 100644 --- a/gettext-tools/lib/ChangeLog +++ b/gettext-tools/lib/ChangeLog @@ -1,3 +1,10 @@ +2006-05-16 Bruno Haible + + * javacomp.c (is_envjavac_gcj_14_14_usable, + is_envjavac_gcj_14_13_usable, is_envjavac_nongcj_usable, + is_gcj_present, is_gcj_14_14_usable, is_gcj_14_13_usable, + is_javac_usable): Remove unused variable. + 2006-05-15 Bruno Haible * Makefile.am: Test flag WOE32DLL instead of CYGWINDLL. diff --git a/gettext-tools/lib/javacomp.c b/gettext-tools/lib/javacomp.c index 41aeedfd7..a6a314615 100644 --- a/gettext-tools/lib/javacomp.c +++ b/gettext-tools/lib/javacomp.c @@ -602,7 +602,6 @@ is_envjavac_gcj_14_14_usable (const char *javac, bool *usablep) /* Try $JAVAC. */ struct temp_dir *tmpdir; char *conftest_file_name; - FILE *conftest_file; char *compiled_file_name; const char *java_sources[1]; struct stat statbuf; @@ -661,7 +660,6 @@ is_envjavac_gcj_14_13_usable (const char *javac, it makes a difference. (It could already be part of $JAVAC.) */ struct temp_dir *tmpdir; char *conftest_file_name; - FILE *conftest_file; char *compiled_file_name; const char *java_sources[1]; struct stat statbuf; @@ -805,7 +803,6 @@ is_envjavac_nongcj_usable (const char *javac, /* Try $JAVAC. */ struct temp_dir *tmpdir; char *conftest_file_name; - FILE *conftest_file; char *compiled_file_name; const char *java_sources[1]; struct stat statbuf; @@ -1109,7 +1106,6 @@ is_gcj_present (void) else { char *conftest_file_name; - FILE *conftest_file; conftest_file_name = concatenated_pathname (tmpdir->dir_name, "conftestlib.java", @@ -1164,7 +1160,6 @@ is_gcj_14_14_usable (bool *usablep) /* Try gcj. */ struct temp_dir *tmpdir; char *conftest_file_name; - FILE *conftest_file; char *compiled_file_name; const char *java_sources[1]; struct stat statbuf; @@ -1222,7 +1217,6 @@ is_gcj_14_13_usable (bool *usablep, bool *need_no_assert_option_p) it works (not gcj < 3.3). */ struct temp_dir *tmpdir; char *conftest_file_name; - FILE *conftest_file; char *compiled_file_name; const char *java_sources[1]; struct stat statbuf; @@ -1330,7 +1324,6 @@ is_javac_usable (const char *source_version, const char *target_version, /* Try javac. */ struct temp_dir *tmpdir; char *conftest_file_name; - FILE *conftest_file; char *compiled_file_name; const char *java_sources[1]; struct stat statbuf;