grim/guifications2

This was compatibility code for Pidgin 1.x.y; because it was written as a check
for "not 2.0.0" this code would be compiled in for 3.0.0. It looks like the
supporting code elsewhere was removed, causing this to leave an unresolved
symbol in guifications.so, thus causing Pidgin to refuse to load. Now we load
in Pidgin 3.0.0. Whether it works or not, I have no clue.
#
# Makefile.mingw
#
# Description: Makefile for win32 (mingw) guifications 2
#
#
# PATHS
#
GF_SRC := ./src
GF_PIXMAPS := ./pixmaps
GF_THEMES := ./themes
GF_PO := ./po
GF_TOP := .
-include $(GF_TOP)/local.mak
PIDGIN_TREE_TOP ?= ../../..
include $(PIDGIN_TREE_TOP)/libpurple/win32/global.mak
##
## VARIABLE DEFINITIONS
##
GF_VERSION := $(shell cat ./VERSION)
PIDGIN_VERSION := $(shell cat $(PIDGIN_TREE_TOP)/VERSION)
.PHONY: all install installer clean
all:
$(MAKE) -C $(GF_SRC) -f Makefile.mingw
$(MAKE) -C $(GF_PO) -f Makefile.mingw
gf_config.h: gf_config.h.mingw
cp gf_config.h.mingw gf_config.h
install: all
$(MAKE) -C $(GF_PIXMAPS) -f Makefile.mingw install
$(MAKE) -C $(GF_THEMES) -f Makefile.mingw install
$(MAKE) -C $(GF_SRC) -f Makefile.mingw install
$(MAKE) -C $(GF_PO) -f Makefile.mingw install
installer: all
$(MAKENSIS) -DGUIFICATIONS_VERSION="$(GF_VERSION)" -DPIDGIN_VERSION="$(PIDGIN_VERSION)" -DPIDGIN_TREE_TOP="$(PIDGIN_TREE_TOP)" guifications-installer.nsi
clean:
$(MAKE) -C $(GF_SRC) -f Makefile.mingw clean
rm -f gf_config.h guifications-*.exe