diff options
author | special <special@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-09-29 19:04:56 +0000 |
---|---|---|
committer | special <special@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-09-29 19:04:56 +0000 |
commit | b92a2915d5e8a45c4d76942040075e4fc9fc07d2 (patch) | |
tree | 08f93961968c14a8b05e4f3037aa01c9e9b7228b /src/modules | |
parent | 7700bbc64f270407a84d15cc43f115e2199c7d72 (diff) |
Fixed the pcre include path in m_filter_pcre - on every system I tested, --cflags only gives -I, and on some the include file is not where it was expected before (thanks jamie)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5356 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/extra/m_filter_pcre.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/extra/m_filter_pcre.cpp b/src/modules/extra/m_filter_pcre.cpp index faf1718e4..3f8cb7637 100644 --- a/src/modules/extra/m_filter_pcre.cpp +++ b/src/modules/extra/m_filter_pcre.cpp @@ -38,7 +38,7 @@ class FilterPCREException : public ModuleException }; /* $ModDesc: m_filter with regexps */ -/* $CompileFlags: -I`pcre-config --prefix`/include */ +/* $CompileFlags: -I`pcre-config --cflags` */ /* $LinkerFlags: `pcre-config --libs` `perl extra/pcre_rpath.pl` -lpcre */ class ModuleFilterPCRE : public Module |