source: projects/specs/trunk/g/gdm/gdm-vl.spec @ 2074

Revision 2074, 35.6 KB checked in by Takemikaduchi, 14 years ago (diff)

update upower, ConsoleKit?, and fix gdm

Line 
1%define pango_version 1.22.0
2%define gtk2_version 2.14.0
3%define libglade2_version 2.6.0
4%define librsvg2_version 2.22.0
5%define libxml2_version 2.5.10
6%define rarian 0.8
7%define pam_version 0.99.8
8%define desktop_file_utils_version 0.3
9%define gail_version 1.18.0
10%define consolekit_version 0.2.7
11%define hal_version 0.5.9
12
13Summary: The GNOME Display Manager.
14Summary(ja): GNOME ディスプレイマネージャ
15Name: gdm
16Version: 2.30.2
17Release: 4%{?_dist_release}
18License: LGPL/GPL
19Group: User Interface/X
20URL: ftp://ftp.gnome.org/pub/GNOME/sources/gdm/
21
22Source: %{name}-%{version}.tar.bz2
23Source1: gdm-pam
24Source2: gdm-autologin-pam
25Source10: polkit-gnome-authentication-agent-1.desktop
26
27Source110: gnome.desktop
28Source130: gdm-2.30.2-ja.po
29
30Source200: gdm-restart
31Source201: gdm-safe-restart
32Source202: gdm-stop
33
34## patches from fedora
35Patch2: plymouth.patch
36#Patch96: gdm-multistack.patch
37# Fedora-specific
38Patch97: gdm-bubble-location.patch
39Patch98: tray-padding.patch
40
41## patches from ubuntu
42Patch100: 01_upower.patch
43Patch101: gdm-2.30.0-check-active-vt.patch
44Patch102: gdm-2.30.2-use-polkit-for-settings.patch
45Patch103: gdm-2.30.0-gdmsetup.patch
46Patch104: gdm-2.30.0-hide-mouse-cursor.patch
47Patch105: 02_x_server_location.patch
48
49## patches for vine
50Patch500: gdm-2.30.2-vine-release.patch
51Patch501: gdm-2.30.2_add_dbus_glib_to_applet_deps.patch
52#Patch500: gdm-2.20.10-vine.patch
53#Patch501: gdm-2.20.8-gdmsetup-usermode.patch
54#Patch510: gdm-2.18.1-vine-locale.patch
55
56# security fix
57
58
59BuildRoot: %{_tmppath}/%{name}-%{version}-root
60
61Requires(pre): shadow-utils
62Requires: pam >= %{pam_version}
63Requires: hal >= %{hal_version}
64Requires: ConsoleKit >= %{consolekit_version}
65Requires: usermode-gtk
66Requires: xinitrc
67Requires: xorg-x11-xdm
68Requires: util-linux
69Requires: vine-backgrounds >= 4.0
70Requires: gnome-settings-daemon
71Requires: polkit-gnome
72Requires: iso-codes
73Requires: gnome-session
74Requires: gnome-keyring-pam
75Requires: plymouth-gdm-hooks
76BuildRequires: scrollkeeper >= %{scrollkeeper_version}
77BuildRequires: pango-devel >= %{pango_version}
78BuildRequires: gtk2-devel >= %{gtk2_version}
79BuildRequires: libglade2-devel >= %{libglade2_version}
80BuildRequires: librsvg2-devel >= %{librsvg2_version}
81BuildRequires: libxml2-devel >= %{libxml2_version}
82BuildRequires: usermode
83BuildRequires: pam-devel >= %{pam_version}
84BuildRequires: desktop-file-utils >= %{desktop_file_utils_version}
85BuildRequires: gail-devel >= %{gail_version}
86BuildRequires: libtool, automake, autoconf
87BuildRequires: ConsoleKit
88BuildRequires: libdmx-devel, audit-libs-devel
89BuildRequires: libcanberra-devel
90BuildRequires: polkit-devel
91BuildRequires: gnome-panel-devel
92BuildRequires: libxklavier-devel
93BuildRequires: upower-devel
94BuildRequires: libXdmcp-devel
95BuildRequires: check-devel
96BuildRequires: libICE-devel
97BuildRequires: gnome-doc-utils
98
99Vendor: Project Vine
100Distribution: Vine Linux
101Packager: daisuke
102
103%description
104Gdm (the GNOME Display Manager) is a highly configurable
105reimplementation of xdm, the X Display Manager. Gdm allows you to log
106into your system with the X Window System running and supports running
107several different X sessions on your local machine at the same time.
108
109%prep
110%setup -q
111
112cp -f %{SOURCE130} po/ja.po
113
114%patch2 -p1 -b .plymouth
115#%patch96 -p1 -b .multistack
116%patch97 -p1 -b .bubble-location
117%patch98 -p1 -b .tray-padding
118%patch100 -p1 -b .upower
119%patch101 -p1 -b .check-active-vt
120%patch102 -p1 -b .polkit
121%patch103 -p1 -b .gdmsetup
122%patch104 -p1 -b .hide-mouse-cursor
123%patch105 -p1 -b .xserver
124
125%patch500 -p1 -b .vine-release
126%patch501 -p1 -b .dbus-glib
127
128autoreconf -i -f
129
130cp -f %{SOURCE1} data/gdm
131cp -f %{SOURCE2} data/gdm-autologin
132
133%build
134%configure --with-sysconfsubdir=X11/gdm \
135           --with-dmconfdir=%{_sysconfdir}/X11/dm \
136           --with-pam-prefix=%{_sysconfdir} \
137           --with-working-directory=%{_localstatedir}/gdm \
138           --enable-console-helper \
139           --disable-scrollkeeper \
140           --with-console-kit \
141           --without-selinux
142
143# drop unneeded direct library deps with --as-needed
144# libtool doesn't make this easy, so we do it the hard way
145sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' \
146       -e 's/    if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then/      func_append compile_command " -Wl,-O1,--as-needed"\n      func_append finalize_command " -Wl,-O1,--as-needed"\n\0/' libtool
147
148%__make -C po
149
150%__make %{?_smp_mflags}
151
152%install
153[ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT
154
155mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/gdm/Init
156mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/gdm/PreSession
157mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/gdm/PostSession
158
159make install DESTDIR=$RPM_BUILD_ROOT
160
161# docs go elsewhere
162rm -rf $RPM_BUILD_ROOT/%{_prefix}/doc
163
164# create log dir
165mkdir -p $RPM_BUILD_ROOT/var/log/gdm
166
167# and a spool dir
168mkdir -p $RPM_BUILD_ROOT/var/spool/gdm
169
170# change default Init script for :0 to be Vine Linux default
171#ln -sf ../../xdm/Xsetup_0 $RPM_BUILD_ROOT/etc/X11/gdm/Init/:0
172
173# remove the gdm Xsession as we're using the xdm one
174rm -f $RPM_BUILD_ROOT%{_sysconfdir}/X11/gdm/Xsession
175(cd $RPM_BUILD_ROOT%{_sysconfdir}/X11/gdm; ln -sf ../xinit/Xsession .)
176
177rm -f $RPM_BUILD_ROOT%{_libdir}/gtk-2.0/modules/*.a
178rm -f $RPM_BUILD_ROOT%{_libdir}/gtk-2.0/modules/*.la
179
180mkdir -p $RPM_BUILD_ROOT%{_datadir}/gdm/autostart/LoginWindow
181
182# temporarily manually copy this
183cp -f %{SOURCE10} $RPM_BUILD_ROOT%{_datadir}/gdm/autostart/LoginWindow/polkit-gnome-authentication-agent-1.desktop
184
185mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/gdm/greeter
186
187rm -rf $RPM_BUILD_ROOT%{_localstatedir}/scrollkeeper
188
189find $RPM_BUILD_ROOT -name '*.a' -delete
190find $RPM_BUILD_ROOT -name '*.la' -delete
191
192rm -f $RPM_BUILD_ROOT%{_includedir}/gdm/simple-greeter/gdm-greeter-extension.h
193rm -f $RPM_BUILD_ROOT%{_libdir}/pkgconfig/gdmsimplegreeter.pc
194
195%find_lang gdm --with-gnome
196
197# install Vine Theme
198#mkdir -p $RPM_BUILD_ROOT%{_datadir}/gdm/themes/
199#tar xzvf %{SOURCE100} -C $RPM_BUILD_ROOT%{_datadir}/gdm/themes/
200
201# install gnome.desktop
202# XXX: this should be included in each desktop environment package.
203mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/X11/dm/Sessions/
204cp %{SOURCE110} $RPM_BUILD_ROOT%{_sysconfdir}/X11/dm/Sessions/
205
206install -m 0755 %{SOURCE200} %{SOURCE201} %{SOURCE202} $RPM_BUILD_ROOT%{_sbindir}/
207
208%find_lang gdm
209
210%clean
211[ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT
212
213%pre
214if [ "$1" -gt 1 ]; then
215  if [ -f %{_sysconfdir}/gconf/schemas/gdm-simple-greeter.schemas ];
216  then
217    export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
218    gconftool-2 --makefile-uninstall-rule %{_sysconfdir}/gconf/schemas/gdm-simple-greeter.schemas >/dev/null
219  fi
220fi
221/usr/sbin/useradd -M -u 42 -d %{_localstatedir}/gdm -s /sbin/nologin -r gdm > /dev/null 2>&1
222/usr/sbin/usermod -d %{_localstatedir}/gdm -s /sbin/nologin gdm >/dev/null 2>&1
223# ignore errors, as we can't disambiguate between gdm already existed
224# and couldn't create account with the current adduser.
225exit 0
226
227%post
228/sbin/ldconfig
229scrollkeeper-update >& /dev/null ||:
230
231touch --no-create %{_datadir}/icons/hicolor
232if [ -x /usr/bin/gtk-update-icon-cache ]; then
233  /usr/bin/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor ||:
234fi
235
236export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
237gconftool-2 --makefile-install-rule %{_sysconfdir}/gconf/schemas/gdm-simple-greeter.schemas >/dev/null
238
239# if the user already has a config file, then migrate it to the new
240# location; rpm will ensure that old file will be renamed
241
242custom=/etc/X11/gdm/custom.conf
243
244if [ $1 -ge 2 ] ; then
245    if [ -f /usr/share/gdm/config/gdm.conf-custom ]; then
246        oldconffile=/usr/share/gdm/config/gdm.conf-custom
247    elif [ -f /etc/X11/gdm/gdm.conf ]; then
248        oldconffile=/etc/X11/gdm/gdm.conf
249    fi
250
251    # Comment out some entries from the custom config file that may
252    # have changed locations in the update.  Also move various
253    # elements to their new locations.
254
255    [ -n "$oldconffile" ] && sed \
256    -e 's@^command=/usr/X11R6/bin/X@#command=/usr/bin/Xorg@' \
257    -e 's@^Xnest=/usr/X11R6/bin/Xnest@#Xnest=/usr/bin/Xnest@' \
258    -e 's@^BaseXsession=/etc/X11/xdm/Xsession@#BaseXsession=/etc/X11/xdm/Xsession@' \
259    -e 's@^BaseXsession=/etc/gdm/Xsession@#&@' \
260    -e 's@^Greeter=/usr/bin/gdmgreeter@#Greeter=/usr/libexec/gdmgreeter@' \
261    -e 's@^RemoteGreeter=/usr/bin/gdmlogin@#RemoteGreeter=/usr/libexec/gdmlogin@' \
262    -e 's@^GraphicalTheme=Vine@#&@' \
263    -e 's@^BackgroundColor=#27408b@#&@' \
264    -e 's@^DefaultPath=/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin@#&@' \
265    -e 's@^RootPath=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin@#&@' \
266    -e 's@^HostImageDir=/usr/share/hosts/@#HostImageDir=/usr/share/pixmaps/faces/@' \
267    -e 's@^LogDir=/var/log/gdm@#&@' \
268    -e 's@^PostLoginScriptDir=/etc/X11/gdm/PostLogin@#&@' \
269    -e 's@^PreLoginScriptDir=/etc/X11/gdm/PreLogin@#&@' \
270    -e 's@^PreSessionScriptDir=/etc/X11/gdm/PreSession@#&@' \
271    -e 's@^PostSessionScriptDir=/etc/X11/gdm/PostSession@#&@' \
272    -e 's@^DisplayInitDir=/var/run/gdm.pid@#&@' \
273    -e 's@^RebootCommand=/sbin/reboot;/sbin/shutdown -r now;/usr/sbin/shutdown -r now;/usr/bin/reboot@#&@' \
274    -e 's@^HaltCommand=/sbin/poweroff;/sbin/shutdown -h now;/usr/sbin/shutdown -h now;/usr/bin/poweroff@#&@' \
275    -e 's@^ServAuthDir=/var/gdm@#&@' \
276    -e 's@^Greeter=/usr/bin/gdmlogin@Greeter=/usr/libexec/gdmlogin@' \
277    -e 's@^RemoteGreeter=/usr/bin/gdmgreeter@RemoteGreeter=/usr/libexec/gdmgreeter@' \
278    $oldconffile > $custom
279fi
280
281/usr/sbin/gdm-safe-restart >/dev/null 2>&1 || :
282exit 0
283
284%preun
285if [ "$1" -eq 0 ]; then
286  export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source`
287  gconftool-2 --makefile-uninstall-rule %{_sysconfdir}/gconf/schemas/gdm-simple-greeter.schemas >/dev/null
288fi
289
290%postun
291/sbin/ldconfig
292scrollkeeper-update >& /dev/null ||:
293touch --no-create %{_datadir}/icons/hicolor ||:
294if [ -x /usr/bin/gtk-update-icon-cache ]; then
295  /usr/bin/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor ||:
296fi
297
298%files -f gdm.lang
299%defattr(-, root, root)
300
301%doc AUTHORS COPYING ChangeLog NEWS README TODO
302
303%dir %{_sysconfdir}/X11/gdm
304# Not sure which package %{_sysconfdir}/X11/dm dir should belong to,
305# this dir was agreed on among KDM and GDM maintainer to host
306# the new session setup
307%config %{_sysconfdir}/X11/dm/Sessions/*
308%config(noreplace) %{_sysconfdir}/X11/gdm/custom.conf
309%config %{_sysconfdir}/X11/gdm/Init/*
310%config %{_sysconfdir}/X11/gdm/PostLogin/*
311%config %{_sysconfdir}/X11/gdm/PreSession/*
312%config %{_sysconfdir}/X11/gdm/PostSession/*
313%config %{_sysconfdir}/pam.d/gdm
314%config %{_sysconfdir}/pam.d/gdm-autologin
315%config %{_sysconfdir}/dbus-1/system.d/gdm.conf
316%dir %{_sysconfdir}/X11/gdm/Init
317%dir %{_sysconfdir}/X11/gdm/PreSession
318%dir %{_sysconfdir}/X11/gdm/PostSession
319%dir %{_sysconfdir}/X11/gdm/PostLogin
320%{_sysconfdir}/gconf/schemas/*.schemas
321%{_sysconfdir}/X11/gdm/Xsession
322%{_sysconfdir}/X11/gdm/gdm.schemas
323%{_datadir}/pixmaps/*.png
324%dir %{_datadir}/pixmaps/faces
325%{_datadir}/pixmaps/faces/*.png
326%{_datadir}/pixmaps/faces/*.jpg
327%{_datadir}/icons/hicolor/*/apps/*.png
328%dir %{_datadir}/gdm
329%{_datadir}/gdm/*
330%{_datadir}/applications/gdmsetup.desktop
331%{_datadir}/gnome/help/gdm
332%{_datadir}/omf/gdm
333%{_datadir}/polkit-1/actions/gdm.policy
334%{_datadir}/gnome-2.0/ui/GNOME_FastUserSwitchApplet.xml
335%{_libdir}/bonobo/servers/GNOME_FastUserSwitchApplet.server
336%{_bindir}/*
337%{_libexecdir}/*
338%{_sbindir}/*
339%dir %{_var}/log/gdm
340%dir %{_var}/spool/gdm
341%dir %{_var}/run/gdm/greeter
342
343%attr(1770, gdm, gdm) %dir %{_localstatedir}/gdm
344%attr(1770, gdm, gdm) %{_localstatedir}/gdm/.gconf.mandatory/%gconf-tree.xml
345%attr(1770, gdm, gdm) %{_localstatedir}/gdm/.gconf.path
346%attr(1755, gdm, gdm) %dir %{_localstatedir}/run/gdm/greeter
347%attr(1777, root, gdm) %dir %{_localstatedir}/run/gdm
348%attr(1755, root, gdm) %dir %{_localstatedir}/cache/gdm
349
350%changelog
351* Sat Oct 16 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.30.2-4
352- add BuildRequires: polkit-devel, gnome-panel-devel, libxklavier-devel, upower-devel,
353                     libXdmcp-devel, gnome-doc-utils, libICE-devel
354- add Patch100 (01_upower.patch) from ubuntu
355- add Patch105 (02_x_server_location.patch) from ubuntu
356- add Patch501 (gdm-2.30.2_add_dbus_glib_to_applet_deps.patch)
357- add configure option (--with-working-directory=%%{_localstatedir}/gdm)
358- fix %files (fix working directory)
359
360* Sun May 23 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.30.0-3
361- fix patch500: fix login panel crash on x86_64 (<BTS:992>)
362
363* Fri May 21 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.30.0-2
364- add patch104: hide mouse cursor on startup user session
365- add patch500: read vine-release to get system version
366
367* Mon May 17 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.30.0-1
368- new upstream release
369- add patch101,102,103 from ubuntu
370- drop themes
371
372* Sat Jul 25 2009 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 2.20.10-6
373- update Patch100: fix typo & change BackgroundColor/GraphicalThemedColor
374  <BTS:VineLinux:0732>
375- add BuildRequires: libdmx-devel, audit-libs-devel
376
377* Thu May 14 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.20.10-5
378- add patch11: add hibernate button in GDM menu
379- add pathc18: use combo boxc for language selector
380
381* Mon May 11 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.20.10-4
382- remove explicit dependency to gnome libraries
383- remove BR: libgnome{ui,canvas}-devel
384- add Requires: xorg-x11-xdm
385
386* Mon May 04 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.20.10-3
387- update vine themes
388  - sync Vine-list with new Vine theme
389
390* Sun Apr 26 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.20.10-2
391- update vine theme
392
393* Mon Apr 13 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.20.10-1
394- update to 2.20.10
395- update vine themes
396  - add Requires: vine-backgrounds >= 4.0
397
398* Sat Sep 27 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.20.8-1
399- update to 2.20.8
400  - gdm-2.22/24 still not mature, so We are staying
401    with gdm-2.20 branch.
402
403* Wed Jun 25 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.20.5-2
404- rebuilt with --with-console-kit
405- TODO: update to 2.22.0 with PolicyKit support
406
407* Mon May 12 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.20.5-1
408- update to 2.20.5
409  - TODO: update to 2.22.0
410  - TODO: update theme to support gdm-2.22.0
411- build with xorg-x11-7.3
412
413* Mon Jan 14 2008 Shu KONNO <owa@bg.wakwak.com> 2.18.1-0vl4
414- added gdm-2.18.1-gdmphotosetup-desktop.patch
415
416* Fri May 04 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.18.1-0vl3
417- import some upstream patches
418
419* Fri May 04 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.18.1-0vl2
420- update Vine theme
421
422* Fri May 04 2007 Daisuke SUZUKI <daisuke@linux.or.jp> 2.18.1-0vl1
423- new upstream release
424
425* Thu Dec 28 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.14.10-0vl5
426- rebuilt for VineSeed
427
428* Thu Dec 21 2006 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.14.10-0vl4.2
429- add Vendor/Distribution tag
430- fix changelog typo
431
432* Mon Dec 18 2006 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 2.14.10-0vl4.1
433- add patch200 for fix CVE-2006-6105
434
435* Thu Sep 28 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.10-0vl4
436- update locale.alias
437  - remove unsupported langs, add ja_JP.UTF-8
438
439* Fri Sep 01 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.10-0vl3
440- update gdm-theme-vine
441  - shrink image size
442
443* Sun Aug 13 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.10-0vl2
444- update gdm-theme-vine
445  - add Face-browser version of Vine theme.
446
447* Sat Aug 12 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.10-0vl1
448- new upstream release
449- update gdm-theme-vine
450- drop Patch10 (merged in upstream)
451
452* Sun Jun 11 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.8-0vl1
453- new upstream release
454- add Patch10 to fix autologin
455  (<BTS:63>, http://bugzilla.gnome.org/show_bug.cgi?id=344191)
456
457* Sun Jun 04 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.7-0vl1
458- new upstream release
459
460* Sun May 21 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.6-0vl1
461- new upstream release
462- remove xsri dependency
463
464* Sun May 07 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.5-0vl2
465- use consolehelper for gdmsetup
466
467* Sat May 06 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.5-0vl1
468- new upstream release
469
470* Wed Apr 12 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.1-0vl1
471- new upstream release
472
473* Thu Mar 23 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.0-0vl2
474- rebuild to change _localstatedir
475
476* Tue Mar 14 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.0-0vl1
477- new upstream release
478
479* Sun Mar 12 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 2.13.0.10-0vl2
480- fix %%post script for Vine Linux
481- remove Patch17,18 which are not needed for Vine Linux
482
483* Sun Mar 12 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.13.0.10-0vl1
484- new upstream release
485- updated %%post and %%postun script
486
487* Tue Sep 20 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.0.4-0vl1
488- new upstream release
489- import gdm-theme-vine from Vine Linux 3.2
490
491* Mon Nov 08 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.0.6-0vl1
492- new upstream release
493- build with gnome-2.8.1
494
495* Sun Oct 17 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.6.0.5-0vl1
496- new upstream release
497- update Vine patch
498- remove obsolete patch and ja.po
499
500* Fri Oct 15 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.4.7-0vl10
501- update Vine theme for Vine Linux 3.1
502
503* Mon Jul 26 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.4.7-0vl9
504- rebuild to fix bogus consolehelper symlinks
505
506* Fri Jul 23 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.4.7-0vl8
507- revert 0vl7's change..
508
509* Thu Jul 22 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.4.7-0vl7
510- use 100dpi for X resolution instead of 96dpi
511
512* Mon Jun 28 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.4.7-0vl6
513- Requires usermode-gtk instead of usermode
514
515* Wed Jun 16 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.4.7-0vl5
516- move WindowMaker.desktop to WindowMaker package.
517
518* Fri Apr  2 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.4.7-0vl4
519- add modified ja.po to fix a strange date notation in gdmlogin.
520
521* Wed Mar 10 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.4.7-0vl3
522- add new Vine theme, rename old Vine theme to AquaVine
523- switch to new default Theme
524
525* Fri Mar  5 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.4.7-0vl2
526- update GDM-Vine theme to change font size.
527
528* Sat Jan 31 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.4.7-0vl1
529- new upstream release
530
531* Sat Oct 18 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.4.4-0vl1
532- new upstream release
533
534* Sun Sep 28 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.4.3-0vl1
535- new upstream release
536- fix locale.alias to use ja_JP.eucJP instead of UTF-8 for Japanese locale.
537  (this was fixed in 2.4.0.12, but it does not works with 2.4.4.x)
538
539* Tue Sep 16 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.4.1-0vl1
540- new upstream release
541
542* Sat Sep 13 2003 KAZUKI SHIMURA <rito@pos.to> 2.4.4.0-0vl4
543- fix LogDir/ServAuthDir
544
545* Tue Sep 09 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.4.0-0vl3
546- add WindowMaker.desktop which should go to WindowMaker package.
547
548* Tue Sep 09 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.4.0-0vl2
549- update ja.po
550- modified gdm.conf
551
552* Mon Sep 08 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.4.0-0vl1
553- new upstream release
554- partially merged with rawhide package
555  * Thu Sep  4 2003 Alexander Larsson <alexl@redhat.com> 1:2.4.4.0-2
556  - Use the right default session (#103546)
557  * Wed Sep  3 2003 Alexander Larsson <alexl@redhat.com> 1:2.4.4.0-1
558  - update to 2.4.4.0
559  - update to georges new selinux patch
560  * Fri Aug 29 2003 Elliot Lee <sopwith@redhat.com> 1:2.4.2.102-2
561  - Remove scrollkeeper files
562  * Tue Aug 26 2003 George Lebl <jirka@5z.com> 1:2.4.2.102-1
563  - updated to 2.4.2.102
564  - removed outdated patches
565  - Use Xsetup_0 only for :0 since that's the way it works
566    for xdm
567  - remove the gnome.desktop file, its going into gnome-session
568  * Thu Aug 14 2003 Havoc Pennington <hp@redhat.com> 1:2.4.1.6-1
569  - update to latest bugfix version on george's advice
570  - remove setlocale patch that's upstream
571  - remove console setup patches that are upstream
572  * Thu Jun 12 2003 Dan Walsh <dwalsh@redhat.com> 2.4.1.3-9
573  - Port to SELinux
574  * Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
575  - rebuilt
576  * Tue Jun  3 2003 Jeff Johnson <jbj@redhat.com>
577  - add explicit epoch's where needed.
578  * Sun May 04 2003 Florian La Roche <Florian.LaRoche@redhat.de>
579  - fix post: localstatedir -> _localstatedir
580  * Thu May  1 2003 Havoc Pennington <hp@redhat.com> 1:2.4.1.3-6
581  - enable UTF-8 for CJK
582  * Mon Feb 24 2003 Elliot Lee <sopwith@redhat.com>
583  - debuginfo rebuild
584  * Thu Feb 20 2003 Owen Taylor <otaylor@redhat.com>
585  - Run the error dialogs under /bin/sh --login, so we
586    get lang.sh, and thus unicode_start running. Fixes
587    the X-doesn't-start dialog showing up as random
588    blinking characters.
589  * Fri Feb 14 2003 Havoc Pennington <hp@redhat.com> 1:2.4.1.3-2
590  - nuke buildreq Xft
591  * Wed Feb  5 2003 Havoc Pennington <hp@redhat.com> 1:2.4.1.3-1
592  - upgrade to 2.4.1.3
593  * Mon Feb  3 2003 Matt Wilson <msw@redhat.com> 1:2.4.1.1-6
594  - added gdm-2.4.1.1-64bit.patch to fix 64 bit crash in cookie
595    generation (#83334)
596  * Mon Feb  3 2003 Owen Taylor <otaylor@redhat.com>
597  - Add patch to fix problem where setting LC_COLLATE=C would give LC_MESSAGES=wa_BE (#82019)
598  * Thu Jan 30 2003 Matt Wilson <msw@redhat.com> 1:2.4.1.1-3
599  - fix pam.d entry, pam_env wasn't properly patched
600  - disable optimizations on x86_64 to work around gcc bug
601  * Wed Jan 22 2003 Tim Powers <timp@redhat.com>
602  - rebuilt
603  * Mon Jan 20 2003 Owen Taylor <otaylor@redhat.com>
604  - Upgrade to 2.4.1.1 (Fixes #81907)
605  - Redirect stdout of kill to /dev/null (#80814)
606  * Thu Jan  9 2003 Havoc Pennington <hp@redhat.com>
607  - 2.4.1.0
608  - add patch from george to ask "are you sure?" for shutdown/reboot since
609    it's now just one click away
610  * Thu Dec 19 2002 Havoc Pennington <hp@redhat.com>
611  - 2.4.0.12
612  - update new patch for no-utf8-in-cjk
613  - drop patch to photo setup, now upstream
614  - drop confdocs patch now upstream
615  - move all the gdm.conf changes into single "rhconfig" patch
616  - remove "sid-fix" patch now upstream
617
618* Sun Jan 26 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.1.2-0vl1
619- new upstream release
620- add '-dpi 96' to Xserver option. (change default to 96dpi)
621
622* Thu Jan 16 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.1.1-0vl1
623- new upstream release
624
625* Sat Jan  4 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.1.0-0vl1
626- new upstream release
627- update PreReq tag.
628- discard scrollkeeper outputs.
629
630* Fri Jan  3 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.0.12-0vl3
631- add Vine theme as default.
632- change ja locale from utf8 to eucJP
633- add Xsession/Xclients script for gdm.
634- add Sessions/* for Gnome/WindowMaker.
635
636* Mon Dec 30 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.0.12-0vl2
637- remove redhat category
638
639* Mon Dec 30 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 2.4.0.12-0vl1
640- merged with rawhide release for gnome2.
641
642* Mon Nov 11 2002 Nalin Dahyabhai <nalin@redhat.com> 2.4.0.7-14
643- remove the directory part of module specifications from the PAM config files,
644  allowing the same PAM config to work for either arch on multilib boxes
645
646* Thu Sep  5 2002 Owen Taylor <otaylor@redhat.com>
647- Change zh_CN entry in language menu to zh_CN.GB18030
648
649* Thu Sep  5 2002 Akira TAGOH <tagoh@redhat.com> 2.4.0.7-12
650- copied gdm-ja.po to ja.po.
651
652* Mon Sep  2 2002 Owen Taylor <otaylor@redhat.com>
653- Fix problem where gdm was opening ~/.xsession-errors itself to bad effect
654
655* Sat Aug 31 2002 Havoc Pennington <hp@redhat.com>
656- include ja.po with new date format
657
658* Wed Aug 28 2002 Havoc Pennington <hp@redhat.com>
659- remove noreplace on gdm.conf #71309
660- make gnome-gdmsetup absolute, #72910
661
662* Wed Aug 28 2002 Havoc Pennington <hp@redhat.com>
663- put /usr/X11R6/bin in path for now fixes #72781
664- use proper i18n algorithm for word wrap, #71937
665- remove greek text from language picker due to lack
666  of greek font
667- reorder PAM config file #72657
668
669* Wed Aug 28 2002 Havoc Pennington <hp@redhat.com>
670- improve gdmsetup icon
671- remove GNOME session, we will instead put it in gnome-session
672- apply patch from george to make gdmphotosetup file selector
673  work
674
675* Mon Aug 26 2002 Elliot Lee <sopwith@redhat.com> 2.4.0.7-6
676- Patches for #64902, #66486, #68483, #71308
677- post-install script changes from the gdm.spec mentioned in #70965
678- noreplace on gdm.conf for #71309
679
680* Sun Aug 25 2002 Havoc Pennington <hp@redhat.com>
681- put in a patch from george to fix some setsid()/kill() confusion
682  possibly fixing #72295
683- turn off UseCirclesInEntry for now, fixes #72433
684
685* Tue Aug 20 2002 Alexander Larsson <alexl@redhat.com>
686- Set UseCirclesInEntry to true in config
687
688* Thu Aug 15 2002 Havoc Pennington <hp@redhat.com>
689- rename Gnome session to GNOME, this was just bugging me
690
691* Thu Aug  8 2002 Havoc Pennington <hp@redhat.com>
692- 2.4.0.7 with bugfixes George kindly did for me,
693  including mnemonics for the graphical greeter
694- use Wonderland gtk theme for the nongraphical greeter
695- remove patches that are now upstream
696
697* Tue Jul 30 2002 Havoc Pennington <hp@redhat.com>
698- update rhconfig patch
699- use pam_timestamp for the config tool
700- link to a desktop file in redhat-menus
701- update .gnome2 patch, filed upstream bug
702- 2.4.0.4
703- rebuild with new gail, librsvg2
704
705* Tue Jun 25 2002 Owen Taylor <otaylor@redhat.com>
706- Require redhat-artwork, make the default greeter theme Wonderland
707- Look for all configuration in .gnome2 not .gnome. This avoids problems
708  with changes in the set of session/lang.
709- Remove English from locale.alias, make most locales UTF-8
710-C all find_lang with the right name
711
712* Sun Jun 16 2002 Havoc Pennington <hp@redhat.com>
713- rebuild for new libs
714- put gdm-autologin pam config file in file list, hope
715  its absence wasn't deliberate
716- use desktop-file-install
717
718* Mon Jun 10 2002 Havoc Pennington <hp@redhat.com>
719- rebuild in different environment
720
721* Mon Jun 10 2002 Havoc Pennington <hp@redhat.com>
722- 2.4.0.0
723
724* Tue May 21 2002 Havoc Pennington <hp@redhat.com>
725- rebuild in different environment
726
727* Tue May 21 2002 Havoc Pennington <hp@redhat.com>
728- 2.3.90.3
729
730* Tue May 14 2002 Matt Wilson <msw@redhat.com> 2.3.90.2.90-1
731- pulled from current CVS, named it 2.3.90.2.90-1
732
733* Thu Feb 14 2002 Havoc Pennington <hp@redhat.com>
734- rebuild for new libs
735- add URL tag
736
737* Mon Feb 11 2002 Alex Larsson <alexl@redhat.com> 2.3.90.1.90-1
738- Updated to a cvs snapshot that has the new greeter.
739
740* Thu Jan 24 2002 Havoc Pennington <hp@redhat.com>
741- rebuild in rawhide
742
743* Tue Sep  4 2001 Havoc Pennington <hp@redhat.com>
744- fix #52997 (ukrainian in language list)
745
746* Fri Aug 31 2001 Havoc Pennington <hp@redhat.com>
747- Add po files from sources.redhat.com
748
749* Mon Aug 27 2001 Havoc Pennington <hp@redhat.com>
750- Add po files from sources.redhat.com
751
752* Wed Aug 15 2001 Nalin Dahyabhai <nalin@redhat.com>
753- set SESSION to true in console.apps control file
754
755* Tue Aug 14 2001 Havoc Pennington <hp@redhat.com>
756- change default title font to work in CJK, #51698
757
758* Wed Aug  8 2001 Bill Nottingham <notting@redhat.com>
759- fix %pre for using /var/gdm as home dir
760
761* Sun Aug  5 2001 Nalin Dahyabhai <nalin@redhat.com>
762- Tweak PAM setup for gdmconfig to match other consolehelper users
763
764* Fri Aug  3 2001 Owen Taylor <otaylor@redhat.com>
765- Set RUNNING_UNDER_GDM when running display init script
766- Run xsri as the background program
767
768* Thu Aug 02 2001 Havoc Pennington <hp@redhat.com>
769- Change how session switching works, #49480
770- don't offer to make Failsafe the default, #49479
771
772* Thu Aug 02 2001 Havoc Pennington <hp@redhat.com>
773- clean up some format string mess, and don't
774  log username to syslog, #5681
775- own some directories #50692
776
777* Wed Aug 01 2001 Havoc Pennington <hp@redhat.com>
778- require/buildrequire latest gnome-libs, to compensate
779  for upstream crackrock. #50554
780
781* Tue Jul 31 2001 Havoc Pennington <hp@redhat.com>
782- get rid of GiveConsole/TakeConsole, bug #33710
783
784* Sun Jul 22 2001 Havoc Pennington <hp@redhat.com>
785- use Raleigh theme for gdm
786
787* Thu Jul 19 2001 Havoc Pennington <hp@redhat.com>
788- depend on usermode, xinitrc
789 
790* Thu Jul 19 2001 Havoc Pennington <hp@redhat.com>
791- build requires pam-devel, should fix #49448
792
793* Mon Jul 16 2001 Havoc Pennington <hp@redhat.com>
794- log to /var/log/gdm/*
795
796* Mon Jul 16 2001 Havoc Pennington <hp@redhat.com>
797- make Halt... power off
798
799* Tue Jul 10 2001 Havoc Pennington <hp@redhat.com>
800- gdm user's homedir to /var/gdm not /home/gdm
801
802* Mon Jul 09 2001 Havoc Pennington <hp@redhat.com>
803- put pam.d/gdm back in file list
804
805* Sun Jul 08 2001 Havoc Pennington <hp@redhat.com>
806- upgrade to 2.2.3.1, pray this fixes more than it breaks
807
808* Thu Jul 05 2001 Havoc Pennington <hp@redhat.com>
809- add "rpm" user to those not to show in greeter
810
811* Tue Jul 03 2001 Havoc Pennington <hp@redhat.com>
812- Upgrade to 2.2.3
813- require usermode since configure script now checks for it
814
815* Fri Jun 01 2001 Havoc Pennington <hp@redhat.com>
816- Prereq for scrollkeeper-update
817
818* Thu May 30 2001 Havoc Pennington <hp@redhat.com>
819- New CVS snap with the "no weird sessions" options;
820  more default settings changes
821
822* Wed May 30 2001 Havoc Pennington <hp@redhat.com>
823- Change a bunch of default settings; remaining fixes will involve C hacking
824
825* Wed May 30 2001 Havoc Pennington <hp@redhat.com>
826- After, oh, 2 years or so, finally upgrade version and set
827  release to 1. Remove all hacks and patches, pretty much;
828  this will break a few things, will be putting them back
829  via GNOME CVS. All changes should go in 'gdm2' module in
830  CVS for now.
831
832  This RPM enables all kinds of features that I'm going to turn
833  off shortly, so don't get excited about them. ;-)
834
835* Thu Mar 22 2001 Nalin Dahyabhai <nalin@redhat.com>
836- reinitialize pam credentials after calling initgroups() -- the
837  credentials may be group memberships
838
839* Mon Mar 19 2001 Owen Taylor <otaylor@redhat.com>
840- Fix colors patch
841
842* Thu Mar 15 2001 Havoc Pennington <hp@redhat.com>
843- translations
844
845* Mon Mar  5 2001 Preston Brown <pbrown@redhat.com>
846- don't screw up color map on 8 bit displays
847
848* Fri Feb 23 2001 Trond Eivind Glomsr藷?<teg@redhat.com>
849- langify
850- Don't define and use "ver" and "nam" at the top of the spec file
851- use %%{_tmppath}
852
853* Tue Feb 13 2001 Tim Powers <timp@redhat.com>
854- don't allow gdm to show some system accounts in the browser bugzilla
855  #26898
856
857* Fri Jan 19 2001 Akira TAGOH <tagoh@redhat.com>
858- Updated Japanese translation.
859
860* Tue Jan 02 2001 Havoc Pennington <hp@redhat.com>
861- add another close() to the fdleak patch, bugzilla #22794
862
863* Sun Aug 13 2000 Owen Taylor <otaylor@redhat.com>
864- Return to toplevel main loop and start Xdcmp if enabled
865  (Bug #16106)
866
867* Fri Aug 11 2000 Jonathan Blandford <jrb@redhat.com>
868- Up Epoch and release
869
870* Wed Aug 02 2000 Havoc Pennington <hp@redhat.com>
871- Requires Xsession script
872
873* Wed Jul 19 2000 Owen Taylor <otaylor@redhat.com>
874- Italian is better as it_IT than it_CH (bugzilla 12425)
875
876* Mon Jul 17 2000 Jonathan Blandford <jrb@redhat.com>
877- Don't instally gdmconfig as it doesn't work.
878
879* Fri Jul 14 2000 Havoc Pennington <hp@redhat.com>
880- Rearrange code to avoid calling innumerable system calls
881  in a signal handler
882
883* Fri Jul 14 2000 Havoc Pennington <hp@redhat.com>
884- Verbose debug spew for infinite loop stuff
885
886* Fri Jul 14 2000 Havoc Pennington <hp@redhat.com>
887- Try to fix infinite loops on X server failure
888
889* Thu Jul 13 2000 Prospector <bugzilla@redhat.com>
890- automatic rebuild
891
892* Thu Jun 29 2000 Havoc Pennington <hp@redhat.com>
893- Remove Docdir
894
895* Mon Jun 19 2000 Havoc Pennington <hp@redhat.com>
896- Fix file descriptor leak (Bugzilla 12301)
897
898* Mon Jun 19 2000 Havoc Pennington <hp@redhat.com>
899- Apply security errata patch we released for 6.2
900- Add Gnome.session back, don't know when it disappeared or why
901
902* Thu Jun  1 2000 Nalin Dahyabhai <nalin@redhat.com>
903- modify PAM setup to use system-auth
904
905* Fri May 19 2000 Havoc Pennington <hp@redhat.com>
906- rebuild for the Winston tree
907
908* Fri Feb 04 2000 Havoc Pennington <hp@redhat.com>
909- Modify Default.session and Failsafe.session not to add -login option to bash
910- exec the session scripts with the user's shell with a hyphen prepended
911- doesn't seem to actually work yet with tcsh, but it doesn't seem to
912  break anything. needs a look to see why it doesn't work
913
914* Fri Feb 04 2000 Havoc Pennington <hp@redhat.com>
915- Link PreSession/Default to xdm/GiveConsole
916- Link PostSession/Default to xdm/TakeConsole
917
918* Fri Feb 04 2000 Havoc Pennington <hp@redhat.com>
919- Fix the fix to the fix (8877)
920- remove docs/gdm-manual.txt which doesn't seem to exist from %doc
921
922* Fri Feb 04 2000 Havoc Pennington <hp@redhat.com>
923- Enhance 8877 fix by not deleting the "Please login"
924  message
925
926* Fri Feb 04 2000 Havoc Pennington <hp@redhat.com>
927- Try to fix bug 8877 by clearing the message below
928  the entry box when the prompt changes. may turn
929  out to be a bad idea.
930
931* Mon Jan 17 2000 Elliot Lee <sopwith@redhat.com>
932- Fix bug #7666: exec Xsession instead of just running it
933
934* Mon Oct 25 1999 Jakub Jelinek <jakub@redhat.com>
935- Work around so that russian works (uses koi8-r instead
936  of the default iso8859-5)
937
938* Tue Oct 12 1999 Owen Taylor <otaylor@redhat.com>
939- Try again
940
941* Tue Oct 12 1999 Owen Taylor <otaylor@redhat.com>
942- More fixes for i18n
943
944* Tue Oct 12 1999 Owen Taylor <otaylor@redhat.com>
945- Fixes for i18n
946
947* Fri Sep 26 1999 Elliot Lee <sopwith@redhat.com>
948- Fixed pipewrite bug (found by mkj & ewt).
949
950* Fri Sep 17 1999 Michael Fulbright <drmike@redhat.com>
951- added requires for pam >= 0.68
952
953* Fri Sep 10 1999 Elliot Lee <sopwith@redhat.com>
954- I just update this package every five minutes, so any recent changes are my fault.
955
956* Thu Sep 02 1999 Michael K. Johnson <johnsonm@redhat.com>
957- built gdm-2.0beta2
958
959* Mon Aug 30 1999 Michael K. Johnson <johnsonm@redhat.com>
960- built gdm-2.0beta1
961
962* Tue Aug 17 1999 Michael Fulbright <drmike@redhat.com>
963- included rmeier@liberate.com patch for tcp socket X connections
964
965* Mon Apr 19 1999 Michael Fulbright <drmike@redhat.com>
966- fix to handling ancient gdm config files with non-standard language specs
967- dont close display connection for xdmcp connections, else we die if remote
968  end dies.
969
970* Fri Apr 16 1999 Michael Fulbright <drmike@redhat.com>
971- fix language handling to set GDM_LANG variable so gnome-session
972  can pick it up
973
974* Wed Apr 14 1999 Michael Fulbright <drmike@redhat.com>
975- fix so certain dialog boxes dont overwrite background images
976
977* Wed Apr 14 1999 Michael K. Johnson <johnsonm@redhat.com>
978- do not specify -r 42 to useradd -- it doesn't know how to fall back
979  if id 42 is already taken
980
981* Fri Apr 9 1999 Michael Fulbright <drmike@redhat.com>
982- removed suspend feature
983
984* Mon Apr 5 1999 Jonathan Blandford <jrb@redhat.com>
985- added patch from otaylor to not call gtk funcs from a signal.
986- added patch to tab when username not added.
987- added patch to center About box (and bring up only one) and ignore "~"
988  and ".rpm" files.
989
990* Fri Mar 26 1999 Michael Fulbright <drmike@redhat.com>
991- fixed handling of default session, merged all gdmgreeter patches into one
992
993* Tue Mar 23 1999 Michael Fulbright <drmike@redhat.com>
994- remove GNOME/KDE/AnotherLevel session scripts, these have been moved to
995  the appropriate packages instead.
996- added patch to make option menus always active (security problem otherwise)
997- added jrb's patch to disable stars in passwd entry field
998
999* Fri Mar 19 1999 Michael Fulbright <drmike@redhat.com>
1000- made sure /usr/bin isnt in default path twice
1001- strip binaries
1002
1003* Wed Mar 17 1999 Michael Fulbright <drmike@redhat.com>
1004- fixed to use proper system path when root logs in
1005
1006* Tue Mar 16 1999 Michael Fulbright <drmike@redhat.com>
1007- linked Init/Default to Red Hat default init script for xdm
1008- removed logo from login dialog box
1009
1010* Mon Mar 15 1999 Michael Johnson <johnsonm@redhat.com>
1011- pam_console integration
1012
1013* Tue Mar 09 1999 Michael Fulbright <drmike@redhat.com>
1014- added session files for GNOME/KDE/AnotherLevel/Default/Failsafe
1015- patched gdmgreeter to not complete usernames
1016- patched gdmgreeter to not safe selected session permanently
1017- patched gdmgreeter to center dialog boxes
1018
1019* Mon Mar 08 1999 Michael Fulbright <drmike@redhat.com>
1020- removed comments from gdm.conf file, these are not parsed correctly
1021
1022* Sun Mar 07 1999 Michael Fulbright <drmike@redhat.com>
1023- updated source line for accuracy
1024
1025* Fri Feb 26 1999 Owen Taylor <otaylor@redhat.com>
1026- Updated patches for 1.0.0
1027- Fixed some problems in 1.0.0 with installation directories
1028- moved /usr/var/gdm /var/gdm
1029
1030* Thu Feb 25 1999 Michael Fulbright <drmike@redhat.com>
1031- moved files from /usr/etc to /etc
1032
1033* Tue Feb 16 1999 Michael Johnson <johnsonm@redhat.com>
1034- removed commented-out #1 definition -- put back after testing gnome-libs
1035  comment patch
1036
1037* Sat Feb 06 1999 Michael Johnson <johnsonm@redhat.com>
1038- initial packaging
Note: See TracBrowser for help on using the repository browser.