Compare commits
6 Commits
0.8.7
...
wip-fbsd-p
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d8a9e9f915 | ||
|
|
a0efdd1314 | ||
|
|
1aa45c0f19 | ||
|
|
84e67d02b4 | ||
|
|
96ced6699d | ||
|
|
328bf3626f |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -42,3 +42,4 @@ tests/test_hash
|
||||
tests/test_jid
|
||||
tests/test_sasl
|
||||
tests/test_sock
|
||||
m4/
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
AUTOMAKE_OPTIONS = subdir-objects
|
||||
|
||||
ACLOCAL_AMFLAGS = -I m4
|
||||
AM_CFLAGS = -g -Wall
|
||||
|
||||
PARSER_CFLAGS=@PARSER_CFLAGS@
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
AC_INIT([libstrophe], [0.8.7], [jack@metajack.im])
|
||||
AC_CONFIG_MACRO_DIR([m4])
|
||||
AM_INIT_AUTOMAKE([foreign])
|
||||
LT_INIT([dlopen])
|
||||
|
||||
@@ -11,7 +12,9 @@ AS_CASE([$host_os],
|
||||
[freebsd*], [PLATFORM="freebsd"],
|
||||
[PLATFORM="nix"])
|
||||
|
||||
PKG_CHECK_MODULES([openssl], [openssl], [], [AC_MSG_ERROR([openssl not found; openssl required])])
|
||||
PKG_CHECK_MODULES([openssl], [openssl], [],
|
||||
[AC_CHECK_HEADER(openssl/ssl.h, [openssl_LIBS="-lssl -lcrypto"], [AC_MSG_ERROR([openssl not found; openssl required])])])
|
||||
|
||||
PKG_CHECK_MODULES([check], [check >= 0.9.4], [], [AC_MSG_WARN([libcheck not found; unit tests will not be compilable])])
|
||||
|
||||
AC_ARG_WITH([libxml2],
|
||||
|
||||
Reference in New Issue
Block a user