ChangeLog revision 352bf44e
1commit 2f248e96dcde3be96c21142c032f517aa5a06554 2Author: Alan Coopersmith <alan.coopersmith@oracle.com> 3Date: Sun Apr 3 11:30:51 2022 -0700 4 5 editres 1.0.8 6 7 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 8 9commit c62da59948e45ea316d74b98d33eba2a5b6265aa 10Author: Alan Coopersmith <alan.coopersmith@oracle.com> 11Date: Fri Dec 3 14:45:39 2021 -0800 12 13 Build xz tarballs instead of bzip2 14 15 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 16 17commit 9f60785b6091b5828ae28eb5763a1b8e5023a025 18Author: Alan Coopersmith <alan.coopersmith@oracle.com> 19Date: Fri Dec 3 14:45:34 2021 -0800 20 21 gitlab CI: add a basic build test 22 23 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 24 25commit ae0c5a4048bec6ebcc61a8cd4abbe79ac367c53e 26Author: Alan Coopersmith <alan.coopersmith@oracle.com> 27Date: Sun Nov 28 14:25:45 2021 -0800 28 29 Fix spelling/wording issues 30 31 Found by using: 32 codespell --builtin clear,rare,usage,informal,code,names 33 34 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 35 36commit 15be5d8d295f4d7c779845cd11e06c08cfacad85 37Author: Matt Turner <mattst88@gmail.com> 38Date: Fri Mar 27 09:56:26 2020 -0700 39 40 Add const to silence warning 41 42 widgets.c:817:28: warning: initialization discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] 43 44 Signed-off-by: Matt Turner <mattst88@gmail.com> 45 46commit a97f306fd57878158962eb873c23f03a5c6da9db 47Author: Alan Coopersmith <alan.coopersmith@oracle.com> 48Date: Sun Jun 2 11:38:57 2019 -0700 49 50 Clear -Wredundant-decls warnings from gcc 7.3 51 52 comm.c:55:15: warning: redundant redeclaration of ‘CM_entries’ [-Wredundant-decls] 53 extern Widget CM_entries[NUM_CM_ENTRIES], TM_entries[NUM_TM_ENTRIES]; 54 ^~~~~~~~~~ 55 In file included from comm.c:46:0: 56 editresP.h:339:15: note: previous declaration of ‘CM_entries’ was here 57 extern Widget CM_entries[NUM_CM_ENTRIES]; 58 ^~~~~~~~~~ 59 comm.c:55:43: warning: redundant redeclaration of ‘TM_entries’ [-Wredundant-decls] 60 extern Widget CM_entries[NUM_CM_ENTRIES], TM_entries[NUM_TM_ENTRIES]; 61 ^~~~~~~~~~ 62 In file included from comm.c:46:0: 63 editresP.h:343:15: note: previous declaration of ‘TM_entries’ was here 64 extern Widget TM_entries[NUM_TM_ENTRIES]; 65 ^~~~~~~~~~ 66 67 handler.c:502:16: warning: redundant redeclaration of ‘do_get_values’ [-Wredundant-decls] 68 extern Boolean do_get_values; 69 ^~~~~~~~~~~~~ 70 In file included from handler.c:40:0: 71 editresP.h:334:16: note: previous declaration of ‘do_get_values’ was here 72 extern Boolean do_get_values; 73 ^~~~~~~~~~~~~ 74 75 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 76 77commit 43c19175385f98894c1633ed57ec6778e17a38a6 78Author: Alan Coopersmith <alan.coopersmith@oracle.com> 79Date: Sun Jun 2 11:35:43 2019 -0700 80 81 Clear 208 out of 210 -Wdiscarded-qualifiers warnings from gcc 7.3 82 83 Depends on building with a libXt version that defines String as a 84 const char * if _CONST_X_STRING is defined. 85 86 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 87 88commit 2b838dbd23f2ae2a3ff479003b13e03563624009 89Author: Alan Coopersmith <alan.coopersmith@oracle.com> 90Date: Wed Nov 21 16:46:01 2018 -0800 91 92 Update configure.ac bug URL for gitlab migration 93 94 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 95 96commit 90a95d3f6a661b76b0768b454c00468eb65e47fc 97Author: Alan Coopersmith <alan.coopersmith@oracle.com> 98Date: Fri Nov 16 19:45:13 2018 -0800 99 100 Update README for gitlab migration 101 102 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 103 104commit 9644bfe7f56eb8c1cc795b724a6fc95ae4172d43 105Author: Alan Coopersmith <alan.coopersmith@oracle.com> 106Date: Sun Mar 4 18:43:17 2018 -0800 107 108 editres 1.0.7 109 110 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 111 112commit 476ad1ea6588e277d59ae6d0fc64a17bc1b5df5a 113Author: Mihail Konev <k.mvc@ya.ru> 114Date: Thu Jan 26 14:00:20 2017 +1000 115 116 autogen: add default patch prefix 117 118 Signed-off-by: Mihail Konev <k.mvc@ya.ru> 119 120commit e03471032c584669d06ca4fe47f52cafd9013493 121Author: Emil Velikov <emil.l.velikov@gmail.com> 122Date: Mon Mar 9 12:00:52 2015 +0000 123 124 autogen.sh: use quoted string variables 125 126 Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent 127 fall-outs, when they contain space. 128 129 Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> 130 Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net> 131 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 132 133commit 931b91c5ff7b2dedb149f0a89010b64407baabf3 134Author: Peter Hutterer <peter.hutterer@who-t.net> 135Date: Tue Jan 24 10:32:07 2017 +1000 136 137 autogen.sh: use exec instead of waiting for configure to finish 138 139 Syncs the invocation of configure with the one from the server. 140 141 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net> 142 Reviewed-by: Emil Velikov <emil.velikov@collabora.com> 143 144commit 3f4d7d388dce6c9783c30bcc006f73d799845c0e 145Author: Alan Coopersmith <alan.coopersmith@oracle.com> 146Date: Fri Jan 1 11:02:42 2016 -0800 147 148 Add intro to editres to README 149 150 Mostly copied from editres man page 151 152 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 153 154commit a415214bf282dcc8385f2101e6f8c018e188fa41 155Author: Alan Coopersmith <alan.coopersmith@oracle.com> 156Date: Sat May 9 13:13:32 2015 -0700 157 158 Fix -Wmissing-noreturn warnings 159 160 editres.c:140:1: warning: function 'Syntax' could be declared with 161 attribute 'noreturn' [-Wmissing-noreturn] 162 handler.c:65:1: warning: function 'Quit' could be declared with 163 attribute 'noreturn' [-Wmissing-noreturn] 164 165 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 166 167commit a6733f76dad52644bd45a8674bf0ea97c6e424ac 168Author: Alan Coopersmith <alan.coopersmith@oracle.com> 169Date: Sat May 9 12:47:23 2015 -0700 170 171 Strip trailing whitespace 172 173 'git diff -w' shows no changes for this commit 174 175 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 176 177commit c33a44612947eb91579b24f98848812018dd8c16 178Author: Alan Coopersmith <alan.coopersmith@oracle.com> 179Date: Sat May 9 11:38:18 2015 -0700 180 181 Fix -Wsign-compare warnings 182 183 actions.c:291:21: warning: comparison of integers of different signs: 'int' and 'Cardinal' (aka 'unsigned int') [-Wsign-compare] 184 for ( i = 0 ; i < num_table; i++ ) 185 ~ ^ ~~~~~~~~~ 186 actions.c:299:19: warning: comparison of integers of different signs: 'int' and 'Cardinal' (aka 'unsigned int') [-Wsign-compare] 187 for (i = 0; i < num_table; ) { 188 ~ ^ ~~~~~~~~~ 189 actions.c:302:8: warning: comparison of integers of different signs: 'int' and 'unsigned int' [-Wsign-compare] 190 if (i == (num_table - 1)) 191 ~ ^ ~~~~~~~~~~~~~ 192 actions.c:304:13: warning: comparison of integers of different signs: 'int' and 'Cardinal' (aka 'unsigned int') [-Wsign-compare] 193 else if (i < num_table) 194 ~ ^ ~~~~~~~~~ 195 196 geometry.c:150:19: warning: comparison of integers of different signs: 'int' and 'Cardinal' (aka 'unsigned int') [-Wsign-compare] 197 for (i = 0; i < tree_info->num_nodes; i++) 198 ~ ^ ~~~~~~~~~~~~~~~~~~~~ 199 geometry.c:380:19: warning: comparison of integers of different signs: 'int' and 'Cardinal' (aka 'unsigned int') [-Wsign-compare] 200 for (i = 0; i < tree_info->num_flash_widgets; i++) { 201 ~ ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 202 geometry.c:401:19: warning: comparison of integers of different signs: 'int' and 'Cardinal' (aka 'unsigned int') [-Wsign-compare] 203 for (i = 0; i < tree_info->num_flash_widgets; i++) 204 ~ ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 205 geometry.c:423:19: warning: comparison of integers of different signs: 'int' and 'Cardinal' (aka 'unsigned int') [-Wsign-compare] 206 for (i = 0; i < tree_info->num_flash_widgets; i++) 207 ~ ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 208 geometry.c:428:19: warning: comparison of integers of different signs: 'int' and 'Cardinal' (aka 'unsigned int') [-Wsign-compare] 209 for (i = 0; i < tree_info->num_flash_widgets; i++) 210 ~ ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 211 212 handler.c:475:13: warning: comparison of integers of different signs: 'int' and 'Cardinal' (aka 'unsigned int') [-Wsign-compare] 213 if (len > malloc_size) { 214 ~~~ ^ ~~~~~~~~~~~ 215 handler.c:476:58: warning: implicit conversion changes signedness: 'int' to 'unsigned long' [-Wsign-conversion] 216 malloc_string = XtRealloc(malloc_string, sizeof(char) * len); 217 ~ ^~~ 218 handler.c:477:16: warning: implicit conversion changes signedness: 'int' to 'Cardinal' (aka 'unsigned int') [-Wsign-conversion] 219 malloc_size = len; 220 ~ ^~~ 221 222 utils.c:167:37: warning: comparison of integers of different signs: 'int' and 'Cardinal' (aka 'unsigned int') [-Wsign-compare] 223 for (node = top_node, i = 1 ; i < number; i++) { 224 ~ ^ ~~~~~~ 225 utils.c:170:16: warning: comparison of integers of different signs: 'int' and 'Cardinal' (aka 'unsigned int') [-Wsign-compare] 226 for (j = 0; j < node->num_children; j++) { 227 ~ ^ ~~~~~~~~~~~~~~~~~~ 228 utils.c:215:19: warning: comparison of integers of different signs: 'int' and 'Cardinal' (aka 'unsigned int') [-Wsign-compare] 229 for (i = 0; i < node->num_children; i++) { 230 ~ ^ ~~~~~~~~~~~~~~~~~~ 231 utils.c:787:19: warning: comparison of integers of different signs: 'int' and 'Cardinal' (aka 'unsigned int') [-Wsign-compare] 232 for (i = 0; i < top_node->num_children; i++) 233 ~ ^ ~~~~~~~~~~~~~~~~~~~~~~ 234 235 wtree.c:129:19: warning: comparison of integers of different signs: 'int' and 'Cardinal' (aka 'unsigned int') [-Wsign-compare] 236 for (i = 0; i < top->num_children; i++) 237 ~ ^ ~~~~~~~~~~~~~~~~~ 238 wtree.c:194:19: warning: comparison of integers of different signs: 'int' and 'Cardinal' (aka 'unsigned int') [-Wsign-compare] 239 for (i = 0; i < info->num_nodes; i++) { 240 ~ ^ ~~~~~~~~~~~~~~~ 241 wtree.c:216:19: warning: comparison of integers of different signs: 'int' and 'Cardinal' (aka 'unsigned int') [-Wsign-compare] 242 for (i = 0; i < info->num_nodes; i++) 243 ~ ^ ~~~~~~~~~~~~~~~ 244 wtree.c:270:19: warning: comparison of integers of different signs: 'int' and 'Cardinal' (aka 'unsigned int') [-Wsign-compare] 245 for (i = 0; i < top->num_children; i++) 246 ~ ^ ~~~~~~~~~~~~~~~~~ 247 wtree.c:339:19: warning: comparison of integers of different signs: 'int' and 'Cardinal' (aka 'unsigned int') [-Wsign-compare] 248 for (i = 0; i < num_active_nodes; i++) 249 ~ ^ ~~~~~~~~~~~~~~~~ 250 wtree.c:386:19: warning: comparison of integers of different signs: 'int' and 'Cardinal' (aka 'unsigned int') [-Wsign-compare] 251 for (i = 0; i < node->num_children; i++) 252 ~ ^ ~~~~~~~~~~~~~~~~~~ 253 wtree.c:446:19: warning: comparison of integers of different signs: 'int' and 'Cardinal' (aka 'unsigned int') [-Wsign-compare] 254 for (i = 0; i < node->num_children; i++) 255 ~ ^ ~~~~~~~~~~~~~~~~~~ 256 wtree.c:478:16: warning: comparison of integers of different signs: 'int' and 'Cardinal' (aka 'unsigned int') [-Wsign-compare] 257 for (i = 0; i < node->num_children; i++) { 258 ~ ^ ~~~~~~~~~~~~~~~~~~ 259 wtree.c:607:19: warning: comparison of integers of different signs: 'int' and 'Cardinal' (aka 'unsigned int') [-Wsign-compare] 260 for (i = 0; i < tree_info->num_nodes; i++) 261 ~ ^ ~~~~~~~~~~~~~~~~~~~~ 262 wtree.c:686:19: warning: comparison of integers of different signs: 'int' and 'Cardinal' (aka 'unsigned int') [-Wsign-compare] 263 for (i = 0; i < node->num_children; i++) 264 ~ ^ ~~~~~~~~~~~~~~~~~~ 265 266 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 267 268commit af90a105ec97c6d856d2e8a80e8822c3e192d1e9 269Author: Alan Coopersmith <alan.coopersmith@oracle.com> 270Date: Sat May 9 11:19:33 2015 -0700 271 272 Replace remaining sprintf calls with snprintf 273 274 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 275 276commit 9ffefd5b3d38e9ed2b5ed59bc50e8a7da761fb77 277Author: Alan Coopersmith <alan.coopersmith@oracle.com> 278Date: Sat May 9 11:17:38 2015 -0700 279 280 Replace XtMalloc+sprintf pair with XtAsprintf call 281 282 Raises required version of libXt to >= 1.0.99.1 283 284 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 285 286commit 15f9d88e13bda2617c05c278a1ca9f6ce26df479 287Author: Alan Coopersmith <alan.coopersmith@oracle.com> 288Date: Sun Jun 1 21:06:47 2014 -0700 289 290 autogen.sh: Honor NOCONFIGURE=1 291 292 See http://people.gnome.org/~walters/docs/build-api.txt 293 294 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 295 296commit eed2fbbfc5292b5cf02d4c4b9f10266d8a41b787 297Author: Alan Coopersmith <alan.coopersmith@oracle.com> 298Date: Sun Jun 1 21:06:47 2014 -0700 299 300 configure: Drop AM_MAINTAINER_MODE 301 302 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 303 304commit 57e1f1c4aa60136ab22e3faf75832c728beee4aa 305Author: Eric S. Raymond <esr@thyrsus.com> 306Date: Thu Jun 6 15:50:08 2013 -0400 307 308 Avoid a spurious warning during XML upconversion. 309 310commit 703edaa26044cfa0a607fa7b93396095fdfdfbaa 311Author: Alan Coopersmith <alan.coopersmith@oracle.com> 312Date: Sat Jan 19 09:21:50 2013 -0800 313 314 config: Add missing AC_CONFIG_SRCDIR 315 316 Regroup AC statements under the Autoconf initialization section. 317 Regroup AM statements under the Automake initialization section. 318 319 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 320 321commit c256f5a1e82ed874d8bd068901dd9b138adb6f89 322Author: Alan Coopersmith <alan.coopersmith@oracle.com> 323Date: Sat Jan 12 16:05:16 2013 -0800 324 325 editres 1.0.6 326 327 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 328 329commit d2fce327fd2c308c17aa239be27dca294cb52ca0 330Author: Alan Coopersmith <alan.coopersmith@oracle.com> 331Date: Wed Dec 28 20:17:42 2011 -0800 332 333 Remove Xorg/XFree86 CVS/RCS id tags 334 335 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 336 337commit 0d02b3888a6a0d5f7197c17ab4bfd9d31c8799df 338Author: Gaetan Nadon <memsize@videotron.ca> 339Date: Wed Jan 19 10:06:55 2011 -0500 340 341 config: move man pages into their own directory 342 343 Use services provided by XORG_MANPAGE_SECTIONS. 344 Use standard Makefile for man pages. 345 346 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 347 348commit 367bb7e6ab70fe56ace5a02541c0913a34ab79c2 349Author: Gaetan Nadon <memsize@videotron.ca> 350Date: Thu Jan 13 17:15:36 2011 -0500 351 352 man: replace hard coded man page section with substitution strings 353 354 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 355 356commit acdd1245782190342e5736614b2ac25c497a9312 357Author: Gaetan Nadon <memsize@videotron.ca> 358Date: Thu Jan 13 11:15:00 2011 -0500 359 360 man: remove trailing spaces and tabs 361 362 Using s/[ \t]*$// 363 364 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 365 366commit b2ea5e60a7ea43fc825936f23218a77f13b67e12 367Author: Gaetan Nadon <memsize@videotron.ca> 368Date: Wed Jan 12 16:28:01 2011 -0500 369 370 config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS 371 372 This silences an Autoconf warning 373 374commit 3b09a1e5f853c32c6784b74914e126999959168a 375Author: Gaetan Nadon <memsize@videotron.ca> 376Date: Wed Jan 12 15:29:49 2011 -0500 377 378 config: replace deprecated AC_HELP_STRING with AS_HELP_STRING 379 380 This silences an Automake warning. 381 382 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 383 384commit 17332856a27d27f4ea08b99d58b8e4167b7d815f 385Author: Alan Coopersmith <alan.coopersmith@oracle.com> 386Date: Sat Oct 30 12:43:00 2010 -0700 387 388 editres 1.0.5 389 390 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 391 392commit 9aa7a02bafe1a56837484c0122cb96f86b08c20e 393Author: Alan Coopersmith <alan.coopersmith@oracle.com> 394Date: Sat Oct 30 12:41:18 2010 -0700 395 396 config: Remove unnecessary calls from configure.ac 397 398 AC_PROG_CC & AC_PROG_INSTALL are provided by XORG_DEFAULT_OPTIONS now 399 400 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 401 402commit bc60bafbf6ec232bd006e38312c200900cc63034 403Author: Alan Coopersmith <alan.coopersmith@oracle.com> 404Date: Sat Oct 30 12:40:44 2010 -0700 405 406 config: upgrade to util-macros 1.8 for additional man page support 407 408 Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS 409 The value of MAN_SUBST is the same for all X.Org packages. 410 411 Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS 412 The existing statement can now be removed from the configuration file. 413 414 Use automake provided $(AM_V_GEN) and XORG_DEFAULT_OPTIONS provided $(SED) 415 Enables silent rule and use platform appropriate version of sed. 416 417 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 418 419commit 737c0d053505a8ece24f41320cd2bd5ecb3a212b 420Author: Gaetan Nadon <memsize@videotron.ca> 421Date: Sat Oct 30 12:39:00 2010 -0700 422 423 config: update AC_PREREQ statement to 2.60 424 425 Unrelated to the previous patches, the new value simply reflects 426 the reality that the minimum level for autoconf to configure 427 all x.org modules is 2.60 dated June 2006. 428 429 ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz 430 431 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 432 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> 433 434commit c04cfb209c6da039728f15d0b9211557a2cb556d 435Author: Gaetan Nadon <memsize@videotron.ca> 436Date: Sat Aug 7 21:07:30 2010 -0400 437 438 config: consolidate dependencies checking 439 440 One single equivalent statement will do the job. 441 442 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 443 444commit 00839b44d635eb3c5d5a3d1b1d764838af22d252 445Author: Gaetan Nadon <memsize@videotron.ca> 446Date: Sat Dec 19 20:48:47 2009 -0500 447 448 configure.ac: use backticks rather than $() for cmd subs 449 450 Use "$PKG_CONFIG" rather than hard coded "pkg-config" 451 452 Signed-off-by: Gaetan Nadon <memsize@videotron.ca> 453 454commit 0d9b687b1eef24ba64f8dc15febb296cae727d30 455Author: Gaetan Nadon <memsize@videotron.ca> 456Date: Thu Nov 26 09:19:52 2009 -0500 457 458 Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES 459 460 Now that the INSTALL file is generated. 461 Allows running make maintainer-clean. 462 463commit 1cfbbce10833e7902b30c50fe1da3dc83d40b8fe 464Author: Gaetan Nadon <memsize@videotron.ca> 465Date: Wed Oct 28 14:09:07 2009 -0400 466 467 INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206 468 469 Add missing INSTALL file. Use standard GNU file on building tarball 470 README may have been updated 471 Remove AUTHORS file as it is empty and no content available yet. 472 Remove NEWS file as it is empty and no content available yet. 473 474commit 9d6212392730f5cdec9906eb90385c766a87de9c 475Author: Gaetan Nadon <memsize@videotron.ca> 476Date: Tue Oct 27 15:07:24 2009 -0400 477 478 Deploy the new XORG_DEFAULT_OPTIONS #24242 479 480 This macro aggregate a number of existing macros that sets commmon 481 X.Org components configuration options. It shields the configuration file from 482 future changes. 483 484commit 49f5b0c58b5c2efa23dde717c52be5e4161e3993 485Author: Gaetan Nadon <memsize@videotron.ca> 486Date: Mon Oct 26 22:08:37 2009 -0400 487 488 Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432 489 490 ChangeLog filename is known to Automake and requires no further 491 coding in the makefile. 492 493commit be42557f3db73875b9789f5fc7457703e97face0 494Author: Gaetan Nadon <memsize@videotron.ca> 495Date: Thu Oct 22 12:34:14 2009 -0400 496 497 .gitignore: use common defaults with custom section # 24239 498 499 Using common defaults will reduce errors and maintenance. 500 Only the very small or inexistent custom section need periodic maintenance 501 when the structure of the component changes. Do not edit defaults. 502 503commit 86eb733aaddc362427d533b7cf157447690152a5 504Author: Gaetan Nadon <memsize@videotron.ca> 505Date: Sun Sep 27 15:43:39 2009 -0400 506 507 Makefile.am: do not include autogen.sh in distribution #24183 508 509 This is a private build script that should not be distributed 510 511commit aebe52fd87925353c687fbd26c5547410d4b96c1 512Author: Alan Coopersmith <alan.coopersmith@sun.com> 513Date: Tue Sep 22 20:05:21 2009 -0700 514 515 editres 1.0.4 516 517 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 518 519commit e919068b70411167e3f239ad32d1fd4ad2a0c10d 520Author: Alan Coopersmith <alan.coopersmith@sun.com> 521Date: Tue Sep 22 20:05:04 2009 -0700 522 523 Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS 524 525 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 526 527commit 086d2257cc5ad59f1e2aa7362a912e4855edc4be 528Author: Alan Coopersmith <alan.coopersmith@sun.com> 529Date: Tue Sep 22 20:04:19 2009 -0700 530 531 Fill in AUTHORS & README 532 533 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> 534 535commit b86d1b71813cfa582aa28356ee6a2196a67ba8d4 536Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> 537Date: Mon Jan 12 17:32:36 2009 -0200 538 539 Ansification and compile warning fixes. 540 541 This also uses XORG_CHANGELOG and XORG_CWARNFLAGS, corrects 542 make distcheck and all gcc 4.3 and sparse warnings. 543 544commit 82c17cd232a016f0c552f38453774abfb0bf17fe 545Author: James Cloos <cloos@jhcloos.com> 546Date: Wed Aug 20 10:32:48 2008 -0400 547 548 xaw8 is gone, use xaw7 549 550commit 332e17ae6ebec0dbb7c13d63dd4758cb2979bcdc 551Author: Julien Cristau <jcristau@debian.org> 552Date: Fri May 16 14:20:03 2008 +0200 553 554 $(builddir) is the current directory 555 556 Apparently automake doesn't always export the builddir variable. 557 This fixes my previous commit. 558 559commit 3b8c583e5a3d8733419cf5517d22b40f31c93e4c 560Author: Julien Cristau <jcristau@debian.org> 561Date: Sun Apr 20 19:41:13 2008 +0200 562 563 Fix build with builddir != srcdir 564 565commit a0e6c84ab34146b71c1b52b10452987ba1cc869a 566Author: Jeremy Huddleston <jeremyhu@freedesktop.org> 567Date: Thu Mar 27 20:07:29 2008 -0700 568 569 Build fix for file systems that are not case sensitive 570 571commit 724c09e17dde32d5713388d6e9de0ad3fc004870 572Author: James Cloos <cloos@jhcloos.com> 573Date: Thu Dec 6 15:51:04 2007 -0500 574 575 Add missing PHONY line for automatic ChangeLog generation 576 577commit 4c6a0418e2499f01a1b2ef06bdec77ef208fe15b 578Author: Alan Coopersmith <alan.coopersmith@sun.com> 579Date: Fri Aug 10 16:16:43 2007 -0700 580 581 Change editres_CFLAGS to AM_CFLAGS to make automake-1.10 happier 582 583 Makefile.am:27: compiling `actions.c' with per-target flags requires `AM_PROG_CC_C_O' in `configure.ac' 584 585commit 960a84a735daedd7b4df009c46d2f8a751335676 586Author: Alan Coopersmith <alan.coopersmith@sun.com> 587Date: Tue Jan 23 17:00:54 2007 -0800 588 589 Version bump: 1.0.3 590 591commit 6894715b043dbbbf0b622561f2de57cd89bf408d 592Author: Alan Coopersmith <alan.coopersmith@sun.com> 593Date: Tue Jan 23 17:00:22 2007 -0800 594 595 Fill in COPYING file with copyright/license from *.c files 596 597commit d134cf4e83beccea282c49d1768e4ecf6b1ea52e 598Author: Alan Coopersmith <alan.coopersmith@sun.com> 599Date: Tue Jan 23 16:57:59 2007 -0800 600 601 Replace static ChangeLog with dist-hook to generate from git log 602 603commit f8e170f16e591f349482ebfe166a639f60b78a19 604Author: Alan Coopersmith <alan.coopersmith@sun.com> 605Date: Tue Jan 2 18:44:34 2007 -0800 606 607 renamed: .cvsignore -> .gitignore 608 609commit f29f6eb20486b84ab0f73dbbc4295a2193fdf451 610Author: Eric S. Raymond <esr@thyrsus.com> 611Date: Tue Jan 2 18:43:21 2007 -0800 612 613 Bug 9513: Unknown macro & other formatting fixes in editres.1x 614 615 <https://bugs.freedesktop.org/show_bug.cgi?id=9513> 616 617commit 0a067639699a5639516200e780a68a779a82bde0 618Author: Daniel Stone <daniel@fooishbar.org> 619Date: Sat Dec 16 00:33:35 2006 +0200 620 621 bump to 1.0.2 622 623commit 54a41faa66c411e9f82fb00333cd407cb94f4c3e 624Author: Daniel Stone <daniel@fooishbar.org> 625Date: Fri Dec 15 23:51:21 2006 +0200 626 627 remove config.h from _SOURCES 628 Remove config.h from _SOURCES, so it doesn't get distributed. 629 630commit 67b0dc56b4d0ce6d5ffe36a8b638c79b7f89cf30 631Author: Kevin E Martin <kem@kem.org> 632Date: Wed Dec 21 02:29:42 2005 +0000 633 634 Update package version for X11R7 release. 635 636commit 80b0ef68994d37db8a43fb8862969111c2ef3170 637Author: Adam Jackson <ajax@nwnk.net> 638Date: Mon Dec 19 16:22:40 2005 +0000 639 640 Stub COPYING files 641 642commit 084dc660379fe0d2cd8833d3a8967c45d793f48e 643Author: Kevin E Martin <kem@kem.org> 644Date: Thu Dec 15 00:24:01 2005 +0000 645 646 Update package version number for final X11R7 release candidate. 647 648commit 8113fde1cc66413534f82820c363f7a142ca7b08 649Author: Kevin E Martin <kem@kem.org> 650Date: Wed Dec 7 16:17:58 2005 +0000 651 652 Change to use the app-defaults default dir configured in libXt. 653 654commit 81d4322158703bcccc10040984a48db852e489c4 655Author: Kevin E Martin <kem@kem.org> 656Date: Tue Dec 6 22:48:16 2005 +0000 657 658 Change *man_SOURCES ==> *man_PRE to fix autotools warnings. 659 660commit 9a5d8daff97901931aa983afe060be6c4583d36f 661Author: Kevin E Martin <kem@kem.org> 662Date: Sat Dec 3 05:49:15 2005 +0000 663 664 Update package version number for X11R7 RC3 release. 665 666commit 500b5abb8c280b2f9450157822f2080d94d1f754 667Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 668Date: Mon Nov 28 22:01:36 2005 +0000 669 670 Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4 671 update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir) 672 673commit 5700b32bf8a970ccbcc4c6204dfa74f6c1b795cc 674Author: Eric Anholt <anholt@freebsd.org> 675Date: Mon Nov 21 10:34:55 2005 +0000 676 677 Another pass at .cvsignores for apps. 678 679commit dc8c4e03c64c0aaad4101cbf737d333049e0ade3 680Author: Eric Anholt <anholt@freebsd.org> 681Date: Sun Nov 20 22:08:48 2005 +0000 682 683 Add/improve .cvsignore files for apps. 684 685commit ab7ebeb62f2d9cf3934bcc6c91d7f2ca29603bec 686Author: Kevin E Martin <kem@kem.org> 687Date: Wed Oct 19 02:47:48 2005 +0000 688 689 Update package version number for RC1 release. 690 691commit 6b6f7ea565d3d034ff3406be3c8538a058100203 692Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 693Date: Tue Oct 18 00:32:53 2005 +0000 694 695 Change default install dir for app-default files from 696 $(sysconfdir)/X11/app-defaults to $(libdir)/X11/app-defaults to match 697 the monolith & allow localization 698 699commit ee6d1e9b005eaf30cff6ac3dd9cc40919e90d884 700Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 701Date: Mon Oct 17 23:56:19 2005 +0000 702 703 Use @APP_MAN_SUFFIX@ instead of $(APP_MAN_SUFFIX) in macro substitutions to 704 work better with BSD make 705 706commit 860f17c45f423b7d19ad78061ec1d785fa9fedf5 707Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 708Date: Fri Oct 14 00:25:41 2005 +0000 709 710 Use sed to fill in variables in man page 711 712commit 3d586c48b217f6f783cd8b39bedd6b34f047444c 713Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 714Date: Thu Oct 13 20:10:59 2005 +0000 715 716 Fix app-default files to install under the same names as in the monolith 717 instead of their short names used only for 14-character filename length 718 limited ancient filesystems 719 720commit 18a1a2898c1124d8ec359b5320e00e58d0758c56 721Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 722Date: Mon Aug 1 20:25:27 2005 +0000 723 724 Install man pages to section 1 instead of section m (Patch from Donnie 725 Berkholz) 726 727commit 46c342a910eed04ed23ea5b3ccf3280818c098a9 728Author: Kevin E Martin <kem@kem.org> 729Date: Fri Jul 29 21:22:28 2005 +0000 730 731 Various changes preparing packages for RC0: 732 - Verify and update package version numbers as needed 733 - Implement versioning scheme 734 - Change bug address to point to bugzilla bug entry form 735 - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to 736 reenable it) 737 - Fix makedepend to use pkgconfig and pass distcheck 738 - Update build script to build macros first 739 - Update modular Xorg version 740 741commit 3f55c0717f22df8c36bc2d64fc2ace1b5e9b34a6 742Author: Alan Coopersmith <Alan.Coopersmith@sun.com> 743Date: Tue Jul 26 15:44:01 2005 +0000 744 745 Replace more GNU make-ism's with more portable macros 746 747commit 193cf93becd97779c8d6ee790efa78387c71b258 748Author: Adam Jackson <ajax@nwnk.net> 749Date: Wed Jul 20 19:31:48 2005 +0000 750 751 Use a unique token for PKG_CHECK_MODULES. Otherwise, if you use a global 752 configure cache, you cache it, and the cached value is probably wrong. 753 754commit 3fbfc8390e09c5d63a8ab37342f09784acc13485 755Author: Matthieu Herrb <matthieu.herrb@laas.fr> 756Date: Sun Jul 17 20:11:01 2005 +0000 757 758 fix rules to work with non-GNU make and outside of $srcdir 759 760commit d15169a6a4c05a63b17ae630c9ade3b14a3d7181 761Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk> 762Date: Mon Jun 27 22:30:58 2005 +0000 763 764 Use $(foreach ) instead of listing the appdefaults files twice 765 766commit 349b2847900798cacdfe358eb8eb4773106657e8 767Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk> 768Date: Mon Jun 27 21:35:04 2005 +0000 769 770 - Fix string test in lib/Xaw/xaw.m4 771 - Xaw/Xaw7/Makefile.am: add -DXAW7 772 - add build system for editres 773 774commit 9391b5d706fe66ac05cb3af1fd0263eed13776c8 775Author: Egbert Eich <eich@suse.de> 776Date: Mon Apr 4 10:17:07 2005 +0000 777 778 Fixed sentinels in Xt, editres and xedit to reduce number of warnings with 779 gcc4 (Andreas Schwab). 780 781commit 3528e71f7e176f696c360bee56dd78b7b9f95fc3 782Author: Egbert Eich <eich@suse.de> 783Date: Fri Apr 23 19:54:32 2004 +0000 784 785 Merging XORG-CURRENT into trunk 786 787commit 9ba152d28e1a57bd0e0c841ba35e6374070ba2dc 788Author: Egbert Eich <eich@suse.de> 789Date: Sun Mar 14 08:34:50 2004 +0000 790 791 Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004 792 793commit 9ad041dcc1fa1e142b9f688463f93fb1ecc31fd5 794Author: Egbert Eich <eich@suse.de> 795Date: Wed Mar 3 12:12:50 2004 +0000 796 797 Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004 798 799commit 18876207a03f0a8c2210ba1decc726db1cf53702 800Author: Egbert Eich <eich@suse.de> 801Date: Thu Feb 26 13:36:15 2004 +0000 802 803 readding XFree86's cvs IDs 804 805commit 82de5e8b51be2df116d3d9c8cdea65f8468f7298 806Author: Egbert Eich <eich@suse.de> 807Date: Thu Feb 26 09:23:53 2004 +0000 808 809 Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004 810 811commit f35a8fcb820cbe4cfb1ded89677d5828a34ddec0 812Author: Kaleb Keithley <kaleb@freedesktop.org> 813Date: Tue Nov 25 19:29:02 2003 +0000 814 815 XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks 816 817commit 6e4057717156adf6dba781d30db3f60a475ea7e4 818Author: Kaleb Keithley <kaleb@freedesktop.org> 819Date: Fri Nov 14 16:48:57 2003 +0000 820 821 XFree86 4.3.0.1 822 823commit efce7cb078dd34e9e9f7d6f5f5cdd0c8ef267691 824Author: Kaleb Keithley <kaleb@freedesktop.org> 825Date: Fri Nov 14 15:54:52 2003 +0000 826 827 R6.6 is the Xorg base-line 828