aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2008-07-11 22:45:37 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2008-07-11 22:45:37 +0000
commiteb79907f63b7985751849d7a13e13879b6b8da9e (patch)
treeeefbe4fc827242cb32f18a1ef0a4ffb4772630cd /configure.ac
parent156b2a34fbc4dd3215c5b8cc2cc326f56dfb7df8 (diff)
downloadtagr-eb79907f63b7985751849d7a13e13879b6b8da9e.tar.gz
tagr-eb79907f63b7985751849d7a13e13879b6b8da9e.tar.bz2
Reorganize project directory layout.
* README-hacking: New file. * src: New directory * src/Makefile.am: New file. * graph.c, readconfig.c, tagr.h, log.c, report.h, queue.c: Move to src * main.c: Move to src, fix a minor bug in main. * html.l: Move to src/html.lex.l. * html.y: Move to src/html.gram.y. * lib/argcv.c, lib/argcv.h: Move to src. * config, INSTALL: Remove * README_hacking: New file. * configure.ac, Makefile.am: Update for new gnulib and new directory structure. * bootstrap: Update from gnulib. * gnulib.modules: New file. * bootstrap.conf: New file. git-svn-id: file:///svnroot/tagr/trunk@89 7c378d0d-a4e4-4a64-9229-dfce8bfd23d4
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac12
1 files changed, 6 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac
index a69f797..53d26ee 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
# This file is part of tagr -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
-# Copyright (C) 2000, 2005, Max Bouglacoff, Sergey Poznyakoff
+# Copyright (C) 2000, 2005, 2008 Max Bouglacoff, Sergey Poznyakoff
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -19,14 +19,14 @@
AC_PREREQ(2.59)
AC_INIT([tagr], 1.0.95, [gray@gnu.org.ua])
-AC_CONFIG_SRCDIR([main.c])
-AC_CONFIG_AUX_DIR([config])
+AC_CONFIG_SRCDIR([src/main.c])
+AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_HEADER([config.h])
AM_INIT_AUTOMAKE([1.8 gnits])
-gl_USE_SYSTEM_EXTENSIONS
# Checks for programs.
AC_PROG_CC
+gl_EARLY
AM_PROG_LEX
AC_PROG_YACC
AC_PROG_RANLIB
@@ -57,7 +57,7 @@ AC_FUNC_VPRINTF
AC_CHECK_FUNCS([memset pow select socket strchr strdup strerror strtoul])
# GNUlib
-tagr_GNULIB
+gl_INIT
# Check for gd headers and libraries
AC_CHECK_HEADERS([gd.h gdfonts.h],:,
@@ -75,6 +75,6 @@ AC_CHECK_LIB([gdbm], [gdbm_open],
,
[AC_MSG_ERROR([libgdbm not found])])
-AC_CONFIG_FILES([Makefile lib/Makefile])
+AC_CONFIG_FILES([Makefile gnu/Makefile src/Makefile])
AC_OUTPUT

Return to:

Send suggestions and report system problems to the System administrator.