X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fextra%2Fm_regex_re2.cpp;h=ef6d40aabe38b2156b2d6bdeba01384f58588717;hb=772f7ceb94242a8ebfadd0d4e31209c0b51c2923;hp=4bcf287cad1248909dd9b0c728c99ad7b71827b3;hpb=124c17e14134a4999afc1a5e981ab7c75b3694b9;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/extra/m_regex_re2.cpp b/src/modules/extra/m_regex_re2.cpp index 4bcf287ca..ef6d40aab 100644 --- a/src/modules/extra/m_regex_re2.cpp +++ b/src/modules/extra/m_regex_re2.cpp @@ -1,8 +1,8 @@ /* * InspIRCd -- Internet Relay Chat Daemon * - * Copyright (C) 2013 Peter Powell - * Copyright (C) 2012 ChrisTX + * Copyright (C) 2019 linuxdaemon + * Copyright (C) 2013-2014, 2016-2017, 2019, 2021 Sadie Powell * * This file is part of InspIRCd. InspIRCd is free software: you can * redistribute it and/or modify it under the terms of the GNU General Public @@ -17,9 +17,10 @@ * along with this program. If not, see . */ -/// $CompilerFlags: find_compiler_flags("re2" "") +/// $CompilerFlags: find_compiler_flags("re2" "-std=c++11") /// $LinkerFlags: find_linker_flags("re2" "-lre2") +/// $PackageInfo: require_system("arch") pkgconf re2 /// $PackageInfo: require_system("darwin") pkg-config re2 /// $PackageInfo: require_system("debian" "8.0") libre2-dev pkg-config /// $PackageInfo: require_system("ubuntu" "15.10") libre2-dev pkg-config @@ -28,6 +29,10 @@ #include "inspircd.h" #include "modules/regex.h" +#ifdef __GNUC__ +# pragma GCC diagnostic push +#endif + // Fix warnings about the use of `long long` on C++03 and // shadowing on GCC. #if defined __clang__ @@ -39,6 +44,10 @@ #include +#ifdef __GNUC__ +# pragma GCC diagnostic pop +#endif + class RE2Regex : public Regex { RE2 regexcl; @@ -79,7 +88,7 @@ class ModuleRegexRE2 : public Module Version GetVersion() CXX11_OVERRIDE { - return Version("Regex Provider Module for RE2", VF_VENDOR); + return Version("Provides the re2 regular expression engine which uses the RE2 library.", VF_VENDOR); } };