summaryrefslogtreecommitdiff
path: root/vos
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-09-20 13:38:22 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-09-20 13:38:22 +0000
commite61ecf2728b6f0a3b42d3fefc949a8a7bc2b4fb1 (patch)
treecc834ac35134d402d3406af67c98fc3c1783bca7 /vos
parent2d84a16a79dbb993063e4052e2e5e7a2dca5effc (diff)
downloadperl-e61ecf2728b6f0a3b42d3fefc949a8a7bc2b4fb1.tar.gz
Remove iconv references since we are not using it
and not going to; regen perltoc, perlmodlib. (Some references still linger in perltoc, have to figure out where they are coming from.) p4raw-id: //depot/perl@12095
Diffstat (limited to 'vos')
-rw-r--r--vos/config.alpha.def2
-rw-r--r--vos/config.alpha.h68
-rw-r--r--vos/config.ga.def2
-rw-r--r--vos/config.ga.h68
4 files changed, 56 insertions, 84 deletions
diff --git a/vos/config.alpha.def b/vos/config.alpha.def
index 5dd17a9e60..961dfbe4c0 100644
--- a/vos/config.alpha.def
+++ b/vos/config.alpha.def
@@ -130,7 +130,6 @@ $d_gnulibc='undef'
$d_grpasswd='undef'
$d_hasmntopt='undef'
$d_htonl='define'
-$d_iconv='undef'
$d_index='undef'
$d_inetaton='undef'
$d_int64_t='undef'
@@ -359,7 +358,6 @@ $i_float='define'
$i_fp='undef'
$i_fp_class='undef'
$i_grp='define'
-$i_iconv='undef'
$i_ieeefp='undef'
$i_inttypes='undef'
$i_langinfo='undef'
diff --git a/vos/config.alpha.h b/vos/config.alpha.h
index b7e221ac99..bb9f668384 100644
--- a/vos/config.alpha.h
+++ b/vos/config.alpha.h
@@ -922,15 +922,6 @@
#define _(args) ()
#endif
-/* SH_PATH:
- * This symbol contains the full pathname to the shell used on this
- * on this system to execute Bourne shell scripts. Usually, this will be
- * /bin/sh, though it's possible that some systems will have /bin/ksh,
- * /bin/pdksh, /bin/ash, /bin/bash, or even something such as
- * D:/bin/sh.exe.
- */
-#define SH_PATH "/bin/sh" /**/
-
/* INTSIZE:
* This symbol contains the value of sizeof(int) so that the C
* preprocessor can make decisions based on it.
@@ -1387,24 +1378,6 @@
*/
/*#define HAS_FPCLASSIFY /**/
-/* HAS_FPCLASSL:
- * This symbol, if defined, indicates that the fpclassl routine is
- * available to classify long doubles. Available for example in IRIX.
- * The returned values are defined in <ieeefp.h> and are:
- *
- * FP_SNAN signaling NaN
- * FP_QNAN quiet NaN
- * FP_NINF negative infinity
- * FP_PINF positive infinity
- * FP_NDENORM negative denormalized non-zero
- * FP_PDENORM positive denormalized non-zero
- * FP_NZERO negative zero
- * FP_PZERO positive zero
- * FP_NNORM negative normalized non-zero
- * FP_PNORM positive normalized non-zero
- */
-/*#define HAS_FPCLASSL /**/
-
/* HAS_FPOS64_T:
* This symbol will be defined if the C compiler supports fpos64_t.
*/
@@ -1714,12 +1687,6 @@
#define HAS_NTOHL /**/
#define HAS_NTOHS /**/
-/* HAS_ICONV:
- * This symbol, if defined, indicates that the iconv routine is
- * available to do character set conversions.
- */
-/*#define HAS_ICONV /**/
-
/* HAS_INT64_T:
* This symbol will defined if the C compiler supports int64_t.
* Usually the <inttypes.h> needs to be included, but sometimes
@@ -2539,12 +2506,6 @@
#define I_GRP /**/
/*#define GRPASSWD /**/
-/* I_ICONV:
- * This symbol, if defined, indicates that <iconv.h> exists and
- * should be included.
- */
-/*#define I_ICONV /**/
-
/* I_IEEEFP:
* This symbol, if defined, indicates that <ieeefp.h> exists and
* should be included.
@@ -3344,7 +3305,7 @@
/*#define USE_5005THREADS /**/
/*#define USE_ITHREADS /**/
#if defined(USE_5005THREADS) && !defined(USE_ITHREADS)
-#define USE_5005THREADS /* until src is revised*/
+#define USE_THREADS /* until src is revised*/
#endif
/*#define OLD_PTHREADS_API /**/
/*#define USE_REENTRANT_API /**/
@@ -3470,6 +3431,15 @@
#define I_STDARG /**/
/*#define I_VARARGS /**/
+/* SH_PATH:
+ * This symbol contains the full pathname to the shell used on this
+ * on this system to execute Bourne shell scripts. Usually, this will be
+ * /bin/sh, though it's possible that some systems will have /bin/ksh,
+ * /bin/pdksh, /bin/ash, /bin/bash, or even something such as
+ * D:/bin/sh.exe.
+ */
+#define SH_PATH "/bin/sh" /**/
+
/* USE_CROSS_COMPILE:
* This symbol, if defined, indicates that Perl is being cross-compiled.
*/
@@ -3498,6 +3468,24 @@
*/
/*#define HAS_FLOCK_PROTO /**/
+/* HAS_FPCLASSL:
+ * This symbol, if defined, indicates that the fpclassl routine is
+ * available to classify long doubles. Available for example in IRIX.
+ * The returned values are defined in <ieeefp.h> and are:
+ *
+ * FP_SNAN signaling NaN
+ * FP_QNAN quiet NaN
+ * FP_NINF negative infinity
+ * FP_PINF positive infinity
+ * FP_NDENORM negative denormalized non-zero
+ * FP_PDENORM positive denormalized non-zero
+ * FP_NZERO negative zero
+ * FP_PZERO positive zero
+ * FP_NNORM negative normalized non-zero
+ * FP_PNORM positive normalized non-zero
+ */
+/*#define HAS_FPCLASSL /**/
+
/* HAS_NL_LANGINFO:
* This symbol, if defined, indicates that the nl_langinfo routine is
* available to return local data. You will also need <langinfo.h>
diff --git a/vos/config.ga.def b/vos/config.ga.def
index ab92d19a59..de617ac407 100644
--- a/vos/config.ga.def
+++ b/vos/config.ga.def
@@ -130,7 +130,6 @@ $d_gnulibc='undef'
$d_grpasswd='undef'
$d_hasmntopt='undef'
$d_htonl='define'
-$d_iconv='undef'
$d_index='undef'
$d_inetaton='undef'
$d_int64_t='undef'
@@ -359,7 +358,6 @@ $i_float='define'
$i_fp='undef'
$i_fp_class='undef'
$i_grp='define'
-$i_iconv='undef'
$i_ieeefp='undef'
$i_inttypes='undef'
$i_langinfo='undef'
diff --git a/vos/config.ga.h b/vos/config.ga.h
index 930420519c..a3e952da23 100644
--- a/vos/config.ga.h
+++ b/vos/config.ga.h
@@ -922,15 +922,6 @@
#define _(args) ()
#endif
-/* SH_PATH:
- * This symbol contains the full pathname to the shell used on this
- * on this system to execute Bourne shell scripts. Usually, this will be
- * /bin/sh, though it's possible that some systems will have /bin/ksh,
- * /bin/pdksh, /bin/ash, /bin/bash, or even something such as
- * D:/bin/sh.exe.
- */
-#define SH_PATH "/system/gnu_library/bin/bash.pm" /**/
-
/* INTSIZE:
* This symbol contains the value of sizeof(int) so that the C
* preprocessor can make decisions based on it.
@@ -1387,24 +1378,6 @@
*/
/*#define HAS_FPCLASSIFY /**/
-/* HAS_FPCLASSL:
- * This symbol, if defined, indicates that the fpclassl routine is
- * available to classify long doubles. Available for example in IRIX.
- * The returned values are defined in <ieeefp.h> and are:
- *
- * FP_SNAN signaling NaN
- * FP_QNAN quiet NaN
- * FP_NINF negative infinity
- * FP_PINF positive infinity
- * FP_NDENORM negative denormalized non-zero
- * FP_PDENORM positive denormalized non-zero
- * FP_NZERO negative zero
- * FP_PZERO positive zero
- * FP_NNORM negative normalized non-zero
- * FP_PNORM positive normalized non-zero
- */
-/*#define HAS_FPCLASSL /**/
-
/* HAS_FPOS64_T:
* This symbol will be defined if the C compiler supports fpos64_t.
*/
@@ -1714,12 +1687,6 @@
#define HAS_NTOHL /**/
#define HAS_NTOHS /**/
-/* HAS_ICONV:
- * This symbol, if defined, indicates that the iconv routine is
- * available to do character set conversions.
- */
-/*#define HAS_ICONV /**/
-
/* HAS_INT64_T:
* This symbol will defined if the C compiler supports int64_t.
* Usually the <inttypes.h> needs to be included, but sometimes
@@ -2539,12 +2506,6 @@
#define I_GRP /**/
/*#define GRPASSWD /**/
-/* I_ICONV:
- * This symbol, if defined, indicates that <iconv.h> exists and
- * should be included.
- */
-/*#define I_ICONV /**/
-
/* I_IEEEFP:
* This symbol, if defined, indicates that <ieeefp.h> exists and
* should be included.
@@ -3344,7 +3305,7 @@
/*#define USE_5005THREADS /**/
/*#define USE_ITHREADS /**/
#if defined(USE_5005THREADS) && !defined(USE_ITHREADS)
-#define USE_5005THREADS /* until src is revised*/
+#define USE_THREADS /* until src is revised*/
#endif
/*#define OLD_PTHREADS_API /**/
/*#define USE_REENTRANT_API /**/
@@ -3470,6 +3431,15 @@
#define I_STDARG /**/
/*#define I_VARARGS /**/
+/* SH_PATH:
+ * This symbol contains the full pathname to the shell used on this
+ * on this system to execute Bourne shell scripts. Usually, this will be
+ * /bin/sh, though it's possible that some systems will have /bin/ksh,
+ * /bin/pdksh, /bin/ash, /bin/bash, or even something such as
+ * D:/bin/sh.exe.
+ */
+#define SH_PATH "/system/gnu_library/bin/bash.pm" /**/
+
/* USE_CROSS_COMPILE:
* This symbol, if defined, indicates that Perl is being cross-compiled.
*/
@@ -3498,6 +3468,24 @@
*/
/*#define HAS_FLOCK_PROTO /**/
+/* HAS_FPCLASSL:
+ * This symbol, if defined, indicates that the fpclassl routine is
+ * available to classify long doubles. Available for example in IRIX.
+ * The returned values are defined in <ieeefp.h> and are:
+ *
+ * FP_SNAN signaling NaN
+ * FP_QNAN quiet NaN
+ * FP_NINF negative infinity
+ * FP_PINF positive infinity
+ * FP_NDENORM negative denormalized non-zero
+ * FP_PDENORM positive denormalized non-zero
+ * FP_NZERO negative zero
+ * FP_PZERO positive zero
+ * FP_NNORM negative normalized non-zero
+ * FP_PNORM positive normalized non-zero
+ */
+/*#define HAS_FPCLASSL /**/
+
/* HAS_NL_LANGINFO:
* This symbol, if defined, indicates that the nl_langinfo routine is
* available to return local data. You will also need <langinfo.h>