diff options
author | Reuben Thomas <rrt@sc3d.org> | 2007-12-07 18:29:18 +0000 |
---|---|---|
committer | Reuben Thomas <rrt@sc3d.org> | 2007-12-07 18:29:18 +0000 |
commit | 31a65bcab58968b635c391bd21a0b8e37a2d473c (patch) | |
tree | 8761f75efd63cf67aad5fc271c3ad53d7fef891a /ncpd | |
parent | 17e8fde587a0c69fd8da84ef2041810c162cc83d (diff) | |
download | plptools-31a65bcab58968b635c391bd21a0b8e37a2d473c.tar.gz plptools-31a65bcab58968b635c391bd21a0b8e37a2d473c.tar.bz2 plptools-31a65bcab58968b635c391bd21a0b8e37a2d473c.zip |
More build system changes to make it play better with up-to-date
autotools. In particular, this round gets rid of acconfig.h, putting
the necessary bits into conf/configure.in.in, and using AM_CFLAGS &
co. instead of plain CFLAGS, which rightly upsets automake.
Diffstat (limited to 'ncpd')
-rw-r--r-- | ncpd/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ncpd/Makefile.am b/ncpd/Makefile.am index a2a58ae..03978bf 100644 --- a/ncpd/Makefile.am +++ b/ncpd/Makefile.am @@ -1,8 +1,8 @@ # $Id$ # INCLUDES=-I$(top_srcdir)/lib -CFLAGS = $(THREADED_CFLAGS) -CXXFLAGS = $(THREADED_CXXFLAGS) +AM_CFLAGS = $(THREADED_CFLAGS) +AM_CXXFLAGS = $(THREADED_CXXFLAGS) sbin_PROGRAMS = ncpd |