diff options
author | Daniel Stenberg <daniel@haxx.se> | 2000-10-06 10:40:43 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2000-10-06 10:40:43 +0000 |
commit | a513e9746494731841032269ce80599b8c7d8756 (patch) | |
tree | 0693452e981889d38717ca9340255d9fe1d49976 | |
parent | 03a56b3e56f8200c479f3786b54dc458b148f667 (diff) |
moved the src/config.h stuff to the bottom, as automake were adding include
stuff to ../src in the lib directory's Makefile.in otherwise!
-rw-r--r-- | configure.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/configure.in b/configure.in index b3846b827..3da11715e 100644 --- a/configure.in +++ b/configure.in @@ -1,8 +1,8 @@ dnl $Id$ dnl Process this file with autoconf to produce a configure script. AC_INIT(lib/urldata.h) -AM_CONFIG_HEADER(config.h src/config.h) -AM_INIT_AUTOMAKE(curl,"7.3") +AM_CONFIG_HEADER(config.h) +AM_INIT_AUTOMAKE(curl,"7.4-pre3") AM_PROG_LIBTOOL dnl @@ -554,6 +554,7 @@ AC_OUTPUT( Makefile \ docs/Makefile \ include/Makefile \ include/curl/Makefile \ + src/config.h \ src/Makefile \ lib/Makefile ) dnl perl/checklinks.pl \ |