forked from libsigcplusplus/libsigcplusplus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog.pre-2-3-1
2759 lines (2036 loc) · 103 KB
/
ChangeLog.pre-2-3-1
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
2.3.1:
2012-10-18 Murray Cumming <[email protected]>
Update the Doxyfile.in syntax.
* docs/reference/Doxyfile.in: By running doxygen -u
on it.
2012-10-17 Kjell Ahlstedt <[email protected]>
Add some missing newin{}.
* docs/reference/Doxyfile.in: Add ALIASES newin.
* sigc++/functors/macros/functor_trait.h.m4: Add newin{2,2,11} to
SIGC_FUNCTORS_DEDUCE_RESULT_TYPE_WITH_DECLTYPE.
* sigc++/signal_base.h: Add newin{2,4} to signal_impl::blocked(), block() and
signal_base::blocked(), block(), unblock(). Bug #153780.
2012-10-12 Kjell Ahlstedt <[email protected]>
signal_base: Add blocked(), block(), unblock().
* sigc++/signal_base.[h|cc]: Add signal_impl::blocked(), block() and
signal_base::blocked(), block(), unblock(). Bug #153780.
2.2.11:
2012-09-20 Andris Pavenis <[email protected]>
Fix comma operator in lambda expressions.
* sigc++/adaptors/lambda/macros/operator.h.m4: Add lambda_action<>
specialization for comma operator (operator,()).
* tests/test_cpp11_lambda.cc:
* tests/test_lambda.cc: Add a test case for the comma operator. Bug #342911.
2012-09-19 Kjell Ahlstedt <[email protected]>
Add SIGC_FUNCTORS_DEDUCE_RESULT_TYPE_WITH_DECLTYPE.
* sigc++/adaptors/lambda/macros/base.h.m4:
* sigc++/adaptors/lambda/macros/group.h.m4:
* sigc++/functors/macros/functor_trait.h.m4:
* tests/test_cpp11_lambda.cc: Replace the preprocessor macro
SIGC_FUNCTORS_DEDUCE_RESULT_TYPE_WITH(C_keyword) with
SIGC_FUNCTORS_DEDUCE_RESULT_TYPE_WITH_DECLTYPE. Bug #672555.
2012-09-10 Kjell Ahlstedt <[email protected]>
Use std::size_t and std::ptrdiff_t.
* sigc++/macros/signal.h.m4: Use std::size_t and std::ptrdiff_t instead
of ::size_t and ::ptrdiff_t. Only the std versions are required to be
declared in <cstddef>.
* sigc++/signal_base.h: Use std::size_t instead of ::size_t. (I did not change
MSVC++-only code in this file and other files.)
2012-09-07 Kjell Ahlstedt <[email protected]>
Fix 'make check' with gcc 4.7.
* sigc++/adaptors/lambda/macros/base.h.m4: Define sigc::unwrap_lambda_value()
before it's used in sigc::lambda::operator[]() and operator=().
* sigc++/adaptors/lambda/macros/group.h.m4: Fix the C++11 examples in the
documentation as in test_cpp11_lambda.cc.
* tests/test_cpp11_lambda.cc: Only variables with automatic storage duration
shall be captured in C++11 lambda expressions.
2012-08-28 Kjell Ahlstedt <[email protected]>
Update .gitignore and tests/.gitignore
* .gitignore: Add *~ (gedit's backup files).
* tests/.gitignore: Add missing executable test files.
2012-08-28 Kjell Ahlstedt <[email protected]>
Add SIGC_FUNCTORS_DEDUCE_RESULT_TYPE_WITH for C++11 lambda expressions.
* sigc++/functors/macros/functor_trait.h.m4: Add the preprocessor macro
SIGC_FUNCTORS_DEDUCE_RESULT_TYPE_WITH(C_keyword), which makes it possible to
assign C++11 lambda expressions with any return type to slots.
Thanks to Chow Loong Jin, who posted similar code on libsigc-list.
* sigc++/adaptors/lambda/macros/base.h.m4:
* sigc++/adaptors/lambda/macros/group.h.m4: Add information on C++11 lambda
expressions to the documentation of lambda expressions and sigc::group().
* tests/Makefile.am: Add test_cpp11_lambda.cc.
* tests/test_cpp11_lambda.cc: New test case, showing that most uses of
libsigc++'s lambda expressions can be replaced by standard C++11 lambda
expressions. Bug #672555.
2012-03-19 Kjell Ahlstedt <[email protected]>
Enable test_lambda in 'make check'.
* tests/Makefile.am: Enable test_lambda in 'make check'.
* tests/test_lambda.cc: Comment out the tests with sigc::ref() in lambda
functions' parameter lists. See Bug #669128.
2.2.10:
2011-07-21 Thomas Rydzynski <[email protected]>
Mention visit_each() in the documentation of sigc::adapts.
* sigc++/adaptors/macros/adaptor_trait.h.m4: Mention that a user-supplied
adaptor must be accompanied by a specialization of template function
visit_each(). Correct some minor errors in the example of a user-supplied
adaptor. Bug #486373.
2011-07-19 Kjell Ahlstedt <[email protected]>
Add a test case for the previous commit.
* tests/Makefile.am:
* tests/test_bind_refptr.cc: A version of this test is also in glibmm.
Note that this includes a copy/paste of RefPtr.
See Bug #564005#14 (Alexander Shaduri)
2011-07-14 Kjell Ahlstedt <[email protected]>
slot_rep: Avoid access to deleted object in notify().
* sigc++/functors/slot_base.cc: slot_rep::notify() calls disconnect() before
destroy(). If disconnect() has deleted the slot_rep object, destroy() is not
called. Bug #564005.
2.2.9:
2011-02-22 Kjell Ahlstedt <[email protected]>
trackable: Avoid calling the same callback function twice
* sigc++/trackable.cc: Invalidate a callback function entry in
trackable_callback_list::remove_callback() when the list is being cleared.
Bug 589202.
2011-02-04 Kalev Lember <[email protected]>
Fix the build with GCC 4.6
* sigc++/signal_base.h: Include <cstddef> for size_t.
2010-10-12 David King <[email protected]>
Documentation changes
* *.h.m4: Minor changes to documentation to fix up code example
formatting, by removing the additional two spaces of indentation.
Additionally, fix some spelling and grammar mistakes and typos.
2010-09-27 Armin Burgmeier <[email protected]>
* MSVC_Net2005/libsigc++2.sln:
* MSVC_Net2005/libsigc++2.vcproj:
* MSVC_Net2005/tests/test_accumulated/test_accumulated.vcproj:
* MSVC_Net2005/tests/test_bind/test_bind.vcproj:
* MSVC_Net2005/tests/test_bind_return/test_bind_return.vcproj:
* MSVC_Net2005/tests/test_compose/test_compose.vcproj:
* MSVC_Net2005/tests/test_deduce_result_type/test_deduce_result_type.vcproj:
* MSVC_Net2005/tests/test_disconnect/test_disconnect.vcproj:
* MSVC_Net2005/tests/test_disconnect_during_emit/test_disconnect_during_emit.vcproj:
* MSVC_Net2005/tests/test_exception_catch/test_exception_catch.vcproj:
* MSVC_Net2005/tests/test_functor_trait/test_functor_trait.vcproj:
* MSVC_Net2005/tests/test_hide/test_hide.vcproj:
* MSVC_Net2005/tests/test_mem_fun/test_mem_fun.vcproj:
* MSVC_Net2005/tests/test_ptr_fun/test_ptr_fun.vcproj:
* MSVC_Net2005/tests/test_retype/test_retype.vcproj:
* MSVC_Net2005/tests/test_retype_return/test_retype_return.vcproj:
* MSVC_Net2005/tests/test_signal/test_signal.vcproj:
* MSVC_Net2005/tests/test_size/test_size.vcproj:
* MSVC_Net2005/tests/test_slot/test_slot.vcproj:
* MSVC_Net2005/tests/test_trackable/test_trackable.vcproj:
* MSVC_Net2008/libsigc++2.sln:
* MSVC_Net2008/libsigc++2.vcproj:
* MSVC_Net2008/tests/test_accumulated/test_accumulated.vcproj:
* MSVC_Net2008/tests/test_bind/test_bind.vcproj:
* MSVC_Net2008/tests/test_bind_return/test_bind_return.vcproj:
* MSVC_Net2008/tests/test_compose/test_compose.vcproj:
* MSVC_Net2008/tests/test_deduce_result_type/test_deduce_result_type.vcproj:
* MSVC_Net2008/tests/test_disconnect/test_disconnect.vcproj:
* MSVC_Net2008/tests/test_disconnect_during_emit/test_disconnect_during_emit.vcproj:
* MSVC_Net2008/tests/test_exception_catch/test_exception_catch.vcproj:
* MSVC_Net2008/tests/test_functor_trait/test_functor_trait.vcproj:
* MSVC_Net2008/tests/test_hide/test_hide.vcproj:
* MSVC_Net2008/tests/test_mem_fun/test_mem_fun.vcproj:
* MSVC_Net2008/tests/test_ptr_fun/test_ptr_fun.vcproj:
* MSVC_Net2008/tests/test_retype/test_retype.vcproj:
* MSVC_Net2008/tests/test_retype_return/test_retype_return.vcproj:
* MSVC_Net2008/tests/test_signal/test_signal.vcproj:
* MSVC_Net2008/tests/test_size/test_size.vcproj:
* MSVC_Net2008/tests/test_slot/test_slot.vcproj:
* MSVC_Net2008/tests/test_trackable/test_trackable.vcproj:
* MSVC_Net2010/libsigc++2.vcxproj:
* MSVC_Net2010/tests/test_accumulated/test_accumulated.vcxproj:
* MSVC_Net2010/tests/test_bind/test_bind.vcxproj:
* MSVC_Net2010/tests/test_bind_return/test_bind_return.vcxproj:
* MSVC_Net2010/tests/test_compose/test_compose.vcxproj:
* MSVC_Net2010/tests/test_deduce_result_type/test_deduce_result_type.vcxproj:
* MSVC_Net2010/tests/test_disconnect/test_disconnect.vcxproj:
* MSVC_Net2010/tests/test_disconnect_during_emit/test_disconnect_during_emit.vcxproj:
* MSVC_Net2010/tests/test_exception_catch/test_exception_catch.vcxproj:
* MSVC_Net2010/tests/test_functor_trait/test_functor_trait.vcxproj:
* MSVC_Net2010/tests/test_hide/test_hide.vcxproj:
* MSVC_Net2010/tests/test_mem_fun/test_mem_fun.vcxproj:
* MSVC_Net2010/tests/test_ptr_fun/test_ptr_fun.vcxproj:
* MSVC_Net2010/tests/test_retype/test_retype.vcxproj:
* MSVC_Net2010/tests/test_retype_return/test_retype_return.vcxproj:
* MSVC_Net2010/tests/test_signal/test_signal.vcxproj:
* MSVC_Net2010/tests/test_size/test_size.vcxproj:
* MSVC_Net2010/tests/test_slot/test_slot.vcxproj:
* MSVC_Net2010/tests/test_trackable/test_trackable.vcxproj: Add 64
bit support to MSVC project files.
2010-09-27 Armin Burgmeier <[email protected]>
* MSVC_Net2005/libsigc++2.sln:
* MSVC_Net2005/tests/test_accumulated/test_accumulated.vcproj:
* MSVC_Net2008/libsigc++2.sln:
* MSVC_Net2008/tests/test_accumulated/test_accumulated.vcproj: Add
test_accumulated to the MSVC projects.
2010-09-19 Armin Burgmeier <[email protected]>
* MSVC_Net2010/filelist.am:
* MSVC_Net2010/libsigc++2.sln:
* MSVC_Net2010/libsigc++2.vcxproj:
* MSVC_Net2010/libsigc++2.vcxproj.filters:
* MSVC_Net2010/sigc.rc.in:
* MSVC_Net2010/tests/test_accumulated/test_accumulated.vcxproj:
* MSVC_Net2010/tests/test_accumulated/test_accumulated.vcxproj.filters:
* MSVC_Net2010/tests/test_bind/test_bind.vcxproj:
* MSVC_Net2010/tests/test_bind/test_bind.vcxproj.filters:
* MSVC_Net2010/tests/test_bind_return/test_bind_return.vcxproj:
* MSVC_Net2010/tests/test_bind_return/test_bind_return.vcxproj.filters:
* MSVC_Net2010/tests/test_compose/test_compose.vcxproj:
* MSVC_Net2010/tests/test_compose/test_compose.vcxproj.filters:
* MSVC_Net2010/tests/test_deduce_result_type/test_deduce_result_type.vcxproj:
* MSVC_Net2010/tests/test_deduce_result_type/test_deduce_result_type.vcxproj.filters:
* MSVC_Net2010/tests/test_disconnect/test_disconnect.vcxproj:
* MSVC_Net2010/tests/test_disconnect/test_disconnect.vcxproj.filters:
* MSVC_Net2010/tests/test_disconnect_during_emit/test_disconnect_during_emit.vcxproj:
* MSVC_Net2010/tests/test_disconnect_during_emit/test_disconnect_during_emit.vcxproj.filters:
* MSVC_Net2010/tests/test_exception_catch/test_exception_catch.vcxproj:
* MSVC_Net2010/tests/test_exception_catch/test_exception_catch.vcxproj.filters:
* MSVC_Net2010/tests/test_functor_trait/test_functor_trait.vcxproj:
* MSVC_Net2010/tests/test_functor_trait/test_functor_trait.vcxproj.filters:
* MSVC_Net2010/tests/test_hide/test_hide.vcxproj:
* MSVC_Net2010/tests/test_hide/test_hide.vcxproj.filters:
* MSVC_Net2010/tests/test_mem_fun/test_mem_fun.vcxproj:
* MSVC_Net2010/tests/test_mem_fun/test_mem_fun.vcxproj.filters:
* MSVC_Net2010/tests/test_ptr_fun/test_ptr_fun.vcxproj:
* MSVC_Net2010/tests/test_ptr_fun/test_ptr_fun.vcxproj.filters:
* MSVC_Net2010/tests/test_retype/test_retype.vcxproj:
* MSVC_Net2010/tests/test_retype/test_retype.vcxproj.filters:
* MSVC_Net2010/tests/test_retype_return/test_retype_return.vcxproj:
* MSVC_Net2010/tests/test_retype_return/test_retype_return.vcxproj.filters:
* MSVC_Net2010/tests/test_signal/test_signal.vcxproj:
* MSVC_Net2010/tests/test_signal/test_signal.vcxproj.filters:
* MSVC_Net2010/tests/test_size/test_size.vcxproj:
* MSVC_Net2010/tests/test_size/test_size.vcxproj.filters:
* MSVC_Net2010/tests/test_slot/test_slot.vcxproj:
* MSVC_Net2010/tests/test_slot/test_slot.vcxproj.filters:
* MSVC_Net2010/tests/test_trackable/test_trackable.vcxproj:
* MSVC_Net2010/tests/test_trackable/test_trackable.vcxproj.filters:
* Makefile.am:
* configure.ac: Added project files for Visual Studio 2010.
2010-06-05 David King <[email protected]>
Small website updates
* docs/index.html: Remove broken namespace links.
* docs/website/doc.shtml: Link to library.gnome.org tutorial and API
reference.
2.2.8:
2010-06-04 Murray Cumming <[email protected]>
Manual: Add an id="index" attribute in case that helps library.gnome.org.
* docs/manual/libsigc_manual.xml: Add it to the <book> tag.
2.2.7:
2010-05-04 Murray Cumming <[email protected]>
Documentation improvements.
* docs/manual/libsigc_manual.xml: Remove Marshallers section because
it is apparently outdated and there is no example code to test it.
This fixes bug #417924 (Michael Ekstrand)
* sigc++/sigc++.h: Main page text: Rearranged slightly.
2010-04-27 David King <[email protected]>
Improvements to main page documentation
* sigc++/sigc++.h: Minor improvements.
2010-04-23 David King <[email protected]>
Add main page to Doxygen documentation
* docs/Makefile.am: Parse sigc++/sigc++.h for documentation.
* sigc++/sigc++.h: Add main page to Doxygen documentation.
2010-04-23 David King <[email protected]>
Fix the functors Doxygen group in the m4 files
* sigc++/functors/macros/functor_trait.h.m4:
* sigc++/functors/macros/mem_fun.h.m4:
* sigc++/functors/macros/ptr_fun.h.m4: Rename functors to
sigcfunctors.
2.2.6:
2010-04-16 Murray Cumming <murrayc@murrayc-desktop>
Docs: Fix the functors group and the link from the overview.
* docs/website/doc.shtml: Revert this to point to the overview page at
docs/indeex.html, which I have manually uploaded to the website, until
we add this overview to the doxygen-generated documentation itself.
* sigc++/functors/slot_base.h:
* sigc++/visit_each.h: Rename the functors doxygen group to sigcfunctors,
because doxygen seems to confuse it with the one in libstdc++.
* docs/index.html: Update the links.
2010-04-16 Murray Cumming <[email protected]>
Website: Fix the Makefile so upload works with sourceforge again.
2010-04-06 Murray Cumming <[email protected]>
Website: Update the reference API link.
* docs/website/doc.shtml: Update the reference API link to use
library.gnome.org. We should make sure that the tutorial docbook is there
too.
* docs/website/devel.shtml: Remove CVS-specific instructions, quickly
mentioning the git module instead.
However, the Makefile must be updated to cope with sourceforge's changes.
I was not able to upload this yet.
2.2.5:
2010-01-05 Daniel Elstner <[email protected]>
Use non-blurry font for dot graph labels
* docs/reference/Doxyfile.in (SHOW_INCLUDE_FILES): Enable.
(SHOW_USED_FILES): Disable.
(DOT_FONTNAME): Change from FreeSans to Sans, as the hinting for the
former appears to be rather bad.
(TEMPLATE_RELATIONS): Disable to reduce noise.
2009-12-29 Krzysztof Kosiński <[email protected]>
Accumulators: Allow return types that are different to the signal's.
* sigc++/macros/signal.h.m4: signal_emit*: Correct the slot_iterator_buf_type
and slot_reverse_iterator_buf_type typedefs to allow accumulators with
return types that are different to the signal's return type.
* tests/Makefile.am: Reenable test_accumulated, so we can test the fix.
It should be manually disabled if building on AIX (if the AIX problem cannot
be fixed properly).
* tests/test_accumulated.cc: Add an accumulator with a return type that is
different to the signal's return type. In this case it's a vector listing
all results.
Bug #586436.
2009-12-27 Daniel Elstner <[email protected]>
Disable collaboration graphs in documentation
* docs/reference/Doxyfile.in (CLASS_DIAGRAMS): Enable. Contrary to
what the Doxygen documentation says, no dot class inheritance graphs
will be generated if both CLASS_DIAGRAMS and COLLABORATION_GRAPH are
set to NO.
(COLLABORATION_GRAPH), (GROUP_GRAPHS): Turn off additional graphs to
reduce the noise.
2009-10-26 Armin Burgmeier <[email protected]>
* sigc++config.h: Move the first five definitions to the !SIGC_MSC
ifdef block, so MSVC does not see them and only uses the definitions
from the SIGC_MSC block. This fixes the build with MSVC.
2009-09-19 Daniel Elstner <[email protected]>
Support Automake silent rules
* configure.ac: Call the AM_SILENT_RULES macro if it is defined.
* docs/doc-manual.am, sigc++/Makefile.am: Prefix the commands of
custom rules with $(AM_V_GEN) or $(AM_V_at) in order to support
the silent rules feature of Automake.
2009-09-17 Michael Hasselmann <[email protected]>
Documentation cleanup: sigc::hide() always only hides one signal argument
* sigc++/adaptors/macros/hide.h.m4: The documentation stated that sigc::hide()
could discard multiple signal arguments when in fact the whole API only allows
control over one (dummy) signal argument at a time. The "multiple argument
hiding" example lives in it own section now to make it clearer you have to nest
sigc::hide() for that.
2009-09-13 Daniel Elstner <[email protected]>
Enable verbose output of autoreconf
* autogen.sh: Pass --verbose option to autoreconf.
2.2.4.2:
2009-09-02 Daniel Elstner <[email protected]>
Bump version to 2.2.4.2 and update NEWS
* configure.ac (AC_INIT): Increment version number to 2.2.4.2.
(MM_PREREQ): Require mm-common 0.7.2.
* NEWS: Write news entry for libsigc++ 2.2.4.2.
2009-09-02 Daniel Elstner <[email protected]>
Document namespace sigc briefly
* sigc++/signal_base.h (sigc): Prepend documentation comment to
provide a brief description of namespace sigc, so that Doxygen
will recognize the namespace as documented.
2009-08-31 Daniel Elstner <[email protected]>
Update Doxygen configuration for Doxygen 1.6.1
* docs/reference/Doxyfile.in: Update configuration template using
Doxygen 1.6.1.
(SORT_MEMBERS_CTORS_1ST): Enable.
2009-08-31 Daniel Elstner <[email protected]>
Protect space after comma in M4 output
* sigc++/macros/template.macros.m4 (_LOOP_SEP): Triple-quote the
list separator in this hairy construct, since the macro definition
itself is not quoted at all and the space after the comma got lost
in the output. This, in turn, produced overlong lines in the HTML
reference documentation.
2.2.4.1:
2009-08-28 Daniel Elstner <[email protected]>
Update news entry for libsigc++ 2.2.4.1 release
* NEWS: Update top entry for release 2.2.4.1 of libsigc++.
(2.2.4): Correct spelling of Frédéric Péters' name.
2009-08-27 Daniel Elstner <[email protected]>
Use shared mm-common Doxygen style sheet
* configure.ac (MM_PREREQ): Require mm-common 0.7.
* docs/Makefile.am (dist_noinst_DATA): List doxygen.css.
* docs/reference/Doxyfile.in (HTML_STYLESHEET): Assign path
to the shared doxygen.css provided by mm-common.
2009-08-27 Daniel Elstner <[email protected]>
Remove header and footer HTML fragments
* docs/reference/libsigc_{header,footer}.html_fragment: Delete
files. These custom fragments were an unnecessary maintenance
hassle. Also, the files were out of date with respect to the
encoding and CSS classes used by Doxygen.
* docs/reference/Doxyfile.in (HTML_HEADER), (HTML_FOOTER): Set
to the empty string.
(PROJECT_NAME): Substitute @PACKAGE_NAME@.
(PROJECT_NUMBER): Substitute @PACKAGE_VERSION@. It does look
nicer in the generated HTML pages, and is probably also less
confusing.
(SORT_GROUP_NAMES): Enable for predictability.
2009-08-26 Daniel Elstner <[email protected]>
Bump version to 2.2.4.1 and update NEWS
* configure.ac (AC_INIT): Increment version number to 2.2.4.1.
* NEWS: Write news entry for libsigc++ 2.2.4.1.
2009-08-26 Daniel Elstner <[email protected]>
Reenable hierarchy graphs for each class
* docs/reference/Doxyfile.in (COLLABORATION_GRAPH): Set option
to YES to enable the per-class inheritance graphs.
2009-08-25 Daniel Elstner <[email protected]>
Have Automake check NEWS and use bzip2
* configure.ac (AM_INIT_AUTOMAKE): Add options check-news and
dist-bzip2.
2009-08-25 Daniel Elstner <[email protected]>
Update NEWS for libsigc++ 2.2.4 release
2009-08-25 Daniel Elstner <[email protected]>
Bump version to 2.2.4 and require mm-common 0.6.1
* configure.ac (AC_INIT): Increase version number to 2.2.4.
(MM_PREREQ): Require mm-common 0.6.1 for the updated default
location of the reference documentation.
2009-08-25 Daniel Elstner <[email protected]>
Change documentation host to library.gnome.org
* README, docs/manual/libsigc_manual.xml: Adjust links to the
reference documentation in the text.
* docs/Makefile.am (pubdocbase), (htmlrefpub): Remove override
and use the updated mm-common default values.
* sigc++{,-uninstalled}.pc.in (htmlrefpub): Adjust link.
2009-08-24 Daniel Elstner <[email protected]>
Add id="content" element to documentation index
* docs/reference/libsigc_header.html_fragment: Start <div> element
with attribute id="content" to match the other C++ binding modules.
* docs/reference/libsigc_footer.html_fragment: Close <div> element.
2009-08-20 Daniel Elstner <[email protected]>
Use new version component substitutions
* MSVC_Net200[58]/sigc.rc.in: Replace the no longer defined
@FP_*_VERSION@ substitutions by the new @SIGCXX_*_VERSION@
substitutions for the version number components. These are
defined by MM_INIT_MODULE() from mm-common.
2009-08-20 Daniel Elstner <[email protected]>
Substitute API version in filenames dynamically
* sigc++.pc.in: Rename file from sigc++-2.0.pc.in.
* sigc++-uninstalled.pc.in: Rename file from
sigc++-2.0-uninstalled.pc.in.
* MSVC_Net200[58]/sigc.rc.in: Rename files from sigc-2.0.rc.in
and use @SIGCXX_API_VERSION@ substitution for the API version.
Also replace @VERSION@ with @PACKAGE_VERSION@.
* MSVC_Net200[58]/libsigc++2.{sln,vcproj}: Remove version from
the project name and filenames.
* MSVC_Net200[58]/filelist.am: Remove version from filenames.
* configure.ac (AC_CONFIG_FILES): Insert ${SIGCXX_MODULE_NAME}
into output filenames and remove the version from the input
filenames.
* Makefile.am: Use $(SIGCXX_MODULE_NAME) in pkg-config file
names instead of hard-coding the API version.
* sigc++/Makefile.am (lib_LTLIBRARIES): Instead of hard-coding
the libtool archive name, substitute @SIGCXX_API_VERSION@ into
it, as well as into the derived variable names.
2009-08-17 Daniel Elstner <[email protected]>
Set libtool version information
* sigc++/Makefile.am (libsigc_2_0_la_LDFLAGS): Add libtool option
-version-info 0:0:0 to specify the version information explicitly.
2009-08-16 Daniel Elstner <[email protected]>
Remove unused parameter names for correctness
* tests/test_copy_invalid_slot.cc, tests/test_custom.cc,
tests/test_deduce_result_type.cc, tests/test_functor_trait.cc,
tests/test_limit_reference.cc: Remove the names of unused function
parameters from the prototype, in order to get libsigc++ to build
with fatal compiler warnings.
2009-08-16 Daniel Elstner <[email protected]>
Rename scripts/ to build/ for consistency
* build/: Rename directory from scripts/ for consistency with most
of the other modules that switched to the new build infrastructure.
* Makefile.am (ACLOCAL_AMFLAGS): Adjust M4 include directory.
* README: Adjust a reference to scripts/ in the text.
* configure.ac (AC_CONFIG_AUX_DIR): Copy auxiliary files to build/.
(AC_CONFIG_MACRO_DIR): Place Autoconf M4 files into build/.
* docs/Makefile.am: Include $(top_srcdir)/build/doc-reference.am.
2009-08-16 Daniel Elstner <[email protected]>
Update for latest mm-common 0.4
* configure.ac (MM_PREREQ): Require mm-common 0.4.
(MM_INIT_MODULE): Omit now optional version number argument.
(MM_CONFIG_DOCTOOL_DIR): Copy the documentation utilities into docs/
instead of scripts/.
* Makefile.am (dist_noinst_DATA): Remove documentation utilities.
* sigc++-2.0.pc.in (htmlrefpub): Append trailing slash.
* sigc++-2.0-uninstalled.pc.in (htmlrefpub): ditto,
* docs/Makefile.am (htmlrefpub): ditto.
(doc_input): Perform a VPATH search for each input file, to correctly
handle the case of rebuilding the documentation of a tarball release
which includes the generated sources.
(dist_noinst_DATA): List documentation utilities.
2009-08-11 Daniel Elstner <[email protected]>
Do not recurse into MSVC subdirectories
* MSVC_Net200[58]/filelist.am: New Automake include files, defining
the lists of files to ship from the MSVC project directories.
* MSVC_Net200[58]/Makefile.am: Delete recursive Makefile.am files.
* Makefile.am: Include MSVC_Net200[58]/filelist.am.
(dist_noinst_DATA): Distribute MSVC project files.
(SUBDIRS): Do not recurse into the MSVC_Net200[58] subdirectories.
* configure.ac (AC_CONFIG_FILES): Remove the output files
MSVC_Net200[58]/Makefile.am from the list.
(AC_CONFIG_COMMANDS): Copy sigc++config.h into the MSVC project
directories at the end of config.status.
2009-08-11 Daniel Elstner <[email protected]>
Remove now superfluous doctool overrides
* docs/Makefile.am: Remove overrides for the documentation
utilities, since MM_CONFIG_DOCTOOL_DIR() already takes care
of setting MMDOCTOOLDIR to the local directory.
* sigc++-2.0.pc.in (datadir): Substitute value, just in case.
2009-08-10 Daniel Elstner <[email protected]>
Have mm-common-prepare install the doc utils
* configure.ac: Call MM_CONFIG_DOCTOOL_DIR([scripts]) to set
up the destination directory for mm-common-prepare to copy
the documentation utilities to.
* scripts/doc-install.pl: Delete file.
* scripts/doc-postprocess.pl: ditto,
* scripts/tagfile-to-devhelp2.xsl: ditto.
2009-08-09 Daniel Elstner <[email protected]>
Refresh doc-install and doc-postprocess copies
* scripts/doc-install.pl, scripts/doc-postprocess.pl: Copy
latest versions from the mm-common module.
* docs/Makefile.am (doc_install), (doc_postprocess): Include
$(PERL) interpreter command in front of the script name.
2009-08-08 Daniel Elstner <[email protected]>
Disable extraction of undocumented identifiers
* docs/reference/Doxyfile.in (EXTRACT_ALL): Change setting to
NO, and adapt a number of related options accordingly. The
result is a net loss of about 300 generated .html files. The
roughly 450 files which remain now are still an insanely high
number, though.
(PREDEFINED): Predefine the Autoconf configuration defines to
nudge Doxygen towards documenting the canonical code paths.
2009-08-07 Daniel Elstner <[email protected]>
Use #error explicitly instead of broken code
* sigc++config.h.in: Do use the #error preprocessor directive,
instead of an errornous piece of code. This code does not need
the same level of obfuscation as an Autoconf feature test.
2009-08-07 Daniel Elstner <[email protected]>
Change bug report URL to point to Bugzilla
* configure.ac (AC_INIT): Change the bug-report argument to the
URL for filing a new libsigc++ bug on bugzilla.gnome.org. Also
name the website URL as fifth argument. It will simply be ignored
if the installed Autoconf does not support this new feature.
2009-08-07 Daniel Elstner <[email protected]>
Do not enable -pedantic mode by default
* configure.ac (MM_ARG_ENABLE_WARNINGS): Remove -pedantic from the
list of compiler flags to use at warning level "min" (the default).
2009-08-07 Daniel Elstner <[email protected]>
Correct M4 forbidden tokens pattern
* configure.ac (m4_pattern_forbid): Take into account that the
pattern is applied to tokens, not lines. Also catch unexpanded
calls to underscore-prefixed private macros.
2009-08-06 Daniel Elstner <[email protected]>
Transition to new mm-common build infrastructure
* autogen.sh: Replace with a minimal script that simply executes
mm-common-prepare, autoreconf and configure.
* configure.ac: Get rid of an enormous amount of old cruft. Use
macros from the new mm-common module to set up Doxygen for building
the documentation. Add option to enable more compiler warnings.
* sigc++-2.0-uninstalled.pc.in: New pkg-config data file to allow
linking to an uninstalled libsigc++.
* sigc++-2.0.pc.in: Modernize. Provide the location of the
installed reference documentation and the Doxygen tag file.
* sigc++config.h.in: Modernize and update for new build
infrastructure.
* Makefile.am, */Makefile.am: Modernize and adapt to the new C++
binding build infrastructure in the mm-common module.
* sigc++/filelist.am: New Automake include file. Defines lists
of C++ and M4 source files.
* docs/Makefile.am: Rewrite using doc-reference.am from the
mm-common module.
* docs/doc-manual.am: New Automake include file for building the
libsigc++ Docbook manual.
* docs/images/Makefile.am: Remove file.
* docs/manual/Makefile.am: ditto,
* docs/reference/Makefile.am: ditto.
* docs/Makefile_web.am_fragment: Remove for now, to be taken care
of later.
* docs/reference/Doxyfile.in: Modernize and adapt to new build
infrastructure.
* docs/reference/beautify_docs.pl: Remove and use the more recent
scripts/doc-postprocess.pl instead.
* libsigc++-2.0.spec.in: Remove, to be resurrected only if someone
complains.
* scripts/Makefile.am: Remove file. Distribute the files from the
toplevel Makefile.am instead.
* scripts/cxx_std.m4: Add missing third argument to AC_DEFINE().
* scripts/doc-install.pl: New file, copied from mm-common.
* scripts/doc-postprocess.pl: ditto,
* scripts/tagfile-to-devhelp2.xsl: ditto.
2008-11-13 Murray Cumming <[email protected]>
* docs/website/stable.shtml: Correct the download link so it shows all
versions, not just 2.0.
2.2.3:
2008-10-08 Armin Burgmeier <[email protected]>
* MSVN_Net2005/libsigc++2.vcproj: Changed output name to match the new
naming convention.
* MSVC_Net2008/: Added MSVC 2008 project files. These are basically
the same as for MSVC 2005, but converted to MSVC 2008 projects.
* configure.ac:
* Makefile.am: Added the new files to the build.
2008-08-08 Armin Burgmeier <[email protected]>
* MSVC_Net2005/libsigc++2.sln: Enable the disconnect_during_emit test
by default.
* MSVC_Net2005/libsigc++2.vcproj: Renamed the generated debug database
file to sigc-2.0d.pdb (the default), to stay consistent with the *mm
wrapper libraries.
2008-08-08 Armin Burgmeier <[email protected]>
* MSVC_Net2005/: Moved from MSVC_Net2003.
* MSVC_Net2005/libsigc++2.sln:
* MSVC_Net2005/libsigc++2.vcproj:
* MSVC_Net2005/tests/*/*.vcproj: Converted the Visual Studio 2003
project files to 2005 ones.
* MSVC_Net2005/Makefile.am:
* Makefile.am:
* configure.ac: Adapted build files accordingly.
2008-04-06 Cedric Gustin <[email protected]>
* MSVC_Net2003/sigc-2.0.rc.in: Removed ATL/MFC header files
dependency as afxres.h is not part of the Microsoft Platform
SDK provided with Visual C++ Express 2008.
Bug #503933.
2.2.2:
2008-03-10 Deng Xiyue <[email protected]
* sigc++/macros/slot.h.m4:
Added an include of functors/slot.h that was mistakenly removed
during the 2.1 series, apparently breaking API slightly.
Bug #521418.
2.2.1:
2008-02-28 Elaine Xiong <[email protected]>
* sigc++/macros/signal.h.m4:
* tests/test_accum_iter.cc: Add ifdefs around uses of
reverse_iterator to really fix the build with recent
versions of Sun CC.
Bug #302098.
2.2.0:
2008-01-01 Ryan Hill <dirtyepic@gentoo.>
* tests/test_copy_invalid_slot.cc: Include the cstdlib
and cstring headers to fix the build with the gcc 4.3
pre-release. Bug #454882.
2007-08-31 Murray Cumming <[email protected]>
* tests/test_copy_invalid_slot.cc: Added some includes to
fix the build in some environments, such as when using Sun CC.
Thanks to Vladimir Marek in bug #469872.
2.1.1:
2007-08-14 Murray Cumming <[email protected]>
* sigc++/Makefile.am:
* sigc++/compatibility.h: Removed this header.
* sigc++/bind.h:
* sigc++/bind_return.h:
* sigc++/connection.h:
* sigc++/macros/class_slot.h.m4:
* sigc++/macros/hide.h.m4:
* sigc++/macros/method_slot.h.m4:
* sigc++/macros/object_slot.h.m4:
* sigc++/macros/retype.h.m4:
* sigc++/macros/signal.h.m4:
* sigc++/macros/slot.h.m4:
* sigc++/object.h:
* sigc++/retype_return.h: Removed deprecated
compatibility API, to probably fix the build with
some compilers, such as some versions of the Sun Forte C++
CC compiler. Some of these headers are now mostly empty and
should be removed later.
This API has been deprecated April 2004, and
is not widely used, so it seems safe to do this now.
* tests/Makefile.am:
* tests/test_compatibility.cc: Removed this test.
2007-07-28 Michael Elkstrand <[email protected]>
* sigc++/macros/signal.h.m4: slot_iterator_buf,
slot_reverse_iterator_buf: Added typedefs for
value_type, reference, and pointer, so that these
iterators are more like standard C++ iterators, so they can
be used with standard C++ algorithms.
* tests/Makefile.am:
* tests/test_accum_iter.cc: Added a test for this.
Bug #417926.
2006-11-14 Daniel Elstner <[email protected]>
* autogen.sh: Wholly replace this script with a critter from one
of my personal projects, with slight modifications. This one does
some sophisticated stuff like probing version numbers of available
automake and aclocal executables, in order to choose the right one
accordingly. All this is necessary to make the build system work
robustly in custom environments such as Maemo where automake-1.9
doesn't come preinstalled.
2006-06-20 Murray Cumming <[email protected]>
* sigc++/adaptors/macros/bind.h.m4:
* sigc++/adaptors/macros/retype.h.m4:
* sigc++/functors/macros/functor_trait.h.m4:
* sigc++/functors/macros/slot.h.m4:
* sigc++/macros/retype.h.m4:
* sigc++/macros/signal.h.m4: Revert the previous changes, because none is
used in the exported symbol names from gtkmm, so this would break the ABI
of gtkmm.
2006-05-26 Régis Duchesne <[email protected]>
* sigc++/adaptors/macros/bind.h.m4:
* sigc++/adaptors/macros/retype.h.m4:
* sigc++/functors/macros/functor_trait.h.m4:
* sigc++/functors/macros/slot.h.m4:
* sigc++/macros/retype.h.m4:
* sigc++/macros/signal.h.m4:
Renamed 'nil' to 'none' to allow an Objective-C++ compiler to compile
the library header files.
2005-12-21 Murray Cumming <[email protected]>
* sigc++/macros/signal.h.m4: Make remaining
reverse_iterator_buf operator--() methods
return by reference, like the operator++() methods.
Bug #304402 from John Profic.
2005-12-20 Murray Cumming <[email protected]>
* sigc++/macros/signal.h.m4: Make all operator--() methods
return by reference, like the operator++() methods.
Bug #304402 from John Profic.
2005-12-14 John Profic <[email protected]>
* sigc++/macros/signal.h.m4: Fix compilation problem in
the last patch.
2005-12-14 John Profic <[email protected]>
* sigc++/macros/signal.h.m4: Added emit_reverse().
This is the HEAD branch, for API/ABI-compatible API additions.
See also the libsigc-2-0 branch.
2005-12-01 Murray Cumming <[email protected]>
* sigc++/functors/slot_base.cc:
slot_base::disconnect(): Set call_ to 0,
to invalidate the slot, even if parent_ is 0.
I think parent_ is, for instance, a signal, but
disconnect should still work on a slot that is not
connected to a signal, because a slot can be invoked
directly.
Fixes bug #311057 from James Lin.
2005-12-01 Murray Cumming <[email protected]>
* tests/Makefile.am:
* tests/test_slot_disconnect.cc: Added test
case from bug #311057.
2005-11-16 Philipp Berndt <[email protected]>
* sigc++/adaptors/macros/exception_catch.h.m4: Make member
exception_catch_functor<T_functor, T_catcher, void>::catcher_
public so that it can be accessed by visit_each()
(bug fixed for generalization on 2004-11-06)
2.0.16:
2005-08-01 Neal E. Coombes <[email protected]>
* sigc++/signal_base.h: Updated the documentation for temp_slot_list
as requested in bug #303896.
2005-08-01 Murray Cumming <[email protected]>
* sigc++/adaptors/hide.h.m4: Added missing
) in call to sun_forte_workaround(), fixing
build on SUN Forte 5.5. Bug #312020.
2005-08-19 Bruno Martinez <[email protected]>
* sigc++/type_traits.h: Renamed
::sigc::is_base_and_derived::internal to
::sigc::is_base_and_derived::internal_class
in order to avoid conflict with
namespace internal.
2005-07-13 Murray Cumming <[email protected]>
* docs/manual/libsigc_manual.xml: Correct mentions of
1.2 stuff instead of 2.0. Patch in bug #310213 from
pebble.org.uk.
2005-07-13 Murray Cumming <[email protected]>
* docs/manual/libsigc_manual.xml: Fixed typo
found by Antonio Coralles.
2005-07-09 Murray Cumming <[email protected]>
* sigc++/macros/signal.h.m4: Did the same (see
last commit) for slot_const_iterator and
slot_iterator_buf.
2005-07-09 Murray Cumming <[email protected]>
* sigc++/macros/signal.h.m4: slot_iterator:
operator--() now returns value, not reference, like
operator++() already did. This caused crashes when
using --no-inline with g++. Bug #308651 by
Michael Andres.
2.0.15:
2005-07-04 Philip Langdale <[email protected]>
* sigc++/adaptors/macros/compose.h.m4: Add a setter typedef to
compose*_functor and use it instead of the (incorrect) getter
typedef in the compose* specialization of visit_each<>().
This corrects the lifetime management of slots created with
compose(). Bug #308433.