# pwd /usr/local/etc/httpd/htdocs/adlnet/hypermail # ./configure loading cache ./config.cache checking host system type... alphaev5-dec-osf4.0b checking target system type... alphaev5-dec-osf4.0b checking build system type... alphaev5-dec-osf4.0b checking cached information... (cached) ok checking for gcc... (cached) gcc checking whether the C compiler (gcc ) works... yes checking whether the C compiler (gcc ) is a cross-compiler... no checking whether we are using GNU C... (cached) yes checking whether gcc accepts -g... (cached) yes checking how to run the C preprocessor... (cached) gcc -E checking for bison... no checking for byacc... no checking for a BSD compatible install... ./install-sh -c checking whether ln -s works... (cached) yes checking whether make sets ${MAKE}... (cached) yes checking for ar... (cached) ar checking for ranlib... (cached) ranlib checking that the compiler works... yes checking whether to enable -Wall... no checking for ANSI C header files... (cached) yes checking for alloca.h... (cached) yes checking for arpa/inet.h... (cached) yes checking for ctype.h... (cached) yes checking for dirent.h... (cached) yes checking for errno.h... (cached) yes checking for fcntl.h... (cached) yes checking for locale.h... (cached) yes checking for malloc.h... (cached) yes checking for netdb.h... (cached) yes checking for netinet/in.h... (cached) yes checking for pwd.h... (cached) yes checking for stdarg.h... (cached) yes checking for stdio.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for sys/dir.h... (cached) yes checking for sys/param.h... (cached) yes checking for sys/socket.h... (cached) yes checking for sys/stat.h... (cached) yes checking for sys/time.h... (cached) yes checking for sys/types.h... (cached) yes checking for time.h... (cached) yes checking for unistd.h... (cached) yes checking whether stat file-mode macros are broken... (cached) no checking for dirent.h that defines DIR... (cached) yes checking for opendir in -ldir... (cached) no checking whether time.h and sys/time.h may both be included... (cached) yes checking whether struct tm is in sys/time.h or time.h... (cached) time.h checking for strftime... (cached) yes checking for mkdir... (cached) yes checking for strdup... (cached) yes checking for strstr... (cached) yes checking for strtol... (cached) yes checking for memset... (cached) yes checking for lstat... (cached) yes checking for strcasecmp... (cached) yes checking for size_t... (cached) yes checking for gethostbyaddr in -lsocket... (cached) no checking for gethostbyaddr in -lsocket... (cached) no checking for inet_addr in -lsocket... (cached) no checking for inet_addr in -lsocket... (cached) no checking for inet_addr in -lnsl... (cached) no creating ./config.status creating Makefile creating archive/Makefile creating docs/Makefile creating libcgi/Makefile creating src/Makefile creating tests/testhm creating config.h config.h is unchanged # make cd src; make all CC="gcc " CFLAGS="" cgidir="/usr/local/apache/cgi-bin" bindir= "/usr/local/bin" LIBS="" cd archive; make all CC="gcc " CFLAGS="" --------------------------- Then I edited the makefile, to reflect my system... ----------------------- # cat Makefile # Generated automatically from Makefile.in by configure. # # Makefile for hypermail package. # prefix=/usr/local exec_prefix=${prefix} # This is where you want hypermail to be installed bindir=${exec_prefix}/bin # This is where the man page goes mandir=${prefix}/man srcdir=. # This is where the HTML documentation goes htmldir=/usr/local/etc/htdocs/hypermail # This is where your CGI programs live cgidir=/usr/local/etc/httpd/cgi-bin # This is where your CGI programs live Hypermail=@hypermail@ #WNOERROR=-Werror #WARNINGS=$(WNOERROR) -ansi -pedantic -Wall -Wtraditional -Wshadow -Wpointer-ari th -Wcast-qual -Wcast-align -Waggregate-return -Wstrict-prototypes -Wmissing-pro totypes -Wnested-externs -Winline -Dlint # Compiler to use CC=gcc $(WARNINGS) CFLAGS= LIBS= LDFLAGS= all: hypermail support hypermail: cd src; $(MAKE) all CC="$(CC)" CFLAGS="$(CFLAGS)" \ cgidir="$(cgidir)" bindir="$(bindir)" LIBS="$(LIBS)" support: cd archive; $(MAKE) all CC="$(CC)" CFLAGS="$(CFLAGS)" install: @cd src; $(MAKE) install CC="$(CC)" CFLAGS="$(CFLAGS)" \ cgidir="$(cgidir)" bindir="$(bindir)" LIBS="$(LIBS)" @cd docs; $(MAKE) install CC="$(CC)" CFLAGS="$(CFLAGS)" $(MAKEFLAGS) \ mandir="$(mandir)" htmldir="$(htmldir)" @cd archive; $(MAKE) install CC="$(CC)" CFLAGS="$(CFLAGS)" \ bindir="$(bindir)" uninstall: @cd src; $(MAKE) uninstall cgidir="$(cgidir)" bindir="$(bindir)" @cd docs; $(MAKE) uninstall mandir="$(mandir)" htmldir="$(htmldir)" @cd archive; $(MAKE) uninstall bindir="$(bindir)" lint: cd src; $(MAKE) lint cd archive; $(MAKE) lint clean: cd src; $(MAKE) clean cd docs; $(MAKE) clean cd archive; $(MAKE) clean rm -f lint.out clobber: clean rm -f config.h rm -f config.cache rm -f config.log rm -f config.status rm -f archive/Makefile rm -f docs/Makefile rm -f libcgi/Makefile rm -f src/Makefile rm -rf tests/testdir rm -f tests/testmail rm -f tests/testhm rm -f Makefile tgz: @(dir=`pwd`;name=`basename $$dir`;echo Creates $$name.tar.gz; cd .. ; \ tar -cf $$name.tar `cat $$name/FILES | sed "s:^:$$name/:g"` ; \ gzip $$name.tar ; chmod a+r $$name.tar.gz ; mv $$name.tar.gz $$name/) ----------------------------------- # cd src # make install if [ ! -d /usr/local/bin ]; then mkdir /usr/local/bin; fi install -s -c -m 0755 hypermail /usr/local/bin *** Exit 2 Stop. ---------------------------- So, can anyone tell what the problem is?