ChangeLog revision 079e7944
1commit 30859adfd6a6523a92a637ca26bd61ce59680a1b 2Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3Date: Mon Jul 22 22:14:36 2013 -0700 4 5 makedepend 1.0.5 6 7 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 8 9commit 5b6d3797eae3bac824cf72c0c8f64f51e3d4eaef 10Author: Julien Cristau <jcristau@debian.org> 11Date: Mon Jul 1 18:57:12 2013 +0200 12 13 Don't crash if an option's argument is missing 14 15 Avoid dereferencing argv[argc]. 16 17 See http://www.forallsecure.com/bug-reports/011f1a55f79a5501b36008d6ee0d40e8b6644569/ 18 19 Reported-by: Alexandre Rebert <alexandre@cmu.edu> 20 Signed-off-by: Julien Cristau <jcristau@debian.org> 21 Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> 22 23commit 107c2fcf5c7576ee66ee23926f0431b6db27a07a 24Author: Alan Coopersmith <alan.coopersmith@oracle.com> 25Date: Sat Feb 23 09:57:51 2013 -0800 26 27 Assume signal handlers return void, as C89 requires 28 29 Drops use of autoconf's obsolete AC_TYPE_SIGNAL 30 31 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 32 33commit b2c6d0d0f64d419590c7cd77aae4890866665cba 34Author: Alan Coopersmith <alan.coopersmith@oracle.com> 35Date: Tue Feb 12 18:36:30 2013 -0800 36 37 Bug 56091 - Unsafe use of strcpy() in makedepend 38 39 Use memmove for potentially overlapping copies. 40 41 Reported-by: Laurence Jupp <laurence@narya.org> 42 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 43 Reviewed-by: Matthieu Herrb <matthieu.herrb@laas.fr> 44 45commit 897e25de0cf27bd345130912a6da34b0c802a0ca 46Author: Alan Coopersmith <alan.coopersmith@oracle.com> 47Date: Tue Feb 12 18:33:44 2013 -0800 48 49 Store len in a size_t instead of an int in redirect() 50 51 Fixes clang warnings about converting back & forth: 52 53 main.c:761:8: warning: implicit conversion loses integer precision: 'size_t' 54 (aka 'unsigned long') to 'int' [-Wshorten-64-to-32] 55 len = strlen(line); 56 ~ ^~~~~~~~~~~~ 57 main.c:763:41: warning: implicit conversion changes signedness: 'int' to 58 'size_t' (aka 'unsigned long') [-Wsign-conversion] 59 if (*buf == '#' && strncmp(line, buf, len) == 0) 60 ~~~~~~~ ^~~ 61 62 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 63 64commit 87fd28cd5a5acfe6e91c97c4af0a469e1e86cbd5 65Author: Alan Coopersmith <alan.coopersmith@oracle.com> 66Date: Sun Jan 20 22:45:53 2013 -0800 67 68 Mark fatalerr & catch as _X_NORETURN 69 70 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 71 72commit 637c59e78f699a824e78316cb8ca3113bb5c738b 73Author: Alan Coopersmith <alan.coopersmith@oracle.com> 74Date: Sat Jan 12 14:40:40 2013 -0800 75 76 Replace deprecated Automake INCLUDES variable with AM_CPPFLAGS 77 78 Excerpt https://lists.gnu.org/archive/html/automake/2012-12/msg00038.html 79 80 - Support for the long-deprecated INCLUDES variable will be removed 81 altogether in Automake 1.14. The AM_CPPFLAGS variable should be 82 used instead. 83 84 This variable was deprecated in Automake releases prior to 1.10, which is 85 the current minimum level required to build X. 86 87 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 88 Reviewed-by: Julien Cristau <jcristau@debian.org> 89 90commit 059e9be5a7321974b190d786d426b2ae27be8c56 91Author: Glenn Burkhardt <gbburkhardt@gmail.com> 92Date: Fri Jan 11 22:09:54 2013 -0800 93 94 Bug 52099 - makedepend rename fails on CIFS mounted shares 95 96 Patch v1: https://bugs.freedesktop.org/attachment.cgi?id=64218 97 98 v2: modified by Alan Coopersmith to restore Makefile to original name 99 if contents cannot be read, instead of leaving it moved to .bak name. 100 101 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 102 103commit bb29c304c09aba567af0f0d77a63f0202c3836c6 104Author: Colin Walters <walters@verbum.org> 105Date: Wed Jan 4 17:37:06 2012 -0500 106 107 autogen.sh: Implement GNOME Build API 108 109 http://people.gnome.org/~walters/docs/build-api.txt 110 111 Signed-off-by: Adam Jackson <ajax@redhat.com> 112 113commit 9685da3e7136e01a7bc780d81667abf5897b87a6 114Author: Adam Jackson <ajax@redhat.com> 115Date: Wed Jan 16 12:59:58 2013 -0500 116 117 configure: Drop AM_MAINTAINER_MODE 118 119 Signed-off-by: Adam Jackson <ajax@redhat.com> 120 121commit 8e4373712409e2411652cf0697c33d91e95fd405 122Author: Alan Coopersmith <alan.coopersmith@oracle.com> 123Date: Fri Jan 11 22:29:19 2013 -0800 124 125 Fix a comment typo 126 127 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 128 129commit 3a28a2a0146c4979281ffea641dede9a32df08f9 130Author: Alan Coopersmith <alan.coopersmith@oracle.com> 131Date: Sat Jan 5 09:55:04 2013 -0800 132 133 Convert more sprintf calls to snprintf 134 135 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 136 137commit 639071ff3446b0df53078be1ff5820c812313aa7 138Author: Alan Coopersmith <alan.coopersmith@oracle.com> 139Date: Sat Jan 5 09:42:33 2013 -0800 140 141 Remove unnecessary casts from malloc/realloc calls 142 143 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 144 145commit 1b5e7ee6483415d7093f3d5395c4832fa69f0a28 146Author: Alan Coopersmith <alan.coopersmith@oracle.com> 147Date: Sat Jan 5 09:25:43 2013 -0800 148 149 Remove fallbacks for Imake configuration, assume autoconf 150 151 For the original 6.9/7.0 release, we supported using either autoconf or 152 imake to generate configuration. For releases after that, we're only 153 supporting autoconf, so no longer need to check & fall back to imake. 154 155 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 156 157commit 4db1a4f15ef704b6b6faf1741054d59cb527298a 158Author: Alan Coopersmith <alan.coopersmith@oracle.com> 159Date: Sat Jan 5 09:15:28 2013 -0800 160 161 Move i_listlen in struct inclist for better packing in 64-bit builds 162 163 Putting it with another int instead of between two pointers gets rid 164 of two places where 4 bytes each had to be padded into the structure 165 for alignment. 166 167 Reduces the size of an individual struct from 64 bytes to 56 bytes, 168 and of the inclist[ MAXFILES ] array from 128k to 112k. 169 170 Found by clang: 171 ./def.h:111:18: warning: padding struct 'struct inclist' with 4 bytes to align 'i_defs' [-Wpadded] 172 struct symtab **i_defs; /* symbol table for this file and its 173 ^ 174 ./def.h:114:12: warning: padding struct 'struct inclist' with 4 bytes to align 'i_merged' [-Wpadded] 175 boolean *i_merged; /* whether we have merged child 176 177 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 178 179commit c5378d3e7bb79880b9ea6f7f055393ae42eae55f 180Author: Alan Coopersmith <alan.coopersmith@oracle.com> 181Date: Sat Jan 5 09:05:17 2013 -0800 182 183 config: Remove unnecessary calls from configure.ac 184 185 AC_PROG_CC is provided by XORG_DEFAULT_OPTIONS now 186 PKG_CONFIG_MODULES handles AC_SUBST of the CFLAGS & LIBS variables 187 188commit 3db923e80852b088b1d0583bad7fca05e173efdc 189Author: Alan Coopersmith <alan.coopersmith@oracle.com> 190Date: Sat Jan 5 09:01:03 2013 -0800 191 192 Update configure.ac initialization to X.Org standard form 193 194 Regroup AC statements under the Autoconf initialization section. 195 Regroup AM statements under the Automake initialization section. 196 Add missing AC_CONFIG_SRCDIR 197 198 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 199 200commit 6d70e2776b41977a87bbe32220f4d3f8a62dc763 201Author: Alan Coopersmith <alan.coopersmith@oracle.com> 202Date: Fri Jan 4 20:07:43 2013 -0800 203 204 unifdef -U__UNIXOS2__ 205 206 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 207 208commit 01238aa25c3bb1e0c909f63dd3bc97c48bd8bf6d 209Author: Marko Lindqvist <cazfi74@gmail.com> 210Date: Fri Jan 4 20:02:33 2013 -0800 211 212 Bug 59005 - makedepend: Build with automake-1.13 broken 213 214 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 215 216commit 49d72ba286c1ddd99cf1e6477ee2b6af59007341 217Author: Julien Cristau <jcristau@debian.org> 218Date: Wed Mar 14 19:49:14 2012 +0100 219 220 configure.ac: use AM_MAINTAINER_MODE 221 222commit b6605e3945eaaabbd090672f33e888d394f9a4f0 223Author: Alan Coopersmith <alan.coopersmith@oracle.com> 224Date: Wed Mar 7 21:52:14 2012 -0800 225 226 makedepend 1.0.4 227 228 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 229 230commit cb8bbc06de0baf2dff4a703e6d2bb47bdf90d896 231Author: Alan Coopersmith <alan.coopersmith@oracle.com> 232Date: Fri Oct 7 18:07:24 2011 -0700 233 234 define(): Avoid assigning constant string to non-const char * 235 236 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 237 238commit b9770941ae829ad2cb985efe809d6e3dd690648b 239Author: Alan Coopersmith <alan.coopersmith@oracle.com> 240Date: Fri Oct 7 18:02:34 2011 -0700 241 242 Call strdup directly, instead of via copy macro 243 244 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 245 246commit 0ecf5f3251033ab6efa1a0d881f75ed9ce60b5a4 247Author: Alan Coopersmith <alan.coopersmith@oracle.com> 248Date: Fri Oct 7 18:00:39 2011 -0700 249 250 Add const attributes to fix gcc -Wwrite-strings warnings 251 252 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 253 254commit 97ae52f80f9e382917889bde1913367572e89012 255Author: Alan Coopersmith <alan.coopersmith@oracle.com> 256Date: Fri Oct 7 17:47:36 2011 -0700 257 258 Move extern variable declarations to common header (def.h) 259 260 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 261 262commit 3602fb0b7ba2bde9c73610693dbb50534fe42b81 263Author: Alan Coopersmith <alan.coopersmith@oracle.com> 264Date: Fri Oct 7 17:34:17 2011 -0700 265 266 Strip trailing whitespace 267 268 Performed with: find * -type f | xargs perl -i -p -e 's{[ \t]+$}{}' 269 git diff -w & git diff -b show no diffs from this change 270 271 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 272 273commit c1f32dc1d4c1758065468e1f5d34707099f59f33 274Author: Stuart Kreitman <Stuart.Kreitman@Oracle.COM> 275Date: Mon May 24 14:21:21 2010 -0700 276 277 Raise MAXFILES from 1024 to 2048 278 279 Required in order to build OpenTTD on Solaris 280 http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6917536 281 282 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 283 284commit cc23acdd80fa0cad53e46f99cd0ff5998ec7f607 285Author: Cyril Brulebois <kibi@debian.org> 286Date: Sun Oct 31 15:50:36 2010 +0100 287 288 Fix bashism: shell string comparison is =, not ==. 289 290 Signed-off-by: Cyril Brulebois <kibi@debian.org> 291 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 292 293commit 186aae76a84860d0efef638ff499ab1968fffd75 294Author: Alan Coopersmith <alan.coopersmith@oracle.com> 295Date: Fri Oct 29 22:53:25 2010 -0700 296 297 Add README with pointers to mailing list, bugzilla & git repos 298 299 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 300 301commit e67389ecc0c425bcfec0a3184ee48919e0e2c61a 302Author: Alan Coopersmith <alan.coopersmith@oracle.com> 303Date: Fri Oct 29 22:45:35 2010 -0700 304 305 makedepend 1.0.3 306 307 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 308 309commit bf25a6cb4888e5cf6827cd51cb7ee282cfb6cf47 310Author: Alan Coopersmith <alan.coopersmith@oracle.com> 311Date: Fri Oct 29 22:39:51 2010 -0700 312 313 config: upgrade to util-macros 1.8 for additional man page support 314 315 Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS 316 The value of MAN_SUBST is the same for all X.Org packages. 317 318 Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS 319 Enables use of platform appropriate version of sed. 320 321 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 322 323commit 7963cc382a3a351410b1342a9783df3af8516944 324Author: Gaetan Nadon <memsize@videotron.ca> 325Date: Tue Jul 20 18:45:18 2010 -0400 326 327 config: update AC_PREREQ statement to 2.60 328 329 Unrelated to the previous patches, the new value simply reflects 330 the reality that the minimum level for autoconf to configure 331 all x.org modules is 2.60 dated June 2006. 332 333 ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz 334 335 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 336 337commit 58bd34e6c3662ef06e9ef0dd78d69f003df42bdc 338Author: Alan Coopersmith <alan.coopersmith@oracle.com> 339Date: Fri May 14 21:14:44 2010 -0700 340 341 Convert testcase from bug 28045 into automake "make check" test 342 343 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 344 345commit 8522c314da7537169996476fe5ba411f720a09fe 346Author: Martin Pärtel <lagitus@mbnet.fi> 347Date: Fri May 14 21:00:15 2010 -0700 348 349 Bug 28045 - makedepend fails on directory named like an include file 350 351 <https://bugs.freedesktop.org/show_bug.cgi?id=28045> 352 353 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 354 355commit c976a7fc7c21772c00de9e61178cf467c6a10b57 356Author: Alan Coopersmith <alan.coopersmith@sun.com> 357Date: Sat Oct 10 22:08:09 2009 -0700 358 359 makedepend 1.0.2 360 361 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 362 363commit c2abfbb9ea21bec53706295064c328e5d2721abd 364Author: Alan Coopersmith <alan.coopersmith@sun.com> 365Date: Sat Oct 10 22:07:44 2009 -0700 366 367 Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS 368 369 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 370 371commit f3bbd454d8220a0c30c1a788965a7f16501350ab 372Author: Alan Coopersmith <alan.coopersmith@sun.com> 373Date: Sat Oct 10 21:03:53 2009 -0700 374 375 Remove CVS/RCS version tags 376 377 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 378 379commit 42ee120e8c49c5f9aaba35689e09f9ecef407758 380Author: Alan Coopersmith <alan.coopersmith@sun.com> 381Date: Tue Mar 24 18:47:23 2009 -0700 382 383 Fix gcc, sparse & lint warnings 384 385 cppsetup.c:74:9: warning: Using plain integer as NULL pointer 386 387 parse.c: In function `gobble': 388 parse.c:94: warning: int format, long int arg (arg 2) 389 parse.c: In function `find_includes': 390 parse.c:641: warning: int format, long int arg (arg 2) 391 parse.c:664: warning: int format, long int arg (arg 2) 392 parse.c:677: warning: int format, long int arg (arg 2) 393 parse.c:684: warning: int format, long int arg (arg 2) 394 395 pr.c: In function `add_include': 396 pr.c:57: warning: int format, long int arg (arg 4) 397 pr.c:59: warning: int format, long int arg (arg 3) 398 399 declared global, could be static 400 sig_act main.c(142) 401 predefs main.c:imakemdep.h(51) 402 403 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 404 405commit c7c7197d265a299c82c6629fba867730aad81375 406Author: Alan Coopersmith <alan.coopersmith@sun.com> 407Date: Tue Mar 24 18:22:37 2009 -0700 408 409 Increased constification 410 411 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 412 413commit a6a8afb0a82a175822077442f44865c75ab70ff1 414Author: Alan Coopersmith <alan.coopersmith@sun.com> 415Date: Tue Mar 24 17:34:42 2009 -0700 416 417 Remove #ifdef'ed code that's never used 418 419 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 420 421commit 3e8c1a2a8e7db49b06f602c2fc5a8108d74dd384 422Author: Alan Coopersmith <alan.coopersmith@sun.com> 423Date: Tue Mar 24 17:27:47 2009 -0700 424 425 Remove ifdef checks for macII left over from ancient A/UX 3.0 support 426 427 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 428 429commit e3bc51e4ea2dce1901c4f7ce43df2f456ececdcf 430Author: Alan Coopersmith <alan.coopersmith@sun.com> 431Date: Tue Mar 24 17:25:56 2009 -0700 432 433 Use XORG_CHANGELOG, XORG_CWARNFLAGS, and XORG_WITH_LINT macros 434 435 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 436 437commit cc3112b6d0434d8e7ecbe3832a5aa48cd0f5185d 438Author: Alan Coopersmith <alan.coopersmith@sun.com> 439Date: Tue Mar 24 16:34:45 2009 -0700 440 441 Add additional predefines needed to match Solaris compilers 442 443 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 444 445commit f871e026bedc296c235dae02e533617fe9a4d3f2 446Author: Alan Coopersmith <alan.coopersmith@sun.com> 447Date: Tue Mar 24 16:16:47 2009 -0700 448 449 Delete portions of imakemdep.h not used by makedepend 450 451 This header was shared by imake & makedepend in the monolith, but each 452 got its own copy in the modular builds. 453 454 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 455 456commit 26cb2802170d349fa1b2ab2237e6f2c0d1df1709 457Author: Alan Coopersmith <alan.coopersmith@sun.com> 458Date: Tue Mar 24 16:02:55 2009 -0700 459 460 Add .gitignore 461 462 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 463 464commit 4d821427ac3e7e3de86f46e3b1e638c65758b774 465Author: Alan Coopersmith <alan.coopersmith@sun.com> 466Date: Tue Mar 24 16:00:19 2009 -0700 467 468 Use AM_CPPFLAGS instead of makedepend_CPPFLAGS to avoid mangled .o names 469 470 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 471 472commit 617fc1304afdca2fb82e3a65d9a4999058d86021 473Author: James Cloos <cloos@jhcloos.com> 474Date: Thu Dec 6 16:39:17 2007 -0500 475 476 Replace static ChangeLog with dist-hook to generate from git log 477 478commit 5239f25be018b2e9cf3620d5c1c62bac4e1e116d 479Author: Jeremy C. Reed <reed@glacier.reedmedia.net> 480Date: Wed Mar 21 15:27:57 2007 -0500 481 482 Update version for release. 483 484commit e2bea6a0278f182f9cc8b7bac660da49d24d2e50 485Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 486Date: Fri Jun 2 19:21:52 2006 +0000 487 488 Coverity #925: Pointer "file" dereferenced before NULL check 489 490commit fbb0a1b59b410a5873cf33c4cedc32f32ea03a59 491Author: Kevin E Martin <kem@kem.org> 492Date: Thu Dec 15 00:24:40 2005 +0000 493 494 Update package version number for final X11R7 release candidate. 495 496commit cbb537c9276302f56c82c0dd010db400bd605f57 497Author: Adam Jackson <ajax@nwnk.net> 498Date: Fri Dec 9 18:27:47 2005 +0000 499 500 Bug #4380: Avoid dividing by zero in gccmakedepend (Vincent Le Ligeour) 501 502commit 34c35bcb3851909468c679c2014b6197c7be270e 503Author: Kevin E Martin <kem@kem.org> 504Date: Tue Dec 6 22:48:47 2005 +0000 505 506 Change *man_SOURCES ==> *man_PRE to fix autotools warnings. 507 508commit c30b8896d6a6e1272e7e703cac5866802a5e30a2 509Author: Kevin E Martin <kem@kem.org> 510Date: Sat Dec 3 05:49:47 2005 +0000 511 512 Update package version number for X11R7 RC3 release. 513 514commit 0f756745a930e995fb529ffe34cd7f7d36c68d4a 515Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 516Date: Mon Nov 28 22:00:24 2005 +0000 517 518 Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4 519 update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir) 520 521commit 9bd896db001a270770506c25232435ddeb7a7f22 522Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 523Date: Sun Nov 20 03:24:01 2005 +0000 524 525 Remove duplicate setting of EXTRA_DIST 526 527commit 3a5f945b6e15c6799b2a796f82ed1222140fc62d 528Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 529Date: Sat Nov 12 20:04:58 2005 +0000 530 531 Substitute variables in man page 532 [Also resync Changelog with monolith] 533 534commit aaa64b9dc41b6b3ed3f5acd7eb2b517c3499a521 535Author: Kevin E Martin <kem@kem.org> 536Date: Wed Nov 9 21:25:57 2005 +0000 537 538 Update package version number for X11R7 RC2 release. 539 540commit 3ead9564d1f63a1080c97b1ba44af17a74938485 541Author: Kean Johnson <kean@armory.com> 542Date: Tue Nov 8 06:33:24 2005 +0000 543 544 See ChangeLog entry 2005-11-07 for details. 545 546commit d13a9d5d03bf5ebab5c847bdc616f276971d39d8 547Author: Kevin E Martin <kem@kem.org> 548Date: Wed Oct 19 02:48:17 2005 +0000 549 550 Update package version number for RC1 release. 551 552commit 3b21840ce7b2c7825c40dd3f0463d66aee692fc6 553Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 554Date: Mon Oct 3 16:17:10 2005 +0000 555 556 Bug #3812 <https://bugs.freedesktop.org/show_bug.cgi?id=3812> Patch #3462 557 <https://bugs.freedesktop.org/attachment.cgi?id=3462> GNU/kFreeBSD 558 Imake support (Robert Millan) 559 560commit f002b90281e623b7611565a49a5d12fb517800ae 561Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 562Date: Mon Aug 1 02:13:55 2005 +0000 563 564 Pass through __BUILTIN_VA_STRUCT and __BUILTIN_VA_ARG_INCR defines in 565 makedepend so it doesn't issue errors when source files include 566 <varargs.h> or <stdarg.h> on Solaris 10. 567 568commit ddabc8840aee8a90ea6b7f6fe8f1af7f692a2576 569Author: Kevin E Martin <kem@kem.org> 570Date: Fri Jul 29 21:22:58 2005 +0000 571 572 Various changes preparing packages for RC0: 573 - Verify and update package version numbers as needed 574 - Implement versioning scheme 575 - Change bug address to point to bugzilla bug entry form 576 - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to 577 reenable it) 578 - Fix makedepend to use pkgconfig and pass distcheck 579 - Update build script to build macros first 580 - Update modular Xorg version 581 582commit c8e6f83244036256d3f56c35ec8c60f03dc51275 583Author: Kevin E Martin <kem@kem.org> 584Date: Fri Jul 29 18:42:37 2005 +0000 585 586 Update #includes to use <X11/*.h> for modularization. 587 588commit 275c17136006f9d3929c9547642f1ed3f95d5683 589Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 590Date: Tue Jul 5 19:02:01 2005 +0000 591 592 Bugzilla #2901 <https://bugs.freedesktop.org/show_bug.cgi?id=2901> Patch 593 #2320 <https://bugs.freedesktop.org/attachment.cgi?id=2320> 594 Remove warning about whitespace in pre-processor defines. (Peter 595 Breitenlohner) 596 597commit 9debe1d47d8869949b15f5ea43222f5b22465b32 598Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 599Date: Sun May 22 19:01:58 2005 +0000 600 601 Add makedepend man page 602 603commit 1ee2b235655779213e8b5e0455104161a88a536c 604Author: Adam Jackson <ajax@nwnk.net> 605Date: Thu May 19 00:22:44 2005 +0000 606 607 revert last change, didn't do right thing at all, sorry for the noise 608 609commit d22b9d44523591e042569112aaba3b7437dd4c7e 610Author: Adam Jackson <ajax@nwnk.net> 611Date: Thu May 19 00:10:23 2005 +0000 612 613 Require automake 1.7 in AM_INIT_AUTOMAKE 614 615commit b0e61cfcfbb56696597eb65511c74ad901d62b58 616Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 617Date: Sun May 15 21:16:24 2005 +0000 618 619 Initial attempt at autotooling/modular conversion of makedepend 620 621commit dabc4c7abcba043e206745bdb101aafb48c00c71 622Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 623Date: Sun May 15 21:06:38 2005 +0000 624 625 [Modularization/autotooling project] Add support for building with autoconf 626 #ifdefs if present. #include "makedepend-config.h" if HAVE_CONFIG_H is 627 defined. 628 629commit 4a64cca6526e26c93f7011ba5e4fedb511af4560 630Author: Roland Mainz <roland.mainz@nrubsig.org> 631Date: Wed Mar 2 11:20:29 2005 +0000 632 633 xc/config/cf/DragonFly.cf 634 xc/config/cf/Imake.cf 635 xc/config/cf/Imakefile 636 xc/config/imake/imake.c 637 xc/config/imake/imakemdep.h 638 xc/extras/drm/shared/drm.h 639 xc/include/Xos_r.h 640 xc/lib/xtrans/Xtranssock.c 641 xc/programs/Xserver/hw/xfree86/os-support/xf86_OSlib.h 642 xc/programs/Xserver/hw/xfree86/os-support/xf86_libc.h 643 xc/programs/Xserver/hw/xfree86/os-support/linux/lnx_agp.c 644 //bugs.freedesktop.org/show_bug.cgi?id=1712) attachment #2004 645 (https://bugs.freedesktop.org/attachment.cgi?id=2004): Add support for 646 DragonFly/BSD platform. Patch by Jeroen Ruigrok <asmodai@tendra.org> 647 and Mike Verona <firedragonfly@gmail.com>. 648 649commit a2abf77f552d3930d07721e2aa388bb8d87a621a 650Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 651Date: Wed Jan 19 22:28:20 2005 +0000 652 653 Pass through additional #defines for Solaris. (Sun bug id #5097074 - Alan 654 Coopersmith) 655 656commit 33dd47009fe09ce9e5628df51914821d416be78d 657Author: Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de> 658Date: Mon Nov 15 15:06:52 2004 +0000 659 660 Bufzilla #1802, http://freedesktop.org/bugzilla/show_bug.cgi?id=1802 Added 661 mingw (Win32) port 662 663commit 67b078bc115ca3c52545b9dacb2b0fc0a1c9e90e 664Author: Egbert Eich <eich@suse.de> 665Date: Tue Oct 19 13:50:06 2004 +0000 666 667 Enabling modules and DRI for Linux HPPA. 668 Removing hpsocket.c as it isn't used anywhere any more (Bugzilla #1584). 669 670commit 967895bc594e45f065a97005a248ef71139eb269 671Author: Egbert Eich <eich@suse.de> 672Date: Mon Oct 18 14:26:35 2004 +0000 673 674 powerpc/powerpc64 build fixes. 675 676commit f1300e657659259b4082ad83de3b59a7b6b1094b 677Author: Kevin E Martin <kem@kem.org> 678Date: Wed Aug 11 21:14:02 2004 +0000 679 680 Apply PPC64 build patch (Bug #303, Mike A. Harris, Alan Coopersmith). 681 682commit 1529cb60b2652030598008c151678100ffc3f9ac 683Author: Egbert Eich <eich@suse.de> 684Date: Thu May 6 17:31:17 2004 +0000 685 686 BugZilla #601: Fixing makedepend choking on floating point exception 687 because CHAR_BIT is defined to __CHAR_BIT__ which is a compiler 688 intrinsic define. BugZilla #605: Fixing build on IA64 which is broken 689 due to the inclusion of the kernel header asm/page.h. Kernel headers 690 however don't work with 691 -ansi. The inclusion of asm/page.h can however savely be removed as it 692 there are plenty of other ways to determine the page size. 693 694commit 25324cd43b4735cafa7b6900ad23356f44077bc6 695Author: Egbert Eich <eich@suse.de> 696Date: Fri Apr 23 18:42:00 2004 +0000 697 698 Merging XORG-CURRENT into trunk 699 700commit 97527faa1b2b9f66be7171454161f273b986ee46 701Author: Egbert Eich <eich@suse.de> 702Date: Sun Mar 14 08:27:26 2004 +0000 703 704 Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004 705 706commit cc985b59a40838d617ec2c5b03771620e56fe461 707Author: Egbert Eich <eich@suse.de> 708Date: Wed Mar 3 12:09:38 2004 +0000 709 710 Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004 711 712commit 9820a186a6d0e6b16909264c67f49b0a858ac07c 713Author: Egbert Eich <eich@suse.de> 714Date: Thu Feb 26 13:34:16 2004 +0000 715 716 readding XFree86's cvs IDs 717 718commit d5b34044c15be35736038c188d2681cf7cfb63a9 719Author: Egbert Eich <eich@suse.de> 720Date: Thu Feb 26 09:21:14 2004 +0000 721 722 Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004 723 724commit 7ff0f162b4f5a062dd4e58e7ce110757f539465b 725Author: Egbert Eich <eich@suse.de> 726Date: Thu Jan 29 08:06:33 2004 +0000 727 728 Importing vendor version xf86-012804-2330 on Thu Jan 29 00:06:33 PST 2004 729 730commit 200c9bd9793c0d2dbefd1f0a2be197a2d4e3a364 731Author: Kaleb Keithley <kaleb@freedesktop.org> 732Date: Tue Nov 25 19:26:56 2003 +0000 733 734 XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks 735 736commit a15b8ac6912cef59d7e1ba7a80e58466e2c9fcba 737Author: Kaleb Keithley <kaleb@freedesktop.org> 738Date: Fri Nov 14 16:48:20 2003 +0000 739 740 XFree86 4.3.0.1 741 742commit ac5d447a2f18bdd07d5f97bb27cd9d065e30f683 743Author: Kaleb Keithley <kaleb@freedesktop.org> 744Date: Fri Nov 14 15:54:29 2003 +0000 745 746 R6.6 is the Xorg base-line 747