mirror of
https://github.com/hexchat/hexchat.git
synced 2024-11-10 05:02:50 +01:00
remove ancient perl 5.8 from distro
This commit is contained in:
parent
53f344c07f
commit
0b43ae7cb6
@ -19,9 +19,6 @@ nmake /nologo /f makefile.mak clean
|
||||
nmake /nologo /f makefile.mak
|
||||
cd perl
|
||||
set OOPATH=%PATH%
|
||||
set PATH=%OOPATH%;c:\mozilla-build\perl-5.8-x64\bin
|
||||
nmake /nologo /s /f makefile-58.mak clean
|
||||
nmake /nologo /s /f makefile-58.mak
|
||||
set PATH=%OOPATH%;c:\mozilla-build\perl-5.10-x64\bin
|
||||
nmake /nologo /s /f makefile-510.mak clean
|
||||
nmake /nologo /s /f makefile-510.mak
|
||||
|
@ -15,9 +15,6 @@ nmake /nologo /f makefile.mak clean
|
||||
nmake /nologo /f makefile.mak
|
||||
cd perl
|
||||
set OOPATH=%PATH%
|
||||
set PATH=%OOPATH%;c:\mozilla-build\perl-5.8-x86\bin
|
||||
nmake /nologo /s /f makefile-58.mak clean
|
||||
nmake /nologo /s /f makefile-58.mak
|
||||
set PATH=%OOPATH%;c:\mozilla-build\perl-5.10-x86\bin
|
||||
nmake /nologo /s /f makefile-510.mak clean
|
||||
nmake /nologo /s /f makefile-510.mak
|
||||
|
@ -34,7 +34,6 @@ copy %ENCHANT_BIN%\libenchant.dll %XCHAT_DEST%\libenchant.dll.x64
|
||||
copy %ENCHANT_BIN%\..\lib\enchant\libenchant_myspell.dll %XCHAT_DEST%\lib\enchant\libenchant_myspell.dll.x64
|
||||
copy ..\plugins\ewc\xcewc.dll %XCHAT_DEST%\plugins\xcewc.dll.x64
|
||||
copy ..\plugins\lua\xclua.dll %XCHAT_DEST%\plugins\xclua.dll.x64
|
||||
copy ..\plugins\perl\xcperl-58.dll %XCHAT_DEST%\plugins\xcperl-58.dll.x64
|
||||
copy ..\plugins\perl\xcperl-510.dll %XCHAT_DEST%\plugins\xcperl-510.dll.x64
|
||||
copy ..\plugins\perl\xcperl-512.dll %XCHAT_DEST%\plugins\xcperl-512.dll.x64
|
||||
copy ..\plugins\python\xcpython.dll %XCHAT_DEST%\plugins\xcpython.dll.x64
|
||||
|
@ -47,7 +47,6 @@ copy %ENCHANT_BIN%\libenchant.dll %XCHAT_DEST%
|
||||
xcopy /q /s /i %ENCHANT_BIN%\..\lib\enchant\libenchant_myspell.dll %XCHAT_DEST%\lib\enchant\
|
||||
xcopy /q /s /i ..\plugins\ewc\xcewc.dll %XCHAT_DEST%\plugins\
|
||||
copy ..\plugins\lua\xclua.dll %XCHAT_DEST%\plugins
|
||||
copy ..\plugins\perl\xcperl-58.dll %XCHAT_DEST%\plugins
|
||||
copy ..\plugins\perl\xcperl-510.dll %XCHAT_DEST%\plugins
|
||||
copy ..\plugins\perl\xcperl-512.dll %XCHAT_DEST%\plugins
|
||||
copy ..\plugins\python\xcpython.dll %XCHAT_DEST%\plugins
|
||||
|
@ -58,7 +58,6 @@ Name: portable; Description: "Yes"; GroupDescription: "Portable Install (no Regi
|
||||
;Name: xtray; Description: "X-Tray"; GroupDescription: "Tray Icon"; Flags: exclusive
|
||||
;Name: noxtray; Description: "Plugin-Tray"; GroupDescription: "Tray Icon"; Flags: exclusive unchecked
|
||||
|
||||
Name: perl58; Description: "5.8"; GroupDescription: "Perl version:"; Flags: exclusive unchecked; Components: langs\perl
|
||||
Name: perl510; Description: "5.10"; GroupDescription: "Perl version:"; Flags: exclusive unchecked; Components: langs\perl
|
||||
Name: perl512; Description: "5.12"; GroupDescription: "Perl version:"; Flags: exclusive; Components: langs\perl
|
||||
|
||||
@ -207,9 +206,6 @@ Source: "plugins\xctcl.dll.x64"; DestDir: "{app}\plugins"; DestName: "xctcl.dll"
|
||||
|
||||
|
||||
|
||||
Source: "plugins\xcperl-58.dll"; DestDir: "{app}\plugins"; DestName: "xcperl.dll"; Components: langs\perl; Tasks: x86 and perl58
|
||||
Source: "plugins\xcperl-58.dll.x64"; DestDir: "{app}\plugins"; DestName: "xcperl.dll"; Components: langs\perl; Tasks: x64 and perl58
|
||||
|
||||
Source: "plugins\xcperl-510.dll"; DestDir: "{app}\plugins"; DestName: "xcperl.dll"; Components: langs\perl; Tasks: x86 and perl510
|
||||
Source: "plugins\xcperl-510.dll.x64"; DestDir: "{app}\plugins"; DestName: "xcperl.dll"; Components: langs\perl; Tasks: x64 and perl510
|
||||
|
||||
|
@ -1,36 +0,0 @@
|
||||
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
|
Loading…
Reference in New Issue
Block a user