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