diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2016-04-27 01:38:10 +0200 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2016-04-27 02:19:37 +0200 |
commit | 74b2ee22a6b60d53b1241e0c52284b288e561599 (patch) | |
tree | 8d1b197f657af22912f8e6d611c6c9cccd9890d9 /configure.ac | |
parent | 6153580a13e7e7c48e38fa446572c8adcae08084 (diff) | |
download | blogc-74b2ee22a6b60d53b1241e0c52284b288e561599.tar.gz blogc-74b2ee22a6b60d53b1241e0c52284b288e561599.tar.bz2 blogc-74b2ee22a6b60d53b1241e0c52284b288e561599.zip |
moved squareball back to blogc source tree.
i don't have enough time to maintain a separated library at this point,
and worry about soname bump, library stability, etc. all the code is
trivial enough to be copied around, and all the utils are implemented as
single file now, to make it easier to copy.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/configure.ac b/configure.ac index 0bc1e19..1e7366e 100644 --- a/configure.ac +++ b/configure.ac @@ -123,29 +123,6 @@ AC_CHECK_HEADERS([sys/types.h sys/stat.h time.h]) LT_LIB_M -AC_ARG_WITH([squareball], [AS_HELP_STRING([--with-squareball=@<:@internal/system@:>@], - [whether to use library squareball from system [default=internal]])]) -AS_IF([test "x$with_squareball" = "xsystem"], [ - SQUAREBALL="system" - PKG_CHECK_MODULES([SQUAREBALL], [squareball >= 0.2.0], , [ - AC_MSG_ERROR([library squareball requested from system but not found or not new enough]) - ]) -], [ - SQUAREBALL="internal" - SQUAREBALL_CFLAGS='-I$(top_srcdir)/squareball/src' - SQUAREBALL_LIBS='$(top_builddir)/squareball/libsquareball.la' - AC_SUBST(SQUAREBALL_LIBS) - AC_SUBST(SQUAREBALL_CFLAGS) - ac_configure_args_pre="$ac_configure_args" - ac_configure_args_post="$ac_configure_args --enable-bundleme" - ac_configure_args="$ac_configure_args_post" - AC_CONFIG_COMMANDS_PRE([ac_configure_args="$ac_configure_args_pre"]) - AC_CONFIG_COMMANDS_POST([ac_configure_args="$ac_configure_args_post"]) - AC_CONFIG_SUBDIRS([squareball]) - ac_configure_args="$ac_configure_args_pre" -]) -AM_CONDITIONAL(INTERNAL_SQUAREBALL, [test "x$with_squareball" != "xsystem"]) - AC_CONFIG_FILES([ Makefile blogc.spec @@ -164,7 +141,6 @@ AS_ECHO(" cflags: ${CFLAGS} ldflags: ${LDFLAGS} - squareball: ${SQUAREBALL} tests: ${TESTS} ronn: ${RONN} |