mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-10 02:59:01 -04:00
Fix broken function vcheck() that checks one dot-delimited version string against another
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6422 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
parent
aad77f47af
commit
ae895cb010
@ -2,7 +2,7 @@ package make::utilities;
|
||||
use Exporter 'import';
|
||||
use POSIX;
|
||||
use Getopt::Long;
|
||||
@EXPORT = qw(make_rpath pkgconfig_get_include_dirs pkgconfig_get_lib_dirs pkgconfig_check_version translate_functions promptstring);
|
||||
@EXPORT = qw(make_rpath pkgconfig_get_include_dirs pkgconfig_get_lib_dirs pkgconfig_check_version translate_functions promptstring vcheck);
|
||||
|
||||
# Parse the output of a *_config program,
|
||||
# such as pcre_config, take out the -L
|
||||
@ -160,8 +160,8 @@ sub vcheck($$)
|
||||
$version2 =~ s/\-//g;
|
||||
$version1 =~ s/a-z//g;
|
||||
$version2 =~ s/a-z//g;
|
||||
my @v1 = split('.', $version1);
|
||||
my @v2 = split('.', $version2);
|
||||
my @v1 = split('\.', $version1);
|
||||
my @v2 = split('\.', $version2);
|
||||
for ($curr = 0; $curr < scalar(@v1); $curr++)
|
||||
{
|
||||
if ($v1[$curr] < $v2[$curr])
|
||||
|
@ -25,7 +25,7 @@
|
||||
#include "m_sqlv2.h"
|
||||
|
||||
/* $ModDesc: sqlite3 provider */
|
||||
/* $CompileFlags: pkgconfversion("sqlite3","3.3") pkgconfincludes("sqlite3","/sqlite3.h","") */
|
||||
/* $CompileFlags: pkgconfversion("sqlite3","3.4") pkgconfincludes("sqlite3","/sqlite3.h","") */
|
||||
/* $LinkerFlags: pkgconflibs("sqlite3","/libsqlite3.so","-lsqlite3") */
|
||||
/* $ModDep: m_sqlv2.h */
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user