add Non-BMP plugin against GTK+ exploits

This commit is contained in:
Berke Viktor
2012-01-18 09:25:05 +01:00
parent ffdd106588
commit 569cb3dbbf
7 changed files with 115 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
include "..\..\src\makeinc.mak"
all: nonbmp.obj nonbmp.def
link $(LDFLAGS) $(LIBS) /dll /out:xcnonbmp.dll /def:nonbmp.def nonbmp.obj
nonbmp.def:
echo EXPORTS > nonbmp.def
echo xchat_plugin_init >> nonbmp.def
echo xchat_plugin_deinit >> nonbmp.def
nonbmp.obj: nonbmp.c makefile.mak
cl $(CFLAGS) $(GLIB) /I.. nonbmp.c
clean:
del *.obj
del *.dll
del *.exp
del *.lib