Commit 90719eb3 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

more removals

parent d5e9c59b
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -19,7 +19,8 @@ Daniel (10 January 2000):
   downloaded. Use your imagination! ;-)
 - Since I do the main development on solaris 2.6 now, I had to download and
   install GNU groff to generate the hugehelp.c file. The solaris nroff cores
   on the man page!
   on the man page! So, in order to make the solaris configure script find a
   better result I made gnroff get checked prior to the regular nroff.
 - Added all the curl exit codes to the man page.
 - Jim Gallagher <jmgallag@usa.net> properly tracked down a bug in autoconf
   2.13. The AC_CHECK_LIB() macro wrongfully uses the -l flag before the -L
+4 −24
Original line number Diff line number Diff line
@@ -65,7 +65,7 @@ host_alias = sparc-sun-solaris2.6
host_triplet = sparc-sun-solaris2.6
CC = gcc
MAKEINFO = makeinfo
NROFF = /bin/nroff
NROFF = /usr/local/bin/gnroff
PACKAGE = curl
PERL = /usr/local/bin/perl
RANLIB = ranlib
@@ -87,13 +87,12 @@ man1dir = $(mandir)/man1
MANS = $(man_MANS)
DIST_COMMON =  README ./stamp-h1.in INSTALL Makefile.am Makefile.in TODO \
acconfig.h aclocal.m4 config.guess config.h.in config.sub configure \
configure.in install-sh missing mkinstalldirs src/config.h.in \
src/stamp-h2.in
configure.in install-sh missing mkinstalldirs


DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)

TAR = tar
TAR = gtar
GZIP_ENV = --best
all: all-redirect
.SUFFIXES:
@@ -131,31 +130,12 @@ $(srcdir)/stamp-h1.in: $(top_srcdir)/configure.in $(ACLOCAL_M4) acconfig.h
	cd $(top_srcdir) && $(AUTOHEADER)
	@echo timestamp > $(srcdir)/stamp-h1.in 2> /dev/null

src/config.h: src/stamp-h2
	@if test ! -f $@; then \
		rm -f src/stamp-h2; \
		$(MAKE) src/stamp-h2; \
	else :; fi
src/stamp-h2: $(srcdir)/src/config.h.in $(top_builddir)/config.status
	cd $(top_builddir) \
	  && CONFIG_FILES= CONFIG_HEADERS=src/config.h \
	     $(SHELL) ./config.status
	@echo timestamp > src/stamp-h2 2> /dev/null
$(srcdir)/src/config.h.in: $(srcdir)/src/stamp-h2.in
	@if test ! -f $@; then \
		rm -f $(srcdir)/src/stamp-h2.in; \
		$(MAKE) $(srcdir)/src/stamp-h2.in; \
	else :; fi
$(srcdir)/src/stamp-h2.in: $(top_srcdir)/configure.in $(ACLOCAL_M4) acconfig.h
	cd $(top_srcdir) && $(AUTOHEADER)
	@echo timestamp > $(srcdir)/src/stamp-h2.in 2> /dev/null

mostlyclean-hdr:

clean-hdr:

distclean-hdr:
	-rm -f config.h src/config.h
	-rm -f config.h

maintainer-clean-hdr:

+3 −23
Original line number Diff line number Diff line
@@ -87,13 +87,12 @@ man1dir = $(mandir)/man1
MANS = $(man_MANS)
DIST_COMMON =  README ./stamp-h1.in INSTALL Makefile.am Makefile.in TODO \
acconfig.h aclocal.m4 config.guess config.h.in config.sub configure \
configure.in install-sh missing mkinstalldirs src/config.h.in \
src/stamp-h2.in
configure.in install-sh missing mkinstalldirs


DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)

TAR = tar
TAR = gtar
GZIP_ENV = --best
all: all-redirect
.SUFFIXES:
@@ -131,31 +130,12 @@ $(srcdir)/stamp-h1.in: $(top_srcdir)/configure.in $(ACLOCAL_M4) acconfig.h
	cd $(top_srcdir) && $(AUTOHEADER)
	@echo timestamp > $(srcdir)/stamp-h1.in 2> /dev/null

src/config.h: src/stamp-h2
	@if test ! -f $@; then \
		rm -f src/stamp-h2; \
		$(MAKE) src/stamp-h2; \
	else :; fi
src/stamp-h2: $(srcdir)/src/config.h.in $(top_builddir)/config.status
	cd $(top_builddir) \
	  && CONFIG_FILES= CONFIG_HEADERS=src/config.h \
	     $(SHELL) ./config.status
	@echo timestamp > src/stamp-h2 2> /dev/null
$(srcdir)/src/config.h.in: $(srcdir)/src/stamp-h2.in
	@if test ! -f $@; then \
		rm -f $(srcdir)/src/stamp-h2.in; \
		$(MAKE) $(srcdir)/src/stamp-h2.in; \
	else :; fi
$(srcdir)/src/stamp-h2.in: $(top_srcdir)/configure.in $(ACLOCAL_M4) acconfig.h
	cd $(top_srcdir) && $(AUTOHEADER)
	@echo timestamp > $(srcdir)/src/stamp-h2.in 2> /dev/null

mostlyclean-hdr:

clean-hdr:

distclean-hdr:
	-rm -f config.h src/config.h
	-rm -f config.h

maintainer-clean-hdr:

config.guess-991124

deleted100755 → 0
+0 −900

File deleted.

Preview size limit exceeded, changes collapsed.

+1 −1
Original line number Diff line number Diff line
@@ -2584,7 +2584,7 @@ fi



for ac_prog in nroff gnroff
for ac_prog in gnroff nroff
do
# Extract the first word of "$ac_prog", so it can be a program name with args.
set dummy $ac_prog; ac_word=$2
Loading