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.
This commit is contained in:
Steve Baker 2003-11-15 23:14:43 +00:00
parent 0c5153ffd2
commit be696360be

View file

@ -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 \