summary refs log tree commit diff stats
path: root/src/htm/Program.cs
diff options
context:
space:
mode:
authorPatrick Griffis <tingping@tingping.se>2019-11-24 13:01:48 -0800
committerPatrick Griffis <tingping@tingping.se>2019-11-24 13:01:48 -0800
commit7d9f3acfc905ca5d0c9747699eb21d2d95fbf821 (patch)
tree448c43e0eaca1252cc9cf15a0a7c667d4ca1d9fd /src/htm/Program.cs
parentad5be08a0703659e1b90ec4a5c6ff58a42660bae (diff)
Fix capability negotiation ending before sasl finishes with multi-line cap
Closes #2398
Diffstat (limited to 'src/htm/Program.cs')
0 files changed, 0 insertions, 0 deletions
s/perl/makefile.mak?id=d194c520e7888ffa650b319c42cd30db3c53ddfb'>^
c7ec88c8 ^

00af66e9 ^




1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36

                               







                                                 









                                              
                                                                                  






                                
                                                                                                                                                                                    

      




                      
include "..\..\src\makeinc.mak"

TARGET = xcperl-58.dll
PERLLIB = perl58

!ifdef X64
PERLPATH = c:\mozilla-build\perl-5.8-x64\lib\CORE
!else
PERLPATH = c:\mozilla-build\perl-5.8-x86\lib\CORE
!endif

all: $(TARGET)

perl.def:
	echo EXPORTS > perl.def
	echo xchat_plugin_init >> perl.def
	echo xchat_plugin_deinit >> perl.def
	echo xchat_plugin_get_info >> perl.def

perl.obj: perl.c
	$(CC) $(CFLAGS) perl.c $(GLIB) -I$(PERLPATH) -DPERL_DLL=\"$(PERLLIB).dll\"

perl.c: xchat.pm.h

xchat.pm.h: Xchat.pm IRC.pm
	perl.exe generate_header

$(TARGET): perl.obj perl.def
	$(LINK) /DLL /out:$(TARGET) perl.obj $(LDFLAGS) $(PERLLIB).lib /libpath:$(PERLPATH) /DELAYLOAD:$(PERLLIB).dll DELAYIMP.LIB user32.lib shell32.lib advapi32.lib /def:perl.def

clean:
	@del $(TARGET)
	@del *.obj
	@del perl.def
	@del *.lib
	@del *.exp