summaryrefslogtreecommitdiffstats
path: root/path_utils/configure.ac
diff options
context:
space:
mode:
authorStephen Gallagher <sgallagh@redhat.com>2010-09-21 14:33:25 -0400
committerStephen Gallagher <sgallagh@redhat.com>2010-09-22 14:48:28 -0400
commit43f7cfb86f2f405e5cf3f78b4f883cd70fe451e3 (patch)
tree6b5f236c9960863645603ae1321e8c2da2248d27 /path_utils/configure.ac
parent67c9f9b4a1db45159e710c152deb3d12319bea35 (diff)
downloadding-libs-43f7cfb86f2f405e5cf3f78b4f883cd70fe451e3.tar.gz
ding-libs-43f7cfb86f2f405e5cf3f78b4f883cd70fe451e3.tar.xz
ding-libs-43f7cfb86f2f405e5cf3f78b4f883cd70fe451e3.zip
Build all of the ding-libs from the root
This changes our approach from having independent tarballs to having a single, monolithic tarball for all of the libraries
Diffstat (limited to 'path_utils/configure.ac')
-rw-r--r--path_utils/configure.ac27
1 files changed, 0 insertions, 27 deletions
diff --git a/path_utils/configure.ac b/path_utils/configure.ac
deleted file mode 100644
index b9b20c6..0000000
--- a/path_utils/configure.ac
+++ /dev/null
@@ -1,27 +0,0 @@
-AC_INIT([libpath_utils], [0.2.1], [jdennis@redhat.com])
-AC_CONFIG_SRCDIR([path_utils.c])
-AC_CONFIG_AUX_DIR([build])
-AM_INIT_AUTOMAKE([-Wall -Werror foreign])
-AC_PROG_CC
-AC_PROG_LIBTOOL
-AC_CONFIG_MACRO_DIR([m4])
-AC_PROG_INSTALL
-
-AM_CONDITIONAL([HAVE_GCC], [test "$ac_cv_prog_gcc" = yes])
-
-PKG_CHECK_MODULES([CHECK], [check >= 0.9.5], [have_check=1], [have_check=])
-if test x$have_check = x; then
- AC_MSG_WARN([Without the 'CHECK' libraries, you will be unable to run all tests in the 'make check' suite])
-fi
-AM_CONDITIONAL([HAVE_CHECK], [test x$have_check != x])
-
-m4_pattern_allow([AM_SILENT_RULES])
-AM_SILENT_RULES
-
-AC_CONFIG_HEADERS([config.h])
-
-AC_PATH_PROG([DOXYGEN], [doxygen], [false])
-AM_CONDITIONAL([HAVE_DOXYGEN], [test x$DOXYGEN != xfalse ])
-
-AC_CONFIG_FILES([Makefile path_utils.cfg.doxy path_utils.pc contrib/libpath_utils.spec])
-AC_OUTPUT