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

Revision 2979, 36.2 KB checked in by daisuke, 13 years ago (diff)

gdm: fix metacity warning, update ja.po, update gdmsetup

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