stdlib: Implement abort.
[libcstd.git] / configure.ac
blob9b10cbd4dabfe4360b5d7bd57c82523547a6ddb6
1 dnl Copyright (C) 2009 Nick Bowler
2 dnl Copying and distribution of this file, with or without modification,
3 dnl are permitted in any medium without royalty provided the copyright
4 dnl notice and this notice are preserved.  This file is offered as-is,
5 dnl without any warranty.
7 AC_PREREQ(2.62)
8 AC_INIT([libcstd],[0.1],[nbowler@draconx.ca])
9 AC_CONFIG_SRCDIR([src/string/memset.c])
10 AC_CONFIG_MACRO_DIR([m4])
12 AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects color-tests])
13 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
15 AC_PROG_CC_C99
16 AM_PROG_CC_C_O
17 LT_INIT
19 CSTD_WCHAR_T_UCHAR
21 AM_CONDITIONAL([WCHAR_SUPPORT], [test x$cstd_cv_wchar_t_uchar = xyes])
23 AC_CONFIG_FILES([
24         Makefile
26 AC_OUTPUT