We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f947136 commit aadc587Copy full SHA for aadc587
Makefile.am
@@ -5,8 +5,10 @@ CFLAGS = -g -Wall
5
PARSER_CFLAGS=@PARSER_CFLAGS@
6
PARSER_LIBS=@PARSER_LIBS@
7
8
+SSL_LIBS = -lssl -lcrypto -lz
9
+
10
STROPHE_FLAGS = -I$(top_srcdir)
-STROPHE_LIBS = libstrophe.a $(PARSER_LIBS) -lssl -lresolv
11
+STROPHE_LIBS = libstrophe.a $(PARSER_LIBS) $(SSL_LIBS)
12
13
## Main build targets
14
lib_LIBRARIES = libstrophe.a
configure.ac
@@ -35,6 +35,7 @@ fi
35
36
AC_MSG_NOTICE([libstrophe will use the $with_parser XML parser])
37
AC_SEARCH_LIBS([socket], [socket])
38
+AC_SEARCH_LIBS([res_9_query], [resolv])
39
40
AM_CONDITIONAL([PARSER_EXPAT], [test x$with_parser != xlibxml2])
41
AC_SUBST(PARSER_NAME)
0 commit comments