-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
1557 lines (954 loc) · 51.2 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Sun Jun 18 22:07:56 2000 Greg J. Badros <[email protected]>
* include/scwmconfig.h.in, acconfig.h, configure.in: Check for
scm_hook_empty_p and added HAVE_SCM_HOOK_EMPTY_P.
2000-06-18 Greg J. Badros <[email protected]>
* pixmaps/scwm-logo.gif: Added, from Glenn Trigg
* include/scwmconfig.h.in, acconfig.h, configure.in: Check for
scm_create_hook and added HAVE_SCM_CREATE_HOOK (change from Eric
Moore)
* THANKS: added Eli Barzilay
Mon Apr 10 08:13:39 2000 Greg J. Badros <[email protected]>
* README-constraints: Added a forward reference about
GUILE_LOAD_PATH to help newbies.
Sun Feb 20 18:50:41 2000 Greg J. Badros <[email protected]>
* README-COOL-EXAMPLES: Added
* Makefile.am: Added README-COOL-EXAMPLES
Sun Feb 20 09:34:47 2000 Greg J. Badros <[email protected]>
* Makefile.common: Use `basename $< .c` (or .cc) instead of GNU
Make's $(basename $<) construct. Helps for compiling w/ vendor makes.
Sun Feb 13 11:15:49 2000 Greg J. Badros <[email protected]>
* SCWM-VERSION: Bump to 0.99.6.1post.
* README.in, README: Added "Full programmability", "theme support" to bullets.
* configure.in: Require guile-config script to exist and run, else
exit -1.
Fri Jan 28 17:25:52 2000 Greg J. Badros <[email protected]>
* SCWM-VERSION: Bump to 0.99.6.1
* NEWS, README: Updated for new release.
* scwm.spec.in: Do not use @examplesdir@, instead use
%{prefix}/share/doc/scwm/examples -- config.status substitutes in
${prefix} which is no good in a scwm.spec file. The substitution
isn't necessary anyway, because the ./configure line is under the
control of the scwm.spec file.
Fri Jan 28 13:57:13 2000 Greg J. Badros <[email protected]>
* configure.in: Added CASSOWARY_STATIC_LIBS, GUILE_STATIC_LIBS @@
substitutions to support conditional static linking of those
libraries when --enable-dump. Changes coupled with
src/Makefile.am.
Wed Jan 26 16:51:41 2000 Greg J. Badros <[email protected]>
* scwm.spec.in: Use @examplesdir@ for those files installed
there.
* configure.in: Added --with-examplesdir option.
Thu Jan 20 12:24:43 2000 Greg J. Badros <[email protected]>
* Makefile.am: Fix typo, rename include/config.h.in to
include/scwmconfig.h.in.
Thu Jan 20 11:40:17 2000 Greg J. Badros <[email protected]>
* include/scwmconfig.h.in: Added
* configure.in: Use include/scwmconfig.h, use SCWM-VERSION sh
script, substitute SCWM_MAJOR_VERSION, SCWM_MINOR_VERSION,
SCWM_VERSION, and build src/scwm-versiondat.h; these changes
inspired by how guile handles its version information.
* SCWM-VERSION, Makefile.am: Added SCWM-VERSION
Wed Jan 12 23:29:14 2000 Greg J. Badros <[email protected]>
* configure.in, README: Bump to 0.99.6post, update copyrights
* NEWS: Prepare for next version down the road.
Wed Jan 12 21:26:09 2000 Greg J. Badros <[email protected]>
* configure.in, README: Bump to 0.99.6!
* configure.in: Make guile-include-prefix override `guile-config
compile` but use guile-config to set the default.
* INSTALL: Updates for new release-- mention guile-gtk-0.17, minor
tweaks.
* ANNOUNCE.in: Do not recommend snapshots of Guile. Drop trailing
"/" from URLs.
Tue Jan 11 23:54:52 2000 Greg J. Badros <[email protected]>
* Makefile.common: Use the build directory tree to get at
scwm-doc-snarf, since it is now generated by autoconf from
scwm-doc-snarf.in.
Tue Jan 11 23:44:05 2000 Greg J. Badros <[email protected]>
* configure.in: Do not chmod +x src/scwm-snarf, since that does
not work when build_dir != src_dir. Just chmod +x
src/scwm-doc-snarf since that *does* have a .in file.
Tue Jan 11 23:40:08 2000 Greg J. Badros <[email protected]>
* configure.in, README: Bump to 0.99.6pre3. Patch from Harald
Meland to test for guile libraries better on his Sun platform.
Generate src/scwm-doc-snarf, since src/scwm-doc-snarf.in is now
distributed to permit @CPP@ to be expanded in it so that the
configured cpp is used (problem first noticed by Harald Meland).
Also chmod +x the resulting scwm-doc-snarf.
Tue Jan 11 10:32:45 2000 Greg J. Badros <[email protected]>
* configure.in, README: Bump to 0.99.6pre2
Mon Jan 10 14:40:21 2000 Greg J. Badros <[email protected]>
* configure.in: Make it 0.99.6pre1, so rpm is happy (version
numbers for rpm cannot include dashes)
Fri Jan 7 10:38:02 2000 Greg J. Badros <[email protected]>
* configure.in: Bump to 0.99.6-pre1
Fri Jan 7 10:25:23 2000 Greg J. Badros <[email protected]>
* README-testing-applications: Added, to document some useful
programs to test Scwm with.
Fri Dec 3 13:22:49 1999 Greg J. Badros <[email protected]>
* Makefile.common: Added rules for creating *.doc files from *.c,
*.cc files for new argument+string based docstring extraction
system.
Fri Nov 26 14:49:30 1999 Greg J. Badros <[email protected]>
* scwm-bug-report-information: Fix some bugs from directory
restructure (look in src/* not scwm/* for files). Added gcc/g++
version execution, cassowary-config info, and look for
GUILE_LOAD_PATH in environment variables.
Thu Nov 25 14:18:42 1999 Greg J. Badros <[email protected]>
* configure.in: Bump to pre0.99.6
Tue Nov 23 12:39:38 1999 Greg J. Badros <[email protected]>
* README: Added; Do not ignore README -- needs to exist for automake, so
put that file back in repo, though keep README.in around, too.
Tue Oct 26 11:46:45 1999 Greg J. Badros <[email protected]>
* configure.in: Bump to 0.99.5.1.
* README-constraints: Some extra tidbits, thanks to emails
exchange with Robert Chassell.
Sat Oct 23 12:51:10 1999 Greg J. Badros <[email protected]>
* configure.in: Bump to 0.99.5pre1, and use imlib_prefix/include
in @PREFIX_INCLUDES@ (Thanks to bug report from Jonas Steverud!).
Tue Oct 19 15:47:08 1999 Greg J. Badros <[email protected]>
* configure.in: Added --enable-dump option to turn on unexec
capabilities. Use --enable-dump configure option and
make symlink src/libunexec.a to the guile-hobbit
unexec/libunexec.a file.
* acconfig.h: Added ENABLE_DUMP #undef for the new --enable-dump
option.
Tue Oct 19 09:16:19 1999 Greg J. Badros <[email protected]>
* pixmaps/scwm-freebsd.xpm: Added. Contributed by Douglas
K. Rand.
Sun Oct 17 19:21:56 1999 Greg J. Badros <[email protected]>
* configure.in: Added --with-docdir option for specifying which
Scwm documentation files should go. Thanks Francesco Tapparo!
Sun Oct 17 11:37:02 1999 <[email protected]>
* Makefile.common (ETAGS_ARGS): Fix to allow SCWM_[IW]?PROC, not
just SCWM_PROC.
Wed Oct 6 17:45:40 1999 Greg J. Badros <[email protected]>
* NEWS: Release 0.99.4.
* configure.in: Bump to 0.99.4.
Wed Oct 6 17:45:31 1999 Greg J. Badros <[email protected]>
* pixmaps/nonant-keys.xpm: Added.
Wed Oct 6 14:31:55 1999 Greg J. Badros <[email protected]>
* pixmaps/Makefile.am (scwm_pixmap_DATA): Robert Bihlmeyer's patch
to use notdir and wildcard to make it both build in a separate
directory and work with Debian packaging. (Are these GNU Make
isms?)
Sun Oct 3 16:25:47 1999 Greg J. Badros <[email protected]>
* autogen.sh: Added "-I ." when running aclocal -- suggested by
Mikael Djurfeldt (for Guile's autogen.sh). Drop some old
commented old lines.
Mon Sep 27 15:19:12 1999 Greg J. Badros <[email protected]>
* scwm.spec.in (Docdir): Use info/scwm.info, not info/. Thanks
Jürgen Botz!
Sun Sep 26 14:01:55 1999 Greg J. Badros <[email protected]>
* Makefile.am: Rename subdir `scwm' to `src'.
* Makefile.common: Added SCWM_SRC_DIR, and use it for snarfing
(part of move of scwm/scwm -> scwm/src).
Sun Sep 26 13:42:06 1999 Greg J. Badros <[email protected]>
* INSTALL: Updated a bit.
* configure.in: Rename scwm/scwm to scwm/src. Build src/Makefile,
init w/ src/scwm.c
Sun Sep 26 13:03:00 1999 Greg J. Badros <[email protected]>
* configure.in: Bump to 0.99.3post
Sun Sep 26 12:58:48 1999 Greg J. Badros <[email protected]>
* configure.in: Generate README, ANNOUNCE from *.in
* README, ANNOUNCE: Removed
* README.in, ANNOUNCE.in: Added
Sat Sep 25 17:01:29 1999 Greg J. Badros <[email protected]>
* configure.in: Bump to 0.99.3
Mon Sep 20 17:36:04 1999 Greg J. Badros <[email protected]>
* configure.in: Added scwm_viavoice_grammardir and do its
substitution so that the .fsg file goes in the right place.
Sun Sep 19 00:36:27 1999 Greg J. Badros <[email protected]>
* configure.in, acconfig.h: Handle HAVE_SCM_MAKE_SMOB_TYPE_MFPE.
Fri Sep 17 15:56:27 1999 Greg J. Badros <[email protected]>
* configure.in: Try to fix --enable-viavoice and
--enable-gnome-corba so that they default to no and do the right thing.
Fri Sep 17 12:21:59 1999 Greg J. Badros <[email protected]>
* configure.in: Added --enable-gnome-corba option (instead of
having to use an environment variable to turn it on)
Thu Sep 16 16:14:29 1999 Greg J. Badros <[email protected]>
* configure.in: Added --disable-viavoice flag
Thu Sep 16 12:12:20 1999 Greg J. Badros <[email protected]>
* configure.in: Bump to 0.99.2post. Test for viavoice. Drop
corba/Makefile from output list (real corba interface is in
modules/corba-- the corba/ directory is obsoleted), add
modules/viavoice/Makefile to the list.
* acconfig.h: Added HAVE_VIAVOICE
* Makefile.am: Drop corba subdir (module/corba is the right dir).
Tue Sep 14 15:06:38 1999 Greg J. Badros <[email protected]>
* scwm.spec.in: Fix typo -- et. al. -> et al.
Tue Sep 14 14:33:35 1999 Greg J. Badros <[email protected]>
* configure.in, NEWS: Release 0.99.2
Mon Sep 13 13:31:54 1999 Greg J. Badros <[email protected]>
* README: Call it a beta, not pre-stable, release
Mon Sep 13 13:31:07 1999 Greg J. Badros <[email protected]>
* README-Gnome: Mark that Scwm *is* session-managed.
Mon Sep 13 13:30:30 1999 Greg J. Badros <[email protected]>
* configure.in: Bump to pre11.
Wed Sep 8 21:01:48 1999 Greg J. Badros <[email protected]>
* configure.in: bump to pre10.
Wed Sep 8 21:01:02 1999 Greg J. Badros <[email protected]>
* Makefile.common: Added missing semicolons.
Wed Sep 8 18:17:38 1999 Greg J. Badros <[email protected]>
* configure.in: bump to pre9
Wed Sep 8 09:37:44 1999 Greg J. Badros <[email protected]>
* configure.in: Set HAVE_ESD conditional to false when
--disable-esd. (Thanks to Hubert Canon for bug report!).
* Makefile.common: Use || {rm $@; false} in building .x files so
faulty .x files do not stick around (inspired by similar change
using a subshell in the guile sources).
Tue Sep 7 23:47:16 1999 Greg J. Badros <[email protected]>
* configure.in: Use cassowary-config script if it is installed to
determine the GTL libs --- assume no GTL if no script exists.
* scwm.spec.in: Require virtual package
`cassowary-constraint-solver' (both cassowary and cassowary-nofd
provide it)
Tue Sep 7 22:30:56 1999 Greg J. Badros <[email protected]>
* scwm.spec.in: Added README-Gnome, RH6-notes to %doc. Bump
release to 2.
* README-Gnome: Added
Tue Sep 7 16:41:57 1999 Greg J. Badros <[email protected]>
* configure.in: bump to pre8
Tue Sep 7 09:31:47 1999 <[email protected]>
* configure.in: Let --without-cassowary work (though just omitting
--with-cassowary might've worked before.)
* Makefile.am: Added Makefile.common to EXTRA_DIST
Mon Sep 6 17:24:12 1999 <[email protected]>
* configure.in: Bump to pre7
Mon Sep 6 17:09:43 1999 <[email protected]>
* Makefile.common: Added, to contain .x build rules, ETAGS_ARGS,
etc.
* **/Makefile.am: Use Makefile.common and clear out the old stuff
that is now in Makefile.common.
Sun Sep 5 22:02:13 1999 Greg J. Badros <[email protected]>
* configure.in: Bump to 0.99.2pre6 (lots of new stuff, including
corba server support).
Sun Sep 5 21:27:37 1999 Greg J. Badros <[email protected]>
* configure.in, modules/Makefile.am: Added modules/corba subdirectory.
Sun Sep 5 19:52:11 1999 Greg J. Badros <[email protected]>
* configure.in, Makefile.am: Added corba subdirectory.
Sun Sep 5 15:36:11 1999 Greg J. Badros <[email protected]>
* corba/: Added this directory for experimenting with adding Corba
support to Scwm.
Sat Sep 4 00:29:40 1999 Greg J. Badros <[email protected]>
* configure.in: Bump to pre5
Thu Sep 2 18:03:05 1999 Greg J. Badros <[email protected]>
* configure.in: Bump to pre4
Thu Sep 2 17:59:06 1999 Greg J. Badros <[email protected]>
* scwm.spec.in: Added Distribution tag. Split up %files section a
bit and better separate into %config and %doc types.
Wed Sep 1 19:03:42 1999 Greg J. Badros <[email protected]>
* configure.in: Added XEXT_LIB to -lXtst link attempt, and -lICE
to -lSM link attempt. Thanks Harald Meland for bug report.
Wed Sep 1 14:03:19 1999 Greg J. Badros <[email protected]>
* scwm.spec.in: Go back to release 1.
* configure.in: Bump to 0.99.2pre3.
Mon Aug 30 20:26:13 1999 Greg J. Badros <[email protected]>
* configure.in: Move automake initialization to closer to top so
it's easier to change the version number. Use 0.99.2pre2 now.
Mon Aug 30 13:07:11 1999 Greg J. Badros <[email protected]>
* scwm.spec.in: Drop scwm/pixmaps/* from %files section.
* configure.in (scwm_image_load_path): Use scwm/pixmaps, not
pixmaps/scwm. Always link cassowary w/ -lGTL
Mon Aug 30 11:12:34 1999 Greg J. Badros <[email protected]>
* scwm.spec.in: Comment out the %config line since the scwmrc
files are now covered by the %files section.
1999-08-30 Robert Bihlmeyer <[email protected]>
* pixmaps/Makefile.am: Prefix with srcdir so that srcdir !=
builddir works.
* autogen.sh: Permit users to call autogen.sh from their build
directory, and still DTRT.
Mon Aug 30 10:17:24 1999 Greg J. Badros <[email protected]>
* configure.in: Use DATADIR/scwm/scwmrc for *.scwmrc files (stick
them all in the same place.
Fri Aug 27 14:35:12 1999 Greg J. Badros <[email protected]>
* Makefile.am (EXTRA_DIST): Added RH6-notes
* scwm.spec.in: Bump release to 2.
Fri Aug 27 01:27:31 1999 Greg J. Badros <[email protected]>
* scwm.spec.in: Drop the uninstall changes to /etc/X11 for now.
Fri Aug 27 01:23:29 1999 Greg J. Badros <[email protected]>
* pixmaps/scwm-gnu-linux.xpm, pixmaps/window.xpm: Removed --
conflicted with icons in scwm-icons distribution.
Fri Aug 27 01:16:00 1999 Greg J. Badros <[email protected]>
* scwm.spec.in: Install Xsession instead of trying to patch it.
List %{prefix}/share/pixmaps/scwm/* in %files section (new
location of pixmap installations).
Fri Aug 27 01:09:28 1999 Greg J. Badros <[email protected]>
* pixmaps/*.xpm: Revised version from after talking with a graphic
designer (K. Lundquist) about the icons.
Fri Aug 27 01:06:11 1999 Greg J. Badros <[email protected]>
* RH6-notes: Added -- notes for installing scwm on top of RH6
* configure.in (scwm_pixmapdir): Change scwm_pixmapdir so it'll be
e.g. /usr/pixmaps/scwm instead of /usr/scwm/pixmaps (scwm-icons
gets installed in /usr/pixmaps/scwm). Use @prefix@ instead of
/usr in other scwm_image_load_path positions.
* scwm.spec.in: Give --with-cassowary option to make it use the
constraint solver.
Fri Aug 27 00:19:19 1999 Greg J. Badros <[email protected]>
* scwm.spec.in: Do not use exec_prefix including X11R6-- just let
binaries go in /usr/bin. Fix %post, %postun sections to use files
from installed locations, not source locations. Run ldconfig to
update for libraries (e.g., libscwmexec.so). Updates to %files section.
Thu Aug 26 22:55:17 1999 Greg J. Badros <[email protected]>
* scwm.spec.in: Require >= guile-1.3.2, fix %files list to include
/usr/X11R6/lib stuff, use %{prefix}, not /usr. Do some post
install actions to add a Scwm gnome session (hopefully-- untested).
Thu Aug 26 12:15:35 1999 Greg J. Badros <[email protected]>
* README: Constraints, not configurable. Added PACKAGE TESTING
notice.
Thu Aug 26 12:09:27 1999 Greg J. Badros <[email protected]>
* **/Makefile.am (EXTRA_DIST): Include ChangeLog files in
EXTRA_DIST for all directories.
Thu Aug 26 10:08:15 1999 Greg J. Badros <[email protected]>
* configure.in: Bump to 0.99.2
* ANNOUNCE: Revise for 0.99.2, order authors, add Jeff Nichols,
menion use of guile-1.3.2, update links, drop changes (just point
at NEWS file)
Thu Aug 26 09:34:23 1999 Greg J. Badros <[email protected]>
* README, NEWS: Update web page, alphabetize author order.
* scwm.spec.in: Added dependences, use %{prefix}, fix %files
section and use %defattr, added %post %postun sections.
Wed Aug 25 12:27:18 1999 Greg J. Badros <[email protected]>
* configure.in: Check for scm_strport_to_string
* acconfig.h: Added HAVE_SCM_STRPORT_TO_STRING
Sun Aug 22 14:25:06 1999 Greg J. Badros <[email protected]>
* */Makefile.am: Updated initial comments.
Sun Aug 22 14:21:53 1999 Greg J. Badros <[email protected]>
* scwm.spec.in: Updated description, use some definitions to ease
maintenance. Update URL.
* configure.in: Added utilities/misc/Makefile to files to
generate.
* autogen.sh: Run configure, not config.status, at conclusion;
added some smarts about grabbing the last configure line that
works for me but might not in the general case.
* Makefile.am: Put include/arg_unused.h in EXTRA_DIST
* HACKING: Added note about doc/dev/scwm-packaging-rpm.txt
1999-08-13 Greg Badros <[email protected]>
* autogen.sh: Remove ltcondif and ltmain.sh since these things are
generated by the local libtool, but only if they do not already
exist. This has caused problems more than once for people.
Perhaps we should just not distribute the files from CVS?
Sat Jul 31 19:28:58 1999 Greg Badros <[email protected]>
* include/arg_unused.h: Macros ARG_IGNORE and ARG_UNUSED that were
defined in scwm.h before, but were needed in other programs, too.
Sat Jul 31 19:28:43 1999 Greg Badros <[email protected]>
* include/arg_unused.h: Added
Mon Jul 26 14:39:59 1999 Greg Badros <[email protected]>
* configure.in (scwm_pixmapdir): Switch pixmaps to use
${datadir}/${PACKAGE}/pixmaps (Thanks Francessco Tapparo!)
Fri Jul 23 21:44:31 1999 Greg Badros <[email protected]>
* AUTHORS: Updated and organized into more categories;
alphabetized Maciej and me, as ok'd by him.
* configure.in (DL_SUPPORT): Check for dlopen in libc, too, not
just in libdl. For NetBSD-- thanks Perry Metzger!
Thu Jul 22 08:12:17 1999 Greg Badros <[email protected]>
* configure.in (DL_SUPPORT): Make DL_SUPPORT an AM_CONDITIONAL.
Sun Jul 18 17:33:34 1999 Greg Badros <[email protected]>
For Stephen Tell's scwm/3 bug. Thanks!
* acconfig.h: Added #undef HAVE_SYS_SELECT_H
* configure.in: Added check for sys/select.h header file.
Sat Jul 17 22:40:30 1999 Greg Badros <[email protected]>
* Update to scwm.mit.edu; New notes in BUG-REPORTING
Sat Jul 17 21:21:02 1999 Greg Badros <[email protected]>
* configure.in: Set version number to post0.99.1; though we never
released a version 0.99.1, Francessco had a Debian version from
CVS with that number, so skipping 0.99.1 will avoid confusion.
Our next release should be 0.99.2, and then we bump to post0.99.2
in CVS right away.
Fri Jul 16 17:52:56 1999 Greg Badros <[email protected]>
* scwm.spec.in: Drop /usr/share/scwm-{modules,themes}-- no longer
needed. Thanks Jay Belanger.
Fri Jul 16 17:52:13 1999 Greg Badros <[email protected]>
* configure.in: Make HAVE_XTEST an automake condition, and create
modules/xtest/Makefile
Tue Jul 13 23:04:20 1999 Greg Badros <[email protected]>
* configure.in: export CFLAGS so --enable-cflags=XXX works.
Added --enable-cppflags, --enable-cxxflags. Set PREFIX_INCLUDES
to the prefix/include directory. Check for GTL library for
constraint solver (link against it only if found). Set
DL_SUPPORT=true iff dlopen is found (not used elsewhere, yet).
Fri Jul 9 15:05:04 1999 Greg Badros <[email protected]>
* INSTALL: Updated with notes about dynamically-linked files,
guile-gtk, the guile-1.3 patch.
* HACKING: Up to libtool 1.3.
* COPYING.FVWM: Added my name to the disclaimer.
* BUILD-PROBLEMS-FAQ: reminder to use GNU make.
Tue Jul 6 12:41:38 1999 Greg Badros <[email protected]>
* guile-1.3-includes.patch: Added -- reference this in
BUILD-PROBLEMS-FAQ; these are my local patches to the guile
headers to get Scwm to compile w/o warnings.
Tue Jul 6 08:28:15 1999 Greg Badros <[email protected]>
* configure.in: Fixed bug -- XEXT_LIB was getting reset to "" when
testing for the XTST_LIB. Thanks for bug report Harald Meland.
Mon Jul 5 19:27:03 1999 Greg Badros <[email protected]>
* configure.in: Point scwm_image_load_path at ${scwm_pixmapdir}
(it changed values, and it's old one was duplicated here,
stupidly).
Sun Jul 4 21:40:19 1999 Greg Badros <[email protected]>
* configure.in: Check for libXtst, set HAVE_XTEST, and substitute
XTST_LIB for scwm_LDADD line in scwm/Makefile.am
* acconfig.h: Added HAVE_XTEST line.
Sun Jul 4 21:37:50 1999 Greg Badros <[email protected]>
* include/config.h.in: Removed this from CVS -- it's generated by
autoheader (run by autogen.sh)-- be sure snapshot script makes the
file.
Sat Jul 3 00:24:25 1999 Greg Badros <[email protected]>
* HACKING: Some updates and clarifications.
Fri Jul 2 09:54:59 1999 Greg Badros <[email protected]>
* configure.in: Change install directories from scwm-foo, to
scwm/foo for /modules, /themes, /pixmaps, and /util.
Thu Jul 1 22:02:48 1999 Greg Badros <[email protected]>
* configure.in: Try to make --enable-c-flags option work by
setting CFLAGS before AC_PROG_CC macro call. (Untested)
Thu Jul 1 22:00:36 1999 Greg Badros <[email protected]>
* acconfig.h: Fix typo in comment; updated email addresses.
Thu Jul 1 10:08:15 1999 Greg Badros <[email protected]>
* configure.in: Let SCWM_ARG_PATH take a withval that is not a
pre-existing directory-- if so, create the directory and print a
warning, but use the value. Thanks Francesco Tapparo!
Thu Jul 1 09:36:23 1999 Greg Badros <[email protected]>
* configure.in: Added scwm_pixmapdir, and have pixmaps go in
$libdir/scwm-pixmaps now. Make sure that directory is in
scwm_image_load_path by putting it first. Do the AC_SUBST on
scwm_pixmapdir so pixmaps/Makefile.am works.
Thu Jul 1 09:03:53 1999 Greg Badros <[email protected]>
* pixmaps/Makefile.in: removed
* pixmaps/Makefile.am: added (replacing Makefile.in, so make dist
will work for this directory). Now pixmaps get installed in
$(libdir)/scwm-pixmaps; e.g., /usr/lib/scwm-pixmaps/.
Wed Jun 30 09:38:12 1999 Greg Badros <[email protected]>
* Updated all refs to vicarious-existence.mit.edu to serveuse.mit.edu
Tue Jun 29 15:55:12 1999 Greg Badros <[email protected]>
* include/config.h.in: Added HAVE_SETENV to list of cpp macros to
set.
* configure.in: Check for setenv function -- HP/UX and AIX do not
have it (thanks Stephen Tell!)
Sat May 1 19:10:17 1999 Greg J Badros <[email protected]>
* pixmaps/Makefile.in: Added
* Makefile.am: Added pixmaps/ subdirectory so those files will get
installed.
* configure.in: Create pixmaps/Makefile. Added -lGTL to
CASSOWARY_LIBS line (if you're not using cassowary from CVS,
you'll need to remove this... sorry).
Tue Apr 27 20:59:57 1999 Greg J Badros <[email protected]>
* THANKS: Added Michael Livshin -- contributed
maximize-and-move.scm (holding off on putting in the repository
to consider his suggestion to use hooks, instead).
Thu Apr 22 20:13:20 1999 Greg J Badros <[email protected]>
* configure.in: Added utilities/run-renamed/Makefil as a file to generate.
Thu Apr 22 16:32:23 1999 Greg J Badros <[email protected]>
* configure.in (scwm_image_load_path): Added scwm_utildir -- not
used now, except by the broken utilities/pidproperty/Makefile.am.broken.
Tue Apr 20 21:17:47 1999 Greg J Badros <[email protected]>
* configure.in: Added utilities/pidproperty/Makefile as a file to generate.
Thu Apr 15 20:04:41 1999 Greg J Badros <[email protected]>
* libtool-deps.patch: Added -- I need this patch to my generated
libtool to work around the inter-library dependence bug (see
libtool web page for more information). Our snapshot script
should run this to patch libtool before packaging up.
Thu Apr 15 19:54:07 1999 Greg J Badros <[email protected]>
* acconfig.h: Added USE_PROPLIST #define -- not used right now
(and hopefully can stay that way).
* configure.in: Added --with-proplist=DIR option for building
proplist module.
Wed Apr 14 10:18:33 1999 Greg J Badros <[email protected]>
* README: Fix Maciej's email address.
* INSTALL: Note that we test against guile-1.3, not 1.2.
Tue Apr 13 16:03:15 1999 Greg J Badros <[email protected]>
* configure.in: Append /lib, /include to the --with-cassowary
directory argument. Thanks Toby Sargeant!
1999-04-07 Robert Bihlmeyer <[email protected]>
* esd.m4, imlib.m4: Removed - these are now in acinclude.m4.
Wed Apr 7 11:36:53 1999 Greg J Badros <[email protected]>
* Updated all copyrights for files changed in 1999. Added word
"Copyright" where it was missing. Added some people to copyright
lists where they were missing. Other header comment updates
including fixing Dollar-Id-Dollar (missing last dollar on
occasion), filename references, and more.
1999-04-03 Robert Bihlmeyer <[email protected]>
* .cvsignore: Ignore ltconfig, ltmain.sh (generated by
libtoolize).
* autogen.sh: Move autoheader before automake to fix one warning.
Tue Mar 30 18:44:03 1999 Greg J Badros <[email protected]>
* configure.in: Test for imlib, added --disable-imlib option to
turn it off even when found. Update --enable-warnings to use
-Wno-sign-compare which turns off warnings about signedness. Add
a note about it using gcc-specific flags.
* imlib.m4: Added, but also appended to acinclude.m4 since that's
where it gets looked for by default.
* acinclude.m4: Appended esd.m4 and imlib.m4 to this file.
Perhaps we should split them (and gtk.m4) back out and include
them somehow instead. I don't have time to debug that now, though.
Mon Mar 29 15:24:57 1999 Greg J Badros <[email protected]>
* configure.imlib.in: Drop some redundancy, propagate some
configure.in changes. We need to make imlib support a normal
option soon, but I don't know how this works for gtk.
1999-03-28 Robert Bihlmeyer <[email protected]>
* configure.in: Added modules/esdsound/Makefile to outputs.
Also check for libesd and define HAVE_ESD accordingly.
* esd.m4: New file, used by configure.in.
Sun Mar 28 16:21:27 1999 Greg J Badros <[email protected]>
* scwm.lsm: Fix Maciej's email to @alum.mit.edu
Fri Mar 26 09:01:12 1999 Greg J Badros <[email protected]>
* configure.in (scwm_image_load_path): Set this string using a for
loop, and only add directories if they exist. Also add
/usr/share/{pixmaps,icons,mini} to the list of directories to use
if they exist (Sam Steingold points out that these are standard
RedHat locations).
1999-03-25 Robert Bihlmeyer <[email protected]>
* configure.in: Added --enable-cflags.
Thu Mar 25 18:36:44 1999 Greg J Badros <[email protected]>
* configure.in: Bump version to 0.99.1 since it should not be
0.9.1-snap any longer.
1999-03-23 Robert Bihlmeyer <[email protected]>
* autogen.sh: Add --copy to libtoolize call, as we don't want to
distribute symlinks.
Tue Mar 23 11:46:00 1999 Greg J Badros <[email protected]>
* THANKS: Added imlib support to James LewisMoss's contribution list.
* acconfig.h: Added #undef USE_IMLIB for that option.
* configure.imlib.in: Added temporarily, until someone else works
out how to integrate the IMLIB checks into the configure.in for
systems w/o imlib installed. Can copy configure.imlib.in to
configure.in, sh autogen.sh, and the configure if you have imlib
installed.
Tue Mar 23 11:43:34 1999 Greg J Badros <[email protected]>
* configure.in: Drop checking for scm_make_vector behaviour -- no
longer used.
Thu Mar 18 09:51:47 1999 Greg J Badros <[email protected]>
* THANKS: Added entries at top for Carl Witty for his
documentation fixes and code cleanup, Jeffrey Nichols for the
message window feature, UI for constraints.
Wed Mar 17 18:41:12 1999 Greg J Badros <[email protected]>
* configure.in: Added SCWM_ARG_PATH_MAYBE_EMPTY macro to support
"--with-cassowary" w/o a "=DIR" argument to use the $PREFIX dir.
Simplify CASSOWARY_LIBS to work with new, installable distribution
of Cassowary (>= 0.4).
Wed Mar 17 11:17:38 1999 Greg J Badros <[email protected]>
* acinclude.m4: Do not call AC_PATH_PROG macro for gtk-config if
its path has already been decided (through use, e.g., of the
--with-gtk-prefix option). This lets me choose between gtk-1.2.0,
and gtk-1.0.6 at configure time.
Wed Mar 17 10:37:20 1999 Greg J Badros <[email protected]>
* configure.in: Fix spelling mistake, added --enable-warnings option.
1999-02-12 Greg J Badros <[email protected]>
* configure.in: Added -lstdc++ to list for link line for
--with-cassowary since it seems to be getting linked with gcc
instead of g++ sometimes.
1999-02-08 Maciej Stachowiak <[email protected]>
* HACKING: Bumped reccomended tool versions to Autoconf 2.13,
Automake 1.4 and Libtool 1.2d. Updated download pointers.
Fri Feb 5 20:36:30 1999 Maciej Stachowiak <[email protected]>
* configure.in: Bump version number to something appropriate for
CVS.
Wed Jan 27 08:15:20 1999 Greg Badros <[email protected]>
* **/*: Updated all refs to huis-clos.mit.edu to
vicarious-existence.mit.edu
Sat Jan 23 10:51:20 1999 Greg Badros <[email protected]>
* pixmaps/cn-keep-above.xpm, pixmaps/cn-keep-to-left-of.xpm:
Added; edited to have dashed dividing line showing forced border,
and make keep-above have a more vertical arrow connecting the two windows
Wed Jan 20 10:48:32 1999 Greg Badros <[email protected]>
* scwm.spec: Added. Thanks Harvey Stein!
Wed Jan 20 10:31:40 1999 Greg Badros <[email protected]>
* configure.in (scwm_image_load_path): Added
modules/xlib-drawing/Makefile to AC_OUTPUT list
* THANKS: Added Kjetil Wiekhorst Jørgensen -- he did orig. version
of RPM Updated Harvey's note to thank for RPMs.
Mon Jan 11 18:19:58 1999 Maciej Stachowiak <[email protected]>
* NEWS: Updated for 0.9 (only rough outline of changes - still
needs editing).
x1999-01-07 Todd Larason <[email protected]>
* autogen.sh: Add libtoolize call
* ltmain.sh, ltconfig: remove
1999-01-05 Robert Bihlmeyer <[email protected]>
* gtk.m4: Renamed to acinclude.m4. On machines that had gtk.m4 in
their aclocal dir, "aclocal -I ." failed because of a duplicated
macro. This should work for all.
* autogen.sh: Removed -I . option again - not needed because of
the above change.
Sun Dec 27 16:08:52 1998 Maciej Stachowiak <[email protected]>
* configure.in: Don't require gtk+-1.0.6 or higher for gtk stuff
to work; 1.0.0 should be sufficient.
Sun Dec 6 02:57:38 1998 Maciej Stachowiak <[email protected]>
* configure.in, acconfig.h: Check for scm_make_hook so we know if
new-style hooks are in effect.
* BUGS: Document limitations of kept-on-top windows.
Sat Dec 5 18:45:26 1998 Maciej Stachowiak <[email protected]>
* HACKING: Add required perl, makeinfo, Parse-RecDescent package
versions for documentation hacking; split into named sections.
1998-11-22 Todd Larason <[email protected]>
* THANKS: remove myself from the thanks list, add Russell Nelson
Fri Nov 20 01:57:57 1998 Maciej Stachowiak <[email protected]>
* autogen.sh: Add -I . option to aclocal to catch m4 macros in
scwm dir.
* configure.in: Check for Gtk+; create
modules/scwmgtkhelper/Makefile.
* gtk.m4: Added so people using scwm from CVS who don't have Gtk+
will not lose.
Tue Nov 17 01:56:17 1998 Maciej Stachowiak <[email protected]>
* Version 0.9beta1 released.
* configure.in: Bumped version to 0.9beta1
* ANNOUNCE, NEWS: Updated for 0.9beta1
* app/Makefile.am: Add scwm to DISTCLEANFILES to comply with GNU
Makefile standards. Patch from Francesco Tapparo.
* README, ANNOUNCE, scwm.lsm: Updated for 0.9beta1. No new feature
hilight list in ANNOUNCE yet.
* AUTHORS: Updated my entry.
* Makefile.am (EXTRA_DIST): Mention more files that should be
distributed.
* HACKING: Remove note about automake bug, since we decided to
work around it after all.
* THANKS: Added new contributors since 0.8; corrected some details
on Rebecca Schulman's entry; removed Todd Larason since he has
been promoted to AUTHORS.
1998-11-16 Todd Larason <jtlmolehill.org>
* AUTHORS: added myself *blush*
Mon Nov 16 22:21:21 1998 Maciej Stachowiak <[email protected]>
* configure.in: Generate scwmdoc and scwmdoc.scm from the default
templates.