mirror of
				https://gitlab.gnome.org/GNOME/glib.git
				synced 2025-11-04 10:08:56 +01:00 
			
		
		
		
	
		
			
	
	
		
			36 lines
		
	
	
		
			863 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
		
		
			
		
	
	
			36 lines
		
	
	
		
			863 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
| 
								 | 
							
								#!/usr/bin/perl
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								$major = 1;
							 | 
						||
| 
								 | 
							
								$minor = 3;
							 | 
						||
| 
								 | 
							
								$micro = 7;
							 | 
						||
| 
								 | 
							
								$binary_age = 0;
							 | 
						||
| 
								 | 
							
								$interface_age = 0;
							 | 
						||
| 
								 | 
							
								$gettext_package = "glib20";
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								sub process_file
							 | 
						||
| 
								 | 
							
								{
							 | 
						||
| 
								 | 
							
								        my $outfilename = shift;
							 | 
						||
| 
								 | 
							
									my $infilename = $outfilename . ".in";
							 | 
						||
| 
								 | 
							
									
							 | 
						||
| 
								 | 
							
									open (INPUT, "< $infilename") || exit 1;
							 | 
						||
| 
								 | 
							
									open (OUTPUT, "> $outfilename") || exit 1;
							 | 
						||
| 
								 | 
							
									
							 | 
						||
| 
								 | 
							
									while (<INPUT>) {
							 | 
						||
| 
								 | 
							
									    s/\@GLIB_MAJOR_VERSION\@/$major/g;
							 | 
						||
| 
								 | 
							
									    s/\@GLIB_MINOR_VERSION\@/$minor/g;
							 | 
						||
| 
								 | 
							
									    s/\@GLIB_MICRO_VERSION\@/$micro/g;
							 | 
						||
| 
								 | 
							
									    s/\@GLIB_INTERFACE_AGE\@/$interface_age/g;
							 | 
						||
| 
								 | 
							
									    s/\@GLIB_BINARY_AGE\@/$binary_age/g;
							 | 
						||
| 
								 | 
							
									    s/\@GETTEXT_PACKAGE\@/$gettext_package/g;
							 | 
						||
| 
								 | 
							
									    print OUTPUT;
							 | 
						||
| 
								 | 
							
									}
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								process_file ("config.h.win32");
							 | 
						||
| 
								 | 
							
								process_file ("glibconfig.h.win32");
							 | 
						||
| 
								 | 
							
								process_file ("glib/makefile.msc");
							 | 
						||
| 
								 | 
							
								process_file ("gmodule/makefile.msc");
							 | 
						||
| 
								 | 
							
								process_file ("gobject/makefile.msc");
							 | 
						||
| 
								 | 
							
								process_file ("gthread/makefile.msc");
							 | 
						||
| 
								 | 
							
								process_file ("tests/makefile.msc");
							 |