Mercurial > pidgin.yaz
view pidgin/win32/IdleTracker/Makefile.mingw @ 25133:309f6dca369a
Use _set_default_priority on gnutls versions lacking _priority_set_direct.
Versions of gnutls prior to 2.2.0 do not have gnutls_priority_set_direct.
This fixes a compilation issue in c84a41f40179331c218ac05005ce7805129049e5
on such systems. This should not represent a regression from 2.5.4 on
systems without gnutls 2.2.0 or newer.
Fixes #8526
author | Ethan Blanton <elb@pidgin.im> |
---|---|
date | Sun, 01 Mar 2009 20:56:20 +0000 |
parents | ded8da3de5f8 |
children |
line wrap: on
line source
# # Makefile.mingw # # Description: Makefile for idletrack # PIDGIN_TREE_TOP := ../../.. include $(PIDGIN_TREE_TOP)/libpurple/win32/global.mak TARGET = idletrack ## ## SOURCES, OBJECTS ## C_SRC = idletrack.c OBJECTS = $(C_SRC:%.c=%.o) include $(PIDGIN_COMMON_RULES) ## ## TARGET DEFINITIONS ## .PHONY: all install clean all: $(TARGET).dll install: $(PIDGIN_INSTALL_DIR) cp $(TARGET).dll $(PIDGIN_INSTALL_DIR) ## ## BUILD DLL ## $(TARGET).dll $(TARGET).dll.a: $(OBJECTS) $(CC) -shared $(OBJECTS) $(LIB_PATHS) $(LIBS) $(DLL_LD_FLAGS) -Wl,--out-implib,$(TARGET).dll.a -o $(TARGET).dll ## ## CLEAN RULES ## clean: rm -f $(OBJECTS) $(TARGET).dll $(TARGET).dll.a include $(PIDGIN_COMMON_TARGETS)