Mercurial > pidgin.yaz
view pidgin/plugins/win32/transparency/Makefile.mingw @ 31519:0c0b94fb9ac7
oscar: Fix a memleak on receipt of messages
==32109== 2,981 bytes in 7 blocks are definitely lost in loss record 18,095 of 18,342
==32109== at 0x4C244E8: malloc (vg_replace_malloc.c:236)
==32109== by 0x90D8534: g_malloc (gmem.c:132)
==32109== by 0x1613A408: byte_stream_getstr (bstream.c:167)
==32109== by 0x161434B3: incomingim (family_icbm.c:928)
==32109== by 0x161440A4: snachandler (family_icbm.c:2112)
==32109== by 0x1614B4D2: flap_connection_recv (flap_connection.c:776)
author | Paul Aurich <paul@darkrain42.org> |
---|---|
date | Tue, 28 Dec 2010 05:54:04 +0000 |
parents | 1843c0180fbe |
children |
line wrap: on
line source
# # Makefile.mingw # # Description: Makefile for win32trans plugin. # PIDGIN_TREE_TOP := ../../../.. include $(PIDGIN_TREE_TOP)/libpurple/win32/global.mak TARGET = win2ktrans DEFINES += -D_WIN32_WINNT=0x0500 ## ## INCLUDE PATHS ## INCLUDE_PATHS += -I. \ -I$(GTK_TOP)/include \ -I$(GTK_TOP)/include/gtk-2.0 \ -I$(GTK_TOP)/include/glib-2.0 \ -I$(GTK_TOP)/include/pango-1.0 \ -I$(GTK_TOP)/include/atk-1.0 \ -I$(GTK_TOP)/include/cairo \ -I$(GTK_TOP)/lib/glib-2.0/include \ -I$(GTK_TOP)/lib/gtk-2.0/include \ -I$(PURPLE_TOP) \ -I$(PURPLE_TOP)/win32 \ -I$(PIDGIN_TOP) \ -I$(PIDGIN_TOP)/win32 \ -I$(PIDGIN_TREE_TOP) LIB_PATHS += -L$(GTK_TOP)/lib \ -L$(PURPLE_TOP) \ -L$(PIDGIN_TOP) ## ## SOURCES, OBJECTS ## C_SRC = win2ktrans.c OBJECTS = $(C_SRC:%.c=%.o) ## ## LIBRARIES ## LIBS = -lgtk-win32-2.0 \ -lglib-2.0 \ -lgdk-win32-2.0 \ -lgmodule-2.0 \ -lgobject-2.0 \ -lintl \ -lpidgin \ -lpurple include $(PIDGIN_COMMON_RULES) ## ## TARGET DEFINITIONS ## .PHONY: all install clean all: $(TARGET).dll install: all $(PIDGIN_INSTALL_PLUGINS_DIR) cp $(TARGET).dll $(PIDGIN_INSTALL_PLUGINS_DIR) $(TARGET).dll: $(PURPLE_DLL).a $(PIDGIN_DLL).a $(OBJECTS) $(CC) -shared $(OBJECTS) $(LIB_PATHS) $(LIBS) $(DLL_LD_FLAGS) -o $(TARGET).dll ## ## CLEAN RULES ## clean: rm -rf $(OBJECTS) rm -rf $(TARGET).dll include $(PIDGIN_COMMON_TARGETS)