Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
U
uniset2
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
UniSet project repositories
uniset2
Commits
1cacc5e6
Commit
1cacc5e6
authored
Aug 27, 2016
by
Pavel Vainerman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Решил проблемму с ненужной линьковкой libmysqlclient
parent
d9275876
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
configure.ac
configure.ac
+3
-3
No files found.
configure.ac
View file @
1cacc5e6
...
...
@@ -48,7 +48,7 @@ if test ${nopkgchecklibev} = false; then
PKG_CHECK_MODULES(EV, libev)
else
AC_CHECK_HEADER(ev++.h,,exit)
AC_
CHECK_LIB([ev],ev_run,
,exit)
AC_
SEARCH_LIBS(ev_run,ev,[],[]
,exit)
EV_LIBS="-lev"
EV_CFLAGS=
AC_SUBST(EV_LIBS)
...
...
@@ -57,7 +57,7 @@ fi
#check libpoco support
AC_MSG_CHECKING([libpoco support])
#AC_
CHECK_LIB([PocoNet],ServerSock
et,,exit)
#AC_
SEARCH_LIBS(ServerSocket,PocoN
et,,exit)
AC_CHECK_HEADER(Poco/Net/Socket.h,,exit)
POCO_LIBS="-lPocoFoundation -lPocoNet"
POCO_CFLAGS="-IPoco"
...
...
@@ -98,7 +98,7 @@ AC_ARG_ENABLE(mysql, AC_HELP_STRING([--disable-mysql], [disable MySQL support]),
if test ${buildmysql} = true; then
AC_MSG_RESULT([enabled])
AC_CHECK_HEADERS([mysql/mysql.h])
AC_
CHECK_LIB([mysqlclient],mysql_init,
,exit)
AC_
SEARCH_LIBS([mysql_init],mysqlclient,[],[]
,exit)
else
AC_MSG_RESULT([disabled])
fi
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment