1commit d1bf4a021846ac288915c1bd14bb55e27ba8918c 2Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3Date: Sun May 18 14:54:22 2025 -0700 4 5 showfont 1.0.7 6 7 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 8 9commit 331a9d7033001beb5e5b5d6c769b2fed7490830e 10Author: Alan Coopersmith <alan.coopersmith@oracle.com> 11Date: Sat Mar 29 16:59:53 2025 -0700 12 13 Improve man page formatting 14 15 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 16 Part-of: <https://gitlab.freedesktop.org/xorg/app/showfont/-/merge_requests/10> 17 18commit b1f27a1adb92c6d8fcf3551bad238376976ffc15 19Author: Alan Coopersmith <alan.coopersmith@oracle.com> 20Date: Sun Mar 2 10:36:00 2025 -0800 21 22 meson: Add option to build with meson 23 24 Also updates the gitlab CI config to test both build types 25 and compare the generated output/installed files. 26 27 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 28 Part-of: <https://gitlab.freedesktop.org/xorg/app/showfont/-/merge_requests/9> 29 30commit d83bf354d3c4a05be46d391cdd2da363ddbeabbc 31Author: Alan Coopersmith <alan.coopersmith@oracle.com> 32Date: Fri Feb 28 17:27:37 2025 -0800 33 34 Accept --help & --version as aliases to -help & -version 35 36 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 37 Part-of: <https://gitlab.freedesktop.org/xorg/app/showfont/-/merge_requests/8> 38 39commit 126ab9ab7fc2c5077eeb0772584fac9045bd2d16 40Author: Alan Coopersmith <alan.coopersmith@oracle.com> 41Date: Sun Dec 8 12:30:43 2024 -0800 42 43 Mark usage() as noreturn 44 45 Quiets clang warning: 46 47 showfont.c:345:1: warning: function 'usage' could be declared with 48 attribute 'noreturn' [-Wmissing-noreturn] 49 50 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 51 Part-of: <https://gitlab.freedesktop.org/xorg/app/showfont/-/merge_requests/7> 52 53commit 50404d9f2744d0ba854121ec02ce069761c9b242 54Author: Alan Coopersmith <alan.coopersmith@oracle.com> 55Date: Fri Oct 13 15:09:01 2023 -0700 56 57 gitlab CI: add libc-dev to required packages in build container 58 59 Resolves configure failure: 60 configure:3823: checking whether the C compiler works 61 configure:3845: gcc conftest.c >&5 62 /usr/bin/ld: cannot find Scrt1.o: No such file or directory 63 /usr/bin/ld: cannot find crti.o: No such file or directory 64 collect2: error: ld returned 1 exit status 65 configure:3849: $? = 1 66 configure:3889: result: no 67 68 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 69 70commit a3be1f2f4980709691e60c245aeef0e45cbd478b 71Author: Alan Coopersmith <alan.coopersmith@oracle.com> 72Date: Fri Oct 13 13:53:39 2023 -0700 73 74 gitlab CI: add xz-utils to container for "make distcheck" 75 76 Also update to latest ci-templates to support new Debian "stable" release 77 78 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 79 80commit b8db641a4de1f9ed21e24e30b2f10dc9ec7e1fe2 81Author: Alan Coopersmith <alan.coopersmith@oracle.com> 82Date: Thu Feb 9 18:02:16 2023 -0800 83 84 Add -help option 85 86 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 87 88commit b77be679b32d3145b6133daa63cc14c37b8c62a8 89Author: Alan Coopersmith <alan.coopersmith@oracle.com> 90Date: Thu Jul 28 17:30:21 2022 -0700 91 92 gitlab CI: stop requiring Signed-off-by in commits 93 94 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 95 96commit 7e270443d201adf2977e52f74e1cde596a78ca38 97Author: Alan Coopersmith <alan.coopersmith@oracle.com> 98Date: Tue Aug 30 17:27:56 2022 -0700 99 100 showfont 1.0.6 101 102 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 103 104commit 7d35ec8371c7744359b9b63017e3851c46ad4c16 105Author: Alan Coopersmith <alan.coopersmith@oracle.com> 106Date: Sat Aug 13 18:04:41 2022 -0700 107 108 Take care of -Wsign-compare warnings 109 110 showfont.c: In function ‘show_glyphs’: 111 showfont.c:218:17: warning: comparison between signed and unsigned 112 integer expressions [-Wsign-compare] 113 if (offset != offsets[ch].position) 114 ^~ 115 showfont.c:249:29: warning: comparison between signed and unsigned 116 integer expressions [-Wsign-compare] 117 if (offsets[ch].length != bottom * bpr) { 118 ^~ 119 showfont.c: In function ‘main’: 120 showfont.c:456:23: warning: comparison between signed and unsigned 121 integer expressions [-Wsign-compare] 122 ((unsigned)first_ch >= (first.low + (first.high << 8)))) { 123 ^~ 124 showfont.c:462:21: warning: comparison between signed and unsigned 125 integer expressions [-Wsign-compare] 126 ((unsigned)end_ch <= (last.low + (last.high << 8)))) { 127 ^~ 128 129 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 130 131commit 4618f9dbbcb93805b64d86fae3a1ec82f8f6849b 132Author: Alan Coopersmith <alan.coopersmith@oracle.com> 133Date: Sat Aug 13 17:22:20 2022 -0700 134 135 Reduce variable scopes as suggested by cppcheck 136 137 [showfont.c:170]: (style) The scope of the variable 'err' can be reduced. 138 [showfont.c:172]: (style) The scope of the variable 'start' can be reduced. 139 [showfont.c:179]: (style) The scope of the variable 'format' can be reduced. 140 [showfont.c:380]: (style) The scope of the variable 'show_all' can be reduced. 141 142 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 143 144commit ce1a1d32f1dc4220a8b6d87d270120d69ba00509 145Author: Alan Coopersmith <alan.coopersmith@oracle.com> 146Date: Sat Apr 2 12:04:13 2022 -0700 147 148 man page: remove out-of-date COPYRIGHT section 149 150 The information previously listed here didn't match what is present in 151 the source code or the COPYING file, and the X(7) man page doesn't list 152 any license information as this had claimed. 153 154 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 155 156commit 63114c47a54e19f628e174c33b8761fc54f5998a 157Author: Alan Coopersmith <alan.coopersmith@oracle.com> 158Date: Sat Dec 4 10:01:39 2021 -0800 159 160 Build xz tarballs instead of bzip2 161 162 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 163 164commit 8aa504ca8d933c2756ed4cbf525e8089ebf3c8ad 165Author: Alan Coopersmith <alan.coopersmith@oracle.com> 166Date: Sat Dec 4 10:01:31 2021 -0800 167 168 gitlab CI: add a basic build test 169 170 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 171 172commit 8256ff6160cc042565295dc0c31913515016c026 173Author: Alan Coopersmith <alan.coopersmith@oracle.com> 174Date: Sun Nov 28 11:45:44 2021 -0800 175 176 Fix spelling/wording issues 177 178 Found by using: 179 codespell --builtin clear,rare,usage,informal,code,names 180 181 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 182 183commit b5c6fd043c08a0c84b7b2f04a0c28322cbc6a473 184Author: Alan Coopersmith <alan.coopersmith@oracle.com> 185Date: Wed Nov 21 16:57:17 2018 -0800 186 187 Update configure.ac bug URL for gitlab migration 188 189 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 190 191commit 2ed2d284d36b75e4b3263e633f5e46d82ccc77a9 192Author: Alan Coopersmith <alan.coopersmith@oracle.com> 193Date: Fri Nov 16 20:47:12 2018 -0800 194 195 Update README for gitlab migration 196 197 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 198 199commit 680c8252ae8fc877fd99ef43116fe86a5131b07a 200Author: Mihail Konev <k.mvc@ya.ru> 201Date: Thu Jan 26 14:00:20 2017 +1000 202 203 autogen: add default patch prefix 204 205 Signed-off-by: Mihail Konev <k.mvc@ya.ru> 206 207commit ef7f002d2877f934c99dd696ab5ff2bd895f2fe2 208Author: Emil Velikov <emil.l.velikov@gmail.com> 209Date: Mon Mar 9 12:00:52 2015 +0000 210 211 autogen.sh: use quoted string variables 212 213 Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent 214 fall-outs, when they contain space. 215 216 Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> 217 Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net> 218 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 219 220commit bed259f2ddfb8d2d997dad9bdffc6be580ba3dd1 221Author: Peter Hutterer <peter.hutterer@who-t.net> 222Date: Tue Jan 24 10:32:07 2017 +1000 223 224 autogen.sh: use exec instead of waiting for configure to finish 225 226 Syncs the invocation of configure with the one from the server. 227 228 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 229 Reviewed-by: Emil Velikov <emil.velikov@collabora.com> 230 231commit 459ea00b62fe926fae9856b12865a536067bb68e 232Author: Alan Coopersmith <alan.coopersmith@oracle.com> 233Date: Tue Dec 30 21:10:00 2014 -0800 234 235 showfont 1.0.5 236 237 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 238 239commit e3c39ee122f31c788bcef29984a49aa4f02ffb4a 240Author: Alan Coopersmith <alan.coopersmith@oracle.com> 241Date: Mon Jun 2 21:19:18 2014 -0700 242 243 autogen.sh: Honor NOCONFIGURE=1 244 245 See http://people.gnome.org/~walters/docs/build-api.txt 246 247 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 248 249commit 20f4d6c07fa61bd1e9f83bb646415ab1a68fd236 250Author: Alan Coopersmith <alan.coopersmith@oracle.com> 251Date: Mon Jun 2 21:19:18 2014 -0700 252 253 configure: Drop AM_MAINTAINER_MODE 254 255 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 256 257commit 977404fffdeeb3003c5da0479764c57fb1307179 258Author: Alan Coopersmith <alan.coopersmith@oracle.com> 259Date: Mon Jun 2 21:19:15 2014 -0700 260 261 config: Add missing AC_CONFIG_SRCDIR 262 263 Regroup AC statements under the Autoconf initialization section. 264 Regroup AM statements under the Automake initialization section. 265 266 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 267 268commit 68eed1b5a1b3cfc5dedc10931c9a6b28b9c66207 269Author: Alan Coopersmith <alan.coopersmith@oracle.com> 270Date: Sat Nov 23 00:29:22 2013 -0800 271 272 Add -version flag to print program version 273 274 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 275 276commit 19a9941f9a16ae7529ef47bba193eee9ab7db98c 277Author: Alan Coopersmith <alan.coopersmith@oracle.com> 278Date: Sat Nov 23 00:23:31 2013 -0800 279 280 Print which option was in error along with usage message 281 282 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 283 284commit 40118948a19f53c15d67a0493832ff2feac52cb6 285Author: Alan Coopersmith <alan.coopersmith@oracle.com> 286Date: Sat Nov 23 00:11:46 2013 -0800 287 288 Rename row pointer to avoid shadowing row integer variable 289 290 Fixes gcc warning: 291 showfont.c: In function ‘show_glyphs’: 292 showfont.c:261:18: warning: declaration of ‘row’ shadows a previous local [-Wshadow] 293 showfont.c:178:10: warning: shadowed declaration is here [-Wshadow] 294 295 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 296 297commit 898c6df7d1de9fa19bedf3c1c1fd31df5ccd1116 298Author: Alan Coopersmith <alan.coopersmith@oracle.com> 299Date: Sat Jan 12 16:14:28 2013 -0800 300 301 showfont 1.0.4 302 303 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 304 305commit 163d6b195ccfbc9d2fc5e1589dec88ccbc52dc66 306Author: Alan Coopersmith <alan.coopersmith@oracle.com> 307Date: Thu Nov 10 22:55:13 2011 -0800 308 309 Strip trailing whitespace 310 311 Performed with: find * -type f | xargs perl -i -p -e 's{[ \t]+$}{}' 312 git diff -w & git diff -b show no diffs from this change 313 314 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 315 316commit fd581210e938c217dad196e9298776ca5f1c1e82 317Author: Alan Coopersmith <alan.coopersmith@oracle.com> 318Date: Thu Nov 10 22:55:02 2011 -0800 319 320 Fix gcc -Wwrite-strings warnings 321 322 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 323 324commit 352f0b7e46e3e98b9f91c736730be6a521ec4d8a 325Author: Gaetan Nadon <memsize@videotron.ca> 326Date: Wed Jan 19 10:06:55 2011 -0500 327 328 config: move man pages into their own directory 329 330 Use services provided by XORG_MANPAGE_SECTIONS. 331 Use standard Makefile for man pages. 332 333 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 334 335commit a3b603c1a6ea11e5eff62dcad79f452469dd967f 336Author: Gaetan Nadon <memsize@videotron.ca> 337Date: Thu Jan 13 11:15:47 2011 -0500 338 339 man: remove trailing spaces and tabs 340 341 Using s/[ \t]*$// 342 343 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 344 345commit 39875d16a8d0c0c83371d7a9ea5c00dc8bd8fd59 346Author: Gaetan Nadon <memsize@videotron.ca> 347Date: Wed Jan 12 16:28:02 2011 -0500 348 349 config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS 350 351 This silences an Autoconf warning 352 353commit b6d168ed36dd2f8ce217c4cbbe5666a509cfcc87 354Author: Alan Coopersmith <alan.coopersmith@oracle.com> 355Date: Sat Oct 30 14:56:44 2010 -0700 356 357 showfont 1.0.3 358 359 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 360 361commit 00daddf94edbc0b53ece7a9edded50c051c5ab53 362Author: Alan Coopersmith <alan.coopersmith@oracle.com> 363Date: Sat Oct 30 14:55:01 2010 -0700 364 365 config: Remove unnecessary calls from configure.ac 366 367 AC_PROG_CC & AC_PROG_INSTALL are provided by XORG_DEFAULT_OPTIONS now 368 PKG_CONFIG_MODULES handles AC_SUBST of the CFLAGS & LIBS variables 369 370 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 371 372commit 71b506240a22a3927bfe6d8183b1edf7297391ce 373Author: Alan Coopersmith <alan.coopersmith@oracle.com> 374Date: Sat Oct 30 14:52:21 2010 -0700 375 376 Purge CVS version tags 377 378 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 379 380commit d9c7b8544d7ab3f9564a552cd30d130f4c4275f7 381Author: Gaetan Nadon <memsize@videotron.ca> 382Date: Sat Oct 30 14:51:40 2010 -0700 383 384 config: update AC_PREREQ statement to 2.60 385 386 Unrelated to the previous patches, the new value simply reflects 387 the reality that the minimum level for autoconf to configure 388 all x.org modules is 2.60 dated June 2006. 389 390 ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz 391 392 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 393 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 394 395commit 433fdb34febc639231c48febe6446f024548453d 396Author: Alan Coopersmith <alan.coopersmith@oracle.com> 397Date: Sat Oct 30 14:51:25 2010 -0700 398 399 config: upgrade to util-macros 1.8 for additional man page support 400 401 Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS 402 The value of MAN_SUBST is the same for all X.Org packages. 403 404 Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS 405 The existing statement can now be removed from the configuration file. 406 407 Use automake provided $(AM_V_GEN) and XORG_DEFAULT_OPTIONS provided $(SED) 408 Enables silent rule and use platform appropriate version of sed. 409 410 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 411 412commit 72644adfa9acb85e8a777c61a561953b208b9fa7 413Author: Gaetan Nadon <memsize@videotron.ca> 414Date: Thu Feb 11 10:08:06 2010 -0500 415 416 config: move CWARNFLAGS from configure.ac to Makefile.am 417 418 Compiler warning flags should be explicitly set in the makefile 419 rather than being merged with other packages compiler flags. 420 421 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 422 423commit acdba9809861c054988eb0139d9544aefbea5b05 424Author: Gaetan Nadon <memsize@videotron.ca> 425Date: Thu Nov 26 09:19:52 2009 -0500 426 427 Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES 428 429 Now that the INSTALL file is generated. 430 Allows running make maintainer-clean. 431 432commit 3f7a6681d48a9901f4a3aef14a054f465f8e2bec 433Author: Gaetan Nadon <memsize@videotron.ca> 434Date: Wed Oct 28 14:09:07 2009 -0400 435 436 INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206 437 438 Add missing INSTALL file. Use standard GNU file on building tarball 439 README may have been updated 440 Remove AUTHORS file as it is empty and no content available yet. 441 Remove NEWS file as it is empty and no content available yet. 442 443commit 72408025c0e903fd786b9d3f7997fb06cae09d57 444Author: Gaetan Nadon <memsize@videotron.ca> 445Date: Tue Oct 27 15:07:24 2009 -0400 446 447 Deploy the new XORG_DEFAULT_OPTIONS #24242 448 449 This macro aggregate a number of existing macros that sets commmon 450 X.Org components configuration options. It shields the configuration file from 451 future changes. 452 453commit 4c9cf38d4788db369d04d03bfd5a510b681a2948 454Author: Gaetan Nadon <memsize@videotron.ca> 455Date: Mon Oct 26 22:08:38 2009 -0400 456 457 Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432 458 459 ChangeLog filename is known to Automake and requires no further 460 coding in the makefile. 461 462commit 2fca1196563e9ec066224ed8ccebf06f97aad3bb 463Author: Gaetan Nadon <memsize@videotron.ca> 464Date: Thu Oct 22 12:34:14 2009 -0400 465 466 .gitignore: use common defaults with custom section # 24239 467 468 Using common defaults will reduce errors and maintenance. 469 Only the very small or inexistent custom section need periodic maintenance 470 when the structure of the component changes. Do not edit defaults. 471 472commit 3bbe76bcf45060b32b76d8e8ad74f119ba0b79e1 473Author: Alan Coopersmith <alan.coopersmith@sun.com> 474Date: Thu Oct 1 14:54:19 2009 -0700 475 476 Add README with pointers to mailing lists, bugzilla, & git 477 478 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 479 480commit ef8d98c555f3735dc7362873b45e06a8fd4c7c2d 481Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> 482Date: Mon Jan 19 16:06:40 2009 -0200 483 484 Ansification and compile warning fixes. 485 486 This also uses XORG_CHANGELOG and XORG_CWARNFLAGS, corrects 487 make distcheck and all gcc 4.3 and sparse warnings. 488 489commit 916040fd10cd5cc1a5fe576e4ea967108d388e32 490Author: Alan Coopersmith <alan.coopersmith@sun.com> 491Date: Fri May 23 17:12:36 2008 -0700 492 493 showfont 1.0.2 494 495commit da9d9fc289090e7ac98cbce01b1336aa62cb5e87 496Author: Alan Coopersmith <alan.coopersmith@sun.com> 497Date: Thu May 22 19:35:11 2008 -0700 498 499 Clarify syntax of -server & FONTSERVER in man page 500 501commit 6be4cac93365ef3f21fe867518f7b67dd386a388 502Author: Alan Coopersmith <alan.coopersmith@sun.com> 503Date: Thu May 22 18:49:44 2008 -0700 504 505 Replace hardcoded man page sections with variables 506 507commit 1b4c25a764055147507ec9a21a5c11c0b5342234 508Author: Alan Coopersmith <alan.coopersmith@sun.com> 509Date: Thu May 22 18:40:00 2008 -0700 510 511 Fill in COPYING file with notices from sources 512 513commit 8e30da12a01c400967f1ac81fad14106a760189b 514Author: Alan Coopersmith <alan.coopersmith@sun.com> 515Date: Thu May 22 18:37:09 2008 -0700 516 517 Change showfont_CFLAGS to AM_CFLAGS to make automake-1.10 happier 518 519commit a9178fd67ed387bfd50f6ad1d37b42bc7e7f7756 520Author: Alan Coopersmith <alan.coopersmith@sun.com> 521Date: Thu May 22 18:35:41 2008 -0700 522 523 Sun bug 1232854: showfont dumps core with jisx208, jisx212 japanese fonts 524 525 <http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=1232854> 526 Forward port to current X.Org source of fix originally made for Solaris 2.6 527 by Joe Warzecha. 528 529commit 2cacbce66116c24f0bc7d9b2593e8a5ee2c4d61c 530Author: Jeremy Huddleston <jeremyhu@freedesktop.org> 531Date: Sun Apr 13 22:22:30 2008 -0700 532 533 Added missing AM_PROG_CC_C_O 534 535commit a354489a6bedeaa772e64ba97ce8e38f480bce15 536Author: James Cloos <cloos@jhcloos.com> 537Date: Thu Dec 6 16:37:06 2007 -0500 538 539 Replace static ChangeLog with dist-hook to generate from git log 540 541commit 297c3b528742a1897a436d92a218dcf309466f07 542Author: James Cloos <cloos@jhcloos.com> 543Date: Mon Sep 3 05:51:11 2007 -0400 544 545 Add *~ to .gitignore to skip patch/emacs droppings 546 547commit 671fd02cad7e73680d974bbabf10ff93a2d3af5a 548Author: James Cloos <cloos@jhcloos.com> 549Date: Thu Aug 23 19:24:36 2007 -0400 550 551 Rename .cvsignore to .gitignore 552 553commit a668ffe99b2e1329f058f682725c6eeea09c14c8 554Author: Kevin E Martin <kem@kem.org> 555Date: Wed Dec 21 02:29:47 2005 +0000 556 557 Update package version for X11R7 release. 558 559commit a83d4853eb069286b84f8ba2e127bdf2bbfe24e2 560Author: Adam Jackson <ajax@nwnk.net> 561Date: Mon Dec 19 16:22:41 2005 +0000 562 563 Stub COPYING files 564 565commit 583a4c8d5a1988e3b46b70b7a9bda76c0e65782a 566Author: Kevin E Martin <kem@kem.org> 567Date: Thu Dec 15 00:24:04 2005 +0000 568 569 Update package version number for final X11R7 release candidate. 570 571commit 20a34d6dc5acd304ca463eed416531ba0850d804 572Author: Kevin E Martin <kem@kem.org> 573Date: Tue Dec 6 22:48:18 2005 +0000 574 575 Change *man_SOURCES ==> *man_PRE to fix autotools warnings. 576 577commit 011e1a298c76e3007948d1343961a1832abdef1b 578Author: Kevin E Martin <kem@kem.org> 579Date: Sat Dec 3 05:49:17 2005 +0000 580 581 Update package version number for X11R7 RC3 release. 582 583commit 948b03483cd0f0958cce8f0d54be7874250cd5be 584Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 585Date: Mon Nov 28 22:01:38 2005 +0000 586 587 Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4 588 update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir) 589 590commit dbd70dd9e2aab97673719861d6e50c21fb63f922 591Author: Eric Anholt <anholt@freebsd.org> 592Date: Mon Nov 21 10:34:58 2005 +0000 593 594 Another pass at .cvsignores for apps. 595 596commit 880100f2b93a9d5b7755552f4dcbb397a344f80e 597Author: Eric Anholt <anholt@freebsd.org> 598Date: Sun Nov 20 22:08:50 2005 +0000 599 600 Add/improve .cvsignore files for apps. 601 602commit 02441d6c3e38545a0308e96c1d0dc0447c386a9f 603Author: Kevin E Martin <kem@kem.org> 604Date: Wed Oct 19 02:47:50 2005 +0000 605 606 Update package version number for RC1 release. 607 608commit 65fd58a0d0f18192191efd059c354bee40dc303f 609Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 610Date: Mon Oct 17 23:56:20 2005 +0000 611 612 Use @APP_MAN_SUFFIX@ instead of $(APP_MAN_SUFFIX) in macro substitutions to 613 work better with BSD make 614 615commit d6fbfea960d2cf7fd6b0bafac8d5dc3a906e9cb3 616Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 617Date: Fri Oct 14 00:25:42 2005 +0000 618 619 Use sed to fill in variables in man page 620 621commit 9d166cd88dad29d1a7994f97c9be2845dfad8386 622Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 623Date: Mon Aug 1 20:25:28 2005 +0000 624 625 Install man pages to section 1 instead of section m (Patch from Donnie 626 Berkholz) 627 628commit 169502596163e720f0483a16d57affb5457265ec 629Author: Kevin E Martin <kem@kem.org> 630Date: Fri Jul 29 21:22:30 2005 +0000 631 632 Various changes preparing packages for RC0: 633 - Verify and update package version numbers as needed 634 - Implement versioning scheme 635 - Change bug address to point to bugzilla bug entry form 636 - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to 637 reenable it) 638 - Fix makedepend to use pkgconfig and pass distcheck 639 - Update build script to build macros first 640 - Update modular Xorg version 641 642commit b3b6f0d5e247af6f7caaff2d735dc13c14bd2746 643Author: Adam Jackson <ajax@nwnk.net> 644Date: Wed Jul 20 19:31:50 2005 +0000 645 646 Use a unique token for PKG_CHECK_MODULES. Otherwise, if you use a global 647 configure cache, you cache it, and the cached value is probably wrong. 648 649commit be7ea5c74651a911570e8c2d42c13f641c8c9f65 650Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk> 651Date: Wed Jun 29 18:42:26 2005 +0000 652 653 Add buildsystem for showfont 654 655commit bccb9870db6a9390df2ecc2f0148c50e96c56247 656Author: Egbert Eich <eich@suse.de> 657Date: Fri Apr 23 19:54:37 2004 +0000 658 659 Merging XORG-CURRENT into trunk 660 661commit 3feadf8e6a5896ea73318a2031603deb62e732c8 662Author: Egbert Eich <eich@suse.de> 663Date: Sun Mar 14 08:34:56 2004 +0000 664 665 Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004 666 667commit f41ba9c5118c719a40daa2799c92c457fd621c40 668Author: Egbert Eich <eich@suse.de> 669Date: Wed Mar 3 12:12:54 2004 +0000 670 671 Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004 672 673commit fa3e18b5cade364b3a2afab2e64404d0a2ac240a 674Author: Egbert Eich <eich@suse.de> 675Date: Thu Feb 26 13:36:15 2004 +0000 676 677 readding XFree86's cvs IDs 678 679commit 9eddab425da243044e78e1d45e4c55e9428a77f2 680Author: Egbert Eich <eich@suse.de> 681Date: Thu Feb 26 09:23:57 2004 +0000 682 683 Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004 684 685commit 00bd9b5b1c6998a94628a46d75251f5ac8dcb846 686Author: Kaleb Keithley <kaleb@freedesktop.org> 687Date: Fri Nov 14 16:48:58 2003 +0000 688 689 XFree86 4.3.0.1 690 691commit ab2be8865ceaa237d2478d291a90419b573cfb65 692Author: Kaleb Keithley <kaleb@freedesktop.org> 693Date: Fri Nov 14 16:48:58 2003 +0000 694 695 Initial revision 696