diff options
author | Nick White <git@njw.me.uk> | 2010-05-19 17:15:41 +0100 |
---|---|---|
committer | Nick White <git@njw.me.uk> | 2010-05-19 17:15:41 +0100 |
commit | e91ec0d87aa31cb465fe8cf934d405ad56342eba (patch) | |
tree | 1709e437c0d8f144bec479975a777c6ae8580eba /configure.ac | |
parent | 6cf58b46037cf04915fa507813ab7419db2e45ec (diff) |
Switched to simpler build system, and fixed bugs
Now there's a proper build system in place, which is actually simple
enough to understand.
I also fixed plenty of warnings about the code (reminding me how badly I
knew C when I wrote this).
Hinduism today aren't indexing their new issues using the index file I
was sourcing any more, so I don't expect to fix any more bugs or improve
this much.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/configure.ac b/configure.ac deleted file mode 100644 index 6111c42..0000000 --- a/configure.ac +++ /dev/null @@ -1,34 +0,0 @@ -# -*- Autoconf -*- -# Process this file with autoconf to produce a configure script. - -AC_PREREQ([2.63]) -AC_INIT([getht], [0.2]) -AC_CONFIG_HEADERS([config.h]) -AM_INIT_AUTOMAKE([-Wall -Werror]) - -# Checks for programs. -AC_PROG_CC -AC_PROG_AWK -AC_PROG_MAKE_SET - -# Checks for libraries. -PKG_CHECK_MODULES([LIBXML2], [libxml-2.0 >= 2.0.0]) -PKG_CHECK_MODULES([LIBCURL], [libcurl >= 7.7.2]) -LIBS="$LIBXML2_LIBS $LIBCURL_LIBS $LIBS" -CFLAGS="$LIBXML2_CFLAGS $LIBCURL_CFLAGS $CFLAGS" - -# Checks for header files. -AC_CHECK_HEADERS([stdlib.h string.h unistd.h]) - -# Checks for typedefs, structures, and compiler characteristics. -AC_TYPE_SIZE_T - -# Checks for library functions. -AC_FUNC_MALLOC -AC_FUNC_REALLOC -AC_CHECK_FUNCS([mkdir]) - -AC_CONFIG_FILES([Makefile - doc/Makefile - src/Makefile]) -AC_OUTPUT |