summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2010-04-09 02:02:15 +0200
committerBruno Haible <bruno@clisp.org>2010-04-09 02:02:15 +0200
commitba564f2164f381af846d9695e6465cffe7ec918c (patch)
tree8c6855e1bdfb0c1601b491b4d791733828667cd6 /modules
parent177f5256e8632718eb5d2bb6aecb3f9eec614baf (diff)
downloadgnulib-ba564f2164f381af846d9695e6465cffe7ec918c.tar.gz
Fix side effects from tests-related modules.
Diffstat (limited to 'modules')
-rw-r--r--modules/ceilf-tests1
-rw-r--r--modules/dprintf-posix6
-rw-r--r--modules/floorf-tests1
-rw-r--r--modules/fprintf-posix6
-rw-r--r--modules/obstack-printf-posix6
-rw-r--r--modules/printf-posix6
-rw-r--r--modules/round-tests1
-rw-r--r--modules/roundf-tests1
-rw-r--r--modules/snprintf-posix6
-rw-r--r--modules/sprintf-posix6
-rw-r--r--modules/trunc-tests1
-rw-r--r--modules/truncf-tests1
-rw-r--r--modules/vasnprintf-posix6
-rw-r--r--modules/vasprintf-posix6
-rw-r--r--modules/vdprintf-posix6
-rw-r--r--modules/vfprintf-posix6
-rw-r--r--modules/vprintf-posix6
-rw-r--r--modules/vsnprintf-posix6
-rw-r--r--modules/vsprintf-posix6
-rw-r--r--modules/xprintf-posix6
-rw-r--r--modules/xvasprintf-posix6
21 files changed, 90 insertions, 6 deletions
diff --git a/modules/ceilf-tests b/modules/ceilf-tests
index 9462b06f45..09c9c7816b 100644
--- a/modules/ceilf-tests
+++ b/modules/ceilf-tests
@@ -10,7 +10,6 @@ float
isnanf-nolibm
stdbool
stdint
-fprintf-posix
configure.ac:
diff --git a/modules/dprintf-posix b/modules/dprintf-posix
index 1f4b85c1a9..19a471807e 100644
--- a/modules/dprintf-posix
+++ b/modules/dprintf-posix
@@ -2,6 +2,12 @@ Description:
POSIX compatible dprintf() function: print formatted output to a file
descriptor
+Comment:
+This module should not be used as a dependency from a test module,
+otherwise when this module occurs as a tests-related module, it will
+have side effects on the compilation of the 'vasnprintf' module, if
+that module occurs among the main modules in lib/.
+
Files:
m4/dprintf-posix.m4
m4/printf.m4
diff --git a/modules/floorf-tests b/modules/floorf-tests
index ffe6a9951e..64b4e3c31e 100644
--- a/modules/floorf-tests
+++ b/modules/floorf-tests
@@ -10,7 +10,6 @@ float
isnanf-nolibm
stdbool
stdint
-fprintf-posix
configure.ac:
diff --git a/modules/fprintf-posix b/modules/fprintf-posix
index 2f22ebda8d..be2b010dd8 100644
--- a/modules/fprintf-posix
+++ b/modules/fprintf-posix
@@ -1,6 +1,12 @@
Description:
POSIX compatible fprintf() function: print formatted output to a stream
+Comment:
+This module should not be used as a dependency from a test module,
+otherwise when this module occurs as a tests-related module, it will
+have side effects on the compilation of the 'vasnprintf' module, if
+that module occurs among the main modules in lib/.
+
Files:
lib/fprintf.c
m4/fprintf-posix.m4
diff --git a/modules/obstack-printf-posix b/modules/obstack-printf-posix
index eb7bef530f..306a3df30b 100644
--- a/modules/obstack-printf-posix
+++ b/modules/obstack-printf-posix
@@ -1,6 +1,12 @@
Description:
POSIX formatted printing into an obstack.
+Comment:
+This module should not be used as a dependency from a test module,
+otherwise when this module occurs as a tests-related module, it will
+have side effects on the compilation of the 'vasnprintf' module, if
+that module occurs among the main modules in lib/.
+
Files:
m4/obstack-printf.m4
m4/obstack-printf-posix.m4
diff --git a/modules/printf-posix b/modules/printf-posix
index b690c729e0..b9884f4a22 100644
--- a/modules/printf-posix
+++ b/modules/printf-posix
@@ -1,6 +1,12 @@
Description:
POSIX compatible printf() function: print formatted output to standard output
+Comment:
+This module should not be used as a dependency from a test module,
+otherwise when this module occurs as a tests-related module, it will
+have side effects on the compilation of the 'vasnprintf' module, if
+that module occurs among the main modules in lib/.
+
Files:
lib/printf.c
m4/printf-posix-rpl.m4
diff --git a/modules/round-tests b/modules/round-tests
index 28b0defef8..b52890cd4b 100644
--- a/modules/round-tests
+++ b/modules/round-tests
@@ -9,7 +9,6 @@ Depends-on:
isnand-nolibm
stdbool
stdint
-fprintf-posix
verify
configure.ac:
diff --git a/modules/roundf-tests b/modules/roundf-tests
index 82ff3b74ca..8d99ab91a2 100644
--- a/modules/roundf-tests
+++ b/modules/roundf-tests
@@ -12,7 +12,6 @@ floorf
isnanf-nolibm
stdbool
stdint
-fprintf-posix
verify
configure.ac:
diff --git a/modules/snprintf-posix b/modules/snprintf-posix
index 28c8fe37e0..16b38b7dde 100644
--- a/modules/snprintf-posix
+++ b/modules/snprintf-posix
@@ -2,6 +2,12 @@ Description:
POSIX compatible snprintf() function: print formatted output to a fixed length
string
+Comment:
+This module should not be used as a dependency from a test module,
+otherwise when this module occurs as a tests-related module, it will
+have side effects on the compilation of the 'vasnprintf' module, if
+that module occurs among the main modules in lib/.
+
Files:
m4/snprintf-posix.m4
m4/printf.m4
diff --git a/modules/sprintf-posix b/modules/sprintf-posix
index e432bd882e..b5f02f6aaf 100644
--- a/modules/sprintf-posix
+++ b/modules/sprintf-posix
@@ -1,6 +1,12 @@
Description:
POSIX compatible sprintf() function: print formatted output to a string
+Comment:
+This module should not be used as a dependency from a test module,
+otherwise when this module occurs as a tests-related module, it will
+have side effects on the compilation of the 'vasnprintf' module, if
+that module occurs among the main modules in lib/.
+
Files:
lib/sprintf.c
m4/sprintf-posix.m4
diff --git a/modules/trunc-tests b/modules/trunc-tests
index 3f84affcd0..ce1e979964 100644
--- a/modules/trunc-tests
+++ b/modules/trunc-tests
@@ -10,7 +10,6 @@ float
isnand-nolibm
stdbool
stdint
-fprintf-posix
configure.ac:
diff --git a/modules/truncf-tests b/modules/truncf-tests
index a2b93202da..746950d14b 100644
--- a/modules/truncf-tests
+++ b/modules/truncf-tests
@@ -10,7 +10,6 @@ float
isnanf-nolibm
stdbool
stdint
-fprintf-posix
configure.ac:
diff --git a/modules/vasnprintf-posix b/modules/vasnprintf-posix
index 2e47814fc2..6a6177abb9 100644
--- a/modules/vasnprintf-posix
+++ b/modules/vasnprintf-posix
@@ -2,6 +2,12 @@ Description:
POSIX compatible vsprintf with automatic memory allocation and bounded output
size.
+Comment:
+This module should not be used as a dependency from a test module,
+otherwise when this module occurs as a tests-related module, it will
+have side effects on the compilation of the 'vasnprintf' module, if
+that module occurs among the main modules in lib/.
+
Files:
m4/vasnprintf-posix.m4
m4/printf.m4
diff --git a/modules/vasprintf-posix b/modules/vasprintf-posix
index 1fc33857c0..5e9050689a 100644
--- a/modules/vasprintf-posix
+++ b/modules/vasprintf-posix
@@ -1,6 +1,12 @@
Description:
POSIX compatible vsprintf with automatic memory allocation.
+Comment:
+This module should not be used as a dependency from a test module,
+otherwise when this module occurs as a tests-related module, it will
+have side effects on the compilation of the 'vasnprintf' module, if
+that module occurs among the main modules in lib/.
+
Files:
m4/vasprintf-posix.m4
m4/printf.m4
diff --git a/modules/vdprintf-posix b/modules/vdprintf-posix
index bc1cb88928..649eacfce4 100644
--- a/modules/vdprintf-posix
+++ b/modules/vdprintf-posix
@@ -2,6 +2,12 @@ Description:
POSIX compatible vdprintf() function: print formatted output to a file
descriptor
+Comment:
+This module should not be used as a dependency from a test module,
+otherwise when this module occurs as a tests-related module, it will
+have side effects on the compilation of the 'vasnprintf' module, if
+that module occurs among the main modules in lib/.
+
Files:
m4/vdprintf-posix.m4
m4/printf.m4
diff --git a/modules/vfprintf-posix b/modules/vfprintf-posix
index b622564151..45af3638f5 100644
--- a/modules/vfprintf-posix
+++ b/modules/vfprintf-posix
@@ -1,6 +1,12 @@
Description:
POSIX compatible vfprintf() function: print formatted output to a stream
+Comment:
+This module should not be used as a dependency from a test module,
+otherwise when this module occurs as a tests-related module, it will
+have side effects on the compilation of the 'vasnprintf' module, if
+that module occurs among the main modules in lib/.
+
Files:
lib/vfprintf.c
m4/vfprintf-posix.m4
diff --git a/modules/vprintf-posix b/modules/vprintf-posix
index 2007000ae2..319d83d6bc 100644
--- a/modules/vprintf-posix
+++ b/modules/vprintf-posix
@@ -1,6 +1,12 @@
Description:
POSIX compatible vprintf() function: print formatted output to standard output
+Comment:
+This module should not be used as a dependency from a test module,
+otherwise when this module occurs as a tests-related module, it will
+have side effects on the compilation of the 'vasnprintf' module, if
+that module occurs among the main modules in lib/.
+
Files:
lib/vprintf.c
m4/vprintf-posix.m4
diff --git a/modules/vsnprintf-posix b/modules/vsnprintf-posix
index dda0c3214e..0f36cd9909 100644
--- a/modules/vsnprintf-posix
+++ b/modules/vsnprintf-posix
@@ -2,6 +2,12 @@ Description:
POSIX compatible vsnprintf() function: print formatted output to a fixed length
string
+Comment:
+This module should not be used as a dependency from a test module,
+otherwise when this module occurs as a tests-related module, it will
+have side effects on the compilation of the 'vasnprintf' module, if
+that module occurs among the main modules in lib/.
+
Files:
m4/vsnprintf-posix.m4
m4/printf.m4
diff --git a/modules/vsprintf-posix b/modules/vsprintf-posix
index 96730b3465..44d89f5407 100644
--- a/modules/vsprintf-posix
+++ b/modules/vsprintf-posix
@@ -1,6 +1,12 @@
Description:
POSIX compatible vsprintf() function: print formatted output to a string
+Comment:
+This module should not be used as a dependency from a test module,
+otherwise when this module occurs as a tests-related module, it will
+have side effects on the compilation of the 'vasnprintf' module, if
+that module occurs among the main modules in lib/.
+
Files:
lib/vsprintf.c
m4/vsprintf-posix.m4
diff --git a/modules/xprintf-posix b/modules/xprintf-posix
index 495f7996e4..d25741e876 100644
--- a/modules/xprintf-posix
+++ b/modules/xprintf-posix
@@ -2,6 +2,12 @@ Description:
A wrapper around printf with POSIX compatible format string interpretation,
that calls error upon ENOMEM or EILSEQ errors.
+Comment:
+This module should not be used as a dependency from a test module,
+otherwise when this module occurs as a tests-related module, it will
+have side effects on the compilation of the 'vasnprintf' module, if
+that module occurs among the main modules in lib/.
+
Files:
Depends-on:
diff --git a/modules/xvasprintf-posix b/modules/xvasprintf-posix
index b95ebb8f18..8811f9c89c 100644
--- a/modules/xvasprintf-posix
+++ b/modules/xvasprintf-posix
@@ -2,6 +2,12 @@ Description:
vasprintf and asprintf with POSIX compatible format string interpretation and
with out-of-memory checking. Also see xalloc-die.
+Comment:
+This module should not be used as a dependency from a test module,
+otherwise when this module occurs as a tests-related module, it will
+have side effects on the compilation of the 'vasnprintf' module, if
+that module occurs among the main modules in lib/.
+
Files:
Depends-on: