From be696360be4dc3d92fd730daa446f9757ac3d3ab Mon Sep 17 00:00:00 2001 From: Steve Baker Date: Sat, 15 Nov 2003 23:14:43 +0000 Subject: [PATCH] hack to not use the deprecated function g_strdown which looks like has been removed from fedora. Original commit message from CVS: hack to not use the deprecated function g_strdown which looks like has been removed from fedora. Am presuming that class names are only ever ascii. --- docs/gst/Makefile.am | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/gst/Makefile.am b/docs/gst/Makefile.am index 34353efd3c..2359b0ec3f 100644 --- a/docs/gst/Makefile.am +++ b/docs/gst/Makefile.am @@ -127,6 +127,8 @@ scan-build.stamp: $(HFILE_GLOB) $(SCANOBJ_DEPS) $(basefiles) @echo '*** Scanning header files ***' if grep -l '^..*$$' $(srcdir)/$(DOC_MODULE).types > /dev/null ; then \ CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" CFLAGS="$(GTKDOC_CFLAGS)" LDFLAGS="$(GTKDOC_LIBS)" $(GTK_DOC_SCANOBJ) --module=$(DOC_MODULE) --output-dir=$(srcdir) ; \ + mv $(DOC_MODULE)-scan.c $(DOC_MODULE)-presed-scan.c ; \ + sed -e 's/g_strdown/g_ascii_strdown/g' $(DOC_MODULE)-presed-scan.c > $(DOC_MODULE)-scan.c ; \ else \ cd $(srcdir) ; \ for i in $(SCANOBJ_FILES) ; do \