pidgin/pidgin

99152d2c1529
Fix a bug where autoconf 2.71 complains about AC_PROG_INTLTOOL not being used.

Testing Done:
Tested in a fedora rawhide container with the autoconf 2.71 copr installed.
Also tested in debian buster with autoconf 2.71 installed from experimental.

Bugs closed: PIDGIN-17509

Reviewed at https://reviews.imfreedom.org/r/589/
#
# Makefile.mingw
#
# Description: Makefile for win32 (mingw) version of Pidgin ca-certs
#
PIDGIN_TREE_TOP := ../..
include $(PIDGIN_TREE_TOP)/libpurple/win32/global.mak
datadir := $(PIDGIN_INSTALL_DIR)
-include ./Makefile.am.mingw
cacertsdir := $(PIDGIN_INSTALL_DIR)/ca-certs
.PHONY: install clean
install: ./Makefile.am.mingw
if test '$(cacerts_DATA)'; then \
mkdir -p $(cacertsdir); \
cp $(cacerts_DATA) $(cacertsdir); \
fi;
clean:
rm -f ./Makefile.am.mingw
./Makefile.am.mingw: ./Makefile.am
sed -e 's/^if\ INSTALL_SSL_CERTIFICATES/ifeq (\$$(INSTALL_SSL_CERTIFICATES), 1)/' ./Makefile.am > $@