1commit 363cea2a5cd9884db9cdeb614c8fbd9aa216c79c
2Author: Alan Coopersmith <alan.coopersmith@oracle.com>
3Date:   Sun May 18 15:14:39 2025 -0700
4
5    smproxy 1.0.7
6    
7    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
8
9commit 24c8912e22a8b01454ddf06bb5421da7ed772cd2
10Author: Alan Coopersmith <alan.coopersmith@oracle.com>
11Date:   Sun Apr 27 10:31:18 2025 -0700
12
13    man pages: fix warnings from `mandoc -T lint` and `groff -rCHECKSTYLE=10`
14    
15    mandoc: smproxy.1:25:15: WARNING: cannot parse date, using it verbatim: TH smproxy 1.0.7
16    mandoc: smproxy.1:45:2: WARNING: skipping paragraph macro: br before sp
17    mandoc: smproxy.1:49:2: WARNING: skipping paragraph macro: br before sp
18    mandoc: smproxy.1:55:2: WARNING: skipping paragraph macro: br before sp
19    mandoc: smproxy.1:58:2: WARNING: skipping paragraph macro: br before sp
20    mandoc: smproxy.1:42:2: WARNING: skipping paragraph macro: PP after SH
21    an.tmac:smproxy.1:75: style: blank line in input
22    
23    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
24    Part-of: <https://gitlab.freedesktop.org/xorg/app/smproxy/-/merge_requests/6>
25
26commit 33e87568a4939126f22b04cf11d3fbd2fa6fa21a
27Author: Alan Coopersmith <alan.coopersmith@oracle.com>
28Date:   Sat Mar 29 17:07:49 2025 -0700
29
30    Improve man page formatting
31    
32    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
33    Part-of: <https://gitlab.freedesktop.org/xorg/app/smproxy/-/merge_requests/5>
34
35commit f7dadf82fc6d3465aab58eeec3b703a7c666200a
36Author: Alan Coopersmith <alan.coopersmith@oracle.com>
37Date:   Sat Mar 22 16:32:10 2025 -0700
38
39    Accept --help & --version as aliases to -help & -version
40    
41    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
42    Part-of: <https://gitlab.freedesktop.org/xorg/app/smproxy/-/merge_requests/5>
43
44commit 16a6c58d0cde64a32f3c17a64649799f629ac6f4
45Author: Alan Coopersmith <alan.coopersmith@oracle.com>
46Date:   Sun Mar 2 11:42:44 2025 -0800
47
48    meson: Add option to build with meson
49    
50    Also updates the gitlab CI config to test both build types
51    and compare the generated output/installed files.
52    
53    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
54    Part-of: <https://gitlab.freedesktop.org/xorg/app/smproxy/-/merge_requests/4>
55
56commit d5652ea6df2007cff03f5d8edb6fb1b9a0599ba9
57Author: Alan Coopersmith <alan.coopersmith@oracle.com>
58Date:   Thu Jul 28 17:30:21 2022 -0700
59
60    gitlab CI: stop requiring Signed-off-by in commits
61    
62    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
63
64commit 36db00ecdce06709d7590f338eda7e2e7d96839a
65Author: Alan Coopersmith <alan.coopersmith@oracle.com>
66Date:   Sat Oct 15 09:40:43 2022 -0700
67
68    smproxy 1.0.7
69    
70    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
71
72commit f92f80fbb8926d980a6a46c488f7f60a35c9bf9c
73Author: Alan Coopersmith <alan.coopersmith@oracle.com>
74Date:   Sun Aug 14 10:41:39 2022 -0700
75
76    CheckFullyQuantifiedName: improve gethostname() handling
77    
78    Handle errors and use HOST_NAME_MAX for the buffer size if it is
79    defined by <limits.h>
80    
81    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
82
83commit 5bf2e626a25f0ac1503effbf89c01573392ea658
84Author: Alan Coopersmith <alan.coopersmith@oracle.com>
85Date:   Sun Aug 14 10:15:06 2022 -0700
86
87    CheckFullyQuantifiedName: return unqualified name if alloc fails
88    
89    Makes a failure to allocate by asprintf() match other failure
90    cases and return the unqualified name instead of NULL.
91    
92    Fixes gcc warning:
93    smproxy.c: In function ‘FinishSaveYourself’:
94    smproxy.c:269:31: warning: ‘%s’ directive argument is null [-Wformat-truncation=]
95                       "rstart-rsh/%s", fullyQuantifiedName);
96                                   ^~
97    
98    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
99
100commit 88262a274bdd850e14cc27dd3d421182bbc157d5
101Author: Alan Coopersmith <alan.coopersmith@oracle.com>
102Date:   Sun Aug 14 10:10:23 2022 -0700
103
104    Use calloc instead of malloc to allocate arrays
105    
106    Most important in ReadProxyFileEntry, if we goto give_up before we
107    finish initializing the array, makes sure we don't try to free
108    uninitialized pointers during cleanup pass.
109    
110    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
111
112commit 0c55e2eabe6755b88de9835da8185a52b7712847
113Author: Alan Coopersmith <alan.coopersmith@oracle.com>
114Date:   Sun Aug 14 10:04:12 2022 -0700
115
116    Remove or correct obsolete casts
117    
118    Bring code up to C89 levels
119    
120    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
121
122commit 5fdd590f9b9a9f5aa3a60e44fe8f010c43f8c54e
123Author: Alan Coopersmith <alan.coopersmith@oracle.com>
124Date:   Sun Aug 14 09:49:22 2022 -0700
125
126    NullIceErrorHandler: make arg names match between definition & declaration
127    
128    Solves cppcheck warning:
129    [smproxy.c:73] -> [smproxy.c:448]: (style, inconclusive)
130      Function 'NullIceErrorHandler' argument 3 names different:
131        declaration 'offendingMinorOpCode' definition 'offendingMinorOpcode'.
132    
133    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
134
135commit f4800d0cfbadf9fc50dddbe2b1eb8d62548d7fe5
136Author: Alan Coopersmith <alan.coopersmith@oracle.com>
137Date:   Sun Aug 14 09:47:41 2022 -0700
138
139    Reduce variable scopes as suggested by cppcheck
140    
141    [save.c:203]: (style) The scope of the variable 'i' can be reduced.
142    [save.c:457]: (style) The scope of the variable 'i' can be reduced.
143    [smproxy.c:101]: (style) The scope of the variable 'i' can be reduced.
144    [smproxy.c:1114]: (style) The scope of the variable 'client_window' can be reduced.
145    
146    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
147
148commit 8f72bea9644450a3492349236a2d57610c7c78bc
149Author: Alan Coopersmith <alan.coopersmith@oracle.com>
150Date:   Sat Dec 4 10:05:43 2021 -0800
151
152    Build xz tarballs instead of bzip2
153    
154    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
155
156commit ef7d5344e9d96f4a6632f5a6f353ee809bef1001
157Author: Alan Coopersmith <alan.coopersmith@oracle.com>
158Date:   Sat Dec 4 10:05:39 2021 -0800
159
160    gitlab CI: add a basic build test
161    
162    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
163
164commit 2c60568de14fb3953b3cfe42ee32352298572fd8
165Author: Alan Coopersmith <alan.coopersmith@oracle.com>
166Date:   Wed Nov 21 16:57:31 2018 -0800
167
168    Update configure.ac bug URL for gitlab migration
169    
170    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
171
172commit b9c0047416eff09519bfe6a8088817c270f91d0a
173Author: Alan Coopersmith <alan.coopersmith@oracle.com>
174Date:   Fri Nov 16 20:49:33 2018 -0800
175
176    Update README for gitlab migration
177    
178    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
179
180commit 94d925a449d5ea22c14ed0261389787a76c026ef
181Author: Mihail Konev <k.mvc@ya.ru>
182Date:   Thu Jan 26 14:00:20 2017 +1000
183
184    autogen: add default patch prefix
185    
186    Signed-off-by: Mihail Konev <k.mvc@ya.ru>
187
188commit d914bd6488ba53f648df442af9e182236cf63983
189Author: Emil Velikov <emil.l.velikov@gmail.com>
190Date:   Mon Mar 9 12:00:52 2015 +0000
191
192    autogen.sh: use quoted string variables
193    
194    Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent
195    fall-outs, when they contain space.
196    
197    Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
198    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
199    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
200
201commit eb3eabf9d910270026a2705afca1a8ceb385ea3f
202Author: Peter Hutterer <peter.hutterer@who-t.net>
203Date:   Tue Jan 24 10:32:07 2017 +1000
204
205    autogen.sh: use exec instead of waiting for configure to finish
206    
207    Syncs the invocation of configure with the one from the server.
208    
209    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
210    Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
211
212commit 31b7fe5cc4e3f39f7265800a78a397935163990b
213Author: Alan Coopersmith <alan.coopersmith@oracle.com>
214Date:   Thu Apr 16 22:32:22 2015 -0700
215
216    smproxy 1.0.6
217    
218    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
219
220commit 83e5545ee56d73a0b1b37683397b303371c9256a
221Author: Alan Coopersmith <alan.coopersmith@oracle.com>
222Date:   Wed Nov 5 17:30:50 2014 -0800
223
224    Remove unneeded checks for X_NOT_POSIX
225    
226    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
227
228commit 0c22454c28f44db23370f70719f6d84d92be7f22
229Author: Alan Coopersmith <alan.coopersmith@oracle.com>
230Date:   Sat May 31 21:39:32 2014 -0700
231
232    autogen.sh: Honor NOCONFIGURE=1
233    
234    See http://people.gnome.org/~walters/docs/build-api.txt
235    
236    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
237
238commit 71de8086f5c28016cd8aa2bdf7c473efd71535cb
239Author: Alan Coopersmith <alan.coopersmith@oracle.com>
240Date:   Sat May 31 21:38:41 2014 -0700
241
242    configure: Drop AM_MAINTAINER_MODE
243    
244    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
245
246commit cd8b8001b6b9e11ba27a300cd03d70cab0271bf0
247Author: Alan Coopersmith <alan.coopersmith@oracle.com>
248Date:   Sat Nov 23 23:26:31 2013 -0800
249
250    Add -version option to print program version
251    
252    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
253
254commit 5eb28e5bbb97a1c1faa0d77c85c8d566e3e4fcdf
255Author: Alan Coopersmith <alan.coopersmith@oracle.com>
256Date:   Sat Nov 23 23:23:26 2013 -0800
257
258    Print which option was in error along with usage message
259    
260    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
261
262commit 53a484fbd297a03bfbe7d656818c94a4c4b071fe
263Author: Alan Coopersmith <alan.coopersmith@oracle.com>
264Date:   Sat Nov 23 23:08:06 2013 -0800
265
266    Simplify & unify variants of unique_filename
267    
268    Variants depend on whether system has mkstemp, mktemp or tempnam
269    Also fixes some const char warnings in this code.
270    
271    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
272
273commit d00b208df92061f0049bfcd993ab1f92dc8aa2cb
274Author: Alan Coopersmith <alan.coopersmith@oracle.com>
275Date:   Sat Nov 23 22:44:06 2013 -0800
276
277    Convert sprintf calls to asprintf or snprintf
278    
279    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
280
281commit d59fe3c0501ec07b725004de86c1a8adac966092
282Author: Alan Coopersmith <alan.coopersmith@oracle.com>
283Date:   Sat Nov 23 22:33:18 2013 -0800
284
285    Add local copy of asprintf()
286    
287    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
288
289commit 747e066281b78909e5c9703f639c0813b14c385f
290Author: Alan Coopersmith <alan.coopersmith@oracle.com>
291Date:   Sat Nov 23 22:06:44 2013 -0800
292
293    config: Add missing AC_CONFIG_SRCDIR
294    
295    Regroup AC statements under the Autoconf initialization section.
296    Regroup AM statements under the Automake initialization section.
297    
298    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
299
300commit 6f90cf3021d5c8755963ab5d88d477774cd5bd43
301Author: Alan Coopersmith <alan.coopersmith@oracle.com>
302Date:   Sat Nov 23 21:56:29 2013 -0800
303
304    Replace #ifdef X_NOT_POSIX with explicit check for mktemp function
305    
306    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
307
308commit ddbc7f6b08643fb852d98810a1149b09e80e68fe
309Author: Alan Coopersmith <alan.coopersmith@oracle.com>
310Date:   Wed Jun 29 20:43:37 2011 -0700
311
312    smproxy 1.0.5
313    
314    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
315
316commit d0e4971c8f533c4c166e8e35bf76ebca00f15bc6
317Author: Jeremy Huddleston <jeremyhu@apple.com>
318Date:   Fri May 6 23:05:44 2011 -0700
319
320    Fix a possible NULL dereference in an error handler
321    
322    save.c:255:10: warning: Array access (via field 'wm_command') results in a null pointer dereference
323                if (entry->wm_command[i])
324                    ^      ~~~~~~~~~~
325    1 warning generated.
326    
327    Found-by: clang static analyzer
328    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
329
330commit ccc165063c128713e5eac52ace050e38ce72de02
331Author: Alan Coopersmith <alan.coopersmith@oracle.com>
332Date:   Fri Jan 28 00:18:47 2011 -0800
333
334    Explicitly depend on libICE since ICE functions are called directly
335    
336    Without this fix, once Bug 33390 removes "Requires: ice" from the sm.pc
337    file, smproxy fails to build with undefined symbol errors for
338    IceSetErrorHandler, IceConnectionNumber, and IceProcessMessages.
339    
340    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
341    Reviewed-by: Julien Cristau <jcristau@debian.org>
342
343commit e2ffb441371eb759c512f8266ae40680518726da
344Author: Gaetan Nadon <memsize@videotron.ca>
345Date:   Wed Jan 19 10:06:55 2011 -0500
346
347    config: move man pages into their own directory
348    
349    Use services provided by XORG_MANPAGE_SECTIONS.
350    Use standard Makefile for man pages.
351    
352    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
353
354commit 3472d917add052f35c1c855a5d488ccdadf22122
355Author: Gaetan Nadon <memsize@videotron.ca>
356Date:   Thu Jan 13 17:15:36 2011 -0500
357
358    man: replace hard coded man page section with substitution strings
359    
360    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
361
362commit 96bd42564675ed547f95ae775a2613aaec5a4182
363Author: Gaetan Nadon <memsize@videotron.ca>
364Date:   Thu Jan 13 11:15:47 2011 -0500
365
366    man: remove trailing spaces and tabs
367    
368    Using s/[ \t]*$//
369    
370    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
371
372commit 3b3ad4674cab8186bd6d2afff21f39112173e0c1
373Author: Gaetan Nadon <memsize@videotron.ca>
374Date:   Wed Jan 12 16:28:02 2011 -0500
375
376    config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
377    
378    This silences an Autoconf warning
379
380commit 91e461969be0b20b279aa40aa5396cf5635af286
381Author: Alan Coopersmith <alan.coopersmith@oracle.com>
382Date:   Thu Oct 21 15:20:45 2010 -0700
383
384    smproxy 1.0.4
385    
386    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
387
388commit 41c20610e433a94633d970100e9aca670395fdb1
389Author: Jesse Adkins <jesserayadkins@gmail.com>
390Date:   Tue Sep 28 13:29:49 2010 -0700
391
392    Purge cvs tags.
393    
394    Signed-off-by: Jesse Adkins <jesserayadkins@gmail.com>
395
396commit f8abda9a850e55fd6370e2d314335d88af8b19be
397Author: Alan Coopersmith <alan.coopersmith@oracle.com>
398Date:   Wed Sep 22 21:08:16 2010 -0700
399
400    Use AC_CHECK_FUNCS / default name for mkstemp
401    
402    No longer need to maintain #ifdef compatibility with the names used in
403    the monolith Imakefiles.
404    
405    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
406
407commit 61aef1760a65184ecd438419f5de545e3b3e36fd
408Author: Alan Coopersmith <alan.coopersmith@oracle.com>
409Date:   Wed Sep 22 21:04:28 2010 -0700
410
411    config: Remove unnecessary calls from configure.ac
412    
413    AC_PROG_CC & AC_PROG_INSTALL are provided by XORG_DEFAULT_OPTIONS now
414    PKG_CONFIG_MODULES handles AC_SUBST of the CFLAGS & LIBS variables
415    
416    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
417
418commit a728da4185b16978d278afd2b1d0dd7e95b815f9
419Author: Alan Coopersmith <alan.coopersmith@oracle.com>
420Date:   Wed Sep 22 21:03:37 2010 -0700
421
422    config: upgrade to util-macros 1.8 for additional man page support
423    
424    Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS
425    The value of MAN_SUBST is the same for all X.Org packages.
426    
427    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
428
429commit 3a8ab7cce3afea80eddb5ec54e6991fef9625d71
430Author: Gaetan Nadon <memsize@videotron.ca>
431Date:   Tue Jul 20 18:45:18 2010 -0400
432
433    config: update AC_PREREQ statement to 2.60
434    
435    Unrelated to the previous patches, the new value simply reflects
436    the reality that the minimum level for autoconf to configure
437    all x.org modules is 2.60 dated June 2006.
438    
439    ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz
440    
441    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
442
443commit f26f21272ce70a0dc29ed5cd44c9a1954575b473
444Author: Alan Coopersmith <alan.coopersmith@oracle.com>
445Date:   Mon Jun 21 19:52:10 2010 -0700
446
447    Only need the libXmuu subset, not the full libXmu
448    
449    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
450
451commit d301ff61a51a827faec10fac18cc367fc6635b42
452Author: Alan Coopersmith <alan.coopersmith@oracle.com>
453Date:   Fri Apr 16 15:57:22 2010 -0700
454
455    Add smproxy dependency on libSM to PKG_CHECK_MODULES
456    
457    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
458
459commit 779aa7f2e98bf082900a3cc0823c59e66b6e81b6
460Author: Gaetan Nadon <memsize@videotron.ca>
461Date:   Thu Jan 7 21:20:27 2010 -0500
462
463    COPYING: replace stub with actual copyright notices
464    
465    Refer to smproxy.c.
466    Copyright 1994, 1998  The Open Group
467    
468    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
469
470commit f4ba6a74f35b855fe6ebdfa7c3e40f8368eea57b
471Author: Gaetan Nadon <memsize@videotron.ca>
472Date:   Thu Nov 26 09:19:52 2009 -0500
473
474    Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
475    
476    Now that the INSTALL file is generated.
477    Allows running make maintainer-clean.
478
479commit a8b65c49a67a3bdd5253a5afc23bc4c2755e5584
480Author: Gaetan Nadon <memsize@videotron.ca>
481Date:   Wed Oct 28 14:09:08 2009 -0400
482
483    INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
484    
485    Add missing INSTALL file. Use standard GNU file on building tarball
486    README may have been updated
487    Remove AUTHORS file as it is empty and no content available yet.
488    Remove NEWS file as it is empty and no content available yet.
489
490commit 408b48eedd458899ef8b642779e513c9cedda6be
491Author: Gaetan Nadon <memsize@videotron.ca>
492Date:   Mon Oct 26 22:08:38 2009 -0400
493
494    Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432
495    
496    ChangeLog filename is known to Automake and requires no further
497    coding in the makefile.
498
499commit c181d7fe905cf1c63a12480c811da947d98b0f02
500Author: Gaetan Nadon <memsize@videotron.ca>
501Date:   Thu Oct 22 12:34:14 2009 -0400
502
503    .gitignore: use common defaults with custom section # 24239
504    
505    Using common defaults will reduce errors and maintenance.
506    Only the very small or inexistent custom section need periodic maintenance
507    when the structure of the component changes. Do not edit defaults.
508
509commit b0a0c1e5e5e05ac06a7ea44f484fa8fdcf7e999e
510Author: Jeremy Huddleston <jeremyhu@freedesktop.org>
511Date:   Wed Oct 21 12:47:19 2009 -0700
512
513    This is not a GNU project, so declare it foreign.
514    
515    On Wed, 2009-10-21 at 13:36 +1000, Peter Hutterer wrote:
516    > On Tue, Oct 20, 2009 at 08:23:55PM -0700, Jeremy Huddleston wrote:
517    > > I noticed an INSTALL file in xlsclients and libXvMC today, and it
518    > > was quite annoying to work around since 'autoreconf -fvi' replaces
519    > > it and git wants to commit it.  Should these files even be in git?
520    > > Can I nuke them for the betterment of humanity and since they get
521    > > created by autoreconf anyways?
522    >
523    > See https://bugs.freedesktop.org/show_bug.cgi?id=24206
524    
525    As an interim measure, replace AM_INIT_AUTOMAKE([dist-bzip2]) with
526    AM_INIT_AUTOMAKE([foreign dist-bzip2]). This will prevent the generation
527    of the INSTALL file. It is also part of the 24206 solution.
528    
529    Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org>
530
531commit 170f17b373da6f45db8bce2f0b3cc18b9f05e6bd
532Author: Alan Coopersmith <alan.coopersmith@sun.com>
533Date:   Fri Oct 16 16:32:38 2009 -0700
534
535    smproxy 1.0.3
536    
537    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
538
539commit db43f974d4b653cc903dbbc9d22fca0711cf0ee6
540Author: Alan Coopersmith <alan.coopersmith@sun.com>
541Date:   Mon Oct 12 18:31:59 2009 -0700
542
543    Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS
544    
545    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
546
547commit 6519b61438b36e66a42e44b42fbf6b7f75a450d0
548Author: Alan Coopersmith <alan.coopersmith@sun.com>
549Date:   Thu Oct 1 14:54:19 2009 -0700
550
551    Add README with pointers to mailing lists, bugzilla, & git
552    
553    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
554
555commit c2514a2a3fb2e01f904d9a0e4b4b50bf24ed316d
556Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
557Date:   Mon Jan 19 16:38:49 2009 -0200
558
559    Ansification and compile warning fixes.
560    
561      This also uses XORG_CHANGELOG and XORG_CWARNFLAGS, corrects
562    make distcheck and all gcc 4.3 and sparse warnings.
563
564commit c3f8e7bd4dcb059265ad47152c57305b1ebf1652
565Author: James Cloos <cloos@jhcloos.com>
566Date:   Thu Dec 6 16:37:07 2007 -0500
567
568    Replace static ChangeLog with dist-hook to generate from git log
569
570commit c1e12fb138711721d74d9c4accf1c76f1829a411
571Author: James Cloos <cloos@jhcloos.com>
572Date:   Mon Sep 3 05:51:12 2007 -0400
573
574    Add *~ to .gitignore to skip patch/emacs droppings
575
576commit 142c50a44b9bca6ecc2d137a52f3a2d2d18ea753
577Author: James Cloos <cloos@jhcloos.com>
578Date:   Thu Aug 23 19:24:37 2007 -0400
579
580    Rename .cvsignore to .gitignore
581
582commit a712e5b1ac3fba792e2696a52781fee3ac7f2c26
583Author: Adam Jackson <ajax@nwnk.net>
584Date:   Sun Apr 2 00:43:00 2006 +0000
585
586    Bump to 1.0.2
587
588commit 5df8681ca60408ec2b0f2e73930cf34d46474e02
589Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
590Date:   Fri Feb 3 23:24:37 2006 +0000
591
592    Wrong name in .TH line in smproxy man page.
593
594commit 129d0d20f0fe3b4e2d007b40eb8d18493e72feb5
595Author: Kevin E Martin <kem@kem.org>
596Date:   Wed Dec 21 02:29:47 2005 +0000
597
598    Update package version for X11R7 release.
599
600commit a24c9fb0dfc98f5e2a1c530b2e5623ca37085e92
601Author: Adam Jackson <ajax@nwnk.net>
602Date:   Mon Dec 19 16:22:41 2005 +0000
603
604    Stub COPYING files
605
606commit ca04f02395af13eb7411b6d7a2235441260162ed
607Author: Kevin E Martin <kem@kem.org>
608Date:   Thu Dec 15 00:24:04 2005 +0000
609
610    Update package version number for final X11R7 release candidate.
611
612commit 8bfee9823e3352b2b891815fb17ac8b4b0b9ec1f
613Author: Kevin E Martin <kem@kem.org>
614Date:   Tue Dec 6 22:48:18 2005 +0000
615
616    Change *man_SOURCES ==> *man_PRE to fix autotools warnings.
617
618commit c6ddfcb8295f9bd95ff6c10dfc72eb06c1dfebfc
619Author: Kevin E Martin <kem@kem.org>
620Date:   Sat Dec 3 05:49:17 2005 +0000
621
622    Update package version number for X11R7 RC3 release.
623
624commit 1cda990e2da2c81676263a743148792cdd24bf76
625Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
626Date:   Mon Nov 28 22:01:39 2005 +0000
627
628    Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4
629        update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir)
630
631commit f316c47cd92a8787aa054454b328992ea5a1c335
632Author: Eric Anholt <anholt@freebsd.org>
633Date:   Mon Nov 21 10:34:58 2005 +0000
634
635    Another pass at .cvsignores for apps.
636
637commit adf4750e5d0b867f9aebcb9e04f45615c78d564b
638Author: Eric Anholt <anholt@freebsd.org>
639Date:   Sun Nov 20 22:08:50 2005 +0000
640
641    Add/improve .cvsignore files for apps.
642
643commit 62c0c632565fc25c6af2199fecc1e8cec21beb82
644Author: Kevin E Martin <kem@kem.org>
645Date:   Wed Oct 19 02:47:50 2005 +0000
646
647    Update package version number for RC1 release.
648
649commit 7154ca09d51094eee67bd38d35ea1a42f0243165
650Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
651Date:   Mon Oct 17 23:56:20 2005 +0000
652
653    Use @APP_MAN_SUFFIX@ instead of $(APP_MAN_SUFFIX) in macro substitutions to
654        work better with BSD make
655
656commit 4b08eb40f81ad4ac6f276d91a485e7eb3d690a61
657Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
658Date:   Fri Oct 14 00:25:42 2005 +0000
659
660    Use sed to fill in variables in man page
661
662commit 8be426eb8e1d2be0264c34bd618a25822055fcc6
663Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
664Date:   Mon Aug 1 20:25:28 2005 +0000
665
666    Install man pages to section 1 instead of section m (Patch from Donnie
667        Berkholz)
668
669commit a1da8fe3444ec4373d823b55d3db4c20f70b813c
670Author: Kevin E Martin <kem@kem.org>
671Date:   Fri Jul 29 21:22:30 2005 +0000
672
673    Various changes preparing packages for RC0:
674    - Verify and update package version numbers as needed
675    - Implement versioning scheme
676    - Change bug address to point to bugzilla bug entry form
677    - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to
678        reenable it)
679    - Fix makedepend to use pkgconfig and pass distcheck
680    - Update build script to build macros first
681    - Update modular Xorg version
682
683commit 1c36f6e6523670598c310ad5cd55e6e3c800ba36
684Author: Adam Jackson <ajax@nwnk.net>
685Date:   Wed Jul 20 19:31:50 2005 +0000
686
687    Use a unique token for PKG_CHECK_MODULES. Otherwise, if you use a global
688        configure cache, you cache it, and the cached value is probably wrong.
689
690commit 4c13f27d1178fa4c1176686d53c5641addf675b8
691Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
692Date:   Sat Jul 16 22:07:13 2005 +0000
693
694    Add #ifdef HAVE_CONFIG_H/#include "config.h" to files that need it to get
695        HAS_MKSTEMP defined in modular builds.
696
697commit b3d8e92288c109bec89946ae3d550616dbc8d04c
698Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
699Date:   Sat Jul 16 21:59:14 2005 +0000
700
701    Define HAS_MKSTEMP if mkstemp() is present (needed for improved protection
702        against tempfile race conditions in many places)
703
704commit 05ef9ba24d0b1b5c17e04036d03770a44efd6b78
705Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
706Date:   Wed Jul 6 17:25:57 2005 +0000
707
708    Build system for smproxy
709
710commit 2935d0350a985e7638cdeaa32b06d935bef2a983
711Author: Egbert Eich <eich@suse.de>
712Date:   Fri Apr 23 19:54:37 2004 +0000
713
714    Merging XORG-CURRENT into trunk
715
716commit 5bab1fd41c825d7e89cd7329eead0169640cc3dd
717Author: Egbert Eich <eich@suse.de>
718Date:   Sun Mar 14 08:34:56 2004 +0000
719
720    Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004
721
722commit c43c8cfd14136c9486ddf269a0e876c20670848e
723Author: Egbert Eich <eich@suse.de>
724Date:   Wed Mar 3 12:12:54 2004 +0000
725
726    Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004
727
728commit ad7fbb2be57bc3aef4b403b3e3341627c98d88b6
729Author: Egbert Eich <eich@suse.de>
730Date:   Thu Feb 26 13:36:15 2004 +0000
731
732    readding XFree86's cvs IDs
733
734commit b3303bf17a8975b4a3f13462cb7b13207a016395
735Author: Egbert Eich <eich@suse.de>
736Date:   Thu Feb 26 09:23:57 2004 +0000
737
738    Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004
739
740commit 2a637a09ff68246161945821392656492f1fbde1
741Author: Kaleb Keithley <kaleb@freedesktop.org>
742Date:   Fri Nov 14 16:48:58 2003 +0000
743
744    XFree86 4.3.0.1
745
746commit f4d5033f594bf278ff1171091219b3c28dc45446
747Author: Kaleb Keithley <kaleb@freedesktop.org>
748Date:   Fri Nov 14 15:54:53 2003 +0000
749
750    R6.6 is the Xorg base-line
751