Mercurial > hg > octave-shane > gnulib-hg
annotate modules/javaexec @ 17267:ee4cb5937493
unicodeio: depend on stdio, not ignore-value
* lib/unicodeio.c: Do not include ignore-value.h.
(fwrite_success_callback): Use plain fwrite, not ignore_value + fwrite.
* modules/unicodeio (Depends-on): Depend on stdio, not ignore-value.
author | Paul Eggert <eggert@cs.ucla.edu> |
---|---|
date | Fri, 04 Jan 2013 01:55:52 +0000 |
parents | f0a681493fa6 |
children |
rev | line source |
---|---|
5624 | 1 Description: |
2 Execute a Java program. | |
3 | |
4 Files: | |
5 lib/javaexec.h | |
6 lib/javaexec.c | |
7 | |
8 Depends-on: | |
9 stdbool | |
10 execute | |
11 classpath | |
12 xsetenv | |
13 sh-quote | |
10391
f0a681493fa6
New module 'xconcat-filename', split off from module 'concat-filename'.
Bruno Haible <bruno@clisp.org>
parents:
9363
diff
changeset
|
14 xconcat-filename |
5624 | 15 xalloc |
8948
a162347a0232
Update after allocsa -> malloca renaming.
Bruno Haible <bruno@clisp.org>
parents:
8251
diff
changeset
|
16 xmalloca |
5624 | 17 error |
5965
cd3c62f1332e
Support programs like Emacs that use gnulib but not gettext.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5624
diff
changeset
|
18 gettext-h |
7886
76f9d13945cd
2007-01-16 Paolo Bonzini <bonzini@gnu.org>
Paolo Bonzini <bonzini@gnu.org>
parents:
7084
diff
changeset
|
19 javaexec-script |
5624 | 20 |
21 configure.ac: | |
22 | |
23 Makefile.am: | |
9363
4d4d1419d4ab
Use @FOO@ syntax instead of $(FOO) syntax, because it uncovers typos early.
Bruno Haible <bruno@clisp.org>
parents:
8948
diff
changeset
|
24 DEFS += -DEXEEXT=\"@EXEEXT@\" |
5624 | 25 lib_SOURCES += javaexec.h javaexec.c |
26 | |
27 Include: | |
28 "javaexec.h" | |
29 | |
30 License: | |
31 GPL | |
32 | |
33 Maintainer: | |
34 Bruno Haible | |
35 |