Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-12-09 | Move variable declarations to get rid of unnecessary scope brackets | Alan Coopersmith | |
Gets rid of one of the multiple levels of bracketing that confusingly shared the same indent level. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: James Cloos <cloos@jhcloos.com> | |||
2011-12-09 | Move and rename temp[4] definition to reduce confusion with temp[256] | Alan Coopersmith | |
Both variables were locals in different scope levels of the same function, leading to both confusing code and gcc -Wshadow warnings: sm_genid.c: In function 'SmsGenerateClientID': sm_genid.c:160:10: warning: declaration of 'temp' shadows a previous local Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: James Cloos <cloos@jhcloos.com> | |||
2011-12-09 | Use imdent to make multiple levels of nested #if easier to follow | Alan Coopersmith | |
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: James Cloos <cloos@jhcloos.com> | |||
2011-09-16 | Strip trailing whitespace | Alan Coopersmith | |
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> | |||
2011-02-02 | config: splitting SM and XTRANS compiler options is not required | Gaetan Nadon | |
Simplify configuration by using a single PKG_CHECK_MODULES statement. Signed-off-by: Gaetan Nadon <memsize@videotron.ca> | |||
2010-11-21 | Sun's copyrights belong to Oracle now | Alan Coopersmith | |
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> | |||
2010-10-06 | Purge cvs tags. | Jesse Adkins | |
Signed-off-by: Jesse Adkins <jesserayadkins@gmail.com> Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> | |||
2010-05-26 | Fix off by one error in SmsGenerateClientID when uuid_create is used | Alexander Kabaev | |
Fix apparent typo in SmsGenerateClientID which always leaves the first byte of allocated id string uninitialized. If that byte happens to be 0, SmsGenerateClientId appears to return an empty string to the caller, instead of proper GUID in text form. Reviewed-by: James CLoos <cloos@jhcloos.com> Signed-off-by: Adam Jackson <ajax@redhat.com> | |||
2010-01-14 | Update Sun license notices to current X.Org standard form | Alan Coopersmith | |
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> | |||
2009-11-16 | Revert "Fix memory leak for SM_DeleteProperties" | Alan Coopersmith | |
This reverts commit 58aa8879e10b12e478ab14b90afd1001b4abd316. Fixes gnome-session crashes due to double frees, as reported in http://bugs.freedesktop.org/show_bug.cgi?id=24964 | |||
2009-10-14 | Fix memory leak for SM_DeleteProperties | Michael Jansen | |
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> | |||
2009-10-09 | Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS | Alan Coopersmith | |
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com> | |||
2009-08-07 | libSM 1.1.1, update libtool versionlibSM-1.1.1 | Rémi Cardona | |
2009-08-03 | Use FreeBSD uuid functions when available. | Diego Elio 'Flameeyes' Pettenò | |
If the system provide the uuid_create function assume building on FreeBSD or another OS with a compatible uuid interface. If that's the case, ignore libuuid and just use the system functions without extra deps. | |||
2009-01-28 | Janitor: ansification, make distcheck, compiler warnings. | Paulo Cesar Pereira de Andrade | |
2008-11-29 | avoid gcc warnings for libSM | Paulo Cesar Pereira de Andrade | |
Patch from http://bugs.freedesktop.org/show_bug.cgi?id=17968 adapted to current sources. This corrects a potential (hypothetical) segmentation fault. | |||
2008-10-17 | Bug #17644: Fix valgrind warning in _SmcProcessMessage | Caolan McNamara | |
2008-07-02 | Avoid memcpy(foo, NULL, n), that's just nonsense. | Adam Jackson | |
2008-06-24 | Bug #14949: Don't use gethostbyname() for client IDs. | Dan Williams | |
gethostbyname() will hit the network, which leads to DNS timeouts, which leads to fail. Just use UUIDs. | |||
2007-05-13 | Another tiny char* vs const char* fix. | Tilman Sauerbeck | |
2007-05-13 | Revert "Don't reinvent the wheel and just use strdup()." | Tilman Sauerbeck | |
This reverts commit 57ea148fdbf047a012b361acdc7954e70679dad3. | |||
2007-05-13 | Removed some global writable variables. | Tilman Sauerbeck | |
2007-05-13 | Don't reinvent the wheel and just use strdup(). | Tilman Sauerbeck | |
2007-05-13 | Fixed some const vs non-const mix ups. | Tilman Sauerbeck | |
2007-05-13 | Sanitized hex string conversion in SmsGenerateClientID(). | Tilman Sauerbeck | |
This reduces the size of the DSO by almost 4K and gets rid of 255 relocations on load. | |||
2006-07-13 | renamed: .cvsignore -> .gitignore | Alan Coopersmith | |
2006-06-26 | From Patch #6046 <https://bugs.freedesktop.org/attachment.cgi?id=6046> | Alan Coopersmith | |
freeaddrinfo() in error handling return (Peter Breitenlohner) | |||
2006-03-17 | Specs say SmsInitialize & SmcOpenConnection return NULL terminated stringsXORG-7_0_99_901 | Alan Coopersmith | |
in errorStringRet, but were just calling strncpy and not making sure strings were NULL terminated if errorLength wasn't long enough. (Noticed while evaluating Coverity ids 196 & 201.) | |||
2005-11-08 | See ChangeLog entry 2005-11-07 for details.XORG-6_8_99_903XORG-6_8_99_902 | Kean Johnson | |
2005-07-16 | Set soversion to 6.0.0 using -version-number. | Daniel Stone | |
2005-07-13 | Eliminate xtrans CFLAGS from .pc file as xtrans is not part of the public | Keith Packard | |
API. | |||
2005-07-09 | Add .cvsignore files | Keith Packard | |
2005-06-09 | Replace <X11/Xtrans.h> with <X11/Xtrans/Xtrans.h>XORG-6_8_99_901XORG-6_8_99_900XORG-6_8_99_16XORG-6_8_99_15XORG-6_8_99_14XORG-6_8_99_13XORG-6_8_99_12XORG-6_8_99_11 | Alexander Gottwald | |
Copy Xtrans.h to exports/include/X11/Xtrans only | |||
2005-05-17 | - Conditionally include config.h in xc/lib/SMXORG-6_8_99_9XORG-6_8_99_8XORG-6_8_99_10 | Søren Sandmann Pedersen | |
- Add libSM to symlink.sh - Add SM build system | |||
2005-04-03 | Bug #1447: Fix a use-after-free case in libSM. (Mark McLoughlin)sco_port_update-baseXORG-6_8_99_7XORG-6_8_99_6XORG-6_8_99_5XORG-6_8_99_4XORG-6_8_99_3XORG-6_8_99_2 | Adam Jackson | |
2005-01-28 | Move _IceGetPeerName into the ICE public API as IceGetPeerName; bump ICEXORG-6_8_99_1 | Daniel Stone | |
soversion to 6.4 accordingly. Change SM's use to the public version. The old version will be retained for compatibility. | |||
2004-10-18 | Made handling of DevelDrivers for x86-64 more conformant to otherxprint_packagertest_20041217_basexprint_packagertest_20041125_basexprint_packagertest_20041217xprint_packagertest_20041125 | Egbert Eich | |
platforms. Compress all font encodings (Stefan Dirsch). Fixed warnings. Turn on forwarding XNSpotLocation event to XIM server in OffTheSpot and Root mode (bugzilla #1580, James Su). Added another compose key combination for the Euro symbol (Stefan Dirsch). Added support for UTF-8 in ja_JP, ko_KR and zh_TW locales (Mike Fabian). Changed default encoding for ru from KOI8-R to ISO8859-5 (Mike Fabian). This is the encoding that is also used by glibc. We may break other libcs - lets see who complains. Added explanation for DESTDIR to install to a different directory than /. Added some early bailouts to atiprobe if PCI structure pointer is NULL to prevent sig11. XV support doesn't depend on 2D acceleration any more. This patch removes this limitation from the NSC driver. This is a patch that I have committed to XFree86 a while ago but never ported over to X.Org. Matthieu Herrb contributed some build fixes. Fixing SetDPMSTimers() so that DPMS*Time == 0 disables the appropriate timer. This takes advantage of the fact that TimerSet() with a timeout argument 0 behaves like TimerCanel(). Use /dev/xconsole (named pipe) or devpts for system logger (Werner Fink). Create missing links for backward compatibility to XFree86 (Stefan Dirsch). Changed comment to mention xorg. Changed cursor for the 'kill' action from XC_draped_box to XC_Pirate. If you don't like it we can change it back (original author unkown). Added 'pic' to the man page rendering command pipeline (Werner Fink). Added missing return value (Stefan Dirsch, Roland Mainz) | |||
2004-08-18 | Fix AIX build problems (Bugs #1020, 1102, 1103, Dan McNichol).rel-0-6-1lg3d-rel-0-7-0lg3d-rel-0-6-2lg3d-baseXORG-6_8_2XORG-6_8_1_904XORG-6_8_1_903XORG-6_8_1_902XORG-6_8_1_901XORG-6_8_1XORG-6_8_0XORG-6_7_99_904XORG-6_7_99_903lg3d-masterlg3d-eventlg3d-dev-0-7-1lg3d-dev-0-7-0lg3d-dev-0-6-latestlg3d-dev-0-6-2lg3d-dev-0-6-1-latestlg3d-dev-0-6-1-currentlg3d-dev-0-6-1-1lg3d-dev-0-6-1lg3dXORG-6_8-branch | Kevin E Martin | |
Remove old config files (Bug #1123, Jim Gettys). Remove old log message (Bug #1123, Jim Gettys). | |||
2004-05-24 | Fix build glitches when building modules independently using Imake.XORG-6_7_99_902XORG-6_7_99_901XORG-6_7_99_2XORG-6_7_99_1COMPOSITEWRAP | Egbert Eich | |
2004-04-23 | Merging XORG-CURRENT into trunkXACE-SELINUX-MERGE | Egbert Eich | |
2004-03-14 | Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004xf86-4_4_99_1 | Egbert Eich | |
2004-03-03 | Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004xf86-4_4_0STSF-CURRENT | Egbert Eich | |
2004-02-26 | readding XFree86's cvs IDsxf86-4_3_99_903 | Egbert Eich | |
2004-02-26 | Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004 | Egbert Eich | |
2004-01-29 | Importing vendor version xf86-012804-2330 on Thu Jan 29 00:06:33 PST 2004xf86-4_3_99_903_specialxf86-012804-2330 | Egbert Eich | |
2003-11-25 | XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folksxf86-4_3_99_902xf86-4_3_99_901xf86-4_3_99_16 | Kaleb Keithley | |
2003-11-14 | XFree86 4.3.0.1xf86-4_3_0_1PRE_xf86-4_3_0_1 | Kaleb Keithley | |
2003-11-14 | R6.6 is the Xorg base-lineXORG-MAINXORG-STABLE | Kaleb Keithley | |