29 lines
694 B
Plaintext
29 lines
694 B
Plaintext
dnl * Copyright 2012-2014 Luke Dashjr
|
|
dnl *
|
|
dnl * This program is free software; you can redistribute it and/or modify it
|
|
dnl * under the terms of the standard MIT license. See COPYING for more details.
|
|
|
|
AC_INIT(
|
|
[libbase58],
|
|
[0.1],
|
|
[luke_libbase58@dashjr.org],
|
|
[libbase58])
|
|
AC_PREREQ([2.59])
|
|
AM_INIT_AUTOMAKE([1.12 -Wall dist-xz foreign])
|
|
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
|
|
|
|
AC_PROG_CC_C99
|
|
m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
|
|
LT_INIT([])
|
|
|
|
# http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
|
|
AC_SUBST([LIBBASE58_SO_VERSION], [0:0:0])
|
|
|
|
AC_CONFIG_FILES([Makefile
|
|
libbase58.pc:libbase58.pc.in
|
|
])
|
|
|
|
AC_CHECK_LIB([ws2_32], [strchr])
|
|
|
|
AC_OUTPUT
|