فهرست منبع

explain what 'incompatible lib' implies

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@33327 15284696-431f-4ddb-bdfa-cd5b030d7da7
Markus Neteler 16 سال پیش
والد
کامیت
b80f8ba1c1
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      lib/gis/gisinit.c

+ 2 - 2
lib/gis/gisinit.c

@@ -51,7 +51,7 @@ int G__gisinit(const char *version, const char *pgm)
     G_set_program_name(pgm);
 
     if (strcmp(version, GIS_H_VERSION) != 0)
-	G_fatal_error(_("Incompatible library version for module"));
+	G_fatal_error(_("Incompatible library version for module: recompilation needed."));
 
     /* Make sure location and mapset are set */
     G_location_path();
@@ -86,7 +86,7 @@ int G__no_gisinit(const char *version)
 	return 0;
 
     if (strcmp(version, GIS_H_VERSION) != 0)
-	G_fatal_error(_("Incompatible library version for module"));
+	G_fatal_error(_("Incompatible library version for module: recompilation needed."));
 
     gisinit();