]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/extra/m_regex_pcre.cpp
Migrate Windows builds to installing their dependencies via Conan.
[user/henk/code/inspircd.git] / src / modules / extra / m_regex_pcre.cpp
index fd5a30cde7b536c58bbca86449f2467b29682fca..6c5ecb83f0391f60df1479b331bd032e5565e32e 100644 (file)
@@ -1,13 +1,13 @@
 /*
  * InspIRCd -- Internet Relay Chat Daemon
  *
- *   Copyright (C) 2013, 2016, 2019 Sadie Powell <sadie@witchery.services>
+ *   Copyright (C) 2013, 2016, 2019, 2021 Sadie Powell <sadie@witchery.services>
  *   Copyright (C) 2013 Attila Molnar <attilamolnar@hush.com>
  *   Copyright (C) 2012 Robby <robby@chatbelgie.be>
  *   Copyright (C) 2012 ChrisTX <xpipe@hotmail.de>
  *   Copyright (C) 2011 Adam <Adam@anope.org>
- *   Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org>
  *   Copyright (C) 2009 Uli Schlachter <psychon@inspircd.org>
+ *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
  *   Copyright (C) 2008 Thomas Stagner <aquanight@inspircd.org>
  *
  * This file is part of InspIRCd.  InspIRCd is free software: you can
@@ -38,7 +38,7 @@
 #include "modules/regex.h"
 
 #ifdef _WIN32
-# pragma comment(lib, "libpcre.lib")
+# pragma comment(lib, "pcre.lib")
 #endif
 
 class PCRERegex : public Regex
@@ -89,7 +89,7 @@ class ModuleRegexPCRE : public Module
 
        Version GetVersion() CXX11_OVERRIDE
        {
-               return Version("Provides a regular expression engine which uses the PCRE library.", VF_VENDOR);
+               return Version("Provides the pcre regular expression engine which uses the PCRE library.", VF_VENDOR);
        }
 };