pike.git
/
src
/
post_modules
/
GTK2
/
output
/
split.pike
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/post_modules/GTK2/output/split.pike:207:
int up_to_date( ) { int last_time = (int)Stdio.read_bytes( dir+"time_stamp" ); if(!last_time ) return 0; foreach( map(get_dir( sdir ), lambda(string s){return sdir+s;})| ({ __FILE__, combine_path( __FILE__, "../../new_build_pgtk.pike" )}), string f ) { Stdio.Stat s;
-
if( !(s = file_stat( f ) ) )
+
if( !(s = file_stat( f ) ) )
{
werror("Failed to stat "+f+"\n");
-
+
return 0;
+
}
if( s->mtime > last_time ) return 0; } return 1; } void create( string _s, string _d, object p ) { sdir = _s; dir = _d; parent = p; }