mirror of
https://github.com/moparisthebest/hexchat
synced 2024-11-26 03:02:17 -05:00
polish the building process of the perl interface
This commit is contained in:
parent
7061c055f1
commit
b6a0e0d086
@ -8,3 +8,12 @@ echo.Please adjust the resulting file manually, then hit return!
|
|||||||
pause
|
pause
|
||||||
lib /machine:x86 /def:perl512.def
|
lib /machine:x86 /def:perl512.def
|
||||||
pause
|
pause
|
||||||
|
set PATH=c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\amd64
|
||||||
|
cd c:\mozilla-build\perl-5.12-x64\perl\lib\CORE
|
||||||
|
echo.Overwrite existing def file?
|
||||||
|
pause
|
||||||
|
dumpbin /exports ..\..\bin\perl512.dll > perl512.def
|
||||||
|
echo.Please adjust the resulting file manually, then hit return!
|
||||||
|
pause
|
||||||
|
lib /machine:x64 /def:perl512.def
|
||||||
|
pause
|
File diff suppressed because it is too large
Load Diff
@ -1,10 +0,0 @@
|
|||||||
@echo off
|
|
||||||
set PATH=c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\amd64
|
|
||||||
cd c:\mozilla-build\perl-5.12-x64\perl\lib\CORE
|
|
||||||
echo.Overwrite existing def file?
|
|
||||||
pause
|
|
||||||
dumpbin /exports ..\..\bin\perl512.dll > perl512.def
|
|
||||||
echo.Please adjust the resulting file manually, then hit return!
|
|
||||||
pause
|
|
||||||
lib /machine:x64 /def:perl512.def
|
|
||||||
pause
|
|
@ -12,15 +12,22 @@ perl.def:
|
|||||||
echo xchat_plugin_get_info >> perl.def
|
echo xchat_plugin_get_info >> perl.def
|
||||||
|
|
||||||
perl.obj: perl.c
|
perl.obj: perl.c
|
||||||
$(CC) $(CFLAGS) perl.c $(GLIB) /I$(PERL512PATH) /I.. /DPERL_DLL=\"$(PERL512LIB).dll\"
|
$(CC) $(CFLAGS) perl.c $(GLIB) /I$(PERL512PATH)\perl\lib\CORE /I.. /DPERL_DLL=\"$(PERL512LIB).dll\"
|
||||||
|
|
||||||
|
$(PERL512LIB).lib: perl512.def
|
||||||
|
!ifdef X64
|
||||||
|
lib /machine:x64 /def:perl512.def
|
||||||
|
!else
|
||||||
|
lib /machine:x86 /def:perl512.def
|
||||||
|
!endif
|
||||||
|
|
||||||
perl.c: xchat.pm.h
|
perl.c: xchat.pm.h
|
||||||
|
|
||||||
xchat.pm.h: lib/Xchat.pm lib/IRC.pm
|
xchat.pm.h: lib/Xchat.pm lib/IRC.pm
|
||||||
perl.exe generate_header
|
perl.exe generate_header
|
||||||
|
|
||||||
$(TARGET): perl.obj perl.def
|
$(TARGET): perl.obj perl.def $(PERL512LIB).lib
|
||||||
$(LINK) /DLL /out:$(TARGET) perl.obj $(LDFLAGS) $(PERL512LIB).lib /libpath:$(PERL512PATH) /delayload:$(PERL512LIB).dll $(DIRENTLIB) delayimp.lib user32.lib shell32.lib advapi32.lib /def:perl.def
|
$(LINK) /DLL /out:$(TARGET) perl.obj $(LDFLAGS) $(PERL512LIB).lib /delayload:$(PERL512LIB).dll $(DIRENTLIB) delayimp.lib user32.lib shell32.lib advapi32.lib /def:perl.def
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
@del $(TARGET)
|
@del $(TARGET)
|
||||||
|
@ -12,7 +12,7 @@ perl.def:
|
|||||||
echo xchat_plugin_get_info >> perl.def
|
echo xchat_plugin_get_info >> perl.def
|
||||||
|
|
||||||
perl.obj: perl.c
|
perl.obj: perl.c
|
||||||
$(CC) $(CFLAGS) perl.c $(GLIB) /I$(PERL514PATH) /I.. /DPERL_DLL=\"$(PERL514LIB).dll\"
|
$(CC) $(CFLAGS) perl.c $(GLIB) /I$(PERL514PATH)\lib\CORE /I.. /DPERL_DLL=\"$(PERL514LIB).dll\"
|
||||||
|
|
||||||
perl.c: xchat.pm.h
|
perl.c: xchat.pm.h
|
||||||
|
|
||||||
|
@ -30,8 +30,8 @@ CFLAGS = $(CFLAGS) /favor:AMD64 /D_WIN64
|
|||||||
CPPFLAGS = $(CPPFLAGS) /favor:AMD64 /D_WIN64
|
CPPFLAGS = $(CPPFLAGS) /favor:AMD64 /D_WIN64
|
||||||
LDFLAGS = $(LDFLAGS) msvcrt_win2003.obj
|
LDFLAGS = $(LDFLAGS) msvcrt_win2003.obj
|
||||||
|
|
||||||
PERL512PATH = c:\mozilla-build\perl-5.12-x64\perl\lib\CORE
|
PERL512PATH = c:\mozilla-build\perl-5.12-x64
|
||||||
PERL514PATH = c:\mozilla-build\perl-5.14-x64\lib\CORE
|
PERL514PATH = c:\mozilla-build\perl-5.14-x64
|
||||||
PYTHONPATH = c:\mozilla-build\python-2.7-x64
|
PYTHONPATH = c:\mozilla-build\python-2.7-x64
|
||||||
TCLPATH = c:\mozilla-build\tcl-8.5-x64
|
TCLPATH = c:\mozilla-build\tcl-8.5-x64
|
||||||
!else
|
!else
|
||||||
|
Loading…
Reference in New Issue
Block a user