123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994 |
- commit 2f5eae70cd2e9c1e09dcbd8a2a58eaf58207fe00
- Author: Alan Coopersmith <alan.coopersmith@oracle.com>
- Date: Fri Jan 16 21:57:03 2015 -0800
- bitmap 1.0.8
-
- Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
- commit dacae58710f7033d5295c50cf6262783350e938d
- Author: Alan Coopersmith <alan.coopersmith@oracle.com>
- Date: Mon Dec 29 18:28:00 2014 -0800
- Stop memory leak in XmuWriteBitmapDataToFile()
-
- StripFilename() allocates a new string for its result, so after we're
- done with it, free it instead of just losing the pointer to it.
-
- Fixes errors found by Oracle Parfait 1.5.1 bug checking tool:
-
- Error: Memory leak (CWE 401)
- Memory leak of pointer basename allocated with StripFilename(filename)
- at line 712 of Bitmap.c in function 'XmuWriteBitmapDataToFile'.
- basename allocated at line 691 with StripFilename(filename).
- basename leaks when i >= data_length at line 702.
- Error: Memory leak (CWE 401)
- Memory leak of pointer basename allocated with StripFilename(filename)
- at line 715 of Bitmap.c in function 'XmuWriteBitmapDataToFile'.
- basename allocated at line 691 with StripFilename(filename).
-
- Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
- commit 8df1a843a3a9f92399113688a350873a141bf995
- Author: Alan Coopersmith <alan.coopersmith@oracle.com>
- Date: Mon Dec 29 18:15:57 2014 -0800
- Stop memory leaks from XtNewString(StripFilename(filename))
-
- StripFilename() already allocates a new string for its result,
- we don't need to duplicate it and then lose the pointer to the
- first one.
-
- Fixes errors found by Oracle Parfait 1.5.1 bug checking tool:
-
- Error: Memory leak (CWE 401)
- Memory leak of pointer pointer allocated with StripFilename(filename)
- at line 1119 of Bitmap.c in function 'BWReadFile'.
- pointer allocated at line 1106 with StripFilename(filename).
- pointer leaks when StripFilename(filename) != NULL at line 1106.
- Error: Memory leak (CWE 401)
- Memory leak of pointer pointer allocated with StripFilename(filename)
- at line 1119 of Bitmap.c in function 'BWReadFile'.
- pointer allocated at line 1106 with StripFilename(filename).
-
- Error: Memory leak (CWE 401)
- Memory leak of pointer pointer allocated with StripFilename(filename)
- at line 1222 of Bitmap.c in function 'BWWriteFile'.
- pointer allocated at line 1202 with StripFilename(filename).
- pointer leaks when StripFilename(filename) != NULL at line 1202.
- Error: Memory leak (CWE 401)
- Memory leak of pointer pointer allocated with StripFilename(filename)
- at line 1222 of Bitmap.c in function 'BWWriteFile'.
- pointer allocated at line 1202 with StripFilename(filename).
-
- Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
- commit a0db0f6c7996b282aa9027d3b670597d88fe3353
- Author: Alan Coopersmith <alan.coopersmith@oracle.com>
- Date: Sun Jun 1 21:03:14 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 8fb1efccb5f24eab51cefafedb1a5a60217db35f
- Author: Alan Coopersmith <alan.coopersmith@oracle.com>
- Date: Sun Jun 1 21:03:13 2014 -0700
- configure: Drop AM_MAINTAINER_MODE
-
- Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
- commit d0911d130b870da0951b56f5103c6b4dfb9eeb28
- Author: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
- Date: Wed Jan 1 23:02:48 2014 -0800
- Use '& 7' instead '% 8' to silence clang analyzer warning
-
- Graphics.c:569:10: warning: The result of the '<<' expression is undefined
- while (!QueryFlood(BW, x, y, value) && (x < x_right))
- ^~~~~~~~~~~~~~~~~~~~~~~~~~~
- Graphics.c:470:7: note: expanded from macro 'QueryFlood'
- ((GetBit(BW->bitmap.image, x, y) !=\
- ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- Graphics.c:66:9: note: expanded from macro 'GetBit'
- (1 << ((x) % 8))) ? 1 : 0))
- ~~^~~~~~~~~~~~
-
- Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
- commit e3fe79502a4a1b0f0b148659948d541ce26ed7bf
- Author: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
- Date: Wed Jan 1 22:58:23 2014 -0800
- Demacro modernization of NewSList to plug a memory leak during error handling
-
- atobm.c:248:6: warning: Potential leak of memory pointed to by 'slist'
- NewSList ();
- ^~~~~~~~~~~
- atobm.c:209:3: note: expanded from macro 'NewSList'
- fprintf (stderr, "%s: unable to allocate char array\n", \
- ^~~~~~~
- atobm.c:259:6: warning: Potential leak of memory pointed to by 'old'
- NewSList ();
- ^~~~~~~~~~~
- atobm.c:209:3: note: expanded from macro 'NewSList'
- fprintf (stderr, "%s: unable to allocate char array\n", \
- ^~~~~~~
- atobm.c:259:6: warning: Potential leak of memory pointed to by 'slist'
- NewSList ();
- ^~~~~~~~~~~
- atobm.c:209:3: note: expanded from macro 'NewSList'
- fprintf (stderr, "%s: unable to allocate char array\n", \
- ^~~~~~~
- 3 warnings generated.
-
- Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
- commit a59538d5d57bd2f8b2101e398a97fe8466b8eef7
- Author: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
- Date: Wed Jan 1 22:43:26 2014 -0800
- Silence -Wbad-function-cast
-
- Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
- commit e7086abb4576a777a4b0aff8553047077cdd08ce
- Author: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
- Date: Wed Jan 1 22:29:45 2014 -0800
- Avoid shadow declarations
-
- Bitmap.c:906:17: warning: declaration shadows a local variable [-Wshadow]
- unsigned char *image_data;
- ^
- Bitmap.c:799:11: note: previous declaration is here
- char *image_data, *buffer_data;
- ^
- Bitmap.c:907:8: warning: declaration shadows a local variable [-Wshadow]
- char *buffer_data;
- ^
- Bitmap.c:799:24: note: previous declaration is here
- char *image_data, *buffer_data;
- ^
-
- Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
- commit 1e236565459d10c7ad85ebed285d2acfc4b15b69
- Author: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
- Date: Wed Jan 1 22:27:36 2014 -0800
- assert to avoid a NULL dereference
-
- Bitmap.c:1246:8: warning: Dereference of null pointer
- **str = '\0';
- ~~~~~~^~~~~~
- 1 warning generated.
-
- Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
- commit 15d326027827c168511f923e72c64e2131515e19
- Author: Alan Coopersmith <alan.coopersmith@oracle.com>
- Date: Mon Nov 4 23:14:22 2013 -0800
- Print which option was in error along with usage message
-
- Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
- Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
- commit 64bc2b97d408d6fea16716e37f7b5ff1661d57fd
- Author: Gaetan Nadon <memsize@videotron.ca>
- Date: Fri Oct 25 21:51:37 2013 -0400
- config: replace deprecated use of AC_OUTPUT with AC_CONFIG_FILES
-
- Fix Automake warning: AC_OUTPUT should be used without arguments.
- www.gnu.org/software/autoconf/manual/autoconf.html#Configuration-Files
-
- Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
- commit a78fc882fac9a3334a77744be4c617b51997a5bb
- Author: Eric S. Raymond <esr@thyrsus.com>
- Date: Thu Jun 6 14:24:08 2013 -0400
- Use table markup in preference to various low-level constructions.
- commit 10584a7e5f476c5adb5ec6de9f0b519380abd6df
- Author: Alan Coopersmith <alan.coopersmith@oracle.com>
- Date: Fri May 17 21:12:44 2013 -0700
- bitmap 1.0.7
-
- Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
- commit d028190d036f25472dba587863322a8fe03dda95
- Author: Alan Coopersmith <alan.coopersmith@oracle.com>
- Date: Sun Apr 21 15:02:52 2013 -0700
- Mark usage() functions as noreturn, as suggested by gcc
-
- Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
- commit f36566239cc9119882a36273c3eefb90962d6ee5
- Author: Alan Coopersmith <alan.coopersmith@oracle.com>
- Date: Sun Apr 21 14:52:01 2013 -0700
- Simplify & unify error path between mktemp & mkstemp versions
-
- This also now catches errors when fopen() or fdopen() fail, before
- we try to fwrite() to a null FILE pointer.
-
- Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
- commit 249695649bb25f500d1525f655ca317428ea6044
- Author: Alan Coopersmith <alan.coopersmith@oracle.com>
- Date: Sun Apr 21 14:46:24 2013 -0700
- Fix genererate typo in bmtoa error messages
-
- Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
- commit 7b5ba88d06ca88e11a8127d12f3d7685a473684e
- Author: Alan Coopersmith <alan.coopersmith@oracle.com>
- Date: Sun Jan 20 23:16:46 2013 -0800
- Combine usage messages into a single string
-
- Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
- commit 0d42abaefc427f7c354f4cff3d098775df5c9cb4
- Author: Bjarni Ingi Gislason <bjarniig@rhi.hi.is>
- Date: Sat Sep 22 19:46:01 2012 -0400
- bitmap.man: Fix some typos.
-
- Remove stray backslash.
- (Added sometime between X11R4 and X11R5; 21+ years old.)
-
- Use two spaces between sentences, not one or two or three.
-
- Signed-off-by: Bjarni Ingi Gislason <bjarniig@rhi.hi.is>
- Signed-off-by: James Cloos <cloos@jhcloos.com>
- commit 53d99608451ade88d59d8baae6fc543d6922fb0a
- Author: Alan Coopersmith <alan.coopersmith@oracle.com>
- Date: Tue May 29 23:22:35 2012 -0700
- Fix pixmap leak in error paths of BWGetUnzoomedPixmap
-
- Found by Parfait 0.5.0.1 bug checking tool:
- Leaked X Resource pix
- at line 393 of Bitmap.c in function 'BWGetUnzoomedPixmap'.
- pix initialized at line 388 with XCreatePixmap(...).
- at line 414 of Bitmap.c in function 'BWGetUnzoomedPixmap'.
- pix initialized at line 409 with XCreatePixmap(...).
-
- Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
- commit a7909448b89f42ad0bb4834e347e6d3ecb20d7da
- Author: Alan Coopersmith <alan.coopersmith@oracle.com>
- Date: Thu Mar 8 21:40:10 2012 -0800
- bitmap 1.0.6
-
- Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
- commit 67ab447959b62454f4e0273177baa19711babb96
- Author: Alan Coopersmith <alan.coopersmith@oracle.com>
- Date: Tue Dec 20 21:47:56 2011 -0800
- Use lrint() from math library if available
-
- Moves -lm from being hardcoded in Makefile.am to being added via
- AC_SEARCH_LIBS in configure.ac setting it in $(MATH_LIBS)
-
- Using lrint() [returns long int] instead of rint() [returns double]
- clears a bunch of gcc warnings of the form:
- "cast from function call of type ‘double’ to non-matching type ‘short int’"
-
- Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
- commit 1c2b70d13c42f5461a2d7c3cae7adf8d9b2e3cea
- Author: Alan Coopersmith <alan.coopersmith@oracle.com>
- Date: Fri Oct 14 22:48:31 2011 -0700
- Constify strings in atobm
-
- Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
- commit 3fc1a649f1e81c4d93c6e00119267208877a8f02
- Author: Alan Coopersmith <alan.coopersmith@oracle.com>
- Date: Fri Oct 14 22:38:44 2011 -0700
- Constify strings in bmtoa
-
- Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
- commit a8ee8e937e8d939522f18fa5723afea084221467
- Author: Alan Coopersmith <alan.coopersmith@oracle.com>
- Date: Fri Oct 14 21:25:06 2011 -0700
- 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 64eacd3665306283d126d0df7cf63a071e576c38
- Author: Alan Coopersmith <alan.coopersmith@oracle.com>
- Date: Fri Oct 14 21:22:26 2011 -0700
- Constify filename string handling
-
- Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
- commit ca7bf97b6e83b25e7142b321e5f2325b1e47c2d0
- Author: Alan Coopersmith <alan.coopersmith@oracle.com>
- Date: Fri Oct 14 21:03:48 2011 -0700
- Add const to char * in BWRequest typedef
-
- Fixes many gcc --Wwrite-string warnings of the form:
-
- Bitmap.c: In function ‘BWTPaste’:
- Bitmap.c:1913:7: warning: passing argument 2 of ‘BWEngageRequest’ discards qualifiers from pointer target type
- Bitmap.h:190:16: note: expected ‘BWRequest’ but argument is of type ‘const char *’
-
- Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
- commit 6e997556a17a1b4a9d6773602af770b9e9f3751e
- Author: Gaetan Nadon <memsize@videotron.ca>
- Date: Fri Mar 4 20:44:37 2011 -0500
- man: use correct section number when referring to X
-
- Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
- commit 98e43d4e49c599fc633b4bb9c58d99abbdd0068a
- Author: Alan Coopersmith <alan.coopersmith@oracle.com>
- Date: Thu Feb 17 23:38:40 2011 -0800
- atobm only depends on xproto, not x11
-
- It only includes <X11/Xos.h>, no headers or functions from libX11.
- Due to a typo in Makefile.am (also fixed) it wasn't actually linking
- with libX11 even though it had x11 in its PKG_CHECK_MODULES list.
-
- Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
- commit b3f10a08922f568b7cbc791354cf0d4267cd88c1
- Author: Alan Coopersmith <alan.coopersmith@oracle.com>
- Date: Sat Jan 15 10:19:20 2011 -0800
- Use autoconf standard HAVE_MKSTEMP define instead of old imake HAS_MKSTEMP
-
- Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
- commit ff81a4e4e894915bb6b8aece8314ca1a854140a4
- Author: Alan Coopersmith <alan.coopersmith@oracle.com>
- Date: Sat Jan 15 10:16:17 2011 -0800
- 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 2afe9a69417cbd25fc5379faf22eba1a8e94b348
- Author: Alan Coopersmith <alan.coopersmith@oracle.com>
- Date: Fri Jan 14 14:05:14 2011 -0800
- Use fputs instead of fprintf with no format arg to print usage message.
-
- Clear gcc warning of:
- BitEdit.c:986: warning: format not a string literal and no format arguments
-
- Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
- Reviewed-by: Dirk Wallenstein <halsmit@t-online.de>
- commit fcfa5f0dee6549994d8c4640fb61612d33369e74
- Author: Alan Coopersmith <alan.coopersmith@oracle.com>
- Date: Fri Jan 14 14:00:30 2011 -0800
- Call snprintf() directly instead of XmuSnprintf()
-
- All platforms still supported by X.Org have long had snprintf()
-
- Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
- commit e3ecaf24ea4187516a1a0679783278e34e56499f
- Author: Trevor Woerner <twoerner@gmail.com>
- Date: Sat Jan 8 20:15:50 2011 -0500
- Remove unused, leaky scanline.
-
- The pointer, scanline, doesn't appear to be used anymore, and is
- leaking memory.
-
- Signed-off-by: Trevor Woerner <twoerner@gmail.com>
- Reviewed-by: Adam Jackson <ajax@redhat.com>
- Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
- commit f705edec1b9aa80d3b93f587048ad33887aca5b6
- Author: Gaetan Nadon <memsize@videotron.ca>
- Date: Wed Jan 12 16:28:01 2011 -0500
- config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
-
- This silences an Autoconf warning
- commit 0a2eef9a48863dde8b3c7f60f5eb3b9a667fa505
- Author: Gaetan Nadon <memsize@videotron.ca>
- Date: Wed Jan 12 15:29:49 2011 -0500
- config: replace deprecated AC_HELP_STRING with AS_HELP_STRING
-
- This silences an Automake warning.
-
- Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
- commit 38f9d56ce050baabc72254240df875a3450f798e
- Author: Gaetan Nadon <memsize@videotron.ca>
- Date: Wed Jan 12 13:10:21 2011 -0500
- config: remove AC_PROG_CC as it overrides AC_PROG_C_C99
-
- XORG_STRICT_OPTION from XORG_DEFAULT_OPTIONS calls
- AC_PROG_C_C99. This sets gcc with -std=gnu99.
- If AC_PROG_CC macro is called afterwards, it resets CC to gcc.
-
- Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
- commit 2fee85a59998a805ca8161606c5c32953f02f659
- Author: Gaetan Nadon <memsize@videotron.ca>
- Date: Wed Jan 12 11:54:40 2011 -0500
- config: use AC_PROG_INSTALL now supplied by XORG_DEFAULT_OPTIONS
-
- It depends on util-macros 1.8 or later
- The existing statement can now be removed from the configuration file.
-
- Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
- commit 99be515efe95cb3eb4bcb29b2bc194f416b31758
- Author: Alan Coopersmith <alan.coopersmith@oracle.com>
- Date: Thu Oct 7 20:04:23 2010 -0700
- bitmap 1.0.5
-
- Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
- commit de28fe485f07bb9f5a326fb9fed87a3aa8a8f1b5
- Author: Gaetan Nadon <memsize@videotron.ca>
- Date: Tue Jul 20 18:45:18 2010 -0400
- 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>
- commit 824fa229593040c2d8a795dadc359aa313fd182d
- Author: Gaetan Nadon <memsize@videotron.ca>
- Date: Mon Aug 9 20:26:12 2010 -0400
- Remove unused file bitmap.icon
-
- The file originally came with the the rest of the source in 2003
- Two years later it was added to EXTRA_DIST without explanantion
- It has never been installed and is not present in Debian distro
- It's not used during configuration and not used by the build.
-
- Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
- Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
- commit 3216eaa1b5bbb7ce5038caf9fbf22ae248eba1b6
- Author: Gaetan Nadon <memsize@videotron.ca>
- Date: Mon Aug 9 17:37:04 2010 -0400
- man: remove whitespace as per git diff --check
-
- Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
- Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
- commit 18cf79ac73c59829603cd56a04ab3b79a4a6a3c3
- Author: Gaetan Nadon <memsize@videotron.ca>
- Date: Mon Aug 9 17:24:30 2010 -0400
- make: reshuffle lines and shorten the makefile
-
- The previous patch did some aesthetic damage to it.
-
- Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
- Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
- commit 7c55725e4eaf2296d4ea047a155d0ec7bc4976fd
- Author: Gaetan Nadon <memsize@videotron.ca>
- Date: Mon Aug 9 16:30:19 2010 -0400
- config: simplify building of shadow man pages
-
- Store the shadow files in git as any other man page.
- Move man pages to man dir and use the common makefile
-
- Local fix for bug 5628 in commit
- d8f719a352cd4d4ace60566b73a077175940a351
- is not required as the problem has been fixed in
- util-macros d9062e4077ebfd0985baf8418f3d0f111b9ddbba
-
- Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
- Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
- commit 85b1eda6ac104850add5a98fc4caca7f59d7cb19
- Author: Gaetan Nadon <memsize@videotron.ca>
- Date: Sun Aug 8 10:15:51 2010 -0400
- config: merge BITMAP dependencies into one statement
-
- PKG_CHECK_MODULES will merge -I and lib directives.
- It will also AC_SUBST BITMAP_CFLAGS and BITMAP_LIBS
-
- Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
- commit d4de9e32fd109562a31609b338843b396c848995
- Author: Alan Coopersmith <alan.coopersmith@oracle.com>
- Date: Thu Jul 1 16:05:01 2010 -0700
- bitmap calls Xmu functions directly so should include in PKG_CHECK_MODULES
-
- Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
- commit 5eb2fe08c0210ae110ae75ac52ed6a8db298c178
- Author: Alan Coopersmith <alan.coopersmith@oracle.com>
- Date: Wed Jun 30 23:25:03 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 8aa8f77d4570a0a5030ec825bc8785ac03079267
- Author: Gaetan Nadon <memsize@videotron.ca>
- Date: Sat Dec 19 20:48:47 2009 -0500
- configure.ac: use backticks rather than $() for cmd subs
-
- Use "$PKG_CONFIG" rather than hard coded "pkg-config"
-
- Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
- commit 5fae54a562f9dcb4b9c5e5a21c604e9a2ef924b7
- 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 7077c21c0803ac7ff56edba75bfa4e18949e0ae7
- 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 dbbb35c25e8e0159b09a6756a143ac43720fe41a
- 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 b14f17671753e5c9c393fd1e972da93d8d94a366
- Author: Gaetan Nadon <memsize@videotron.ca>
- Date: Mon Oct 26 22:08:37 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 8218cc8ac7e6763c068ad0cbae81c07de899ca62
- 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 05b524c70ec06d18ca1d305c98bcd480e2482eb2
- Author: Gaetan Nadon <memsize@videotron.ca>
- Date: Sun Sep 27 16:09:14 2009 -0400
- Makefile.am: do not include autogen.sh in distribution #24183
-
- This is a private build script that should not be distributed
- commit 7c4c903a1612528e09858554c6fdaab05d2ba095
- Author: Alan Coopersmith <alan.coopersmith@sun.com>
- Date: Tue Sep 22 19:49:57 2009 -0700
- bitmap 1.0.4
-
- Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
- commit 4abbf05633f16cae587f9f24881d18c22e43800d
- Author: Alan Coopersmith <alan.coopersmith@sun.com>
- Date: Tue Sep 22 19:39:08 2009 -0700
- Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS
-
- Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
- commit fb4778c1a6a114df03f3cefc87e747fab983355f
- Author: Alan Coopersmith <alan.coopersmith@sun.com>
- Date: Tue Sep 22 19:30:35 2009 -0700
- Strip RCS/CVS ids
-
- Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
- commit 948a119b19bf2e1822c63c2e6e86482e36df0cc0
- Author: Alan Coopersmith <alan.coopersmith@sun.com>
- Date: Tue Sep 22 19:25:04 2009 -0700
- Fill in COPYING, README, & AUTHORS
-
- Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
- commit 8337c277db59b5fb8e13428ab65a43725546bcdb
- Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
- Date: Tue Jan 13 14:29:53 2009 -0200
- Rename app-defaults files to match "pattern" used on other applications.
- commit e23fbaa033e064efc7fcfa6ec49901c241736340
- Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
- Date: Mon Jan 12 16:11:00 2009 -0200
- Ansification and compile warning fixes.
-
- This also uses XORG_CHANGELOG and XORG_CWARNFLAGS, and corrects
- make distcheck.
- commit 7527b67979d61609bff5bc8c54d2b11874a7bbfa
- Author: James Cloos <cloos@jhcloos.com>
- Date: Wed Aug 20 10:32:48 2008 -0400
- xaw8 is gone, use xaw7
- commit 3dc6744ae0332efc9c4a621401c1257e4d4c3c6d
- Author: Julien Cristau <jcristau@debian.org>
- Date: Fri May 16 14:22:16 2008 +0200
- $(builddir) is the current directory
-
- Apparently automake doesn't always export the builddir variable.
- This fixes my previous commit.
- commit 3154399310460759466d66cb17e723548e205776
- Author: Julien Cristau <jcristau@debian.org>
- Date: Sun Apr 20 19:25:40 2008 +0200
- Fix build with builddir != srcdir
- commit 5d6bff83b62c3c9626503b36d2e5190a602bf43b
- Author: Julien Cristau <jcristau@debian.org>
- Date: Sun Apr 20 19:22:40 2008 +0200
- Fix typo in bitmap.man
- commit 8003d22d2c12fe47d1fc06216c60dc813ed39f98
- Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
- Date: Thu Mar 27 19:22:22 2008 -0700
- Build fix for case-insensitive file systems
- commit 088006f9bb62db2523117dac568d028bd96db488
- Author: James Cloos <cloos@jhcloos.com>
- Date: Thu Dec 6 15:51:03 2007 -0500
- Add missing PHONY line for automatic ChangeLog generation
- commit d79bd0857961669aff4c155f4c3205af4c89b18e
- Author: Alan Coopersmith <alan.coopersmith@sun.com>
- Date: Fri Aug 10 15:47:13 2007 -0700
- Add AM_PROG_CC_C_O to configure.ac to make automake-1.10 happier
-
- Makefile.am:53: compiling `atobm.c' with per-target flags requires `AM_PROG_CC_C_O' in `configure.ac'
- commit 0fa2f5aa4b0e62ceb4685123182bf018c27e293a
- Author: Alan Coopersmith <alan.coopersmith@sun.com>
- Date: Tue Jan 23 13:42:25 2007 -0800
- Version bump: 1.0.3
- commit 4d02bf25b4e64d0a3fb2270491d3dbe4fc18effc
- Author: Alan Coopersmith <alan.coopersmith@sun.com>
- Date: Tue Jan 23 13:42:01 2007 -0800
- Replace static changelog with dist-hook to generate from git log
- commit 2c5045d72ee4120c52cfc7e008237a438a1c2d30
- Author: Alan Coopersmith <alan.coopersmith@sun.com>
- Date: Mon Jan 22 19:45:08 2007 -0800
- Remove on/off form of options from bitmap.man man page
-
- Turns out the previous formatting error that hid these was an attempt
- to comment them out since they aren't implemented, so we'll just delete them.
- commit 5c1c01c8222eac13e9a65a36d3b953ae6f75ae6b
- Author: Alan Coopersmith <alan.coopersmith@sun.com>
- Date: Tue Jan 2 14:37:42 2007 -0800
- renamed: .cvsignore -> .gitignore
- commit ad55b1108f61ae0e3643bdffe430c71973d3d7ae
- Author: Eric S. Raymond <esr@thyrsus.com>
- Date: Tue Jan 2 14:34:17 2007 -0800
- Bug 9511: Garbled macro invocation in bitmap.1x manual page.
-
- <https://bugs.freedesktop.org/show_bug.cgi?id=9511>
- commit 3537d2121dcc68e3ecb93eaa2b341d759b0fbc88
- Author: Adam Jackson <ajax@nwnk.net>
- Date: Fri May 12 16:19:54 2006 +0000
- Bump to 1.0.2
- commit d8f719a352cd4d4ace60566b73a077175940a351
- Author: Kevin E Martin <kem@kem.org>
- Date: Tue May 9 21:55:08 2006 +0000
- Bug #5628 <https://bugs.freedesktop.org/show_bug.cgi?id=5628> Shadow pages
- not created correctly when MANDIR & MANSUFFIX don't match.
- commit 545a878fa367a32059b33a21b9253a69ed95ccf6
- Author: Kevin E Martin <kem@kem.org>
- Date: Wed Dec 21 02:29:42 2005 +0000
- Update package version for X11R7 release.
- commit 038d4cc67674fcecd638489625cedfdc57f4bcea
- Author: Adam Jackson <ajax@nwnk.net>
- Date: Mon Dec 19 16:22:39 2005 +0000
- Stub COPYING files
- commit ab8a9596b7c9729914b1444208521e939f35535f
- Author: Kevin E Martin <kem@kem.org>
- Date: Thu Dec 15 00:24:01 2005 +0000
- Update package version number for final X11R7 release candidate.
- commit d1ae6091d49c8af843e6895cb438225078a0f797
- Author: Kevin E Martin <kem@kem.org>
- Date: Wed Dec 7 16:17:58 2005 +0000
- Change to use the app-defaults default dir configured in libXt.
- commit 07cfe6f6de483aefcc18836fd3f03bdc5d6cd823
- Author: Kevin E Martin <kem@kem.org>
- Date: Tue Dec 6 22:48:16 2005 +0000
- Change *man_SOURCES ==> *man_PRE to fix autotools warnings.
- commit f0e1e5f67882635777fa9a25496265a661c40a02
- Author: Kevin E Martin <kem@kem.org>
- Date: Sat Dec 3 05:49:15 2005 +0000
- Update package version number for X11R7 RC3 release.
- commit d1dac2d6d7470212e3b2366702923a03950b9834
- Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
- Date: Mon Nov 28 22:01:36 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 c361bb94796e409437ac71714c9a3746da0136dc
- Author: Eric Anholt <anholt@freebsd.org>
- Date: Mon Nov 21 10:34:55 2005 +0000
- Another pass at .cvsignores for apps.
- commit eb1544cfc467a48074e11118a85fec3b4980460d
- Author: Eric Anholt <anholt@freebsd.org>
- Date: Sun Nov 20 22:08:47 2005 +0000
- Add/improve .cvsignore files for apps.
- commit 0909ff9192c30720ce6a82043d10b4f7ce6fab83
- Author: Kevin E Martin <kem@kem.org>
- Date: Wed Oct 19 02:47:47 2005 +0000
- Update package version number for RC1 release.
- commit 905ded4a3825727326ccacd48a76ca221ff59a81
- Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
- Date: Tue Oct 18 00:32:54 2005 +0000
- Change default install dir for app-default files from
- $(sysconfdir)/X11/app-defaults to $(libdir)/X11/app-defaults to match
- the monolith & allow localization
- commit fde7c43f092eba195a4a93391d9518f321ec9e40
- Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
- Date: Mon Oct 17 23:56:19 2005 +0000
- Use @APP_MAN_SUFFIX@ instead of $(APP_MAN_SUFFIX) in macro substitutions to
- work better with BSD make
- commit 0dbcf2d9436b3860ed33563e0f2daf0b2bc78dd9
- Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
- Date: Mon Oct 17 21:13:15 2005 +0000
- Rename .shadows.DONE to shadows.DONE to avoid some make's thinking it's a
- suffix rule (reported by Matthieu Herrb)
- commit 00b3817d8c24dd400ff870bb02bc1c6ba2db1f05
- Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
- Date: Fri Oct 14 01:12:07 2005 +0000
- Add shadow man pages for atobm and bmtoa.
- commit ba5f0c8d40af187191bcda8c8e72b3e554f3c50a
- Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
- Date: Fri Oct 14 00:25:41 2005 +0000
- Use sed to fill in variables in man page
- commit 358ae071207882e6202bfaa4c0dd341f7239c307
- Author: Kevin E Martin <kem@kem.org>
- Date: Tue Oct 4 23:15:11 2005 +0000
- Add bitmap.icon to EXTRA_DIST
- commit c3f282e1aa6176896089ea79be84b7250888a65c
- Author: Kristian Høgsberg <krh@redhat.com>
- Date: Thu Sep 29 18:22:01 2005 +0000
- Add Bitmap-nocase app default file to APPDEFAULTFILES.
- commit 53c51b2407108d9bcdca53c4d3757449465b3417
- Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
- Date: Mon Aug 1 20:25:27 2005 +0000
- Install man pages to section 1 instead of section m (Patch from Donnie
- Berkholz)
- commit 5135ddd5eb135237ea780d7e8c4a4074557ac23c
- Author: Kevin E Martin <kem@kem.org>
- Date: Fri Jul 29 21:22:28 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 6df7e0644c9f0ce2f306331910d8adf903610c1a
- Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
- Date: Tue Jul 26 15:44:01 2005 +0000
- Replace more GNU make-ism's with more portable macros
- commit 55c2178d52dd695a31676bb7b48c1d19b3c77152
- Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
- Date: Sat Jul 16 22:07:12 2005 +0000
- Add #ifdef HAVE_CONFIG_H/#include "config.h" to files that need it to get
- HAS_MKSTEMP defined in modular builds.
- commit 40fc1a66cc817dad40851d61011e0a90fa48fe46
- Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
- Date: Sat Jul 16 22:00:11 2005 +0000
- Convert more app-defaults rules to work with non-GNU make
- commit 1bef5390ae91148e61c613235e7db3729d7e8781
- Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
- Date: Sat Jul 16 21:59:14 2005 +0000
- Define HAS_MKSTEMP if mkstemp() is present (needed for improved protection
- against tempfile race conditions in many places)
- commit cc48a5df41c59071eab0f58818366e10cb1ff4ac
- Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
- Date: Fri Jul 15 16:52:07 2005 +0000
- Add dependency on xbitmaps
- commit c6129c090ad25cd2f8b191f503ac6e8cd452a31d
- Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
- Date: Wed Jul 6 15:47:38 2005 +0000
- Build system for bitmap
- commit 9b6257bdb5461131e42a3d81330c76d7a2bc670a
- Author: Egbert Eich <eich@suse.de>
- Date: Fri Apr 23 19:54:31 2004 +0000
- Merging XORG-CURRENT into trunk
- commit 5285b60deac481a96007a45bad4da61e8ead2552
- Author: Egbert Eich <eich@suse.de>
- Date: Sun Mar 14 08:34:49 2004 +0000
- Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004
- commit 9f0d53b85896e1c67f770b45edc0dfa5373110c0
- Author: Egbert Eich <eich@suse.de>
- Date: Wed Mar 3 12:12:50 2004 +0000
- Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004
- commit 632e06aaad484b25e1c1931a8eb579679372d416
- Author: Egbert Eich <eich@suse.de>
- Date: Thu Feb 26 13:36:15 2004 +0000
- readding XFree86's cvs IDs
- commit c83dc161b34afe817ed47abacbf5bad132c73888
- Author: Egbert Eich <eich@suse.de>
- Date: Thu Feb 26 09:23:53 2004 +0000
- Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004
- commit a9a10f80d2b5d444c38eb54e99a6bccb07e0cbd6
- Author: Kaleb Keithley <kaleb@freedesktop.org>
- Date: Tue Nov 25 19:29:01 2003 +0000
- XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks
- commit 5b64274abaf585d108e65cb1dae497e74cad856e
- Author: Kaleb Keithley <kaleb@freedesktop.org>
- Date: Fri Nov 14 16:48:57 2003 +0000
- XFree86 4.3.0.1
- commit 0bd1f9d8ccaf46397745779f5964f3b843186896
- Author: Kaleb Keithley <kaleb@freedesktop.org>
- Date: Fri Nov 14 16:48:57 2003 +0000
- Initial revision
- commit 9711ac0a780f686806c135045d2db9b99fbe923f
- Author: Kaleb Keithley <kaleb@freedesktop.org>
- Date: Fri Nov 14 15:54:52 2003 +0000
- R6.6 is the Xorg base-line
|