Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
8acf13e8
...
8acf13e8b493fd02e2ddf097dfb7ceb5b107651c
authored
2002-12-03 23:30:49 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Add mysql libraries to MYSQLLIBS
1 parent
5db950d7
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
configure.ac
configure.ac
View file @
8acf13e
...
...
@@ -345,7 +345,6 @@ AC_CHECK_FUNCS(_obstack_begin,
dnl check if mysql support was added
AC_SUBST(BUILD_LIBMYSQL)
AC_SUBST(MYSQLLIBS)
AC_ARG_ENABLE([mysql],
AC_HELP_STRING([--enable-mysql],
...
...
@@ -353,7 +352,8 @@ AC_ARG_ENABLE([mysql],
[use_mysql="yes"],,)
if test x"$use_mysql" = x"yes"; then
AC_CHECK_HEADER(mysql/mysql.h,
[AUTHLIBS="$AUTHLIBS -lmysqlclient -lm -L/usr/lib/mysql -L/usr/local/lib/mysql"
[MYSQLLIBS="-lmysqlclient -lm -L/usr/lib/mysql -L/usr/local/lib/mysql"
AUTHLIBS="$AUTHLIBS $MYSQLLIBS"
AC_DEFINE(HAVE_MYSQL,1,[Define this if you have mysql libraries])])
fi
...
...
Please
register
or
sign in
to post a comment