Home | History | Annotate | Line # | Download | only in dist
ChangeLog revision 1.1.1.7
      1 commit 84eaf7f1bdd402661a83db7ad914eb7f8d5dc627
      2 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
      3 Date:   Sat Oct 15 11:53:35 2022 -0700
      4 
      5     bdftopcf 1.1.1
      6     
      7     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
      8 
      9 commit 200c891ed4a3d364aebdb18ed116ebbfd8101afe
     10 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
     11 Date:   Sat Sep 24 09:45:57 2022 -0700
     12 
     13     Remove weak symbol setup from Atom code
     14     
     15     Not needed here, since this isn't a library and there is no
     16     other source of these functions we link against.
     17     
     18     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
     19 
     20 commit 7e29b1d29c6d7cbabe1bad536f7b8f644bffcd4f
     21 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
     22 Date:   Fri Sep 16 16:05:28 2022 -0700
     23 
     24     Remove unnecessary cast of strlen result in malloc argument
     25     
     26     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
     27 
     28 commit 949da2db3e9357d8256863475a8c63409a8fc7b9
     29 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
     30 Date:   Fri Sep 16 15:58:21 2022 -0700
     31 
     32     Fix -Wsign-compare warnings
     33     
     34     atom.c: In function MakeAtom:
     35     atom.c:161:65: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
     36                  if (hashTable[h]->hash == hash && hashTable[h]->len == len &&
     37                                                                      ^~
     38     atom.c:172:69: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
     39                      if (hashTable[h]->hash == hash && hashTable[h]->len == len &&
     40                                                                          ^~
     41     atom.c:207:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
     42          if (reverseMapSize <= a->atom) {
     43                             ^~
     44     bitmap.c: In function bitmapGetMetrics:
     45     bitmap.c:154:31: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
     46                  for (int i = 0; i < *glyphCount; i++) {
     47                                    ^
     48     
     49     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
     50 
     51 commit c0fb322b8d53e3f9fdffbba8c733c78ff3d50c85
     52 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
     53 Date:   Fri Sep 16 15:50:53 2022 -0700
     54 
     55     Remove redundant null-pointer check
     56     
     57     As warned by cppcheck:
     58     
     59     bdfread.c:130:18: style: Condition '!line' is always false [knownConditionTrueFalse]
     60                 if ((!line) || (bdfIsPrefix(line, "ENDCHAR")))
     61                      ^
     62     bdfread.c:126:13: note: Assuming condition '!line' is false
     63             if (!line)
     64                 ^
     65     bdfread.c:130:18: note: Condition '!line' is always false
     66                 if ((!line) || (bdfIsPrefix(line, "ENDCHAR")))
     67                      ^
     68     
     69     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
     70 
     71 commit d3e6a823537bb451be60febb6bfc769135fe5b35
     72 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
     73 Date:   Fri Sep 16 15:46:57 2022 -0700
     74 
     75     Remove redundant assignment
     76     
     77     As warned by cppcheck:
     78     bdfutils.c:164:17: style: Variable 'pp' is reassigned a value before the old one has been used. [redundantAssignment]
     79             for (pp = s; *pp; pp++)
     80                     ^
     81     bdfutils.c:162:12: note: pp is assigned
     82             pp = s;
     83                ^
     84     bdfutils.c:164:17: note: pp is overwritten
     85             for (pp = s; *pp; pp++)
     86                     ^
     87     
     88     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
     89 
     90 commit fa8eed6deefbb96d9d3e2af1b23b9fff193bda92
     91 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
     92 Date:   Fri Sep 16 15:41:31 2022 -0700
     93 
     94     Make some functions static that aren't called from other files
     95     
     96     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
     97 
     98 commit 746899671c4d6f9d8b7fb25bb17109b331a1b2ed
     99 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    100 Date:   Fri Sep 16 15:23:36 2022 -0700
    101 
    102     Delete functions identified as unused by cppcheck
    103     
    104     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    105 
    106 commit 6d526c90729d1b66da6c2546ad3ae794ff0f7751
    107 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    108 Date:   Fri Sep 16 14:34:41 2022 -0700
    109 
    110     Variable scope reductions as recommended by cppcheck
    111     
    112     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    113 
    114 commit 548998994665241967a43e583f5d0f00ee089289
    115 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    116 Date:   Fri Sep 16 13:20:48 2022 -0700
    117 
    118     Add .git-blame-ignore-revs to hide whitespace commits from git blame
    119     
    120     To use this in your local repo clone, you will need to either run
    121     `git blame --ignore-revs-file .git-blame-ignore-revs`
    122     or set it permanently with
    123     `git config blame.ignoreRevsFile .git-blame-ignore-revs`
    124     
    125     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    126 
    127 commit 1b66daf529d60196422ba71e77bb95ce74277447
    128 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    129 Date:   Fri Sep 16 13:17:52 2022 -0700
    130 
    131     Adopt X.Org standard coding style (via x-indent-all.sh)
    132     
    133     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    134 
    135 commit 65861022b037b0262529c1e1eedecd0e00afb02d
    136 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    137 Date:   Sun Jan 9 12:00:57 2022 -0800
    138 
    139     Build xz tarballs instead of bzip2
    140     
    141     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    142 
    143 commit c9b595bc61dc5519349a47c2ba07bf7309066657
    144 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    145 Date:   Sun Jan 9 11:59:32 2022 -0800
    146 
    147     gitlab CI: add a basic build test
    148     
    149     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    150 
    151 commit 33edfaac0e8ddd9d125bdae8d3025f79642151d7
    152 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    153 Date:   Sun Nov 28 13:48:34 2021 -0800
    154 
    155     Fix spelling/wording issues
    156     
    157     Found by using:
    158         codespell --builtin clear,rare,usage,informal,code,names
    159     
    160     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    161 
    162 commit 7a9d318d64c85a9000f8baeb23c267ac8629c6c0
    163 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    164 Date:   Wed Nov 21 16:38:42 2018 -0800
    165 
    166     Update configure.ac bug URL for gitlab migration
    167     
    168     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    169 
    170 commit 91d4da2a278b28c4d9fda0832b23fd6309d925fb
    171 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    172 Date:   Fri Nov 16 19:20:06 2018 -0800
    173 
    174     Update README for gitlab migration
    175     
    176     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    177 
    178 commit abf4bc86b696a41eb9183432bc1bbe84ae037194
    179 Author: Matthieu Herrb <matthieu (a] herrb.eu>
    180 Date:   Sun Dec 10 13:48:00 2017 +0100
    181 
    182     Depend on xproto and fsproto that are now used.
    183     
    184     Signed-off-by: Matthieu Herrb <matthieu (a] herrb.eu>
    185     Reviewed-by: Matt Turner <mattst88 (a] gmail.com>
    186 
    187 commit c0b7d0b4a8436145f3fddc78d2452d7c720cce8b
    188 Author: Adam Jackson <ajax (a] redhat.com>
    189 Date:   Tue Nov 7 14:10:52 2017 -0500
    190 
    191     bdftopcf 1.1
    192     
    193     Signed-off-by: Adam Jackson <ajax (a] redhat.com>
    194 
    195 commit 140f7f6e071a239329d700aa24191a664be2bea2
    196 Author: Adam Jackson <ajax (a] redhat.com>
    197 Date:   Fri Nov 3 14:05:18 2017 -0400
    198 
    199     Import more libXfont 1.x headers
    200     
    201     The previous commit would build if you had the old headers installed,
    202     but building it in a fresh chroot would fail. Import some more junk and
    203     fix up the includes appropriately.
    204     
    205     Signed-off-by: Adam Jackson <ajax (a] redhat.com>
    206 
    207 commit 102696da8737fcb324034f673cd5815f28923311
    208 Author: Adam Jackson <ajax (a] redhat.com>
    209 Date:   Tue Oct 24 13:54:47 2017 -0400
    210 
    211     Import libXfont's BDF-to-PCF code
    212     
    213     bdftopcf is the only consumer of libXfont 1.x's read/write support, and
    214     we'd like 1.x to go away entirely. Copy in the BDF read and PCF write
    215     support so there's one fewer consumer of 1.x.
    216     
    217     Signed-off-by: Adam Jackson <ajax (a] redhat.com>
    218     Acked-by: Julien Cristau <jcristau (a] debian.org>
    219 
    220 commit e12c03d50a634a98e4560c7117a3bec3349561e9
    221 Author: Mihail Konev <k.mvc (a] ya.ru>
    222 Date:   Thu Jan 26 14:00:20 2017 +1000
    223 
    224     autogen: add default patch prefix
    225     
    226     Signed-off-by: Mihail Konev <k.mvc (a] ya.ru>
    227 
    228 commit 96dd358a7f921b45c381c42f483e5564ee0b80a7
    229 Author: Emil Velikov <emil.l.velikov (a] gmail.com>
    230 Date:   Mon Mar 9 12:00:52 2015 +0000
    231 
    232     autogen.sh: use quoted string variables
    233     
    234     Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent
    235     fall-outs, when they contain space.
    236     
    237     Signed-off-by: Emil Velikov <emil.l.velikov (a] gmail.com>
    238     Reviewed-by: Peter Hutterer <peter.hutterer (a] who-t.net>
    239     Signed-off-by: Peter Hutterer <peter.hutterer (a] who-t.net>
    240 
    241 commit d43135887fce7709084f5d3df9bf1e4c992fbd65
    242 Author: Peter Hutterer <peter.hutterer (a] who-t.net>
    243 Date:   Tue Jan 24 10:32:07 2017 +1000
    244 
    245     autogen.sh: use exec instead of waiting for configure to finish
    246     
    247     Syncs the invocation of configure with the one from the server.
    248     
    249     Signed-off-by: Peter Hutterer <peter.hutterer (a] who-t.net>
    250     Reviewed-by: Emil Velikov <emil.velikov (a] collabora.com>
    251 
    252 commit 211c077af0cf634aec54b91de7dde916da2da84b
    253 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    254 Date:   Tue Dec 30 15:14:31 2014 -0800
    255 
    256     bdftopcf 1.0.5
    257     
    258     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    259 
    260 commit 234ab38883e36d63e4677d44a759fba829f68393
    261 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    262 Date:   Sun Jun 1 21:02:04 2014 -0700
    263 
    264     autogen.sh: Honor NOCONFIGURE=1
    265     
    266     See http://people.gnome.org/~walters/docs/build-api.txt
    267     
    268     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    269 
    270 commit 05a3d1360842f6c530e53dec6480ef21ffc9f5db
    271 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    272 Date:   Sun Jun 1 21:02:04 2014 -0700
    273 
    274     configure: Drop AM_MAINTAINER_MODE
    275     
    276     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    277 
    278 commit cf81381eac18f1a1f894fd31f2e4def1fbf7d027
    279 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    280 Date:   Mon Nov 4 22:29:59 2013 -0800
    281 
    282     Print which option was in error along with usage message
    283     
    284     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    285     Reviewed-by: Gaetan Nadon <memsize (a] videotron.ca>
    286 
    287 commit 2f5ac9eabfc9609bce3aa420a64f29279e626e95
    288 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    289 Date:   Mon Nov 4 22:28:19 2013 -0800
    290 
    291     Correct usage message for scanline unit option to be -u, not -s
    292     
    293     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    294     Reviewed-by: Matthieu Herrb <matthieu (a] herrb.eu>
    295 
    296 commit c8f568f295a11a7be406f170ed77a4c17a19fa7d
    297 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    298 Date:   Sat Jan 19 09:19:11 2013 -0800
    299 
    300     config: Add missing AC_CONFIG_SRCDIR
    301     
    302     Regroup AC statements under the Autoconf initialization section.
    303     Regroup AM statements under the Automake initialization section.
    304     
    305     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    306 
    307 commit 4759123ce0333e37ca13f3a6c9feed503fb13895
    308 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    309 Date:   Mon Jan 14 21:14:56 2013 -0800
    310 
    311     bdftopcf 1.0.4
    312     
    313     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    314 
    315 commit eb5013a55e7229979e5f46e627553e6121c2fca1
    316 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    317 Date:   Thu Jan 3 00:21:36 2013 -0800
    318 
    319     Use remove() instead of unlink() to remove files
    320     
    321     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    322 
    323 commit b6371ad6463cdc0c35e7ca5a34f1bd6d945266ec
    324 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    325 Date:   Thu Jan 3 00:19:30 2013 -0800
    326 
    327     Use symbolic names instead of raw integers for stdin & stdout fd's
    328     
    329     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    330 
    331 commit 15cfc3dcd9194fcca7715049eb1f49be2aa6d92f
    332 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    333 Date:   Thu Jan 3 00:17:05 2013 -0800
    334 
    335     Add -v flag to print version info
    336     
    337     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    338 
    339 commit b73e3de2d8a192d64f22fd2f450741cba2b7ee18
    340 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    341 Date:   Thu Jan 3 00:07:16 2013 -0800
    342 
    343     Combine usage message strings
    344     
    345     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    346 
    347 commit f82c76db93e191f5d6dfc2b07333a2b22dc52875
    348 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    349 Date:   Thu Jan 3 00:07:06 2013 -0800
    350 
    351     Initialize font to 0 values directly instead of via bzero
    352     
    353     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    354 
    355 commit a28c5c4f2b9f3e20fb176e08a1eda149a8b866f3
    356 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    357 Date:   Thu Jan 3 00:01:52 2013 -0800
    358 
    359     Adopt X.Org standard coding style (via x-indent.sh)
    360     
    361     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    362 
    363 commit 6d842fb19b4c85fd1bc69db604034667c0bb7b43
    364 Author: Gaetan Nadon <memsize (a] videotron.ca>
    365 Date:   Wed Jan 19 10:06:55 2011 -0500
    366 
    367     config: move man pages into their own directory
    368     
    369     Use services provided by XORG_MANPAGE_SECTIONS.
    370     Use standard Makefile for man pages.
    371     
    372     Signed-off-by: Gaetan Nadon <memsize (a] videotron.ca>
    373 
    374 commit f474c8a243d89162b596376193f802916428b89f
    375 Author: Gaetan Nadon <memsize (a] videotron.ca>
    376 Date:   Thu Jan 13 11:15:00 2011 -0500
    377 
    378     man: remove trailing spaces and tabs
    379     
    380     Using s/[ \t]*$//
    381     
    382     Signed-off-by: Gaetan Nadon <memsize (a] videotron.ca>
    383 
    384 commit 5a98c1aff0d4d66a12132c18060172b20d556278
    385 Author: Gaetan Nadon <memsize (a] videotron.ca>
    386 Date:   Wed Jan 12 16:28:01 2011 -0500
    387 
    388     config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
    389     
    390     This silences an Autoconf warning
    391 
    392 commit e14b41b2af0c4aba099222433ef983ef83d4c938
    393 Author: Gaetan Nadon <memsize (a] videotron.ca>
    394 Date:   Wed Jan 12 11:54:40 2011 -0500
    395 
    396     config: use AC_PROG_INSTALL now supplied by XORG_DEFAULT_OPTIONS
    397     
    398     It depends on util-macros 1.8 or later
    399     The existing statement can now be removed from the configuration file.
    400     
    401     Signed-off-by: Gaetan Nadon <memsize (a] videotron.ca>
    402 
    403 commit bd6356693855f22de4fa50696c19f5bd8103aa88
    404 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    405 Date:   Fri Oct 29 19:53:54 2010 -0700
    406 
    407     bdftopcf 1.0.3
    408     
    409     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    410 
    411 commit 423c3438394aa762feb9038e54e061f1761be252
    412 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    413 Date:   Fri Oct 29 19:52:06 2010 -0700
    414 
    415     Remove unnecessary calls from configure.ac
    416     
    417     XORG_DEFAULT_OPTIONS calls AC_PROG_CC
    418     PKG_CHECK_MODULES calls AC_SUBST for CFLAGS and LIBS
    419     
    420     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    421 
    422 commit 89573e80d65db01ff12426781394969857bad715
    423 Author: Gaetan Nadon <memsize (a] videotron.ca>
    424 Date:   Tue Jul 20 18:45:18 2010 -0400
    425 
    426     config: update AC_PREREQ statement to 2.60
    427     
    428     Unrelated to the previous patches, the new value simply reflects
    429     the reality that the minimum level for autoconf to configure
    430     all x.org modules is 2.60 dated June 2006.
    431     
    432     ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz
    433     
    434     Signed-off-by: Gaetan Nadon <memsize (a] videotron.ca>
    435 
    436 commit 7de8e74341322be5e6f4830478d477ef17c13a4a
    437 Author: Jesse Adkins <jesserayadkins (a] gmail.com>
    438 Date:   Tue Sep 28 13:29:48 2010 -0700
    439 
    440     Purge cvs tags.
    441     
    442     Signed-off-by: Jesse Adkins <jesserayadkins (a] gmail.com>
    443 
    444 commit 9615bfc454af6cb489e9572895ef00af022303b1
    445 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    446 Date:   Thu Jul 22 19:10:24 2010 -0700
    447 
    448     Use AM_CFLAGS instead of bdftopcf_CFLAGS since there's only one target
    449     
    450     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    451 
    452 commit ff16701d9054e47f1205e6ba4372077bd136062c
    453 Author: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    454 Date:   Thu Jul 22 19:07:08 2010 -0700
    455 
    456     config: upgrade to util-macros 1.8 for additional man page support
    457     
    458     Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS
    459     The value of MAN_SUBST is the same for all X.Org packages.
    460     
    461     Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS
    462     The existing statement can now be removed from the configuration file.
    463     
    464     Use automake provided $(AM_V_GEN) and XORG_DEFAULT_OPTIONS provided $(SED)
    465     Enables silent rule and use platform appropriate version of sed.
    466     
    467     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] oracle.com>
    468 
    469 commit b29030dd85de4dee5d756390b1d15b3187bbb6d0
    470 Author: Gaetan Nadon <memsize (a] videotron.ca>
    471 Date:   Thu Nov 26 09:19:52 2009 -0500
    472 
    473     Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
    474     
    475     Now that the INSTALL file is generated.
    476     Allows running make maintainer-clean.
    477 
    478 commit fbce46de46b4c13098dc0590cf077150af3a470c
    479 Author: Gaetan Nadon <memsize (a] videotron.ca>
    480 Date:   Wed Oct 28 14:09:07 2009 -0400
    481 
    482     INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
    483     
    484     Add missing INSTALL file. Use standard GNU file on building tarball
    485     README may have been updated
    486     Remove AUTHORS file as it is empty and no content available yet.
    487     Remove NEWS file as it is empty and no content available yet.
    488 
    489 commit 8a6a1f4b7bde74b6df62ac949e75b4ba0aedff97
    490 Author: Gaetan Nadon <memsize (a] videotron.ca>
    491 Date:   Tue Oct 27 15:07:24 2009 -0400
    492 
    493     Deploy the new XORG_DEFAULT_OPTIONS #24242
    494     
    495     This macro aggregate a number of existing macros that sets commmon
    496     X.Org components configuration options. It shields the configuration file from
    497     future changes.
    498 
    499 commit 8021c657bcc6f27b99ed7a61f4036d614c47367d
    500 Author: Gaetan Nadon <memsize (a] videotron.ca>
    501 Date:   Mon Oct 26 22:08:37 2009 -0400
    502 
    503     Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432
    504     
    505     ChangeLog filename is known to Automake and requires no further
    506     coding in the makefile.
    507 
    508 commit 6c1e289e0dcdd02b47d09547a8c5f9c8f0f50221
    509 Author: Gaetan Nadon <memsize (a] videotron.ca>
    510 Date:   Thu Oct 22 12:34:14 2009 -0400
    511 
    512     .gitignore: use common defaults with custom section # 24239
    513     
    514     Using common defaults will reduce errors and maintenance.
    515     Only the very small or inexistent custom section need periodic maintenance
    516     when the structure of the component changes. Do not edit defaults.
    517 
    518 commit 74b5dca54052c778d49e96b92fc2ef888a80cf8f
    519 Author: Alan Coopersmith <alan.coopersmith (a] sun.com>
    520 Date:   Mon Sep 21 19:57:36 2009 -0700
    521 
    522     bdftopcf 1.0.2
    523     
    524     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] sun.com>
    525 
    526 commit 4f63878eab32d41c8a010d5e187f0c4cdc7eff32
    527 Author: Alan Coopersmith <alan.coopersmith (a] sun.com>
    528 Date:   Mon Sep 21 19:51:44 2009 -0700
    529 
    530     Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS
    531     
    532     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] sun.com>
    533 
    534 commit 96a182df6f4168ec0b5585f08b088bfd58a383f6
    535 Author: Alan Coopersmith <alan.coopersmith (a] sun.com>
    536 Date:   Mon Sep 21 19:43:10 2009 -0700
    537 
    538     Add pointers to mailing list, bugzilla, wiki & git repo to README
    539     
    540     Signed-off-by: Alan Coopersmith <alan.coopersmith (a] sun.com>
    541 
    542 commit 7f1a66ecbe983e83e91941706218cde705b6cc0b
    543 Author: Paulo Cesar Pereira de Andrade <pcpa (a] mandriva.com.br>
    544 Date:   Thu Jan 15 18:18:52 2009 -0200
    545 
    546     Ansification and compile warning fixes.
    547     
    548       This also uses XORG_CHANGELOG and XORG_CWARNFLAGS, corrects
    549     make distcheck. There weren't any gcc 4.3 or sparse warnings.
    550 
    551 commit 74541609dccff6e8405286b3f27661e2f4a00b29
    552 Author: James Cloos <cloos (a] jhcloos.com>
    553 Date:   Thu Dec 6 15:51:03 2007 -0500
    554 
    555     Add missing PHONY line for automatic ChangeLog generation
    556 
    557 commit d6286044123ff787acf494a376dc22b2265623e2
    558 Author: Alan Coopersmith <alan.coopersmith (a] sun.com>
    559 Date:   Wed Apr 25 17:05:43 2007 -0700
    560 
    561     Version bump: 1.0.1
    562 
    563 commit 963c88d67500b581fd4d44d4f561089c66bf7c56
    564 Author: Alan Coopersmith <alan.coopersmith (a] sun.com>
    565 Date:   Tue Apr 24 20:04:39 2007 -0700
    566 
    567     Fix sparse warning: Using plain integer as NULL pointer
    568 
    569 commit 7206fb39a668384dfba3c8436222722123f4c9ff
    570 Author: Alan Coopersmith <alan.coopersmith (a] sun.com>
    571 Date:   Tue Apr 24 20:03:51 2007 -0700
    572 
    573     Add target for checking code with sparse/lint/etc.
    574 
    575 commit c42df278513724e3236eecda859f069c34f78508
    576 Author: Alan Coopersmith <alan.coopersmith (a] sun.com>
    577 Date:   Tue Apr 24 20:01:40 2007 -0700
    578 
    579     Replace static ChangeLog with disthook to generate from git log
    580 
    581 commit 608915a471c5a7a1cc3ecca19fc1b516480f439f
    582 Author: Alan Coopersmith <alan.coopersmith (a] sun.com>
    583 Date:   Tue Apr 24 19:31:40 2007 -0700
    584 
    585     Sun bug 6509763: bdftopcf crashes when bad font passed on stdin
    586     
    587     When printing corrupt font error message, make sure file name reported is
    588     not NULL.
    589 
    590 commit a498f77133c4a6df5a192133528a846bd9e88d7c
    591 Author: Alan Coopersmith <alan.coopersmith (a] sun.com>
    592 Date:   Tue Apr 24 19:30:13 2007 -0700
    593 
    594     renamed: .cvsignore -> .gitignore
    595 
    596 commit ebb668bf17f019813cc9615269d28da8205f1d00
    597 Author: Kevin E Martin <kem (a] kem.org>
    598 Date:   Thu Dec 15 00:24:01 2005 +0000
    599 
    600     Update package version number for final X11R7 release candidate.
    601 
    602 commit 8e3cd1b0e5c443c3c93565343c6721a3345c085e
    603 Author: Kevin E Martin <kem (a] kem.org>
    604 Date:   Tue Dec 6 22:48:15 2005 +0000
    605 
    606     Change *man_SOURCES ==> *man_PRE to fix autotools warnings.
    607 
    608 commit a61fd8c9f26b1defde1bf45ba5b938c197951d3f
    609 Author: Kevin E Martin <kem (a] kem.org>
    610 Date:   Sat Dec 3 05:49:14 2005 +0000
    611 
    612     Update package version number for X11R7 RC3 release.
    613 
    614 commit 148db4c885a1adebf21e21d8f505b0148763cc00
    615 Author: Alan Coopersmith <Alan.Coopersmith (a] sun.com>
    616 Date:   Mon Nov 28 22:01:36 2005 +0000
    617 
    618     Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4
    619         update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir)
    620 
    621 commit a8afffe03349e74fbec823dd074b0c65bcc579c4
    622 Author: Eric Anholt <anholt (a] freebsd.org>
    623 Date:   Mon Nov 21 10:34:54 2005 +0000
    624 
    625     Another pass at .cvsignores for apps.
    626 
    627 commit 1f9a92c950da572b246a5ee354617c7628539e9b
    628 Author: Eric Anholt <anholt (a] freebsd.org>
    629 Date:   Sun Nov 20 22:08:47 2005 +0000
    630 
    631     Add/improve .cvsignore files for apps.
    632 
    633 commit f4d3c5288e31356b794253afb48c3691779b1cc2
    634 Author: Kevin E Martin <kem (a] kem.org>
    635 Date:   Sat Nov 19 07:15:35 2005 +0000
    636 
    637     Update pkgconfig files to separate library build-time dependencies from
    638         application build-time dependencies, and update package deps to work
    639         with separate build roots.
    640 
    641 commit ebac4be33d3b439772212d35934f2753f03f42fe
    642 Author: Kevin E Martin <kem (a] kem.org>
    643 Date:   Wed Nov 9 21:09:19 2005 +0000
    644 
    645     Update package version number for X11R7 RC2 release.
    646 
    647 commit 95833b04ce5ee998bcf2aaea03718157566ec671
    648 Author: Kevin E Martin <kem (a] kem.org>
    649 Date:   Tue Nov 1 15:05:18 2005 +0000
    650 
    651     Update pkgcheck depedencies to work with separate build roots.
    652 
    653 commit 4358112e4b8c7433001c682de59b896df446d0f1
    654 Author: Kevin E Martin <kem (a] kem.org>
    655 Date:   Wed Oct 19 02:47:47 2005 +0000
    656 
    657     Update package version number for RC1 release.
    658 
    659 commit 3079b683034b5ca45182df15e420041377aff190
    660 Author: Alan Coopersmith <Alan.Coopersmith (a] sun.com>
    661 Date:   Mon Oct 17 23:56:18 2005 +0000
    662 
    663     Use @APP_MAN_SUFFIX@ instead of $(APP_MAN_SUFFIX) in macro substitutions to
    664         work better with BSD make
    665 
    666 commit 3cf12f8bb84f6c7f48d21372026ed90cfbb448a4
    667 Author: Alan Coopersmith <Alan.Coopersmith (a] sun.com>
    668 Date:   Fri Oct 14 00:25:40 2005 +0000
    669 
    670     Use sed to fill in variables in man page
    671 
    672 commit 1367d1093078bb49e4f1b5f1453fea41ae6f2b25
    673 Author: Kristian Hgsberg  <krh (a] redhat.com>
    674 Date:   Fri Sep 23 20:39:52 2005 +0000
    675 
    676     Fill these in.
    677 
    678 commit fc73e4a7408f73006267c4f9dbbd8edfadda17d6
    679 Author: Kevin E Martin <kem (a] kem.org>
    680 Date:   Fri Jul 29 21:22:28 2005 +0000
    681 
    682     Various changes preparing packages for RC0:
    683     - Verify and update package version numbers as needed
    684     - Implement versioning scheme
    685     - Change bug address to point to bugzilla bug entry form
    686     - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to
    687         reenable it)
    688     - Fix makedepend to use pkgconfig and pass distcheck
    689     - Update build script to build macros first
    690     - Update modular Xorg version
    691 
    692 commit 4641ea0102ddccbe57de71dba7d31993b4f0d5fe
    693 Author: Adam Jackson <ajax (a] nwnk.net>
    694 Date:   Wed Jul 20 19:31:48 2005 +0000
    695 
    696     Use a unique token for PKG_CHECK_MODULES. Otherwise, if you use a global
    697         configure cache, you cache it, and the cached value is probably wrong.
    698 
    699 commit a1714821678853a349cfeb735e5cc2c05d7d7e10
    700 Author: Kevin E Martin <kem (a] kem.org>
    701 Date:   Sun Jul 3 21:38:43 2005 +0000
    702 
    703     Install publicly used headers in X11/fonts.
    704     Change source files that use these headers to get them via <X11/fonts/*.h>.
    705 
    706 commit 054583b047ea55cf8788ca94849f28c1fd601ee0
    707 Author: Kevin E Martin <kem (a] kem.org>
    708 Date:   Sat Jul 2 21:42:05 2005 +0000
    709 
    710     Add build system for bdftopcf, mkfontdir and mkfontscale
    711 
    712 commit b19c10fc3e619fba0dfc0a93a79c3368fcc5ef8c
    713 Author: Egbert Eich <eich (a] suse.de>
    714 Date:   Fri Apr 23 19:54:31 2004 +0000
    715 
    716     Merging XORG-CURRENT into trunk
    717 
    718 commit 3dc306ac1d27de0c20faaef7d0094131783fd294
    719 Author: Egbert Eich <eich (a] suse.de>
    720 Date:   Sun Mar 14 08:34:49 2004 +0000
    721 
    722     Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004
    723 
    724 commit c3b089ed758a0c74682256430bcbbb805b30e5ba
    725 Author: Egbert Eich <eich (a] suse.de>
    726 Date:   Wed Mar 3 12:12:50 2004 +0000
    727 
    728     Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004
    729 
    730 commit a455d7e899f248a6333c1435aaefa79a998fc9b3
    731 Author: Egbert Eich <eich (a] suse.de>
    732 Date:   Thu Feb 26 13:36:15 2004 +0000
    733 
    734     readding XFree86's cvs IDs
    735 
    736 commit 74b7fe4751a5a37fa6c42b236038ed8f6109a5bd
    737 Author: Egbert Eich <eich (a] suse.de>
    738 Date:   Thu Feb 26 09:23:53 2004 +0000
    739 
    740     Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004
    741 
    742 commit 0ec9383c6314fbe7eb4b153a5b931cdced8e78a5
    743 Author: Kaleb Keithley <kaleb (a] freedesktop.org>
    744 Date:   Fri Nov 14 16:48:57 2003 +0000
    745 
    746     XFree86 4.3.0.1
    747 
    748 commit f51be8ca0daef86a6f0b10383ca84f42fc1b9a74
    749 Author: Kaleb Keithley <kaleb (a] freedesktop.org>
    750 Date:   Fri Nov 14 15:54:52 2003 +0000
    751 
    752     R6.6 is the Xorg base-line
    753