Index: trunk/extensions/AbuseFilter/parser_native/makefile.config.example |
— | — | @@ -0,0 +1,25 @@ |
| 2 | +# Copyright (c) 2008 Andrew Garrett. |
| 3 | +# Copyright (c) 2008 River Tarnell <river@wikimedia.org> |
| 4 | +# Derived from public domain code contributed by Victor Vasiliev. |
| 5 | +# |
| 6 | +# Permission is granted to anyone to use this software for any purpose, |
| 7 | +# including commercial applications, and to alter it and redistribute it |
| 8 | +# freely. This software is provided 'as-is', without any express or |
| 9 | +# implied warranty. |
| 10 | + |
| 11 | +# The C++ compiler |
| 12 | +CXX = g++ |
| 13 | + |
| 14 | +# Flags for the compiler. |
| 15 | +CXXFLAGS = -O3 -W -Wall |
| 16 | + |
| 17 | +# Set this to the 'tag' your Boost libraries were built with, |
| 18 | +# or the empty string if none. |
| 19 | +#BOOST_TAG = -gcc34-mt |
| 20 | +BOOST_TAG = |
| 21 | + |
| 22 | +# Extra linker flags - if libraries are in strange places |
| 23 | +EXTRA_LDFLAGS = -L/opt/icu/lib -L/opt/boost/lib -R/opt/icu/lib:/opt/boost/lib |
| 24 | + |
| 25 | +# Extra preprocessor flags |
| 26 | +EXTRA_CPPFLAGS = -I/opt/boost/include/boost-1_35 -I/opt/icu/include |