Newer
Older
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
2008-12-17 Edward Hervey <bilboed@gmail.com>
* gst.supp:
And yet another variation of the GstAudioFilter leak.
2008-12-15 Sebastian Dröge <sebastian.droege@collabora.co.uk>
Patch by: Roland Illig <roland dot illig at gmx dot de>
* m4/gst-parser.m4:
Fix AG_GST_BISON_CHECK to handle version numbers with more than
two components (i.e. 2.4.1). Fixes bug #564507.
2008-12-14 Edward Hervey <bilboed@gmail.com>
* gst.supp:
And yet another variant of the GstAudioFilter leak.
2008-12-13 Edward Hervey <edward.hervey@collabora.co.uk>
* gst.supp:
Added variants of leaks of dynamic pad templates created in
GstAudioFilter.
Add conditional jump triggered by getaddrinfo (maybe glibc-2.9).
2008-12-12 Edward Hervey <edward.hervey@collabora.co.uk>
* gst.supp:
Fix leak in GIO called by gnomevfs. Nothing we can do about this.
2008-12-12 Edward Hervey <edward.hervey@collabora.co.uk>
* gst.supp:
Added another suppression for dynamic pad templates, in this case
GstAudioFilter.
Added suppression for PangoLanguage which can never be freed
according to the Pango API.
2008-12-12 Edward Hervey <edward.hervey@collabora.co.uk>
* gst.supp:
A whole bunch of suppressions detected on latest gentoo ~amd64.
Make some existing suppressions more generic (for subtle dependecy
code changes).
Added suppressions for glibc-2.9.
Added suppressions for new variants of ALSA leaks.
Added suppressions for a series of leaks in plugins registrations due
to some pad templates' caps calculated at runtime.
Added suppressions for variants of some leaks in pango/fontconfig.
Added suppressions for leak in gstffmpegcsp.c (nothing we can do
about it, but will only exist once).
2008-12-04 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* m4/gst-plugin-docs.m4:
Remove the check if $have_gtk_doc equals yes as it's not defined
and $enable_gtk_doc should be good enough.
Also this restores the build of the plugin documentation.
2008-12-01 Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
* gst.supp:
Add suppression variant for Ubuntu Hardy x86/64bit.
2008-12-01 Stefan Kost <ensonic@users.sf.net>
* gtk-doc-plugins.mak:
* gtk-doc.mak:
Simplily uninstall rule. Its closer to upstream and fixes #150331.
2008-11-29 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* m4/glib-gettext.m4:
Update glib-gettext.m4 from latest stable GLib release.
2008-11-29 Sebastian Dröge <sebastian.droege@collabora.co.uk>
Patch by: Cygwin Ports maintainer
<yselkowitz at users dot sourceforge dot net>
* gettext.patch:
Update the gettext patch for use with gettext 0.17 which is
required to build with libtool 2.2 because of conflicts.
First part of bug #556091.
2008-11-29 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* m4/gtk-doc.m4:
* m4/pkg.m4:
Update gtk-doc and pkg-config m4 macros from their latest releases.
2008-11-20 Michael Smith <msmith@songbirdnest.com>
* m4/as-objc.m4:
Fix objective C test macro when none of the compilers are found at all.
2008-10-30 Stefan Kost <ensonic@users.sf.net>
* gtk-doc.mak:
Also cp the entities here to all xinlcude based docs (workaround for
not being able to set up a search path).
2008-10-17 Jan Schmidt <jan.schmidt@sun.com>
* gtk-doc.mak:
Don't clobber the real registry cache file when
building docs.
2008-10-07 Jan Schmidt - Sun Microsystems <jan.schmidt@sun.com>
* m4/gst-error.m4:
Also disable the bogus "loop not entered at top" warnings appearing on Sparc Forte builds.
2008-10-06 Stefan Kost <ensonic@users.sf.net>
* gtk-doc.mak:
Apply the same fix as below to gtk-doc.mak. Somehow did not end up in
CVS.
2008-09-05 David Schleef <ds@schleef.org>
* gtk-doc-plugins.mak: Fix the check for gtkdoc-rebase: don't
pass the 'which' error back to make. This fix is more specific
than what is in upstream.
2008-09-05 David Schleef <ds@schleef.org>
* gtk-doc.mak: Fix the check for gtkdoc-rebase: don't pass the
'which' error back to make. This fix is more specific than
what is in upstream.
2008-09-04 Stefan Kost <ensonic@users.sf.net>
* gtk-doc-plugins.mak:
* gtk-doc.mak:
Get closer to upstream makefiles. Don't install index.sgml twice. Call
gtkdoc-rebase (if exists).
2008-08-21 Stefan Kost <ensonic@users.sf.net>
* gtk-doc-plugins.mak:
Revert $(top_builddir) -> $(builddir) change of rev. 1.39 as there is
no variable called builddir.
2008-07-31 Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
* gst.supp:
Add suppressions for Ubunty Hardy x86/64bit, similar to earlier
versions and 32bit variant.
2008-07-31 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* m4/gst-feature.m4:
Remove GST_DISABLE_(ENUMTYPES|INDEX|URI).
2008-07-21 Tim-Philipp Müller <tim.muller at collabora co uk>
* m4/gst-error.m4::
When checking for GST_ERROR_CXXFLAGS, check each compiler flag
individually, not all together.
2008-07-20 Tim-Philipp Müller <tim.muller at collabora co uk>
* m4/gst-parser.m4::
Fix bison version number detection for older --version
output format (as bison 1.28 on OSX 10.4 outputs).
Fixes #543853.
2008-07-12 Stefan Kost <ensonic@users.sf.net>
* plugins.xsl:
Split refsect2 also here to make "Element Pads" subtitle visible.
2008-07-08 Sebastian Dröge <sebastian.droege@collabora.co.uk>
* m4/gst-error.m4:
Add compiler flags to warn if declarations after statements or
variable length arrays are used. These are C99/GCC extensions and
are not supported by some compilers we want to support.
2008-07-02 Mark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>
* gtk-doc-plugins.mak:
Only clean doc maintainer stamps in maintainer-clean. Fixes #539977.
2008-06-20 Sebastian Dröge <slomo@circular-chaos.org>
* gstdoc-scangobj:
Always use format strings for printf-like functions, even if they just
print a string. Fixes bug #536981.
2008-06-20 Sebastian Dröge <slomo@circular-chaos.org>
* gtk-doc-plugins.mak:
* gtk-doc.mak:
Include CFLAGS and LDFLAGS in GTKDOC_CFLAGS and GTKDOC_LDFLAGS,
otherwise the values passed to configure are ignored.
Fixes bug #536978.
2008-06-05 Tim-Philipp Müller <tim.muller at collabora co uk>
* m4/gst-error.m4:
Add -fno-strict-aliasing when compiling with -Werror, to work around
warnings caused by G_LOCK with recent GLib versions (2.16.x) (#316221).
2008-06-05 Jan Schmidt <jan.schmidt@sun.com>
* gtk-doc.mak:
Don't copy html/*.png files unless they don't already exist
in the destdir. Fixes distcheck failure caused by permissions
problems trying to copy a file into the destdir when it already
exists.
2008-05-28 Stefan Kost <ensonic@users.sf.net>
* plugins.xsl:
The class was not shown in plugin docs. Fix typo in changelog below.
2008-05-22 Jan Schmidt <jan.schmidt@sun.com>
* gstdoc-scangobj:
Emit warnings if one of the GTypes we're expecting is 0
when scanning.
2008-05-21 Felipe Contreras <felipe.contreras@gmail.com>
* gtk-doc-plugins.mak:
* gtk-doc.mak:
Fix installing png images when gtk-doc is disabled.
2008-05-21 Felipe Contreras <felipe.contreras@gmail.com>
* gtk-doc-plugins.mak:
* gtk-doc.mak:
Fix make clean when gtk-doc is disabled and other cleanups.
2008-05-17 Jan Schmidt <jan.schmidt@sun.com>
* gtk-doc-plugins.mak:
Be more quiet when the files don't yet exist.
2008-05-16 Jan Schmidt <jan.schmidt@sun.com>
* gstdoc-scangobj:
Add a mechanism for adding 'implicitly created' GTypes into the
scan, allowing for documenting plugin-private base classes that
provide signals or properties for public elements.
* gtk-doc-plugins.mak:
Use $(builddir) instead of $(top_builddir) in a few places - there's
no need to hard code 'docs/plugins' as the only useable path.
2008-05-14 Peter Kjellerstedt <pkj@axis.com>
* m4/gst-feature.m4:
Report plug-ins without external dependencies that will not be built
even when the name of the plug-in is a substring of another plug-in,
e.g., goom vs. goom2k1.
2008-05-14 Tim-Philipp Müller <tim.muller at collabora co uk>
* gst.supp:
Add suppression for glibc bug on gutsy/x86-64
2008-05-12 Stefan Kost <ensonic@users.sf.net>
* plugins.xsl:
Improve the layout of the caps, but splitting them on ";".
2008-05-09 Sebastian Dröge <slomo@circular-chaos.org>
Patch by: Brian Cameron <brian dot cameron at sun dot com>
* m4/gst-default.m4:
Don't set the default audio sink to the default visualizer.
Fixes bug #532295.
2008-05-07 Tim-Philipp Müller <tim.muller at collabora co uk>
* check.mak: (help):
Document GST_CHECKS environment variable in checks 'make help'.
2008-05-06 Sebastian Dröge <slomo@circular-chaos.org>
Patch by: Marc-Andre Lureau <marcandre dot lureau at gmail dot com>
* scangobj-merge.py:
Don't depend on Twisted just for the OrderedDict but implement our
own ordered dictionary class. Fixes bug #531577.
2008-04-23 Edward Hervey <edward.hervey@collabora.co.uk>
* gst.supp:
Re-arrange latest suppressions.
Add all known suppressions for ubuntu hardy. Same as for older
ubuntus, but with different codepaths.
2008-04-22 Edward Hervey <bilboed@gmail.com>
* gst.supp: Make tls leak suppression a bit more generic.
2008-04-22 Edward Hervey <bilboed@gmail.com>
* gst.supp: Fix ommission in latest commit.
Make tls leak suppression more generic in order to cover more
distributions (and hopefully also future distributions).
2008-04-22 Edward Hervey <bilboed@gmail.com>
* gst.supp: Add suppressions for Hardy.
They're just the newer versions of similar suppressions we had
for the previous versions of ubuntu.
2008-04-15 Sebastian Dröge <slomo@circular-chaos.org>
* Makefile.am:
* m4/Makefile.am:
Dist all files in common. Fixes bug #527984.
2008-04-14 Tim-Philipp Müller <tim at centricular dot net>
* m4/gst-function.m4:
Rename AC_CACHE_VAL cache-ids to contain '_cv_' in order to make
autoconf-2.62 complain less.
2008-04-13 Tim-Philipp Müller <tim at centricular dot net>
* m4/gst-args.m4:
* m4/gst-valgrind.m4:
Bump valgrind requirement to 3.0 (which was released in August 2005).
Fixes #489269. Also, check for version >=REQ and not >REQ.
2008-04-09 Tim-Philipp Müller <tim at centricular dot net>
* m4/gst-default.m4:
Add --with-default-{audiosink|audiosrc|videosink|videosrc|visualizer}
configure switches (#519417).
2008-04-03 Tim-Philipp Müller <tim at centricular dot net>
* m4/gst-args.m4:
Add --disable-foo switch for dependency-less plugins (#525586).
2008-04-01 Sebastian Dröge <slomo@circular-chaos.org>
* m4/gst-parser.m4:
Unconditionally require flex 2.5.31 and bison 1.875.
2008-03-23 Sebastian Dröge <slomo@circular-chaos.org>
* m4/gst-arch.m4:
amd64/x86_64 allows unaligned memory access too.
2008-03-21 Sebastian Dröge <slomo@circular-chaos.org>
* m4/gst-dowhile.m4:
Add macro that checks if the compiler supports do {} while (0)
macros and define HAVE_DOWHILE_MACROS if it does. This is
needed by glib/gmacros.h to use something else than
if (1) else for G_STMT_START/END when compling C++, which
causes compiler warnings because of ambigious else with g++ 4.3.
2008-03-21 Sebastian Dröge <slomo@circular-chaos.org>
* m4/gst-plugin-docs.m4:
* mangle-tmpl.py:
Don't depend on PyXML and use only XML modules that are shipped
with python. Fixes bug #519635.
2008-03-07 Edward Hervey <edward.hervey@collabora.co.uk>
* m4/gtk-doc.m4: (GTK_DOC_CHECK):
The previous commit to this file by Stefan Kost mentionned checking for
SED, but NOT checking for gtkdoc-check (wth is that doing there ??).
Therefore, removing the check for gtkdoc-check
2008-03-03 David Schleef <ds@schleef.org>
* m4/ax_create_stdint_h.m4: Oops, checked in the wrong copy of
this file. (Update from upstream)
2008-03-03 David Schleef <ds@schleef.org>
* m4/ax_create_stdint_h.m4: Update from upstream. Fixes a bug
compiling with MSVC.
2008-03-03 Edward Hervey <edward.hervey@collabora.co.uk>
* m4/pkg.m4:
Allow override of pkg-config results, as proposed by configure --help.
This is in fact just a backport from upstream pkg.m4.
Fixes #518892
2008-03-03 Peter Kjellerstedt <pkj@axis.com>
* ChangeLog:
Changelog surgery of my previous commit to add bugzilla reference.
* m4/gst-args.m4:
Add AG_GST_CHECK_PLUGIN and AG_GST_DISABLE_PLUGIN to make it easier
to include and exclude plug-ins without external references, i.e.,
plug-ins listed in GST_PLUGINS_SELECTED. (#498222)
2008-03-03 Sebastian Dröge <slomo@circular-chaos.org>
* gst.supp:
Add another glibc suppression.
2008-02-29 Peter Kjellerstedt <pkj@axis.com>
* m4/gst-feature.m4:
Make the comment before defines generated via AG_GST_CHECK_FEATURE
look nicer. (#498222)
2008-02-26 Jan Schmidt <jan.schmidt@sun.com>
* m4/Makefile.am:
* m4/as-gcc-inline-assembly.m4:
Add Dave Schleef's GCC inline assembly detection macro
for using in gst-plugins-good in the goom 2k4 plugin.
2008-02-25 Andy Wingo <wingo@pobox.com>
* gst-autogen.sh: Instead of only passing certain arguments to
configure, pass anything that we didn't handle. Much friendlier.
Fixes #34412.
2008-02-23 Jan Schmidt <Jan.Schmidt@sun.com>
* m4/gst-error.m4:
Store the detected compiler flags into ERROR_CFLAGS rather than
ERROR_CXXFLAGS, and use the macro that checks the C compiler, not
the C++ one.
2008-02-23 Tim-Philipp Müller <tim at centricular dot net>
* m4/gst-error.m4:
Reflow checks for additional warning flags so they're not
nested, which fixes the result reporting in the configure
output.
2008-02-22 Tim-Philipp Müller <tim at centricular dot net>
* m4/as-compiler-flag.m4:
Add AS_CXX_COMPILER_FLAG
* m4/gst-error.m4:
Add AG_GST_SET_ERROR_CXXFLAGS (Forte bits need testing)
2008-02-22 Tim-Philipp Müller <tim at centricular dot net>
* gtk-doc-plugins.mak:
Add 'check-inspected-versions' target; this helps identify
files that should have been removed or where the version
number should (ideally) be updated before a release
(which doesn't happen automatically if the releaser doesn't
build that plugin locally). Not adding at a distcheck hook
yet though, because it's not really that important and would
probably also be a problem on buildbots.
2008-02-22 Sebastian Dröge <slomo@circular-chaos.org>
* gst.supp:
Add even more glibc 2.7 suppressions.
2008-02-22 Sebastian Dröge <slomo@circular-chaos.org>
* gst.supp:
Add another suppression for GLib caching some values after
the first call.
2008-02-12 Sebastian Dröge <slomo@circular-chaos.org>
Patch by:
Tim Mooney <mooney at dogbert dot cc dot ndsu dot nodak dot edu>
* m4/gst-error.m4:
Use no%E_MACRO_REDEFINED on Solaris to prevent compiler warnings.
Fixes bug #515905.
2008-02-11 Sebastian Dröge <slomo@circular-chaos.org>
* gst.supp:
Add a few more glibc 2.7 suppressions to make the avisubtitle unit
test valgrind clean. Fixes bug #515703.
2008-02-08 Stefan Kost <ensonic@users.sf.net>
* ChangeLog:
Changelog surgery for last commit.
2008-02-08 Stefan Kost <ensonic@users.sf.net>
* m4/gtk-doc.m4:
Conditionally check for SED. Also sync a bit with upstream macro.
2008-02-08 Stefan Kost <ensonic@users.sf.net>
* gtk-doc-plugins.mak:
* gtk-doc.mak:
Use '$(SED)' instead of 'sed'. Don't use -i for in-place as its gnu
only, move to a temp file instead.
2008-02-06 Stefan Kost <ensonic@users.sf.net>
* gtk-doc-plugins.mak:
* gtk-doc.mak:
As our docs are versioned, we need to patch the index.sgml file to have
correct paths there, unless we also want to fork gtk-doc's xsl (which
we don't). This hopefully fixes xrefs between modules.
2008-02-02 Sebastian Dröge <slomo@circular-chaos.org>
* m4/gst-feature.m4:
Use printf instead of echo as "echo -e" isn't POSIX and doesn't work
with strict POSIX shells like tcsh or dash and also not every platform
has a /bin/echo that supports it.
2008-01-24 Stefan Kost <ensonic@users.sf.net>
* ChangeLog:
ChangeLog surgery.
* gstdoc-scangobj:
Sync the object scanner with gtk-doc fixes. Update args and hierarchy
files.
2008-01-20 Sebastian Dröge <slomo@circular-chaos.org>
* check.mak:
* coverage/lcov.mak:
* gtk-doc-plugins.mak:
* release.mak:
Use $(MAKE) instead of make to fix the build if GNU make is called
something else on the system.
* m4/as-docbook.m4:
Fix path for docbook.xsl if we have no /etc/xml/catalog and add a
docbook-xsl search path for FreeBSD.
2008-01-18 Sebastian Dröge <slomo@circular-chaos.org>
* gst.supp:
Add a suppression for a glibc bug:
http://valgrind.org/docs/manual/faq.html#faq.exit_errors>
2008-01-18 Sebastian Dröge <slomo@circular-chaos.org>
* gst.supp:
Add some more glibc 2.7 suppressions and make the GLib suppressions
for the home/tmp/etc directory caching a bit more generic.
2008-01-18 Sebastian Dröge <slomo@circular-chaos.org>
* gst.supp:
Add some glibc 2.7 supressions as found on Debian/unstable.
2008-01-14 Jan Schmidt <jan.schmidt@sun.com>
* download-translations:
Apparently I have problems with leaving things commented out when
I edit shell scripts.
2008-01-12 Jan Schmidt <Jan.Schmidt@sun.com>
* download-translations:
Remove bash-isms
2008-01-12 Jan Schmidt <Jan.Schmidt@sun.com>
* check-exports:
Restore the cleanup rm of our tmp file which I didn't mean to leave
commented out.
2008-01-12 Jan Schmidt <Jan.Schmidt@sun.com>
* check-exports:
Fixes to make check-export work on both Solaris and Linux
* m4/gst-error.m4:
Disable extra warning category (argument mismatch) as an error
on Forte, as it prevents the libcheck fail_if macros from compiling.
* win32.mak:
Substitute the GStreamer version so things will keep working in 0.11
2008-01-11 Tim-Philipp Müller <tim at centricular dot net>
Patch by: Peter Kjellerstedt <pkj axis com>
* m4/gst-glib2.m4:
* m4/gst-libxml2.m4:
Improve/fix output from configure if either glib-2.0 or
libxml2 are not installed (#498222).
2008-01-09 Stefan Kost <ensonic@users.sf.net>
* coverage/lcov.mak:
Update coverage make-rules: use them conditionaly, use libtool mode
and use lcov to cleanup.
2007-12-18 Sebastian Dröge <slomo@circular-chaos.org>
* glib-gen.mak:
Also use #include "header" instead of #include <header> for the
headers that were used to generate the source files for the same
reason as below.
Remove whitespace before #include.
2007-12-18 Sebastian Dröge <slomo@circular-chaos.org>
* glib-gen.mak:
Use #include "header" instead of #include <header> for the generated
enum C files as the file will always be in the same directory and
some compilers seem to be a bit strict about that unless . is added
to the include path.
Include all headers that were used to generate the source files in
the C file as they're used there.
2007-12-17 Tim-Philipp Müller <tim at centricular dot net>
* win32.mak: (win32), (win32defs), (win32crlf):
Make check for CR LF in Visual C++ 6.0 project files
work, based on patch by David Schleef (#496722, #393626).
2007-12-17 Tim-Philipp Müller <tim at centricular dot net>
* Makefile.am:
Don't forget to dist the new win32.mak.
2007-12-17 Tim-Philipp Müller <tim at centricular dot net>
* win32.mak: (win32), (win32defs):
Move common win32 Makefile foo into this new file.
2007-12-15 Stefan Kost <ensonic@users.sf.net>
* gtk-doc-plugins.mak:
* gtk-doc.mak:
We should have never forked this that much :/.
2007-12-13 Tim-Philipp Müller <tim at centricular dot net>
* check-exports:
Fix build on the ppc64 build bot.
2007-12-13 Tim-Philipp Müller <tim at centricular dot net>
* check-exports:
Suppress more unintentional exports (too much hassle to rename them,
since the win32 project files would need changing too).
2007-12-12 Tim-Philipp Müller <tim at centricular dot net>
* Makefile.am:
check-exports should be disted.
2007-12-12 Tim-Philipp Müller <tim at centricular dot net>
* check-exports:
Add quick'n'dirty script to check the exported symbols of a library
against the symbols in the corresponding .def file (#493983). Based
on script by Ole André Vadla Ravnås.
2007-11-06 Jan Schmidt <jan.schmidt@sun.com>
* gtk-doc-plugins.mak:
Fix distcheck by making sure the types files are treated like the
other gtkdoc-scangobj generated files.
2007-09-21 Sebastian Dröge <slomo@circular-chaos.org>
* m4/gst-args.m4:
Let the AG_GST_ARG_ENABLE_EXPERIMENTAL macro default to disable
building of experimental plugins. Nobody uses it yet and the
--enable--experimental stuff from gst-plugins-good defaults to
disable too.
2007-09-06 Tim-Philipp Müller <tim at centricular dot net>
* gtk-doc-plugins.mak:
Just use the normal 'check' target and avoid a circular
dependency.
2007-09-06 Tim-Philipp Müller <tim at centricular dot net>
* gtk-doc-plugins.mak:
Add rule to error out if .hierarchy file contains tabs.
2007-08-20 Tim-Philipp Müller <tim at centricular dot net>
* download-translations:
* po.mak:
If there are new languages, they need to be added to po/LINGUAS.
2007-08-20 Tim-Philipp Müller <tim at centricular dot net>
* download-translations:
* po.mak:
Fix up 'download-po' a bit, so that we find new translations
for languages that aren't in our po/LINGUAS file yet too.
2007-07-16 Jan Schmidt <thaytan@mad.scientist.com>
* gst.supp:
Add a suppression for GLib caching the tmp dir seen on an
Ubuntu Feisty system.
2007-07-13 Jan Schmidt <thaytan@mad.scientist.com>
* m4/gst-feature.m4:
If we want to use 'echo -e', call /bin/echo instead of the shell's
since -e is a bash extension, and our /bin/sh might not be being
provided by bash.
2007-07-01 Thomas Vander Stichele <thomas at apestaart dot org>
* po.mak:
Translation project has moved. Also, no idea how this used to
work given that we weren't downloading a .po file.
2007-06-25 Stefan Kost <ensonic@users.sf.net>
* gst-xmlinspect.py:
* plugins.xsl:
Also extract element caps for plugin-docs. Fixes parts of #117692.
2007-06-21 Tim-Philipp Müller <tim at centricular dot net>
Patch by: Andreas Schwab
* m4/gst-feature.m4:
Fix quoting (#449493).
2007-06-10 Sebastian Dröge <slomo@circular-chaos.org>
* m4/gst-parser.m4:
Only generate the parser if bison >= 1.875 _and_ flex >= 2.5.31 is
installed and use pre-generated sources otherwise. Fixes bug #444820.
2007-05-11 Michael Smith <msmith@fluendo.com>
* gst.supp:
Suppression variant for our good friend the TLS leak, this time for
Ubuntu Feisty/x86.
2007-05-09 Tim-Philipp Müller <tim at centricular dot net>
* gtk-doc-plugins.mak:
Fix make distcheck again; change some spaces to tabs in makefile.
2007-04-29 Thomas Vander Stichele <thomas at apestaart dot org>
* gtk-doc-plugins.mak (-module):
Error out when the html build step gives warnings, so they get
fixed properly.
2007-04-23 Stefan Kost <ensonic@users.sf.net>
* m4/gst-feature.m4:
Add macro AG_GST_PARSE_SUBSYSTEM_DISABLES that checks the defines in
the configuration header and AC_DEFINES the setings.
2007-04-19 Sebastian Dröge <slomo@circular-chaos.org>
Patch by: Vincent Torri <vtorri at univ-evry dot fr>
* m4/gst-parser.m4:
Put the AC_MSG_RESULT output in brackets to get it properly written to
the terminal.
2007-04-18 Sebastian Dröge <slomo@circular-chaos.org>
* m4/gst-parser.m4:
Check for flex >= 2.5.31 and set GENERATE_PARSER if we have at least
that version. Otherwise use pre-generated parser sources as we can't
raise the required flex version. HAVE_MT_SAVE_FLEX is obsolete now
as we use a new enough flex version anyway. First part of #349180
2007-04-10 Thomas Vander Stichele <thomas at apestaart dot org>
* m4/gst-check.m4:
Allow pre-setting the GST(PB)_TOOLS/PLUGINS_DIR variables to help
builds against older GStreamer.
2007-03-25 Sebastian Dröge <slomo@circular-chaos.org>
* m4/gst-parser.m4:
Fix the flex version check. It ignored the micro version before.
2007-03-09 Jan Schmidt <thaytan@mad.scientist.com>
* check.mak:
Use the same timeout when generating valgrind suppressions as
running the valgrind test.
* gst.supp:
Add some more suppressions and stuff.
2007-03-08 Jan Schmidt <thaytan@mad.scientist.com>
* check.mak:
Make sure GSlice is disabled when building suppressions too.
* gst.supp:
Add around *850* lines of suppressions for one-time initialisations
inside libasound and gconf/bonobo/ORBit. I feel so dirty.
2007-03-07 Jan Schmidt <thaytan@mad.scientist.com>
* gst.supp:
add a suppression for this GConf flup on the FC5 buildbot.
2007-03-06 Jan Schmidt <thaytan@mad.scientist.com>
* gst.supp:
Make the suppression a little more generic, to catch the FC5
backtrace too.
2007-03-06 Jan Schmidt <thaytan@mad.scientist.com>
* gst.supp:
Add a suppression for libcdio 0.76. It leaks an internal struct
when the CD-ROM device is not accessible.
2007-02-28 Thomas Vander Stichele <thomas at apestaart dot org>
* m4/gst-arch.m4:
Move a line that was in the wrong macro
2007-02-28 Thomas Vander Stichele <thomas at apestaart dot org>
* m4/gst.m4:
Add
* m4/gst-arch.m4:
* m4/gst-args.m4:
* m4/gst-check.m4:
* m4/gst-debuginfo.m4:
* m4/gst-default.m4:
* m4/gst-doc.m4:
* m4/gst-error.m4:
* m4/gst-feature.m4:
* m4/gst-function.m4:
* m4/gst-gettext.m4:
* m4/gst-glib2.m4:
* m4/gst-libxml2.m4:
* m4/gst-parser.m4:
* m4/gst-plugin-docs.m4:
* m4/gst-plugindir.m4:
* m4/gst-valgrind.m4:
* m4/gst-x11.m4:
Convert all macros to use AG_GST style so we can properly warn
when they're missing if configure.ac calls AG_GST_INIT
Will require update in all GStreamer modules.
2007-02-11 Stefan Kost <ensonic@users.sf.net>
* m4/gst-args.m4:
Remove 'enable' from configure switch description as this leads to
confusing lines like "disable enable builing ...".
* m4/gst-feature.m4:
Fix comment to sound less horrible.
2007-02-07 Tim-Philipp Müller <tim at centricular dot net>
Patch by: Will Newton <will.newton gmail com>
* m4/gst-check.m4:
Use $PKG_CONFIG rather than pkg-config directly, the one in our path
might not be the one we want, like when cross-compiling. Also, other
macros such as PKG_CHECK_MODULES use $PKG_CONFIG, so we should
probably too just for consistency. Fixes #405288.
2007-01-08 Tim-Philipp Müller <tim at centricular dot net>
* m4/gst-parser.m4:
Need to use double square brackets again so m4 doesn't remove them
(fixes #378931).
* m4/gst-args.m4:
Use double square brackets here as well, for the same reason.
2007-01-05 Tim-Philipp Müller <tim at centricular dot net>
* m4/gst-parser.m4:
Use 'sed' rather than 'tr' to strip trailing letters from version
numbers, since 'tr' might not be available and we know sed is
(#378931).
2006-10-21 Tim-Philipp Müller <tim at centricular dot net>
* check.mak:
Increase default timeout under valgrind, 60 is just too short and
some tests take a bit longer these days and not everyone has a
beefy machine.
2006-09-29 Michael Smith <msmith@fluendo.com>
* gst.supp:
More suppressions for edgy.
2006-09-28 Jan Schmidt <thaytan@mad.scientist.com>
* m4/gst-glib2.m4:
Use gmodule-no-export-2.0.pc instead of gmodule-2.0.pc - we neither
want nor need --export-dynamic (which ends up making us export a bunch
of unneeded symbols)
2006-09-14 Tim-Philipp Müller <tim at centricular dot net>
* gst.supp:
Some suppressions for the more recent ld.so in ubuntu edgy.
2006-08-23 Tim-Philipp Müller <tim at centricular dot net>
* gst.supp:
Shorten function trail so the suppression works on
my ubuntu dapper system with core cvs as well.
2006-07-28 Jan Schmidt <thaytan@mad.scientist.com>
* gst.supp:
Extra suppressions from my Ubuntu x86_64 machine
2006-07-24 Tim-Philipp Müller <tim at centricular dot net>
Patch by: Frederic Peters <fpeters at entrouvert com>
* m4/gst-parser.m4:
Need to double square brackets in .m4 files. Should fix bison
version detection with version numbers like 1.23a (#348354).
2006-07-24 Jan Schmidt <thaytan@mad.scientist.com>
* check.mak:
Valgrind fails to find tests written in tests/check/ directly (rather
than a subdir) - because valgrind gets run with a filename that
doesn't contain a relative path, it goes searching /usr/bin instead.
Run with ./.... to make things work either way.
* gtk-doc-plugins.mak:
Add $(top_builddir)/src as a place to look for plugins
when building too, since that's where gst-template keeps things
2006-07-23 Stefan Kost <ensonic@users.sf.net>
Patch by: Frederic Peters <fpeters@entrouvert.com>
* m4/gst-parser.m4:
Fix bison detection (#348354)
2006-07-21 Stefan Kost <ensonic@users.sf.net>
* m4/gst-parser.m4:
check for bison and flex
2006-07-13 Thomas Vander Stichele <thomas at apestaart dot org>
* m4/gst-plugin-docs.m4:
remove the configure argument for enabling plugin doc build;
having gtk-doc enabled and pyxml present is enough of a trigger
2006-07-03 Thomas Vander Stichele <thomas at apestaart dot org>
* coverage/lcov.mak:
fix up rules to work with gst-python as well
run "make lcov" to test and generate the reports
run "make lcov-reset" to redo it after that
2006-07-02 Thomas Vander Stichele <thomas at apestaart dot org>
* Makefile.am:
* check.mak:
add an inspect target that inspects every element feature,
so we can have that added for coverage
* coverage/lcov.mak:
add support for lcov
2006-07-02 Thomas Vander Stichele <thomas at apestaart dot org>
* m4/gst-args.m4:
when building with gcov, reset CFLAGS and friends to O0
2006-07-02 Thomas Vander Stichele <thomas at apestaart dot org>
* m4/gst-args.m4:
Find the gcov that matches the gcc version
Only allow gcov if we use gcc
2006-07-02 Thomas Vander Stichele <thomas at apestaart dot org>
* Makefile.am:
* coverage/coverage-report-entry.pl:
* coverage/coverage-report.pl:
* coverage/coverage-report.xsl:
copy coverage reporting files from dbus
2006-07-01 Thomas Vander Stichele <thomas at apestaart dot org>