Ticket #733: pdd30install_stage4.diff
File pdd30install_stage4.diff, 4.1 KB (added by jkeenan, 13 years ago) |
---|
-
ext/SQLite3/Makefile.in
1 # Copyright (C) 2001-200 8, The Perl Foundation.1 # Copyright (C) 2001-2009, The Perl Foundation. 2 2 3 3 TARGET_NAME = sqlite3s 4 4 … … 37 37 LINKFLAGS = @linkflags@ @link_debug@ @ld_debug@ 38 38 LD = @ld@ 39 39 LDFLAGS = @ldflags@ @ld_debug@ 40 # CONDITIONED_LINE(darwin):export MACOSX_DEPLOYMENT_TARGET := @osx_version@40 #IF(darwin):export MACOSX_DEPLOYMENT_TARGET := @osx_version@ 41 41 O = @o@ 42 42 EXE = @exe@ 43 43 SHARE_EXT = @share_ext@ … … 45 45 A = @a@ 46 46 LD_SHARE_FLAGS = @ld_share_flags@ 47 47 LD_LOAD_FLAGS = @ld_load_flags@ 48 GEN_MAKEFILES = Makefile49 48 DYNEXT_DIR = runtime/parrot/dynext 50 LIBNCI_TEST_SO = $(DYNEXT_DIR)/libnci_test$(LOAD_EXT)51 LIBGLUTCB_SO = $(DYNEXT_DIR)/libglutcb$(LOAD_EXT)52 49 53 50 @make_set_make@ 54 51 MAKE = @make_c@ … … 74 71 test: 75 72 $(RM_F) test.db t/test.db 76 73 PERL6LIB=../../languages/perl6 $(PERL6) t/test.p6 77 78 74 79 75 $(SHARED_LIB) : $(C_FILES) 80 76 $(MKPATH) @blib_dir@ 81 77 $(CC) $(CC_INC) $(LD_SHARE_FLAGS) $(LDFLAGS) @ld_out@$@ \ 82 #CONDITIONED_LINE(cygchkdll): -Wl,--out-implib=blib/lib/libparrot.dll.a \ 78 #IF(cygwin): -Wl,--out-implib=lib$(TARGET_NAME).dll.a \ 79 #IF(win32 and cc==gcc): -Wl,--out-implib=lib$(TARGET_NAME).lib \ 83 80 $(C_FILES) $(C_LIBS) $(ICU_SHARED) 84 # CONDITIONED_LINE(win32): if exist $@.manifest mt.exe -nologo -manifest $@.manifest -outputresource:$@;281 #IF(win32): if exist $@.manifest mt.exe -nologo -manifest $@.manifest -outputresource:$@;2 85 82 86 83 87 84 clean : 88 85 $(RM_F) $(SHARED_LIB) @blib_dir@ $(O_FILES) Makefile 86 #IF(cygwin): $(RM_F) lib$(TARGET_NAME).dll.a 87 #IF(win32 and cc==gcc): $(RM_F) lib$(TARGET_NAME).lib -
MANIFEST
3747 3747 t/tools/pmc2cutils/README [] 3748 3748 tools/build/addopstags.pl [] 3749 3749 tools/build/c2str.pl [] 3750 tools/build/cygchkdll.sh []3751 3750 tools/build/fixup_gen_file.pl [] 3752 3751 tools/build/headerizer.pl [] 3753 3752 tools/build/jit2c.pl [] -
t/pmc/eval.t
317 317 OUTPUT 318 318 319 319 TODO: { 320 local $TODO = "cannot 'rm' an open file on windows " if $^O eq 'MSWin32';320 local $TODO = "cannot 'rm' an open file on windows. TT#121" if $^O =~ /(MSWin32|cygwin)/; 321 321 pir_output_is( <<"CODE", <<'OUTPUT', "eval.get_string - same file" ); 322 322 .sub main :main 323 323 -
config/init/defaults.pm
200 200 make_set_make => $Config{make_set_make}, 201 201 make_and => '&&', 202 202 203 # for cygwin204 cygchkdll => '',205 206 203 # make_c: Command to emulate GNU make's C<-C directory> option: chdir 207 204 # to C<directory> before executing $(MAKE) 208 205 make_c => '$(PERL) -e \'chdir shift @ARGV; system q{$(MAKE)}, @ARGV; exit $$? >> 8;\'', -
config/gen/makefiles/root.in
764 764 $(PARROT) -o $@ runtime/parrot/library/parrotlib.pir 765 765 766 766 runtime/parrot/include/config.fpmc : myconfig config_lib.pasm $(MINIPARROT) 767 @cygchkdll@768 767 @echo Invoking Parrot to generate runtime/parrot/include/config.fpmc --cross your fingers 769 768 $(MINIPARROT) config_lib.pasm > $@ 770 769