File: remove-version-checking

package info (click to toggle)
libglib-perl 3%3A1.329.3-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,340 kB
  • sloc: perl: 4,954; ansic: 923; makefile: 7
file content (23 lines) | stat: -rw-r--r-- 810 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Description: Debian has a proper lib dependency system and doesn't need this check
Origin: vendor
Forwarded: not-needed
Author: Ryan Niebur <ryan@debian.org>

--- a/Glib.xs
+++ b/Glib.xs
@@ -475,6 +475,7 @@
 #endif /* GLIB_CHECK_VERSION (2, 24, 0) */
 	/* make sure that we're running/linked against a version at least as 
 	 * new as we built against, otherwise bad things will happen. */
+/*
 	if ((((int)glib_major_version) < GLIB_MAJOR_VERSION)
 	    ||
 	    (glib_major_version == GLIB_MAJOR_VERSION && 
@@ -488,6 +489,7 @@
 		      " old.  We'll continue, but expect problems!\n",
 		    GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION, GLIB_MICRO_VERSION,
 		    glib_major_version, glib_minor_version, glib_micro_version);
+     */
 
 ##
 ## NOTE: in order to avoid overwriting the docs for the main Glib.pm,