view share/ca-certs/Makefile.mingw @ 22448:8ec6ac1b9e26

Only allow one keepalive_timeout at a time. This prevents us from starting a second one and therefore losing track of the first when the server isn't responding within the 120 second timeout interval. Refs #4814; really shouldn't fix it, but it might.
author Evan Schoenberg <evan.s@dreskin.net>
date Tue, 11 Mar 2008 22:58:36 +0000
parents d5ecaf5bce93
children a7711cdafa6b
line wrap: on
line source

#
# 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
cacertsdir := $(PIDGIN_INSTALL_DIR)/ca-certs

.PHONY: install

install:
	if test '$(cacerts_DATA)'; then \
	  mkdir -p $(cacertsdir); \
	  cp $(cacerts_DATA) $(cacertsdir); \
	fi;