ChangeLog revision 38c51623
1commit d45011b8324fecebb4fc79e57491d341dd96e325 2Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3Date: Sun Aug 25 15:23:33 2019 -0700 4 5 font-util 1.3.2 6 7 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 8 9commit c5d12b729b61576069f479a0b5141aedea04676b 10Author: Tobias Stoeckmann <tobias@stoeckmann.org> 11Date: Wed Nov 8 21:36:32 2017 +0100 12 13 ucs2any: Fix parser crash on 32 bit 14 15 It is possible to crash ucs2any or provoke successful return value even 16 though the processing was not successful. 17 18 The problem lies within a possible integer overflow when adding elements 19 with a key which is too large. 20 21 You can trigger the issue this way on a 32 bit system: 22 23 $ cat > source.bdf << "EOF" 24 STARTFONT source 25 CHARS 1 26 ENCODING 1073741823 27 EOF 28 $ ucs2any source.bdf 29 Segmentation fault 30 $ _ 31 32 Another possibility would be to add "ENCODING 1" right after the CHARS 33 line. In that case, realloc will allocate 0 bytes afterwards which is a 34 success but might return NULL, e.g. on Linux/glibc systems. Such a 35 result value is handled as an error and errno is evaluated and returned, 36 even though there was no error: 37 38 $ cat > source.bdf << "EOF" 39 STARTFONT source 40 CHARS 1 41 ENCODING 1 42 ENCODING 1073741823 43 EOF 44 $ ucs2any source.bdf 45 ucs2any: Success 46 $ echo $? 47 0 48 $ _ 49 50 Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org> 51 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 52 53commit 1d70c9accf93b9fae1b9adb48e47b7d96a5ae64e 54Author: Alan Coopersmith <alan.coopersmith@oracle.com> 55Date: Fri Dec 7 19:27:32 2018 -0800 56 57 Update configure.ac bug URL for gitlab migration 58 59 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 60 61commit 202d167db645cfb6bd9218641b08833a6134ea04 62Author: Alan Coopersmith <alan.coopersmith@oracle.com> 63Date: Sun Nov 18 21:41:33 2018 -0800 64 65 Update README for gitlab migration 66 67 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 68 69commit b98fe13193464042d2733308cdc2343adbc6163a 70Author: Mihail Konev <k.mvc@ya.ru> 71Date: Thu Jan 26 13:52:48 2017 +1000 72 73 autogen: add default patch prefix 74 75 Signed-off-by: Mihail Konev <k.mvc@ya.ru> 76 77commit cf962e480dc73315a4f2288f4d4e007cf3fb9905 78Author: Emil Velikov <emil.l.velikov@gmail.com> 79Date: Mon Mar 9 12:00:52 2015 +0000 80 81 autogen.sh: use quoted string variables 82 83 Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent 84 fall-outs, when they contain space. 85 86 Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> 87 Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net> 88 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 89 90commit 0abff92dc2370c57e79d028c17e6d7aeb50048f1 91Author: Peter Hutterer <peter.hutterer@who-t.net> 92Date: Tue Jan 24 10:32:07 2017 +1000 93 94 autogen.sh: use exec instead of waiting for configure to finish 95 96 Syncs the invocation of configure with the one from the server. 97 98 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 99 Reviewed-by: Emil Velikov <emil.velikov@collabora.com> 100 101commit cfe0b4fb8f87b03060a3d3c9538df144856b5e9f 102Author: Alan Coopersmith <alan.coopersmith@oracle.com> 103Date: Sat Mar 14 09:00:06 2015 -0700 104 105 font-util 1.3.1 106 107 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 108 109commit 1a0f701dbd33a10151a87a6ff6bd6a63682fc356 110Author: Alan Coopersmith <alan.coopersmith@oracle.com> 111Date: Mon Aug 25 18:56:33 2014 -0700 112 113 Update map-JISX0201.1976-0 to current version from Unicode Consortium 114 115 New version is exactly as downloaded on August 25, 2014 from 116 ftp://ftp.unicode.org/Public/MAPPINGS/OBSOLETE/EASTASIA/JIS/JIS0201.TXT 117 118 Does not change mappings, only changes comments (including license notice). 119 120 Reported-by: AGinsberg on #xorg-devel irc 121 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 122 123commit 9f53de00afaf19f9acdb5a796641992ffdaeb255 124Author: Ross Burton <ross.burton@intel.com> 125Date: Mon Dec 9 11:01:54 2013 +0000 126 127 fontutil.m4.in: use $PKG_CONFIG instead of pkg-config 128 129 Instead of assuming that pkg-config is on the path, require PKG_PROG_PKG_CONFIG 130 to be called and use $PKG_CONFIG. 131 132 Signed-off-by: Ross Burton <ross.burton@intel.com> 133 Reviewed-by: Gaetan Nadon <memsize@videotron.ca> 134 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 135 136commit 5f01ea79f1cb2328bfc4130b1e693f71be916b87 137Author: Colin Walters <walters@verbum.org> 138Date: Wed Jan 4 17:37:06 2012 -0500 139 140 autogen.sh: Implement GNOME Build API 141 142 http://people.gnome.org/~walters/docs/build-api.txt 143 144 Signed-off-by: Adam Jackson <ajax@redhat.com> 145 146commit 82da86fa16f82218787752774a6173e417900dae 147Author: Adam Jackson <ajax@redhat.com> 148Date: Wed Jan 16 12:59:17 2013 -0500 149 150 configure: Drop AM_MAINTAINER_MODE 151 152 Signed-off-by: Adam Jackson <ajax@redhat.com> 153 154commit aba5a2f22ff6e0ada7d606cbf91c5974e3255d77 155Author: Alan Coopersmith <alan.coopersmith@oracle.com> 156Date: Sun Dec 16 15:27:33 2012 -0800 157 158 Fix a bunch of clang integer size conversion warnings in ucs2any 159 160 ucs2any.c:149:36: warning: implicit conversion changes signedness: 'int' to 'si 161 ze_t' (aka 'unsigned long') [-Wsign-conversion] 162 *dest = zrealloc(*dest, dest_size + source_size); 163 ~~~~~~~~ ~~~~~~~~~~^~~~~~~~~~~~~ 164 ucs2any.c:147:29: warning: implicit conversion loses integer precision: 'unsign 165 ed long' to 'int' [-Wshorten-64-to-32] 166 dest_size = strlen(*dest) + 1; 167 ~ ~~~~~~~~~~~~~~^~~ 168 ucs2any.c:148:16: warning: implicit conversion loses integer precision: 'size_t 169 ' (aka 'unsigned long') to 'int' [-Wshorten-64-to-32] 170 source_size = strlen(source); 171 ~ ^~~~~~~~~~~~~~ 172 ucs2any.c:159:8: warning: implicit conversion loses integer precision: 'int' to 173 'char' [-Wconversion] 174 *t = toupper(*t); 175 ~ ^~~~~~~~~~~ 176 ucs2any.c:305:27: warning: implicit conversion loses integer precision: 'int' t 177 o 'char' [-Wconversion] 178 (*buffer)[position++] = c; 179 ~ ^ 180 ucs2any.c:465:21: warning: comparison of integers of different signs: 'size_t' 181 (aka 'unsigned long') and 'int' [-Wsign-compare] 182 if (strlen(string) <= l) return NULL; 183 ~~~~~~~~~~~~~~ ^ ~ 184 ucs2any.c:466:31: warning: implicit conversion changes signedness: 'int' to 'si 185 ze_t' (aka 'unsigned long') [-Wsign-conversion] 186 if (strncmp(string, pattern, l) != 0) return NULL; 187 ~~~~~~~ ^ 188 ucs2any.c:463:10: warning: implicit conversion loses integer precision: 'size_t 189 ' (aka 'unsigned long') to 'int' [-Wshorten-64-to-32] 190 int l = strlen(pattern); 191 ~ ^~~~~~~~~~~~~~~ 192 ucs2any.c:730:14: warning: implicit conversion loses integer precision: 'long' to 'int' [-Wshorten-64-to-32] 193 target = strtol(p+2, &endp, 16); 194 ~ ^~~~~~~~~~~~~~~~~~~~~~ 195 ucs2any.c:738:11: warning: implicit conversion loses integer precision: 'long' to 'int' [-Wshorten-64-to-32] 196 ucs = strtol(p+2, &endp, 16); 197 ~ ^~~~~~~~~~~~~~~~~~~~~~ 198 ucs2any.c:843:19: warning: implicit conversion loses integer precision: 'long' to 'int' [-Wshorten-64-to-32] 199 bbx.cwidth = w; 200 ~ ^ 201 ucs2any.c:844:20: warning: implicit conversion loses integer precision: 'long' to 'int' [-Wshorten-64-to-32] 202 bbx.cheight = h; 203 ~ ^ 204 ucs2any.c:845:18: warning: implicit conversion loses integer precision: 'long' to 'int' [-Wshorten-64-to-32] 205 bbx.cxoff = x; 206 ~ ^ 207 ucs2any.c:846:18: warning: implicit conversion loses integer precision: 'long' to 'int' [-Wshorten-64-to-32] 208 bbx.cyoff = y; 209 ~ ^ 210 ucs2any.c:850:7: warning: implicit conversion loses integer precision: 'long' to 'int' [-Wshorten-64-to-32] 211 w, h, x, y, &bbx); 212 ^ 213 ucs2any.c:850:10: warning: implicit conversion loses integer precision: 'long' to 'int' [-Wshorten-64-to-32] 214 w, h, x, y, &bbx); 215 ^ 216 ucs2any.c:850:13: warning: implicit conversion loses integer precision: 'long' to 'int' [-Wshorten-64-to-32] 217 w, h, x, y, &bbx); 218 ^ 219 ucs2any.c:850:16: warning: implicit conversion loses integer precision: 'long' to 'int' [-Wshorten-64-to-32] 220 w, h, x, y, &bbx); 221 ^ 222 223 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 224 225commit dff77bb76ab2260877a37193df1d728d2f4a1d88 226Author: Alan Coopersmith <alan.coopersmith@oracle.com> 227Date: Tue Feb 28 22:14:18 2012 -0800 228 229 font-util 1.3.0 230 231 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 232 233commit faee5567a53bcde7c9e280c330e1ff6671b979b1 234Author: Alan Coopersmith <alan.coopersmith@oracle.com> 235Date: Wed Feb 22 20:43:34 2012 -0800 236 237 configure.ac updates to match other X.Org modules 238 239 layout and comment the top portion of configure.ac 240 add missing AC_CONFIG_SRCDIR 241 Replace obsolete AM_CONFIG_HEADER with AC_CONFIG_HEADERS 242 replace deprecated AC_HELP_STRING with AS_HELP_STRING 243 Remove unnecessary AC_PROG_CC & AC_PROG_INSTALL (already 244 provided by XORG_DEFAULT_OPTIONS) 245 246 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 247 Reviewed-by: Gaetan Nadon<memsize@videotron.ca> 248 249commit 9e9519975fe3a5827b362b8df4a5c69745125a5a 250Author: Alan Coopersmith <alan.coopersmith@oracle.com> 251Date: Fri Nov 18 23:09:43 2011 -0800 252 253 Fix "cast discards qualifiers from pointer target type" warnings 254 255 ucs2any.c: In function ‘chars_compare’: 256 ucs2any.c:450:2: warning: cast discards qualifiers from pointer target type 257 ucs2any.c:451:2: warning: cast discards qualifiers from pointer target type 258 259 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 260 261commit e46b483c58ec3cfc01d2800c069eadc90166eb04 262Author: Alan Coopersmith <alan.coopersmith@oracle.com> 263Date: Fri Nov 18 23:06:46 2011 -0800 264 265 Mark usage() as not returning to clear incorrect uninit var warning 266 267 bdftruncate.c: In function ‘main’: 268 bdftruncate.c:119:16: warning: ‘threshold’ may be used uninitialized in this function 269 270 (It's not actually, if you consider that usage() exits when 271 parse_threshold fails.) 272 273 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 274 275commit 3419c66ac700689351be9fe2bc3f81b80465cd3e 276Author: Alan Coopersmith <alan.coopersmith@oracle.com> 277Date: Mon Sep 26 14:50:29 2011 -0700 278 279 Add const attributes to fix gcc -Wwrite-strings warnings 280 281 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 282 283commit 80cde5d8bb59a50ba1e98b5947f2fe0c8f38ef84 284Author: Jon TURNEY <jon.turney@dronecode.org.uk> 285Date: Tue Apr 26 15:03:42 2011 +0100 286 287 If cross-compiling, we don't have to run mkfontdir 288 289 If cross-compiling, we can run the host mkfontdir on the font directory, 290 since the output is arch independent (I think) 291 292 If cross-compiling and we can't find mkfontdir, just warn that mkfontdir 293 needs to be run on the target. 294 295 When not cross-compiling, the behaviour remains unchanged: mkfontdir 296 must be found and is run 297 298 (Also, bump version number to 1.2.90 as the next release must be 1.3.0 299 as this change adds a macro) 300 301 Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk> 302 Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com> 303 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 304 305commit 901fa14455a09901ebc69d0c93c03bb3c7c712d4 306Author: Jon TURNEY <jon.turney@dronecode.org.uk> 307Date: Tue Apr 26 15:00:30 2011 +0100 308 309 Never run fc-cache if cross-compiling 310 311 Since the cache files produced by fc-cache are arch-dependent, there is 312 no point in running fc-cache if cross-compiling 313 314 So, even if we aren't using a DESTDIR, but are installing directly into 315 (a hopefully non-default) prefix, don't run fc-cache when cross-compiling 316 317 Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk> 318 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 319 320commit 9f807dfb4e7bea7128b7538e41de78bb5994ca80 321Author: Jeremy Huddleston <jeremyhu@apple.com> 322Date: Wed May 4 11:07:39 2011 -0700 323 324 bdftruncate: Make sure opt_minus_w and opt_plus_w are initialized 325 326 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 327 328commit 06e9c86e3741355729748b6c646f7f738c583323 329Author: Jeremy Huddleston <jeremyhu@apple.com> 330Date: Thu Apr 28 00:45:05 2011 -0700 331 332 ucs2any: Dead code removal 333 334 Found-by: clang static analyzer 335 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 336 337commit e15cbb4f48a9c5c0aae5acc88a7f56086fc9e51f 338Author: Jeremy Huddleston <jeremyhu@apple.com> 339Date: Thu Apr 28 00:39:17 2011 -0700 340 341 bdftruncate: Properly support -w and +w 342 343 Regression introduced by fb486bb1a5038912d064291b12c7aef5da3d8b63 344 345 Found-by: clang static analyzer 346 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 347 348commit a0d43f88e563ca2fd376bbe222d4809b9976624b 349Author: Jeremy Huddleston <jeremyhu@apple.com> 350Date: Wed Oct 6 17:00:03 2010 -0700 351 352 font-util 1.2.0 353 354 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 355 356commit 5cad514d15c61cdf73a7dbd6d88f3e823a0d2d99 357Author: Jeremy Huddleston <jeremyhu@apple.com> 358Date: Wed Oct 6 16:59:20 2010 -0700 359 360 fontutil.m4: Add XORG_FONT_FC_CONFDIR to find fontconfig's confdir 361 362 Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com> 363 Acked-by: Gaetan Nadon <memsize@videotron.ca> 364 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 365 366commit 62529733e57b6d6c775b1bcf584260b1cff6af5c 367Author: Michał Górny <mgorny@gentoo.org> 368Date: Thu Oct 7 17:31:06 2010 +0200 369 370 fontutil.m4: Add a shorthand --disable-all-encodings option. 371 372 This option is useful to disable all possible font encodings at once, 373 without fine-graining the calling ebuilds for a list of encodings 374 supported by each font package. 375 376 The option is parsed before all other encoding options, so it basically 377 sets defaults for all of them. Afterwards, any encoding can be 378 re-enabled back using '--enable-<encoding>' (much like 379 '--disable-all-encodings --enable-iso8859-2'). 380 381 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 382 Acked-by: Gaetan Nadon <memsize@videotron.ca> 383 384commit 7757000fca0f7fc6d966eb1f45c226862ed8e489 385Author: Jesse Adkins <jesserayadkins@gmail.com> 386Date: Tue Sep 28 13:30:01 2010 -0700 387 388 Purge cvs tags. 389 390 Signed-off-by: Jesse Adkins <jesserayadkins@gmail.com> 391 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 392 393commit 0a715f61f878cfe22470608036c3fdfc7d89bca1 394Author: Alan Coopersmith <alan.coopersmith@oracle.com> 395Date: Mon Oct 4 21:31:43 2010 -0700 396 397 font-util 1.1.2 398 399 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 400 401commit a43ab24c31aa5626b3f28b813a246c4b930b0e97 402Author: Alan Coopersmith <alan.coopersmith@oracle.com> 403Date: Mon Oct 4 21:30:06 2010 -0700 404 405 Sun's copyrights now belong to Oracle 406 407 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 408 409commit c2112acec406c80cfc29a7af9c2a39afb9c38475 410Author: Gaetan Nadon <memsize@videotron.ca> 411Date: Tue Jul 20 18:45:18 2010 -0400 412 413 config: update AC_PREREQ statement to 2.60 414 415 Unrelated to the previous patches, the new value simply reflects 416 the reality that the minimum level for autoconf to configure 417 all x.org modules is 2.60 dated June 2006. 418 419 ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz 420 421 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 422 423commit 41bf28914ae27d8cf9a93db5fa5f65ca5a68d4bf 424Author: Gaetan Nadon <memsize@videotron.ca> 425Date: Fri Aug 27 18:22:37 2010 -0400 426 427 XORG_FONT_REQUIRED_PROG: should stop when program is missing #14436 428 429 The macro was designed to test for a program and, when missing, stop 430 the configuration. The first parameter to the macro is a variable 431 name which is used by AC_PATH_PROG to store the program path. 432 The test failed to reference the variable content, it tested the 433 variable name which is never blank. 434 435 BDFTOPCF MKFONTSCALE MKFONTDIR COMPRESS and UCS2ANY were affected. 436 437 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 438 Tested-by: Jesse Adkins <jesserayadkins@gmail.com> 439 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 440 441commit e8d3097d42969fa1e32eff2ece252ff584d3d56a 442Author: Gaetan Nadon <memsize@videotron.ca> 443Date: Fri Aug 20 09:27:12 2010 -0400 444 445 config: upgrade to util-macros 1.8 for additional man page support 446 447 Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS 448 The value of MAN_SUBST is the same for all X.Org packages. 449 450 Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS 451 452 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 453 454commit d310e0321f888bf2fc215587457722a73b0f127a 455Author: Alan Coopersmith <alan.coopersmith@oracle.com> 456Date: Thu May 20 19:11:38 2010 -0700 457 458 Replace /usr/X11R6 mapfiles path in manpage with actual path via sed 459 460 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 461 462commit 6ce4badc29d599835a9f2593aa9835b1905a72a2 463Author: Gaetan Nadon <memsize@videotron.ca> 464Date: Sun Mar 28 14:45:56 2010 -0400 465 466 config: remove fontutil.pc.in from the EXTRA_DIST variable 467 468 It is automatically distributed in the tarball by Automake 469 470 Reviewed-by: Dan Nicholson <dbn.lists@gmail.com> 471 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 472 473commit 86893646727ac02b46d67ec81502451463dd9ed2 474Author: Gaetan Nadon <memsize@videotron.ca> 475Date: Sat Mar 27 11:21:41 2010 -0400 476 477 config: generated fontutil.m4 is "installed", not "distributed" 478 479 Generated files are not included in the tarball, only .in files 480 The fontutil.m4.in file is added in the tarball by Automake. 481 482 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 483 484commit 85e9d27df3e806106d395f66143bcc1372fece90 485Author: Alan Coopersmith <alan.coopersmith@sun.com> 486Date: Thu Jan 14 21:51:38 2010 -0800 487 488 Update Sun license notices to current X.Org standard form 489 490 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 491 492commit af6b1bfacb2ebd2dc27b5c81398ec3d9f5cd35cc 493Author: Gaetan Nadon <memsize@videotron.ca> 494Date: Mon Nov 23 14:59:02 2009 -0500 495 496 Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES 497 498 Now that the INSTALL file is generated. 499 Allows running make maintainer-clean. 500 501commit b80d458dbe1704a7a351849a6e588c57205ac9c9 502Author: Gaetan Nadon <memsize@videotron.ca> 503Date: Sun Oct 18 20:49:07 2009 -0400 504 505 Makefile.am: add INSTALL target and clean ChangeLog DIST targets 506 507 Add INSTALL target to generate file with INSTALL_CMD #24206 508 ChangeLog is not required in EXTRA_DIST #24432 509 ChangeLog is not required in MAINTAINERCLEANFILES #24432 510 511commit af090eb780ae74f102d6eda036e0b3bc888561b4 512Author: Gaetan Nadon <memsize@videotron.ca> 513Date: Sun Oct 18 20:34:34 2009 -0400 514 515 INSTALL, NEWS, README COPYING or AUTHORS files are missing/incorrect #24206 516 517 Add missing INSTALL file. Use standard GNU file on building tarball 518 README may have been updated 519 COPYING may have been updated 520 Remove AUTHORS file as it is empty and no content available yet. 521 Remove NEWS file as it is empty and no content available yet. 522 523commit 2ca7b784d9a53e00a393dcfd7c4ea1bf7223d98b 524Author: Gaetan Nadon <memsize@videotron.ca> 525Date: Mon Nov 23 13:38:51 2009 -0500 526 527 .gitignore: use common defaults with custom section # 24239 528 529 Using common defaults will reduce errors and maintenance. 530 Only the very small or inexistent custom section need periodic maintenance 531 when the structure of the component changes. Do not edit defaults. 532 533commit 640a11b930dde29a5a74bcecec858d0a8255c013 534Author: Alan Coopersmith <alan.coopersmith@sun.com> 535Date: Mon Oct 12 08:49:02 2009 -0700 536 537 font-util 1.1.1 538 539 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 540 541commit e1a84f5c30de633767dc4c05a38a34c3f114a138 542Author: Alan Coopersmith <alan.coopersmith@sun.com> 543Date: Sat Oct 10 21:50:26 2009 -0700 544 545 Make fontrootdir capitalization consistently lowercase 546 547 Fixes installation of mapfiles, which were going to /util because 548 ${fontrootdir} was undefined in Makefile. Found by tinderbox. 549 550 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 551 552commit b10044e1cdb8f1656b6f61d79512bf4d49ee3339 553Author: Alan Coopersmith <alan.coopersmith@sun.com> 554Date: Wed Oct 7 20:23:36 2009 -0700 555 556 font-util 1.1.0: Add new macros to replace code common to many font modules 557 558 XORG_FONT_MACROS_VERSION(required-version) 559 XORG_FONT_CHECK_ENCODING(encoding) 560 XORG_FONT_CHECK_ENCODING_LIST(encoding1 encoding2....) 561 XORG_FONT_REQUIRED_PROG(VARNAME, progname) 562 XORG_FONT_FCCACHE() 563 XORG_FONT_COMMON_UTILS() 564 XORG_FONT_BDF_UTILS() 565 XORG_FONT_SCALED_UTILS() 566 XORG_FONT_CHECK_COMPRESSION() 567 XORG_FONT_UCS2ANY() 568 XORG_FONTROOTDIR() 569 XORG_FONTSUBDIR(variable, flag, subdir) 570 XORG_FONTDIR(subdir) 571 572 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 573 Acked-by: Dan Nicholson <dbn.lists@gmail.com> 574 Acked-by: Rémi Cardona <remi@gentoo.org> 575 576commit 59557a6f4a28f38edcb6251ac04c9cb0e582bb3e 577Author: Alan Coopersmith <alan.coopersmith@sun.com> 578Date: Tue Oct 6 14:19:57 2009 -0700 579 580 Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS 581 582 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 583 584commit 032e3cb6c41c720412ab3403dad2ab800f45a817 585Author: Alan Coopersmith <alan.coopersmith@sun.com> 586Date: Wed Sep 23 23:12:08 2009 -0700 587 588 Fix parsing of hexadecimal arguments to bdftruncate 589 590 Since bdftruncate suggests running itself with "0x3200", that should work. 591 592 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 593 594commit ca16bc230e73bfbf651acb9010ba695bbbef0e8a 595Author: Julien Cristau <jcristau@debian.org> 596Date: Fri Aug 7 21:47:25 2009 +0200 597 598 Bump to 1.0.2 599 600commit b0e27b7935e8f5f9ad3dd7b6fd77b8a38aa7d1d0 601Author: Alan Coopersmith <alan.coopersmith@sun.com> 602Date: Thu Feb 19 18:22:31 2009 -0800 603 604 Add README with pointers to mailing list, bugzilla & git repos 605 606commit db703deee7cbfca5b12f4666229136a54554ec98 607Author: Alan Coopersmith <alan.coopersmith@sun.com> 608Date: Thu Feb 19 18:20:14 2009 -0800 609 610 Add missing copyright/license notices to COPYING 611 612 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 613 614commit 0678b945e4f382c45048e3d1a9739282d506b47e 615Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> 616Date: Tue Jan 27 19:11:08 2009 -0200 617 618 Janitor: Correct make distcheck and configure.ac simplification 619 620commit de26fc14c3e5ecc24f4fbdf0c83d57f5974ed802 621Author: Alan Coopersmith <alan.coopersmith@sun.com> 622Date: Tue Jun 24 14:28:27 2008 -0700 623 624 Update license of code copyrighted by the NetBSD Foundation 625 626 As per http://mail-index.netbsd.org/netbsd-announce/2008/06/20/msg000030.html 627 dropped the endorsement clause and verified remaining text matches current 628 NetBSD Foundation license. 629 630commit 2defe2544aeaeea00e41a2dca18b1f5ec0ca85e0 631Author: James Cloos <cloos@jhcloos.com> 632Date: Thu Dec 6 16:38:07 2007 -0500 633 634 Replace static ChangeLog with dist-hook to generate from git log 635 636commit fb486bb1a5038912d064291b12c7aef5da3d8b63 637Author: James Cloos <cloos@jhcloos.com> 638Date: Mon Dec 3 16:42:39 2007 -0500 639 640 Replace bdftruncate Perl script with C program 641 From bugzilla bug 13465¹: 642 643 [This] is a replacement for the bdftruncate program, which removes 644 the only runtime dependency on Perl in modular Xorg. 645 646 1] http://bugs.freedesktop.org/show_bug.cgi?id=13465 647 648 Bug was posted by Joerg Sonnenberger <joerg@NetBSD.org>. 649 650commit cedfe304041ecfc43cfcf2b44699efb53fc6aa5c 651Author: James Cloos <cloos@jhcloos.com> 652Date: Mon Sep 3 05:53:24 2007 -0400 653 654 Add *~ to .gitignore to skip patch/emacs droppings 655 656commit cff602a576aada75140b6cf13f1532218959189d 657Author: James Cloos <cloos@jhcloos.com> 658Date: Thu Aug 23 19:26:51 2007 -0400 659 660 Rename .cvsignore to .gitignore 661 662commit 7e2dfd48d78c008d8afd56828bf0db8a025f417a 663Author: Adam Jackson <ajax@nwnk.net> 664Date: Fri May 19 18:35:15 2006 +0000 665 666 Bump to 1.0.1 667 668commit 449004af4c7023511471db479b58c547270805e5 669Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 670Date: Fri Feb 17 15:59:48 2006 +0000 671 672 Update license copy in COPYING file too. 673 674commit d36e97caf2141939cbd516d9f7802bb704f13f22 675Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 676Date: Fri Feb 17 15:58:37 2006 +0000 677 678 Sync license statement with NetBSD, which has removed advertising clause 679 from original NetBSD license. (See 680 http://cvsweb.netbsd.org/bsdweb.cgi/~checkout~/xsrc/xfree/xc/fonts/util 681 /ucs2any.c?rev=1.9&content-type=text/plain and 682 http://www.mail-archive.com/devel%40xfree86.org/msg07685.html ) 683 684commit 778c667cf5dc67a53996e0196a7394dbd41426a3 685Author: Kevin E Martin <kem@kem.org> 686Date: Thu Dec 15 00:24:26 2005 +0000 687 688 Update package version number for final X11R7 release candidate. 689 690commit 25ea9d0868ecf3dccfbac5a82c659b852fb61d0e 691Author: Kevin E Martin <kem@kem.org> 692Date: Fri Dec 9 05:56:52 2005 +0000 693 694 Bug #5175: Make mapdir configurable (David Coulthart and Donnie Berkholz). 695 696commit 3fc66a4a7e844d96c478ff35673ba6bbcd99df0a 697Author: Kevin E Martin <kem@kem.org> 698Date: Tue Dec 6 22:48:41 2005 +0000 699 700 Change *man_SOURCES ==> *man_PRE to fix autotools warnings. 701 702commit 19a7b8a70f3cfac4dbc652cc918deefba2380700 703Author: Kevin E Martin <kem@kem.org> 704Date: Sat Dec 3 05:49:41 2005 +0000 705 706 Update package version number for X11R7 RC3 release. 707 708commit 092577dbc7f5fe59bbec80b29f42bacb73844fa7 709Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 710Date: Mon Nov 28 22:07:21 2005 +0000 711 712 Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4 713 update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir) 714 715commit 27506bc355dd88c2ca8b3e14c8158dfb5d6e53b6 716Author: Eric Anholt <anholt@freebsd.org> 717Date: Tue Nov 22 02:00:22 2005 +0000 718 719 Add .cvsignores for fonts. 720 721commit c9e22d273e7b8df6ffa1224978d0a6877b57c626 722Author: Kevin E Martin <kem@kem.org> 723Date: Tue Nov 15 08:27:53 2005 +0000 724 725 Add configure option macro to disable ISO8859-* fonts. 726 727commit cb284d5e05a4d62b070bb94624c2fb32c322e40d 728Author: Kevin E Martin <kem@kem.org> 729Date: Wed Oct 19 02:48:08 2005 +0000 730 731 Update package version number for RC1 release. 732 733commit e096b243bb3be6a41bd928016d24acfe2cae677e 734Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 735Date: Mon Oct 17 22:20:58 2005 +0000 736 737 Use sed to replace variables in man pages 738 739commit f45a6a9b5d53d91aec9ca0381311f5b0a4842c07 740Author: Kevin E Martin <kem@kem.org> 741Date: Tue Oct 4 23:12:28 2005 +0000 742 743 Use CLEANFILES so that bdftruncate is rebuilt after make clean 744 745commit dd8c1045a1432cc31a7419eb45905282f3f065ea 746Author: Kevin E Martin <kem@kem.org> 747Date: Fri Jul 29 21:22:49 2005 +0000 748 749 Various changes preparing packages for RC0: 750 - Verify and update package version numbers as needed 751 - Implement versioning scheme 752 - Change bug address to point to bugzilla bug entry form 753 - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to 754 reenable it) 755 - Fix makedepend to use pkgconfig and pass distcheck 756 - Update build script to build macros first 757 - Update modular Xorg version 758 759commit be020c6e52a9f087493122a59721366e3a2417f2 760Author: Kevin E Martin <kem@kem.org> 761Date: Wed Jul 27 19:53:18 2005 +0000 762 763 Fix typo 764 765commit 854ba0573bbed8632f5a8adf93a497874e451d98 766Author: Kevin E Martin <kem@kem.org> 767Date: Fri Jul 22 04:13:44 2005 +0000 768 769 Fix distcheck for fonts with multiple encodings 770 771commit ae573de21851d1e3ed27bc499ccff396cf9d4067 772Author: Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de> 773Date: Fri Jul 15 12:39:39 2005 +0000 774 775 use bin_SCRIPTS for bdftruncate remove $(EXEEXT) from bdftruncate rule fix 776 bdftruncate rule to work with separate $(srcdir) 777 778commit 5b1ba00aa310ddac6fae4ba4bb50763e9fe7a292 779Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 780Date: Fri Jul 15 01:15:35 2005 +0000 781 782 Replace $< with portable construct 783 784commit 70e2335cc8e9f1c377a70880696ee2d83558456e 785Author: Kevin E Martin <kem@kem.org> 786Date: Thu Jun 30 22:28:08 2005 +0000 787 788 Initial build system files for font module 789 790commit 8dbbdb2b6491edd6a0ec957d3a742802d2946fa3 791Author: Markus Kuhn <Markus.Kuhn@cl.cam.ac.uk> 792Date: Sun Nov 28 19:06:20 2004 +0000 793 794 Updated 8859-7.TXT to ISO 8859-7:2003 (with euro sign) Updated obsolete 795 email address 796 797commit 5622b3c34465c8f7f83fe9fbab897fc7b438ef81 798Author: Egbert Eich <eich@suse.de> 799Date: Thu Aug 26 11:58:06 2004 +0000 800 801 Fixed support for LynxOS 3.1 (LynxOS 4 will follow) (Thomas Mueller). 802 2 803 804commit edf6e4ce161fbf36a294f0947add0993bce2def6 805Author: Egbert Eich <eich@suse.de> 806Date: Fri Apr 23 18:43:05 2004 +0000 807 808 Merging XORG-CURRENT into trunk 809 810commit efdd203d3b3f68f463b9aaf31ef60dd58170c327 811Author: Egbert Eich <eich@suse.de> 812Date: Sun Mar 14 08:31:32 2004 +0000 813 814 Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004 815 816commit cada8e174bc996c693440605bc4778390a2525b4 817Author: Egbert Eich <eich@suse.de> 818Date: Wed Mar 3 12:10:53 2004 +0000 819 820 Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004 821 822commit f5f59905ca85472432f99a82502e47827647cbd7 823Author: Egbert Eich <eich@suse.de> 824Date: Thu Feb 26 13:35:11 2004 +0000 825 826 readding XFree86's cvs IDs 827 828commit 58fcd5a2cdba17e073e857283624d539758910a0 829Author: Egbert Eich <eich@suse.de> 830Date: Thu Feb 26 09:22:24 2004 +0000 831 832 Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004 833 834commit c653490dc1a7fe5dbd4437800832474c2f3ddefd 835Author: Kaleb Keithley <kaleb@freedesktop.org> 836Date: Tue Nov 25 19:28:01 2003 +0000 837 838 XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks 839 840commit a3557f2e82e07580a5f7ceb41c49809a001b73e5 841Author: Kaleb Keithley <kaleb@freedesktop.org> 842Date: Tue Nov 25 19:28:01 2003 +0000 843 844 Initial revision 845 846commit ea7d5c737a21afcb846d4aeceb8741a44d7001da 847Author: Kaleb Keithley <kaleb@freedesktop.org> 848Date: Fri Nov 14 16:48:42 2003 +0000 849 850 XFree86 4.3.0.1 851 852commit 731ff0ca425ebc6b780199c58f11a63f24103567 853Author: Kaleb Keithley <kaleb@freedesktop.org> 854Date: Fri Nov 14 16:48:42 2003 +0000 855 856 Initial revision 857