summaryrefslogtreecommitdiff
path: root/Build/source/texk/kpathsea
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/kpathsea')
-rw-r--r--Build/source/texk/kpathsea/ChangeLog6
-rw-r--r--Build/source/texk/kpathsea/pathsearch.c4
-rw-r--r--Build/source/texk/kpathsea/progname.c2
-rw-r--r--Build/source/texk/kpathsea/progname.h8
-rw-r--r--Build/source/texk/kpathsea/texmf.cnf6
5 files changed, 19 insertions, 7 deletions
diff --git a/Build/source/texk/kpathsea/ChangeLog b/Build/source/texk/kpathsea/ChangeLog
index d61ba8d0667..ae40d04d0f4 100644
--- a/Build/source/texk/kpathsea/ChangeLog
+++ b/Build/source/texk/kpathsea/ChangeLog
@@ -1,3 +1,9 @@
+2010-03-09 Peter Breitenlohner <peb@mppmu.mpg.de>
+
+ * texmf.cnf: Add '.gftype' to GFtype specific parameters.
+ * progname.h: Remove kpse_set_progname from exported API.
+ Deprecated since 1998. Kept in library for Versions 5.x.y.
+
2010-03-08 Peter Breitenlohner <peb@mppmu.mpg.de>
* xrealloc.c (xrealloc): Allocate 1 byte if passed size 0.
diff --git a/Build/source/texk/kpathsea/pathsearch.c b/Build/source/texk/kpathsea/pathsearch.c
index 4bc0b974d29..8d376ab85ab 100644
--- a/Build/source/texk/kpathsea/pathsearch.c
+++ b/Build/source/texk/kpathsea/pathsearch.c
@@ -343,7 +343,7 @@ search (kpathsea kpse, const_string path, const_string original_name,
signature); that we do NOT need time stamp of root directories;
and that we do NOT need the write access bit in st_mode.
- Note that `kpse_set_progname' needs the EXEC bits,
+ Note that `kpse_set_program_name' needs the EXEC bits,
but it was already called by the time we get here. */
unsigned short save_djgpp_flags = _djstat_flags;
@@ -430,7 +430,7 @@ search_list (kpathsea kpse, const_string path, const_string* names,
signature); that we do NOT need time stamp of root directories;
and that we do NOT need the write access bit in st_mode.
- Note that `kpse_set_progname' needs the EXEC bits,
+ Note that `kpse_set_program_name' needs the EXEC bits,
but it was already called by the time we get here. */
unsigned short save_djgpp_flags = _djstat_flags;
diff --git a/Build/source/texk/kpathsea/progname.c b/Build/source/texk/kpathsea/progname.c
index e5cf8c937bf..7fe68742a09 100644
--- a/Build/source/texk/kpathsea/progname.c
+++ b/Build/source/texk/kpathsea/progname.c
@@ -672,6 +672,8 @@ kpse_set_program_name (const_string argv0, const_string progname)
kpathsea_set_program_name (kpse_def, argv0, progname);
}
+/* DEPRECATED since 1998 -- To be removed in Version 6.0.0. */
+
void
kpse_set_progname (const_string argv0)
{
diff --git a/Build/source/texk/kpathsea/progname.h b/Build/source/texk/kpathsea/progname.h
index 438420fe1a9..b5e7af87103 100644
--- a/Build/source/texk/kpathsea/progname.h
+++ b/Build/source/texk/kpathsea/progname.h
@@ -49,7 +49,9 @@ extern KPSEDLL string kpse_selfdir (const_string argv0);
extern KPSEDLL void kpse_set_program_name (const_string argv0,
const_string progname);
-/* DEPRECATED
+#ifdef MAKE_KPSE_DLL /* libkpathsea internal only */
+
+/* DEPRECATED since 1998 -- To be removed in Version 6.0.0.
Set first two variables above (if they're not predefined) to a copy of
ARGV0 and everything in ARGV0 after the last directory separator,
respectively. kpse_program_name is _always_ set to a copy of everything
@@ -57,6 +59,8 @@ extern KPSEDLL void kpse_set_program_name (const_string argv0,
extern KPSEDLL void kpse_set_progname (const_string argv0);
-#endif
+#endif /* MAKE_KPSE_DLL */
+
+#endif /* KPSE_COMPAT_API */
#endif /* not KPATHSEA_PROGNAME_H */
diff --git a/Build/source/texk/kpathsea/texmf.cnf b/Build/source/texk/kpathsea/texmf.cnf
index d8824c718a5..be1e99baa98 100644
--- a/Build/source/texk/kpathsea/texmf.cnf
+++ b/Build/source/texk/kpathsea/texmf.cnf
@@ -692,6 +692,6 @@ screen_width = 1664
screen_depth = 1200
% GFtype only.
-line_length = 500
-max_rows = 8191
-max_cols = 8191
+line_length.gftype = 500
+max_rows.gftype = 8191
+max_cols.gftype = 8191