comparison src/if_perl.xs @ 7198:b58e16f9119e v7.4.908

commit https://github.com/vim/vim/commit/a16f472edfa028e5574c7c145d02f3821edbc698 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Nov 2 17:35:43 2015 +0100 patch 7.4.908 Problem: Build error with MingW compiler. (Cesar Romani) Solution: Change #if into #ifdef.
author Christian Brabandt <cb@256bit.org>
date Mon, 02 Nov 2015 17:45:04 +0100
parents 42717d048817
children 53163e4d9e4f
comparison
equal deleted inserted replaced
7197:8e4508366e5b 7198:b58e16f9119e
609 */ 609 */
610 int 610 int
611 perl_enabled(verbose) 611 perl_enabled(verbose)
612 int verbose; 612 int verbose;
613 { 613 {
614 #if WIN3264 614 #ifdef WIN3264
615 char *dll = DYNAMIC_PERL_DLL; 615 char *dll = DYNAMIC_PERL_DLL;
616 #else 616 #else
617 char *dll = *p_perldll ? (char *)p_perldll : DYNAMIC_PERL_DLL; 617 char *dll = *p_perldll ? (char *)p_perldll : DYNAMIC_PERL_DLL;
618 #endif 618 #endif
619 return perl_runtime_link_init(dll, verbose) == OK; 619 return perl_runtime_link_init(dll, verbose) == OK;