Ticket #733: pdd30install_stage4.diff

File pdd30install_stage4.diff, 4.1 KB (added by jkeenan, 13 years ago)

svn diff  https://svn.parrot.org/parrot/trunk@35113  https://svn.parrot.org/parrot/branches/pdd30install_stage4@HEAD

  • ext/SQLite3/Makefile.in

     
    1 # Copyright (C) 2001-2008, The Perl Foundation. 
     1# Copyright (C) 2001-2009, The Perl Foundation. 
    22 
    33TARGET_NAME = sqlite3s 
    44 
     
    3737LINKFLAGS        = @linkflags@ @link_debug@ @ld_debug@ 
    3838LD               = @ld@ 
    3939LDFLAGS          = @ldflags@ @ld_debug@ 
    40 #CONDITIONED_LINE(darwin):export MACOSX_DEPLOYMENT_TARGET := @osx_version@ 
     40#IF(darwin):export MACOSX_DEPLOYMENT_TARGET := @osx_version@ 
    4141O                = @o@ 
    4242EXE              = @exe@ 
    4343SHARE_EXT        = @share_ext@ 
     
    4545A                = @a@ 
    4646LD_SHARE_FLAGS   = @ld_share_flags@ 
    4747LD_LOAD_FLAGS    = @ld_load_flags@ 
    48 GEN_MAKEFILES = Makefile  
    4948DYNEXT_DIR          = runtime/parrot/dynext 
    50 LIBNCI_TEST_SO      = $(DYNEXT_DIR)/libnci_test$(LOAD_EXT) 
    51 LIBGLUTCB_SO        = $(DYNEXT_DIR)/libglutcb$(LOAD_EXT) 
    5249 
    5350@make_set_make@ 
    5451MAKE = @make_c@ 
     
    7471test: 
    7572        $(RM_F) test.db t/test.db 
    7673        PERL6LIB=../../languages/perl6 $(PERL6) t/test.p6 
    77          
    7874 
    7975$(SHARED_LIB) : $(C_FILES) 
    8076        $(MKPATH) @blib_dir@ 
    8177        $(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 \ 
    8380                $(C_FILES) $(C_LIBS) $(ICU_SHARED) 
    84 #CONDITIONED_LINE(win32):       if exist $@.manifest mt.exe -nologo -manifest $@.manifest -outputresource:$@;2 
     81#IF(win32):     if exist $@.manifest mt.exe -nologo -manifest $@.manifest -outputresource:$@;2 
    8582 
    8683 
    8784clean :  
    8885        $(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

     
    37473747t/tools/pmc2cutils/README                                   [] 
    37483748tools/build/addopstags.pl                                   [] 
    37493749tools/build/c2str.pl                                        [] 
    3750 tools/build/cygchkdll.sh                                    [] 
    37513750tools/build/fixup_gen_file.pl                               [] 
    37523751tools/build/headerizer.pl                                   [] 
    37533752tools/build/jit2c.pl                                        [] 
  • t/pmc/eval.t

     
    317317OUTPUT 
    318318 
    319319TODO: { 
    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)/; 
    321321pir_output_is( <<"CODE", <<'OUTPUT', "eval.get_string - same file" ); 
    322322.sub main :main 
    323323 
  • config/init/defaults.pm

     
    200200        make_set_make => $Config{make_set_make}, 
    201201        make_and      => '&&', 
    202202 
    203         # for cygwin 
    204         cygchkdll => '', 
    205  
    206203        # make_c: Command to emulate GNU make's C<-C directory> option:  chdir 
    207204        # to C<directory> before executing $(MAKE) 
    208205        make_c => '$(PERL) -e \'chdir shift @ARGV; system q{$(MAKE)}, @ARGV; exit $$? >> 8;\'', 
  • config/gen/makefiles/root.in

     
    764764        $(PARROT) -o $@ runtime/parrot/library/parrotlib.pir 
    765765 
    766766runtime/parrot/include/config.fpmc : myconfig config_lib.pasm $(MINIPARROT) 
    767         @cygchkdll@ 
    768767        @echo Invoking Parrot to generate runtime/parrot/include/config.fpmc --cross your fingers 
    769768        $(MINIPARROT) config_lib.pasm > $@ 
    770769