Source
188
188
189
189
190
190
#
191
191
# process --enable-static and --enable_static-libs flags
192
192
#
193
193
194
194
if test "x$enable_static" = "xyes"; then
195
195
LIBPCRE_LIBS=" $LIBPCRE_LIBS -lpthread"
196
196
elif test "x$enable_static_libs" = "xyes"; then
197
197
if test "x$static_linking_support" == "xno"; then
198
-
AC_MSG_WARN([compiler has no direct suppor for static linkage])
198
+
AC_MSG_WARN([compiler has no direct support for static linkage])
199
199
200
200
if test -n "$libpcre_lib_dir"; then
201
201
if test -f "$libpcre_lib_dir/libpcre.a"; then
202
202
LIBPCRE_LIBS="$libpcre_lib_dir/libpcre.a"
203
203
else
204
204
AC_MSG_ERROR([cannot find $libpcre_lib_dir/libpcre.a])
205
205
fi
206
206
elif test -n "$libpcre_dir"; then
207
207
if test -f "$libpcre_dir/lib/libpcre.a"; then
208
208
LIBPCRE_LIBS="$libpcre_dir/lib/libpcre.a"