diff options
| author | Daniel Friesel <derf@derf.homelinux.org> | 2010-03-21 16:57:12 +0100 | 
|---|---|---|
| committer | Daniel Friesel <derf@derf.homelinux.org> | 2010-03-21 16:57:12 +0100 | 
| commit | 031cf5e8ffd0511c1d69a41da295ab6bb017bc1d (patch) | |
| tree | a1e909a0c683e2ab1d684d61a7664111d3632302 | |
| parent | b3c405408fb7abaad6039b65d86ef701b12c9f0a (diff) | |
Remove autoconf (from branch 'autocruft')
Use config.mk for configuration, both GNU make and FreeBSD make are supported.
| -rw-r--r-- | .gitignore | 6 | ||||
| -rw-r--r-- | Makefile | 62 | ||||
| -rw-r--r-- | Makefile.am | 26 | ||||
| -rw-r--r-- | Makefile.in | 453 | ||||
| -rw-r--r-- | README | 6 | ||||
| -rw-r--r-- | acinclude.m4 | 136 | ||||
| -rw-r--r-- | aclocal.m4 | 1448 | ||||
| -rw-r--r-- | cam/Makefile.am | 11 | ||||
| -rw-r--r-- | cam/Makefile.in | 214 | ||||
| -rwxr-xr-x | config.guess | 1465 | ||||
| -rw-r--r-- | config.mk | 42 | ||||
| -rwxr-xr-x | config.sub | 1569 | ||||
| -rwxr-xr-x | configure | 4626 | ||||
| -rw-r--r-- | configure.ac | 67 | ||||
| -rw-r--r-- | configure.in | 78 | ||||
| -rw-r--r-- | feh.spec.in | 43 | ||||
| l--------- | gen-cam-menu.1 | 1 | ||||
| -rwxr-xr-x | install-sh | 251 | ||||
| -rw-r--r-- | man/feh-cam.1 (renamed from feh-cam.1) | 0 | ||||
| -rw-r--r-- | man/feh.1 (renamed from feh.1) | 0 | ||||
| -rwxr-xr-x | missing | 198 | ||||
| -rwxr-xr-x | mkinstalldirs | 40 | ||||
| -rwxr-xr-x | scripts/checkopts.pl (renamed from dev/checkopts.pl) | 0 | ||||
| -rw-r--r-- | src/Makefile | 84 | ||||
| -rw-r--r-- | src/Makefile.am | 41 | ||||
| -rw-r--r-- | src/Makefile.in | 495 | ||||
| -rw-r--r-- | src/config.h.in | 16 | ||||
| -rw-r--r-- | src/feh.h | 2 | ||||
| -rw-r--r-- | src/getopt.c | 4 | ||||
| -rw-r--r-- | src/getopt1.c | 4 | ||||
| -rw-r--r-- | src/stamp-h.in | 1 | ||||
| -rw-r--r-- | src/ttfonts/Makefile.am | 13 | ||||
| -rw-r--r-- | src/ttfonts/Makefile.in | 216 | 
33 files changed, 191 insertions, 11427 deletions
| @@ -1,8 +1,2 @@  /src/*.o -Makefile -/config.log -/config.status -/src/config.h  /src/feh -/src/stamp-h -/configure.lineno diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..d750772 --- /dev/null +++ b/Makefile @@ -0,0 +1,62 @@ +include config.mk + +default: +	@$(MAKE) -C src + +install: install-man install-doc install-bin install-font install-img + +install-man: +	@echo installing manuals +	@mkdir -p $(man_dir)/man1 +	@cp man/feh.1 man/feh-cam.1 $(man_dir)/man1 +	@chmod 644 $(man_dir)/man1/feh.1 $(man_dir)/man1/feh-cam.1 +	@ln -fs feh-cam.1 $(man_dir)/man1/gen-cam-menu.1 + +install-doc: +	@echo installing additional docs +	@mkdir -p $(doc_dir)/feh +	@cp AUTHORS ChangeLog README TODO $(doc_dir)/feh +	@chmod 644 $(doc_dir)/feh/AUTHORS $(doc_dir)/feh/ChangeLog \ +		$(doc_dir)/feh/README  $(doc_dir)/feh/TODO + +install-bin: +	@echo installing executables +	@mkdir -p $(bin_dir) +	@cp src/feh cam/feh-cam cam/gen-cam-menu $(bin_dir) +	@chmod 755 $(bin_dir)/feh $(bin_dir)/feh-cam \ +		$(bin_dir)/gen-cam-menu + +install-font: +	@echo installing fonts +	@mkdir -p $(font_dir) +	@cp src/ttfonts/black.style src/ttfonts/menu.style \ +		src/ttfonts/yudit.ttf $(font_dir) +	@chmod 644 $(font_dir)/black.style $(font_dir)/menu.style \ +		$(font_dir)/yudit.ttf + +install-img: +	@echo installing images +	@mkdir -p $(image_dir) +	@cp src/about.png src/menubg_aluminium.png src/menubg_aqua.png \ +		src/menubg_black.png src/menubg_brushed.png src/menubg_chrome.png \ +		src/menubg_default.png src/menubg_pastel.png src/menubg_sky.png \ +		src/menubg_wood.png $(image_dir) +	@chmod 644 $(image_dir)/about.png $(image_dir)/menubg_aluminium.png \ +		$(image_dir)/menubg_aqua.png $(image_dir)/menubg_black.png \ +		$(image_dir)/menubg_brushed.png $(image_dir)/menubg_chrome.png \ +		$(image_dir)/menubg_default.png $(image_dir)/menubg_pastel.png \ +		$(image_dir)/menubg_sky.png $(image_dir)/menubg_wood.png + + +uninstall: +	rm -f $(man_dir)/man1/feh.1 $(man_dir)/man1/feh-cam.1 +	rm -f $(man_dir)/man1/gen-cam-menu.1 +	rm -rf $(doc_dir) +	rm -f $(bin_dir)/feh $(bin_dir)/feh-cam $(bin_dir)/gen-cam-menu +	rm -rf $(font_dir) +	rm -rf $(image_dir) + +clean: +	@$(MAKE) -C src clean + +.PHONY: default install uninstall clean diff --git a/Makefile.am b/Makefile.am deleted file mode 100644 index 45d8fec..0000000 --- a/Makefile.am +++ /dev/null @@ -1,26 +0,0 @@ -## Process this file with automake to produce Makefile.in - -AUTOMAKE_OPTIONS = 1.4 foreign - -# A list of all the files in the current directory which can be regenerated -MAINTAINERCLEANFILES = Makefile.in feh.spec - -LDFLAGS           = -L/usr/X11R6/lib -L/usr/lib -L/usr/local/lib -INCLUDES          = -I/usr/X11R6/include \ -$(X_CFLAGS) -I$(prefix)/include -I$(includedir) -I. - -man_MANS = feh.1 feh-cam.1 gen-cam-menu.1 - -docs_DATA = README AUTHORS ChangeLog TODO -docsdir = $(prefix)/doc/feh - -EXTRA_DIST = \ -feh.spec feh.1 $(docs_DATA) - -SUBDIRS = src cam - -test: -	(cd src && $(MAKE) test) - -testclean: -	(cd src && $(MAKE) testclean) diff --git a/Makefile.in b/Makefile.in deleted file mode 100644 index 5ee6f39..0000000 --- a/Makefile.in +++ /dev/null @@ -1,453 +0,0 @@ -# Makefile.in generated automatically by automake 1.4-p6 from Makefile.am - -# Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - - -SHELL = @SHELL@ - -srcdir = @srcdir@ -top_srcdir = @top_srcdir@ -VPATH = @srcdir@ -prefix = @prefix@ -exec_prefix = @exec_prefix@ - -bindir = @bindir@ -sbindir = @sbindir@ -libexecdir = @libexecdir@ -datadir = @datadir@ -sysconfdir = @sysconfdir@ -sharedstatedir = @sharedstatedir@ -localstatedir = @localstatedir@ -libdir = @libdir@ -infodir = @infodir@ -mandir = @mandir@ -includedir = @includedir@ -oldincludedir = /usr/include - -DESTDIR = - -pkgdatadir = $(datadir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ - -top_builddir = . - -ACLOCAL = @ACLOCAL@ -AUTOCONF = @AUTOCONF@ -AUTOMAKE = @AUTOMAKE@ -AUTOHEADER = @AUTOHEADER@ - -INSTALL = @INSTALL@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(AM_INSTALL_PROGRAM_FLAGS) -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -transform = @program_transform_name@ - -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -host_alias = @host_alias@ -host_triplet = @host@ -CC = @CC@ -GIBLIB_CFLAGS = @GIBLIB_CFLAGS@ -GIBLIB_LIBS = @GIBLIB_LIBS@ -GTK_CFLAGS = @GTK_CFLAGS@ -GTK_CONFIG = @GTK_CONFIG@ -GTK_LIBS = @GTK_LIBS@ -HAVE_LIB = @HAVE_LIB@ -HAVE_XINERAMA = @HAVE_XINERAMA@ -IMLIB_CFLAGS = @IMLIB_CFLAGS@ -IMLIB_LIBS = @IMLIB_LIBS@ -LIB = @LIB@ -LTLIB = @LTLIB@ -MAINT = @MAINT@ -MAKEINFO = @MAKEINFO@ -PACKAGE = @PACKAGE@ -UP = @UP@ -VERSION = @VERSION@ -XINERAMA_LIBS = @XINERAMA_LIBS@ - -AUTOMAKE_OPTIONS = 1.4 foreign - -# A list of all the files in the current directory which can be regenerated -MAINTAINERCLEANFILES = Makefile.in feh.spec - -LDFLAGS = -L/usr/X11R6/lib -L/usr/lib -L/usr/local/lib -INCLUDES = -I/usr/X11R6/include $(X_CFLAGS) -I$(prefix)/include -I$(includedir) -I. - - -man_MANS = feh.1 feh-cam.1 gen-cam-menu.1 - -docs_DATA = README AUTHORS ChangeLog TODO -docsdir = $(prefix)/doc/feh - -EXTRA_DIST =  feh.spec feh.1 $(docs_DATA) - - -SUBDIRS = src cam -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = ./src/config.h -man1dir = $(mandir)/man1 -MANS = $(man_MANS) - -NROFF = nroff -DATA =  $(docs_DATA) - -DIST_COMMON =  README AUTHORS COPYING ChangeLog Makefile.am Makefile.in \ -TODO acinclude.m4 aclocal.m4 config.guess config.sub configure \ -configure.ac configure.in feh.spec.in install-sh missing mkinstalldirs \ -src/config.h.in src/stamp-h.in - - -DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST) - -TAR = tar -GZIP_ENV = --best -all: all-redirect -.SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.ac $(ACLOCAL_M4)  -	cd $(top_srcdir) && $(AUTOMAKE) --foreign --include-deps Makefile - -Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status -	cd $(top_builddir) \ -	  && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status - -$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ configure.ac  acinclude.m4 -	cd $(srcdir) && $(ACLOCAL) - -config.status: $(srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) -	$(SHELL) ./config.status --recheck -$(srcdir)/configure: @MAINTAINER_MODE_TRUE@$(srcdir)/configure.ac $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES) -	cd $(srcdir) && $(AUTOCONF) - -src/config.h: src/stamp-h -	@if test ! -f $@; then \ -		rm -f src/stamp-h; \ -		$(MAKE) src/stamp-h; \ -	else :; fi -src/stamp-h: $(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-h 2> /dev/null -$(srcdir)/src/config.h.in: @MAINTAINER_MODE_TRUE@$(srcdir)/src/stamp-h.in -	@if test ! -f $@; then \ -		rm -f $(srcdir)/src/stamp-h.in; \ -		$(MAKE) $(srcdir)/src/stamp-h.in; \ -	else :; fi -$(srcdir)/src/stamp-h.in: $(top_srcdir)/configure.ac $(ACLOCAL_M4)  -	cd $(top_srcdir) && $(AUTOHEADER) -	@echo timestamp > $(srcdir)/src/stamp-h.in 2> /dev/null - -mostlyclean-hdr: - -clean-hdr: - -distclean-hdr: -	-rm -f src/config.h - -maintainer-clean-hdr: -feh.spec: $(top_builddir)/config.status feh.spec.in -	cd $(top_builddir) && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status - -install-man1: -	$(mkinstalldirs) $(DESTDIR)$(man1dir) -	@list='$(man1_MANS)'; \ -	l2='$(man_MANS)'; for i in $$l2; do \ -	  case "$$i" in \ -	    *.1*) list="$$list $$i" ;; \ -	  esac; \ -	done; \ -	for i in $$list; do \ -	  if test -f $(srcdir)/$$i; then file=$(srcdir)/$$i; \ -	  else file=$$i; fi; \ -	  ext=`echo $$i | sed -e 's/^.*\\.//'`; \ -	  inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \ -	  inst=`echo $$inst | sed '$(transform)'`.$$ext; \ -	  echo " $(INSTALL_DATA) $$file $(DESTDIR)$(man1dir)/$$inst"; \ -	  $(INSTALL_DATA) $$file $(DESTDIR)$(man1dir)/$$inst; \ -	done - -uninstall-man1: -	@list='$(man1_MANS)'; \ -	l2='$(man_MANS)'; for i in $$l2; do \ -	  case "$$i" in \ -	    *.1*) list="$$list $$i" ;; \ -	  esac; \ -	done; \ -	for i in $$list; do \ -	  ext=`echo $$i | sed -e 's/^.*\\.//'`; \ -	  inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \ -	  inst=`echo $$inst | sed '$(transform)'`.$$ext; \ -	  echo " rm -f $(DESTDIR)$(man1dir)/$$inst"; \ -	  rm -f $(DESTDIR)$(man1dir)/$$inst; \ -	done -install-man: $(MANS) -	@$(NORMAL_INSTALL) -	$(MAKE) $(AM_MAKEFLAGS) install-man1 -uninstall-man: -	@$(NORMAL_UNINSTALL) -	$(MAKE) $(AM_MAKEFLAGS) uninstall-man1 - -install-docsDATA: $(docs_DATA) -	@$(NORMAL_INSTALL) -	$(mkinstalldirs) $(DESTDIR)$(docsdir) -	@list='$(docs_DATA)'; for p in $$list; do \ -	  if test -f $(srcdir)/$$p; then \ -	    echo " $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(docsdir)/$$p"; \ -	    $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(docsdir)/$$p; \ -	  else if test -f $$p; then \ -	    echo " $(INSTALL_DATA) $$p $(DESTDIR)$(docsdir)/$$p"; \ -	    $(INSTALL_DATA) $$p $(DESTDIR)$(docsdir)/$$p; \ -	  fi; fi; \ -	done - -uninstall-docsDATA: -	@$(NORMAL_UNINSTALL) -	list='$(docs_DATA)'; for p in $$list; do \ -	  rm -f $(DESTDIR)$(docsdir)/$$p; \ -	done - -# This directory's subdirectories are mostly independent; you can cd -# into them and run `make' without going through this Makefile. -# To change the values of `make' variables: instead of editing Makefiles, -# (1) if the variable is set in `config.status', edit `config.status' -#     (which will cause the Makefiles to be regenerated when you run `make'); -# (2) otherwise, pass the desired values on the `make' command line. - -@SET_MAKE@ - -all-recursive install-data-recursive install-exec-recursive \ -installdirs-recursive install-recursive uninstall-recursive  \ -check-recursive installcheck-recursive info-recursive dvi-recursive: -	@set fnord $(MAKEFLAGS); amf=$$2; \ -	dot_seen=no; \ -	target=`echo $@ | sed s/-recursive//`; \ -	list='$(SUBDIRS)'; for subdir in $$list; do \ -	  echo "Making $$target in $$subdir"; \ -	  if test "$$subdir" = "."; then \ -	    dot_seen=yes; \ -	    local_target="$$target-am"; \ -	  else \ -	    local_target="$$target"; \ -	  fi; \ -	  (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ -	   || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ -	done; \ -	if test "$$dot_seen" = "no"; then \ -	  $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ -	fi; test -z "$$fail" - -mostlyclean-recursive clean-recursive distclean-recursive \ -maintainer-clean-recursive: -	@set fnord $(MAKEFLAGS); amf=$$2; \ -	dot_seen=no; \ -	rev=''; list='$(SUBDIRS)'; for subdir in $$list; do \ -	  rev="$$subdir $$rev"; \ -	  test "$$subdir" != "." || dot_seen=yes; \ -	done; \ -	test "$$dot_seen" = "no" && rev=". $$rev"; \ -	target=`echo $@ | sed s/-recursive//`; \ -	for subdir in $$rev; do \ -	  echo "Making $$target in $$subdir"; \ -	  if test "$$subdir" = "."; then \ -	    local_target="$$target-am"; \ -	  else \ -	    local_target="$$target"; \ -	  fi; \ -	  (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ -	   || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ -	done && test -z "$$fail" -tags-recursive: -	list='$(SUBDIRS)'; for subdir in $$list; do \ -	  test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ -	done - -tags: TAGS - -ID: $(HEADERS) $(SOURCES) $(LISP) -	list='$(SOURCES) $(HEADERS)'; \ -	unique=`for i in $$list; do echo $$i; done | \ -	  awk '    { files[$$0] = 1; } \ -	       END { for (i in files) print i; }'`; \ -	here=`pwd` && cd $(srcdir) \ -	  && mkid -f$$here/ID $$unique $(LISP) - -TAGS: tags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) $(LISP) -	tags=; \ -	here=`pwd`; \ -	list='$(SUBDIRS)'; for subdir in $$list; do \ -   if test "$$subdir" = .; then :; else \ -	    test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \ -   fi; \ -	done; \ -	list='$(SOURCES) $(HEADERS)'; \ -	unique=`for i in $$list; do echo $$i; done | \ -	  awk '    { files[$$0] = 1; } \ -	       END { for (i in files) print i; }'`; \ -	test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \ -	  || (cd $(srcdir) && etags -o $$here/TAGS $(ETAGS_ARGS) $$tags  $$unique $(LISP)) - -mostlyclean-tags: - -clean-tags: - -distclean-tags: -	-rm -f TAGS ID - -maintainer-clean-tags: - -distdir = $(PACKAGE)-$(VERSION) -top_distdir = $(distdir) - -# This target untars the dist file and tries a VPATH configuration.  Then -# it guarantees that the distribution is self-contained by making another -# tarfile. -distcheck: dist -	-rm -rf $(distdir) -	GZIP=$(GZIP_ENV) $(TAR) zxf $(distdir).tar.gz -	mkdir $(distdir)/=build -	mkdir $(distdir)/=inst -	dc_install_base=`cd $(distdir)/=inst && pwd`; \ -	cd $(distdir)/=build \ -	  && ../configure --srcdir=.. --prefix=$$dc_install_base \ -	  && $(MAKE) $(AM_MAKEFLAGS) \ -	  && $(MAKE) $(AM_MAKEFLAGS) dvi \ -	  && $(MAKE) $(AM_MAKEFLAGS) check \ -	  && $(MAKE) $(AM_MAKEFLAGS) install \ -	  && $(MAKE) $(AM_MAKEFLAGS) installcheck \ -	  && $(MAKE) $(AM_MAKEFLAGS) dist -	-rm -rf $(distdir) -	@banner="$(distdir).tar.gz is ready for distribution"; \ -	dashes=`echo "$$banner" | sed s/./=/g`; \ -	echo "$$dashes"; \ -	echo "$$banner"; \ -	echo "$$dashes" -dist: distdir -	-chmod -R a+r $(distdir) -	GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir).tar.gz $(distdir) -	-rm -rf $(distdir) -dist-all: distdir -	-chmod -R a+r $(distdir) -	GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir).tar.gz $(distdir) -	-rm -rf $(distdir) -distdir: $(DISTFILES) -	-rm -rf $(distdir) -	mkdir $(distdir) -	-chmod 777 $(distdir) -	@for file in $(DISTFILES); do \ -	  d=$(srcdir); \ -	  if test -d $$d/$$file; then \ -	    cp -pr $$d/$$file $(distdir)/$$file; \ -	  else \ -	    test -f $(distdir)/$$file \ -	    || ln $$d/$$file $(distdir)/$$file 2> /dev/null \ -	    || cp -p $$d/$$file $(distdir)/$$file || :; \ -	  fi; \ -	done -	for subdir in $(SUBDIRS); do \ -	  if test "$$subdir" = .; then :; else \ -	    test -d $(distdir)/$$subdir \ -	    || mkdir $(distdir)/$$subdir \ -	    || exit 1; \ -	    chmod 777 $(distdir)/$$subdir; \ -	    (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir=../$(distdir) distdir=../$(distdir)/$$subdir distdir) \ -	      || exit 1; \ -	  fi; \ -	done -info-am: -info: info-recursive -dvi-am: -dvi: dvi-recursive -check-am: all-am -check: check-recursive -installcheck-am: -installcheck: installcheck-recursive -install-exec-am: -install-exec: install-exec-recursive - -install-data-am: install-man install-docsDATA -install-data: install-data-recursive - -install-am: all-am -	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am -install: install-recursive -uninstall-am: uninstall-man uninstall-docsDATA -uninstall: uninstall-recursive -all-am: Makefile $(MANS) $(DATA) -all-redirect: all-recursive -install-strip: -	$(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install -installdirs: installdirs-recursive -installdirs-am: -	$(mkinstalldirs)  $(DESTDIR)$(mandir)/man1 $(DESTDIR)$(docsdir) - - -mostlyclean-generic: - -clean-generic: - -distclean-generic: -	-rm -f Makefile $(CONFIG_CLEAN_FILES) -	-rm -f config.cache config.log stamp-h stamp-h[0-9]* - -maintainer-clean-generic: -	-test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) -mostlyclean-am:  mostlyclean-hdr mostlyclean-tags mostlyclean-generic - -mostlyclean: mostlyclean-recursive - -clean-am:  clean-hdr clean-tags clean-generic mostlyclean-am - -clean: clean-recursive - -distclean-am:  distclean-hdr distclean-tags distclean-generic clean-am - -distclean: distclean-recursive -	-rm -f config.status - -maintainer-clean-am:  maintainer-clean-hdr maintainer-clean-tags \ -		maintainer-clean-generic distclean-am -	@echo "This command is intended for maintainers to use;" -	@echo "it deletes files that may require special tools to rebuild." - -maintainer-clean: maintainer-clean-recursive -	-rm -f config.status - -.PHONY: mostlyclean-hdr distclean-hdr clean-hdr maintainer-clean-hdr \ -install-man1 uninstall-man1 install-man uninstall-man \ -uninstall-docsDATA install-docsDATA install-data-recursive \ -uninstall-data-recursive install-exec-recursive \ -uninstall-exec-recursive installdirs-recursive uninstalldirs-recursive \ -all-recursive check-recursive installcheck-recursive info-recursive \ -dvi-recursive mostlyclean-recursive distclean-recursive clean-recursive \ -maintainer-clean-recursive tags tags-recursive mostlyclean-tags \ -distclean-tags clean-tags maintainer-clean-tags distdir info-am info \ -dvi-am dvi check check-am installcheck-am installcheck install-exec-am \ -install-exec install-data-am install-data install-am install \ -uninstall-am uninstall all-redirect all-am all installdirs-am \ -installdirs mostlyclean-generic distclean-generic clean-generic \ -maintainer-clean-generic clean mostlyclean distclean maintainer-clean - - -test: -	(cd src && $(MAKE) test) - -testclean: -	(cd src && $(MAKE) testclean) - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: @@ -1,10 +1,10 @@  Compile: -$ ./configure  $ make -$ su -c "make install" +$ sudo make install -(Red hat users, use $ ./configure --prefix=/usr) +If compilation does not work or you want to customize stuff (like disable +Xinerama support), edit config.mk first.  What is feh? diff --git a/acinclude.m4 b/acinclude.m4 deleted file mode 100644 index d54976a..0000000 --- a/acinclude.m4 +++ /dev/null @@ -1,136 +0,0 @@ -dnl @synopsis AC_PATH_GENERIC(LIBRARY [, MINIMUM-VERSION [, ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]]) -dnl -dnl Runs a LIBRARY-config script and defines LIBRARY_CFLAGS and LIBRARY_LIBS -dnl -dnl The script must support `--cflags' and `--libs' args. -dnl If MINIMUM-VERSION is specified, the script must also support the -dnl `--version' arg. -dnl If the `--with-library-[exec-]prefix' arguments to ./configure are given, -dnl it must also support `--prefix' and `--exec-prefix'. -dnl (In other words, it must be like gtk-config.) -dnl -dnl For example: -dnl -dnl    AC_PATH_GENERIC(Foo, 1.0.0) -dnl -dnl would run `foo-config --version' and check that it is at least 1.0.0 -dnl -dnl If so, the following would then be defined: -dnl -dnl    FOO_CFLAGS to `foo-config --cflags` -dnl    FOO_LIBS   to `foo-config --libs` -dnl -dnl At present there is no support for additional "MODULES" (see AM_PATH_GTK) -dnl (shamelessly stolen from gtk.m4 and then hacked around a fair amount) -dnl -dnl @author Angus Lees <gusl@cse.unsw.edu.au> -dnl @version $Id: acinclude.m4,v 1.1.1.1 2004/08/24 19:12:09 gilbertt Exp $ - -AC_DEFUN(AC_PATH_GENERIC, -[dnl -dnl we're going to need uppercase, lowercase and user-friendly versions of the -dnl string `LIBRARY' -pushdef([UP], translit([$1], [a-z], [A-Z]))dnl -pushdef([DOWN], translit([$1], [A-Z], [a-z]))dnl - -dnl -dnl Get the cflags and libraries from the LIBRARY-config script -dnl -AC_ARG_WITH(DOWN-prefix,[  --with-]DOWN[-prefix=PFX       Prefix where $1 is installed (optional)], -        DOWN[]_config_prefix="$withval", DOWN[]_config_prefix="") -AC_ARG_WITH(DOWN-exec-prefix,[  --with-]DOWN[-exec-prefix=PFX Exec prefix where $1 is installed (optional)], -        DOWN[]_config_exec_prefix="$withval", DOWN[]_config_exec_prefix="") - -  if test x$DOWN[]_config_exec_prefix != x ; then -     DOWN[]_config_args="$DOWN[]_config_args --exec-prefix=$DOWN[]_config_exec_prefix" -     if test x${UP[]_CONFIG+set} != xset ; then -       UP[]_CONFIG=$DOWN[]_config_exec_prefix/bin/DOWN-config -     fi -  fi -  if test x$DOWN[]_config_prefix != x ; then -     DOWN[]_config_args="$DOWN[]_config_args --prefix=$DOWN[]_config_prefix" -     if test x${UP[]_CONFIG+set} != xset ; then -       UP[]_CONFIG=$DOWN[]_config_prefix/bin/DOWN-config -     fi -  fi - -  AC_PATH_PROG(UP[]_CONFIG, DOWN-config, no) -  ifelse([$2], , -     AC_MSG_CHECKING(for $1), -     AC_MSG_CHECKING(for $1 - version >= $2) -  ) -  no_[]DOWN="" -  if test "$UP[]_CONFIG" = "no" ; then -     no_[]DOWN=yes -  else -     UP[]_CFLAGS="`$UP[]_CONFIG $DOWN[]_config_args --cflags`" -     UP[]_LIBS="`$UP[]_CONFIG $DOWN[]_config_args --libs`" -     ifelse([$2], , ,[ -        DOWN[]_config_major_version=`$UP[]_CONFIG $DOWN[]_config_args \ -         --version | sed 's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'` -        DOWN[]_config_minor_version=`$UP[]_CONFIG $DOWN[]_config_args \ -         --version | sed 's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'` -        DOWN[]_config_micro_version=`$UP[]_CONFIG $DOWN[]_config_args \ -         --version | sed 's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'` -        DOWN[]_wanted_major_version="regexp($2, [\<\([0-9]*\)], [\1])" -        DOWN[]_wanted_minor_version="regexp($2, [\<\([0-9]*\)\.\([0-9]*\)], [\2])" -        DOWN[]_wanted_micro_version="regexp($2, [\<\([0-9]*\).\([0-9]*\).\([0-9]*\)], [\3])" - -        # Compare wanted version to what config script returned. -        # If I knew what library was being run, i'd probably also compile -        # a test program at this point (which also extracted and tested -        # the version in some library-specific way) -        if test "$DOWN[]_config_major_version" -lt \ -                        "$DOWN[]_wanted_major_version" \ -          -o \( "$DOWN[]_config_major_version" -eq \ -                        "$DOWN[]_wanted_major_version" \ -            -a "$DOWN[]_config_minor_version" -lt \ -                        "$DOWN[]_wanted_minor_version" \) \ -          -o \( "$DOWN[]_config_major_version" -eq \ -                        "$DOWN[]_wanted_major_version" \ -            -a "$DOWN[]_config_minor_version" -eq \ -                        "$DOWN[]_wanted_minor_version" \ -            -a "$DOWN[]_config_micro_version" -lt \ -                        "$DOWN[]_wanted_micro_version" \) ; then -          # older version found -          no_[]DOWN=yes -          echo -n "*** An old version of $1 " -          echo -n "($DOWN[]_config_major_version" -          echo -n ".$DOWN[]_config_minor_version" -          echo    ".$DOWN[]_config_micro_version) was found." -          echo -n "*** You need a version of $1 newer than " -          echo -n "$DOWN[]_wanted_major_version" -          echo -n ".$DOWN[]_wanted_minor_version" -          echo    ".$DOWN[]_wanted_micro_version." -          echo "***" -          echo "*** If you have already installed a sufficiently new version, this error" -          echo "*** probably means that the wrong copy of the DOWN-config shell script is" -          echo "*** being found. The easiest way to fix this is to remove the old version" -          echo "*** of $1, but you can also set the UP[]_CONFIG environment to point to the" -          echo "*** correct copy of DOWN-config. (In this case, you will have to" -          echo "*** modify your LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf" -          echo "*** so that the correct libraries are found at run-time)" -        fi -     ]) -  fi -  if test "x$no_[]DOWN" = x ; then -     AC_MSG_RESULT(yes) -     ifelse([$3], , :, [$3]) -  else -     AC_MSG_RESULT(no) -     if test "$UP[]_CONFIG" = "no" ; then -       echo "*** The DOWN-config script installed by $1 could not be found" -       echo "*** If $1 was installed in PREFIX, make sure PREFIX/bin is in" -       echo "*** your path, or set the UP[]_CONFIG environment variable to the" -       echo "*** full path to DOWN-config." -     fi -     UP[]_CFLAGS="" -     UP[]_LIBS="" -     ifelse([$4], , :, [$4]) -  fi -  AC_SUBST(UP[]_CFLAGS) -  AC_SUBST(UP[]_LIBS) - -  popdef([UP]) -  popdef([DOWN]) -]) diff --git a/aclocal.m4 b/aclocal.m4 deleted file mode 100644 index 93e593b..0000000 --- a/aclocal.m4 +++ /dev/null @@ -1,1448 +0,0 @@ -dnl aclocal.m4 generated automatically by aclocal 1.4-p6 - -dnl Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc. -dnl This file is free software; the Free Software Foundation -dnl gives unlimited permission to copy and/or distribute it, -dnl with or without modifications, as long as this notice is preserved. - -dnl This program is distributed in the hope that it will be useful, -dnl but WITHOUT ANY WARRANTY, to the extent permitted by law; without -dnl even the implied warranty of MERCHANTABILITY or FITNESS FOR A -dnl PARTICULAR PURPOSE. - -dnl @synopsis AC_PATH_GENERIC(LIBRARY [, MINIMUM-VERSION [, ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]]) -dnl -dnl Runs a LIBRARY-config script and defines LIBRARY_CFLAGS and LIBRARY_LIBS -dnl -dnl The script must support `--cflags' and `--libs' args. -dnl If MINIMUM-VERSION is specified, the script must also support the -dnl `--version' arg. -dnl If the `--with-library-[exec-]prefix' arguments to ./configure are given, -dnl it must also support `--prefix' and `--exec-prefix'. -dnl (In other words, it must be like gtk-config.) -dnl -dnl For example: -dnl -dnl    AC_PATH_GENERIC(Foo, 1.0.0) -dnl -dnl would run `foo-config --version' and check that it is at least 1.0.0 -dnl -dnl If so, the following would then be defined: -dnl -dnl    FOO_CFLAGS to `foo-config --cflags` -dnl    FOO_LIBS   to `foo-config --libs` -dnl -dnl At present there is no support for additional "MODULES" (see AM_PATH_GTK) -dnl (shamelessly stolen from gtk.m4 and then hacked around a fair amount) -dnl -dnl @author Angus Lees <gusl@cse.unsw.edu.au> -dnl @version $Id: acinclude.m4,v 1.1.1.1 2004/08/24 19:12:09 gilbertt Exp $ - -AC_DEFUN(AC_PATH_GENERIC, -[dnl -dnl we're going to need uppercase, lowercase and user-friendly versions of the -dnl string `LIBRARY' -pushdef([UP], translit([$1], [a-z], [A-Z]))dnl -pushdef([DOWN], translit([$1], [A-Z], [a-z]))dnl - -dnl -dnl Get the cflags and libraries from the LIBRARY-config script -dnl -AC_ARG_WITH(DOWN-prefix,[  --with-]DOWN[-prefix=PFX       Prefix where $1 is installed (optional)], -        DOWN[]_config_prefix="$withval", DOWN[]_config_prefix="") -AC_ARG_WITH(DOWN-exec-prefix,[  --with-]DOWN[-exec-prefix=PFX Exec prefix where $1 is installed (optional)], -        DOWN[]_config_exec_prefix="$withval", DOWN[]_config_exec_prefix="") - -  if test x$DOWN[]_config_exec_prefix != x ; then -     DOWN[]_config_args="$DOWN[]_config_args --exec-prefix=$DOWN[]_config_exec_prefix" -     if test x${UP[]_CONFIG+set} != xset ; then -       UP[]_CONFIG=$DOWN[]_config_exec_prefix/bin/DOWN-config -     fi -  fi -  if test x$DOWN[]_config_prefix != x ; then -     DOWN[]_config_args="$DOWN[]_config_args --prefix=$DOWN[]_config_prefix" -     if test x${UP[]_CONFIG+set} != xset ; then -       UP[]_CONFIG=$DOWN[]_config_prefix/bin/DOWN-config -     fi -  fi - -  AC_PATH_PROG(UP[]_CONFIG, DOWN-config, no) -  ifelse([$2], , -     AC_MSG_CHECKING(for $1), -     AC_MSG_CHECKING(for $1 - version >= $2) -  ) -  no_[]DOWN="" -  if test "$UP[]_CONFIG" = "no" ; then -     no_[]DOWN=yes -  else -     UP[]_CFLAGS="`$UP[]_CONFIG $DOWN[]_config_args --cflags`" -     UP[]_LIBS="`$UP[]_CONFIG $DOWN[]_config_args --libs`" -     ifelse([$2], , ,[ -        DOWN[]_config_major_version=`$UP[]_CONFIG $DOWN[]_config_args \ -         --version | sed 's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'` -        DOWN[]_config_minor_version=`$UP[]_CONFIG $DOWN[]_config_args \ -         --version | sed 's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'` -        DOWN[]_config_micro_version=`$UP[]_CONFIG $DOWN[]_config_args \ -         --version | sed 's/[[^0-9]]*\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'` -        DOWN[]_wanted_major_version="regexp($2, [\<\([0-9]*\)], [\1])" -        DOWN[]_wanted_minor_version="regexp($2, [\<\([0-9]*\)\.\([0-9]*\)], [\2])" -        DOWN[]_wanted_micro_version="regexp($2, [\<\([0-9]*\).\([0-9]*\).\([0-9]*\)], [\3])" - -        # Compare wanted version to what config script returned. -        # If I knew what library was being run, i'd probably also compile -        # a test program at this point (which also extracted and tested -        # the version in some library-specific way) -        if test "$DOWN[]_config_major_version" -lt \ -                        "$DOWN[]_wanted_major_version" \ -          -o \( "$DOWN[]_config_major_version" -eq \ -                        "$DOWN[]_wanted_major_version" \ -            -a "$DOWN[]_config_minor_version" -lt \ -                        "$DOWN[]_wanted_minor_version" \) \ -          -o \( "$DOWN[]_config_major_version" -eq \ -                        "$DOWN[]_wanted_major_version" \ -            -a "$DOWN[]_config_minor_version" -eq \ -                        "$DOWN[]_wanted_minor_version" \ -            -a "$DOWN[]_config_micro_version" -lt \ -                        "$DOWN[]_wanted_micro_version" \) ; then -          # older version found -          no_[]DOWN=yes -          echo -n "*** An old version of $1 " -          echo -n "($DOWN[]_config_major_version" -          echo -n ".$DOWN[]_config_minor_version" -          echo    ".$DOWN[]_config_micro_version) was found." -          echo -n "*** You need a version of $1 newer than " -          echo -n "$DOWN[]_wanted_major_version" -          echo -n ".$DOWN[]_wanted_minor_version" -          echo    ".$DOWN[]_wanted_micro_version." -          echo "***" -          echo "*** If you have already installed a sufficiently new version, this error" -          echo "*** probably means that the wrong copy of the DOWN-config shell script is" -          echo "*** being found. The easiest way to fix this is to remove the old version" -          echo "*** of $1, but you can also set the UP[]_CONFIG environment to point to the" -          echo "*** correct copy of DOWN-config. (In this case, you will have to" -          echo "*** modify your LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf" -          echo "*** so that the correct libraries are found at run-time)" -        fi -     ]) -  fi -  if test "x$no_[]DOWN" = x ; then -     AC_MSG_RESULT(yes) -     ifelse([$3], , :, [$3]) -  else -     AC_MSG_RESULT(no) -     if test "$UP[]_CONFIG" = "no" ; then -       echo "*** The DOWN-config script installed by $1 could not be found" -       echo "*** If $1 was installed in PREFIX, make sure PREFIX/bin is in" -       echo "*** your path, or set the UP[]_CONFIG environment variable to the" -       echo "*** full path to DOWN-config." -     fi -     UP[]_CFLAGS="" -     UP[]_LIBS="" -     ifelse([$4], , :, [$4]) -  fi -  AC_SUBST(UP[]_CFLAGS) -  AC_SUBST(UP[]_LIBS) - -  popdef([UP]) -  popdef([DOWN]) -]) - -# Configure paths for GTK+ -# Owen Taylor     97-11-3 - -dnl AM_PATH_GTK([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND [, MODULES]]]]) -dnl Test for GTK, and define GTK_CFLAGS and GTK_LIBS -dnl -AC_DEFUN(AM_PATH_GTK, -[dnl  -dnl Get the cflags and libraries from the gtk-config script -dnl -AC_ARG_WITH(gtk-prefix,[  --with-gtk-prefix=PFX   Prefix where GTK is installed (optional)], -            gtk_config_prefix="$withval", gtk_config_prefix="") -AC_ARG_WITH(gtk-exec-prefix,[  --with-gtk-exec-prefix=PFX Exec prefix where GTK is installed (optional)], -            gtk_config_exec_prefix="$withval", gtk_config_exec_prefix="") -AC_ARG_ENABLE(gtktest, [  --disable-gtktest       Do not try to compile and run a test GTK program], -		    , enable_gtktest=yes) - -  for module in . $4 -  do -      case "$module" in -         gthread)  -             gtk_config_args="$gtk_config_args gthread" -         ;; -      esac -  done - -  if test x$gtk_config_exec_prefix != x ; then -     gtk_config_args="$gtk_config_args --exec-prefix=$gtk_config_exec_prefix" -     if test x${GTK_CONFIG+set} != xset ; then -        GTK_CONFIG=$gtk_config_exec_prefix/bin/gtk-config -     fi -  fi -  if test x$gtk_config_prefix != x ; then -     gtk_config_args="$gtk_config_args --prefix=$gtk_config_prefix" -     if test x${GTK_CONFIG+set} != xset ; then -        GTK_CONFIG=$gtk_config_prefix/bin/gtk-config -     fi -  fi - -  AC_PATH_PROG(GTK_CONFIG, gtk-config, no) -  min_gtk_version=ifelse([$1], ,0.99.7,$1) -  AC_MSG_CHECKING(for GTK - version >= $min_gtk_version) -  no_gtk="" -  if test "$GTK_CONFIG" = "no" ; then -    no_gtk=yes -  else -    GTK_CFLAGS=`$GTK_CONFIG $gtk_config_args --cflags` -    GTK_LIBS=`$GTK_CONFIG $gtk_config_args --libs` -    gtk_config_major_version=`$GTK_CONFIG $gtk_config_args --version | \ -           sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'` -    gtk_config_minor_version=`$GTK_CONFIG $gtk_config_args --version | \ -           sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'` -    gtk_config_micro_version=`$GTK_CONFIG $gtk_config_args --version | \ -           sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'` -    if test "x$enable_gtktest" = "xyes" ; then -      ac_save_CFLAGS="$CFLAGS" -      ac_save_LIBS="$LIBS" -      CFLAGS="$CFLAGS $GTK_CFLAGS" -      LIBS="$GTK_LIBS $LIBS" -dnl -dnl Now check if the installed GTK is sufficiently new. (Also sanity -dnl checks the results of gtk-config to some extent -dnl -      rm -f conf.gtktest -      AC_TRY_RUN([ -#include <gtk/gtk.h> -#include <stdio.h> -#include <stdlib.h> - -int  -main () -{ -  int major, minor, micro; -  char *tmp_version; - -  system ("touch conf.gtktest"); - -  /* HP/UX 9 (%@#!) writes to sscanf strings */ -  tmp_version = g_strdup("$min_gtk_version"); -  if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, µ) != 3) { -     printf("%s, bad version string\n", "$min_gtk_version"); -     exit(1); -   } - -  if ((gtk_major_version != $gtk_config_major_version) || -      (gtk_minor_version != $gtk_config_minor_version) || -      (gtk_micro_version != $gtk_config_micro_version)) -    { -      printf("\n*** 'gtk-config --version' returned %d.%d.%d, but GTK+ (%d.%d.%d)\n",  -             $gtk_config_major_version, $gtk_config_minor_version, $gtk_config_micro_version, -             gtk_major_version, gtk_minor_version, gtk_micro_version); -      printf ("*** was found! If gtk-config was correct, then it is best\n"); -      printf ("*** to remove the old version of GTK+. You may also be able to fix the error\n"); -      printf("*** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing\n"); -      printf("*** /etc/ld.so.conf. Make sure you have run ldconfig if that is\n"); -      printf("*** required on your system.\n"); -      printf("*** If gtk-config was wrong, set the environment variable GTK_CONFIG\n"); -      printf("*** to point to the correct copy of gtk-config, and remove the file config.cache\n"); -      printf("*** before re-running configure\n"); -    }  -#if defined (GTK_MAJOR_VERSION) && defined (GTK_MINOR_VERSION) && defined (GTK_MICRO_VERSION) -  else if ((gtk_major_version != GTK_MAJOR_VERSION) || -	   (gtk_minor_version != GTK_MINOR_VERSION) || -           (gtk_micro_version != GTK_MICRO_VERSION)) -    { -      printf("*** GTK+ header files (version %d.%d.%d) do not match\n", -	     GTK_MAJOR_VERSION, GTK_MINOR_VERSION, GTK_MICRO_VERSION); -      printf("*** library (version %d.%d.%d)\n", -	     gtk_major_version, gtk_minor_version, gtk_micro_version); -    } -#endif /* defined (GTK_MAJOR_VERSION) ... */ -  else -    { -      if ((gtk_major_version > major) || -        ((gtk_major_version == major) && (gtk_minor_version > minor)) || -        ((gtk_major_version == major) && (gtk_minor_version == minor) && (gtk_micro_version >= micro))) -      { -        return 0; -       } -     else -      { -        printf("\n*** An old version of GTK+ (%d.%d.%d) was found.\n", -               gtk_major_version, gtk_minor_version, gtk_micro_version); -        printf("*** You need a version of GTK+ newer than %d.%d.%d. The latest version of\n", -	       major, minor, micro); -        printf("*** GTK+ is always available from ftp://ftp.gtk.org.\n"); -        printf("***\n"); -        printf("*** If you have already installed a sufficiently new version, this error\n"); -        printf("*** probably means that the wrong copy of the gtk-config shell script is\n"); -        printf("*** being found. The easiest way to fix this is to remove the old version\n"); -        printf("*** of GTK+, but you can also set the GTK_CONFIG environment to point to the\n"); -        printf("*** correct copy of gtk-config. (In this case, you will have to\n"); -        printf("*** modify your LD_LIBRARY_PATH enviroment variable, or edit /etc/ld.so.conf\n"); -        printf("*** so that the correct libraries are found at run-time))\n"); -      } -    } -  return 1; -} -],, no_gtk=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"]) -       CFLAGS="$ac_save_CFLAGS" -       LIBS="$ac_save_LIBS" -     fi -  fi -  if test "x$no_gtk" = x ; then -     AC_MSG_RESULT(yes) -     ifelse([$2], , :, [$2])      -  else -     AC_MSG_RESULT(no) -     if test "$GTK_CONFIG" = "no" ; then -       echo "*** The gtk-config script installed by GTK could not be found" -       echo "*** If GTK was installed in PREFIX, make sure PREFIX/bin is in" -       echo "*** your path, or set the GTK_CONFIG environment variable to the" -       echo "*** full path to gtk-config." -     else -       if test -f conf.gtktest ; then -        : -       else -          echo "*** Could not run GTK test program, checking why..." -          CFLAGS="$CFLAGS $GTK_CFLAGS" -          LIBS="$LIBS $GTK_LIBS" -          AC_TRY_LINK([ -#include <gtk/gtk.h> -#include <stdio.h> -],      [ return ((gtk_major_version) || (gtk_minor_version) || (gtk_micro_version)); ], -        [ echo "*** The test program compiled, but did not run. This usually means" -          echo "*** that the run-time linker is not finding GTK or finding the wrong" -          echo "*** version of GTK. If it is not finding GTK, you'll need to set your" -          echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point" -          echo "*** to the installed location  Also, make sure you have run ldconfig if that" -          echo "*** is required on your system" -	  echo "***" -          echo "*** If you have an old version installed, it is best to remove it, although" -          echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH" -          echo "***" -          echo "*** If you have a RedHat 5.0 system, you should remove the GTK package that" -          echo "*** came with the system with the command" -          echo "***" -          echo "***    rpm --erase --nodeps gtk gtk-devel" ], -        [ echo "*** The test program failed to compile or link. See the file config.log for the" -          echo "*** exact error that occured. This usually means GTK was incorrectly installed" -          echo "*** or that you have moved GTK since it was installed. In the latter case, you" -          echo "*** may want to edit the gtk-config script: $GTK_CONFIG" ]) -          CFLAGS="$ac_save_CFLAGS" -          LIBS="$ac_save_LIBS" -       fi -     fi -     GTK_CFLAGS="" -     GTK_LIBS="" -     ifelse([$3], , :, [$3]) -  fi -  AC_SUBST(GTK_CFLAGS) -  AC_SUBST(GTK_LIBS) -  rm -f conf.gtktest -]) - -# lib-prefix.m4 serial 4 (gettext-0.14.2) -dnl Copyright (C) 2001-2005 Free Software Foundation, Inc. -dnl This file is free software; the Free Software Foundation -dnl gives unlimited permission to copy and/or distribute it, -dnl with or without modifications, as long as this notice is preserved. - -dnl From Bruno Haible. - -dnl AC_LIB_ARG_WITH is synonymous to AC_ARG_WITH in autoconf-2.13, and -dnl similar to AC_ARG_WITH in autoconf 2.52...2.57 except that is doesn't -dnl require excessive bracketing. -ifdef([AC_HELP_STRING], -[AC_DEFUN([AC_LIB_ARG_WITH], [AC_ARG_WITH([$1],[[$2]],[$3],[$4])])], -[AC_DEFUN([AC_][LIB_ARG_WITH], [AC_ARG_WITH([$1],[$2],[$3],[$4])])]) - -dnl AC_LIB_PREFIX adds to the CPPFLAGS and LDFLAGS the flags that are needed -dnl to access previously installed libraries. The basic assumption is that -dnl a user will want packages to use other packages he previously installed -dnl with the same --prefix option. -dnl This macro is not needed if only AC_LIB_LINKFLAGS is used to locate -dnl libraries, but is otherwise very convenient. -AC_DEFUN([AC_LIB_PREFIX], -[ -  AC_BEFORE([$0], [AC_LIB_LINKFLAGS]) -  AC_REQUIRE([AC_PROG_CC]) -  AC_REQUIRE([AC_CANONICAL_HOST]) -  AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) -  dnl By default, look in $includedir and $libdir. -  use_additional=yes -  AC_LIB_WITH_FINAL_PREFIX([ -    eval additional_includedir=\"$includedir\" -    eval additional_libdir=\"$libdir\" -  ]) -  AC_LIB_ARG_WITH([lib-prefix], -[  --with-lib-prefix[=DIR] search for libraries in DIR/include and DIR/lib -  --without-lib-prefix    don't search for libraries in includedir and libdir], -[ -    if test "X$withval" = "Xno"; then -      use_additional=no -    else -      if test "X$withval" = "X"; then -        AC_LIB_WITH_FINAL_PREFIX([ -          eval additional_includedir=\"$includedir\" -          eval additional_libdir=\"$libdir\" -        ]) -      else -        additional_includedir="$withval/include" -        additional_libdir="$withval/lib" -      fi -    fi -]) -  if test $use_additional = yes; then -    dnl Potentially add $additional_includedir to $CPPFLAGS. -    dnl But don't add it -    dnl   1. if it's the standard /usr/include, -    dnl   2. if it's already present in $CPPFLAGS, -    dnl   3. if it's /usr/local/include and we are using GCC on Linux, -    dnl   4. if it doesn't exist as a directory. -    if test "X$additional_includedir" != "X/usr/include"; then -      haveit= -      for x in $CPPFLAGS; do -        AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) -        if test "X$x" = "X-I$additional_includedir"; then -          haveit=yes -          break -        fi -      done -      if test -z "$haveit"; then -        if test "X$additional_includedir" = "X/usr/local/include"; then -          if test -n "$GCC"; then -            case $host_os in -              linux* | gnu* | k*bsd*-gnu) haveit=yes;; -            esac -          fi -        fi -        if test -z "$haveit"; then -          if test -d "$additional_includedir"; then -            dnl Really add $additional_includedir to $CPPFLAGS. -            CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }-I$additional_includedir" -          fi -        fi -      fi -    fi -    dnl Potentially add $additional_libdir to $LDFLAGS. -    dnl But don't add it -    dnl   1. if it's the standard /usr/lib, -    dnl   2. if it's already present in $LDFLAGS, -    dnl   3. if it's /usr/local/lib and we are using GCC on Linux, -    dnl   4. if it doesn't exist as a directory. -    if test "X$additional_libdir" != "X/usr/lib"; then -      haveit= -      for x in $LDFLAGS; do -        AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) -        if test "X$x" = "X-L$additional_libdir"; then -          haveit=yes -          break -        fi -      done -      if test -z "$haveit"; then -        if test "X$additional_libdir" = "X/usr/local/lib"; then -          if test -n "$GCC"; then -            case $host_os in -              linux*) haveit=yes;; -            esac -          fi -        fi -        if test -z "$haveit"; then -          if test -d "$additional_libdir"; then -            dnl Really add $additional_libdir to $LDFLAGS. -            LDFLAGS="${LDFLAGS}${LDFLAGS:+ }-L$additional_libdir" -          fi -        fi -      fi -    fi -  fi -]) - -dnl AC_LIB_PREPARE_PREFIX creates variables acl_final_prefix, -dnl acl_final_exec_prefix, containing the values to which $prefix and -dnl $exec_prefix will expand at the end of the configure script. -AC_DEFUN([AC_LIB_PREPARE_PREFIX], -[ -  dnl Unfortunately, prefix and exec_prefix get only finally determined -  dnl at the end of configure. -  if test "X$prefix" = "XNONE"; then -    acl_final_prefix="$ac_default_prefix" -  else -    acl_final_prefix="$prefix" -  fi -  if test "X$exec_prefix" = "XNONE"; then -    acl_final_exec_prefix='${prefix}' -  else -    acl_final_exec_prefix="$exec_prefix" -  fi -  acl_save_prefix="$prefix" -  prefix="$acl_final_prefix" -  eval acl_final_exec_prefix=\"$acl_final_exec_prefix\" -  prefix="$acl_save_prefix" -]) - -dnl AC_LIB_WITH_FINAL_PREFIX([statement]) evaluates statement, with the -dnl variables prefix and exec_prefix bound to the values they will have -dnl at the end of the configure script. -AC_DEFUN([AC_LIB_WITH_FINAL_PREFIX], -[ -  acl_save_prefix="$prefix" -  prefix="$acl_final_prefix" -  acl_save_exec_prefix="$exec_prefix" -  exec_prefix="$acl_final_exec_prefix" -  $1 -  exec_prefix="$acl_save_exec_prefix" -  prefix="$acl_save_prefix" -]) - -# lib-link.m4 serial 6 (gettext-0.14.3) -dnl Copyright (C) 2001-2005 Free Software Foundation, Inc. -dnl This file is free software; the Free Software Foundation -dnl gives unlimited permission to copy and/or distribute it, -dnl with or without modifications, as long as this notice is preserved. - -dnl From Bruno Haible. - -AC_PREREQ(2.50) - -dnl AC_LIB_LINKFLAGS(name [, dependencies]) searches for libname and -dnl the libraries corresponding to explicit and implicit dependencies. -dnl Sets and AC_SUBSTs the LIB${NAME} and LTLIB${NAME} variables and -dnl augments the CPPFLAGS variable. -AC_DEFUN([AC_LIB_LINKFLAGS], -[ -  AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) -  AC_REQUIRE([AC_LIB_RPATH]) -  define([Name],[translit([$1],[./-], [___])]) -  define([NAME],[translit([$1],[abcdefghijklmnopqrstuvwxyz./-], -                               [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])]) -  AC_CACHE_CHECK([how to link with lib[]$1], [ac_cv_lib[]Name[]_libs], [ -    AC_LIB_LINKFLAGS_BODY([$1], [$2]) -    ac_cv_lib[]Name[]_libs="$LIB[]NAME" -    ac_cv_lib[]Name[]_ltlibs="$LTLIB[]NAME" -    ac_cv_lib[]Name[]_cppflags="$INC[]NAME" -  ]) -  LIB[]NAME="$ac_cv_lib[]Name[]_libs" -  LTLIB[]NAME="$ac_cv_lib[]Name[]_ltlibs" -  INC[]NAME="$ac_cv_lib[]Name[]_cppflags" -  AC_LIB_APPENDTOVAR([CPPFLAGS], [$INC]NAME) -  AC_SUBST([LIB]NAME) -  AC_SUBST([LTLIB]NAME) -  dnl Also set HAVE_LIB[]NAME so that AC_LIB_HAVE_LINKFLAGS can reuse the -  dnl results of this search when this library appears as a dependency. -  HAVE_LIB[]NAME=yes -  undefine([Name]) -  undefine([NAME]) -]) - -dnl AC_LIB_HAVE_LINKFLAGS(name, dependencies, includes, testcode) -dnl searches for libname and the libraries corresponding to explicit and -dnl implicit dependencies, together with the specified include files and -dnl the ability to compile and link the specified testcode. If found, it -dnl sets and AC_SUBSTs HAVE_LIB${NAME}=yes and the LIB${NAME} and -dnl LTLIB${NAME} variables and augments the CPPFLAGS variable, and -dnl #defines HAVE_LIB${NAME} to 1. Otherwise, it sets and AC_SUBSTs -dnl HAVE_LIB${NAME}=no and LIB${NAME} and LTLIB${NAME} to empty. -AC_DEFUN([AC_LIB_HAVE_LINKFLAGS], -[ -  AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) -  AC_REQUIRE([AC_LIB_RPATH]) -  define([Name],[translit([$1],[./-], [___])]) -  define([NAME],[translit([$1],[abcdefghijklmnopqrstuvwxyz./-], -                               [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])]) - -  dnl Search for lib[]Name and define LIB[]NAME, LTLIB[]NAME and INC[]NAME -  dnl accordingly. -  AC_LIB_LINKFLAGS_BODY([$1], [$2]) - -  dnl Add $INC[]NAME to CPPFLAGS before performing the following checks, -  dnl because if the user has installed lib[]Name and not disabled its use -  dnl via --without-lib[]Name-prefix, he wants to use it. -  ac_save_CPPFLAGS="$CPPFLAGS" -  AC_LIB_APPENDTOVAR([CPPFLAGS], [$INC]NAME) - -  AC_CACHE_CHECK([for lib[]$1], [ac_cv_lib[]Name], [ -    ac_save_LIBS="$LIBS" -    LIBS="$LIBS $LIB[]NAME" -    AC_TRY_LINK([$3], [$4], [ac_cv_lib[]Name=yes], [ac_cv_lib[]Name=no]) -    LIBS="$ac_save_LIBS" -  ]) -  if test "$ac_cv_lib[]Name" = yes; then -    HAVE_LIB[]NAME=yes -    AC_DEFINE([HAVE_LIB]NAME, 1, [Define if you have the $1 library.]) -    AC_MSG_CHECKING([how to link with lib[]$1]) -    AC_MSG_RESULT([$LIB[]NAME]) -  else -    HAVE_LIB[]NAME=no -    dnl If $LIB[]NAME didn't lead to a usable library, we don't need -    dnl $INC[]NAME either. -    CPPFLAGS="$ac_save_CPPFLAGS" -    LIB[]NAME= -    LTLIB[]NAME= -  fi -  AC_SUBST([HAVE_LIB]NAME) -  AC_SUBST([LIB]NAME) -  AC_SUBST([LTLIB]NAME) -  undefine([Name]) -  undefine([NAME]) -]) - -dnl Determine the platform dependent parameters needed to use rpath: -dnl libext, shlibext, hardcode_libdir_flag_spec, hardcode_libdir_separator, -dnl hardcode_direct, hardcode_minus_L. -AC_DEFUN([AC_LIB_RPATH], -[ -  dnl Tell automake >= 1.10 to complain if config.rpath is missing. -  m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([config.rpath])]) -  AC_REQUIRE([AC_PROG_CC])                dnl we use $CC, $GCC, $LDFLAGS -  AC_REQUIRE([AC_LIB_PROG_LD])            dnl we use $LD, $with_gnu_ld -  AC_REQUIRE([AC_CANONICAL_HOST])         dnl we use $host -  AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT]) dnl we use $ac_aux_dir -  AC_CACHE_CHECK([for shared library run path origin], acl_cv_rpath, [ -    CC="$CC" GCC="$GCC" LDFLAGS="$LDFLAGS" LD="$LD" with_gnu_ld="$with_gnu_ld" \ -    ${CONFIG_SHELL-/bin/sh} "$ac_aux_dir/config.rpath" "$host" > conftest.sh -    . ./conftest.sh -    rm -f ./conftest.sh -    acl_cv_rpath=done -  ]) -  wl="$acl_cv_wl" -  libext="$acl_cv_libext" -  shlibext="$acl_cv_shlibext" -  hardcode_libdir_flag_spec="$acl_cv_hardcode_libdir_flag_spec" -  hardcode_libdir_separator="$acl_cv_hardcode_libdir_separator" -  hardcode_direct="$acl_cv_hardcode_direct" -  hardcode_minus_L="$acl_cv_hardcode_minus_L" -  dnl Determine whether the user wants rpath handling at all. -  AC_ARG_ENABLE(rpath, -    [  --disable-rpath         do not hardcode runtime library paths], -    :, enable_rpath=yes) -]) - -dnl AC_LIB_LINKFLAGS_BODY(name [, dependencies]) searches for libname and -dnl the libraries corresponding to explicit and implicit dependencies. -dnl Sets the LIB${NAME}, LTLIB${NAME} and INC${NAME} variables. -AC_DEFUN([AC_LIB_LINKFLAGS_BODY], -[ -  define([NAME],[translit([$1],[abcdefghijklmnopqrstuvwxyz./-], -                               [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])]) -  dnl By default, look in $includedir and $libdir. -  use_additional=yes -  AC_LIB_WITH_FINAL_PREFIX([ -    eval additional_includedir=\"$includedir\" -    eval additional_libdir=\"$libdir\" -  ]) -  AC_LIB_ARG_WITH([lib$1-prefix], -[  --with-lib$1-prefix[=DIR]  search for lib$1 in DIR/include and DIR/lib -  --without-lib$1-prefix     don't search for lib$1 in includedir and libdir], -[ -    if test "X$withval" = "Xno"; then -      use_additional=no -    else -      if test "X$withval" = "X"; then -        AC_LIB_WITH_FINAL_PREFIX([ -          eval additional_includedir=\"$includedir\" -          eval additional_libdir=\"$libdir\" -        ]) -      else -        additional_includedir="$withval/include" -        additional_libdir="$withval/lib" -      fi -    fi -]) -  dnl Search the library and its dependencies in $additional_libdir and -  dnl $LDFLAGS. Using breadth-first-seach. -  LIB[]NAME= -  LTLIB[]NAME= -  INC[]NAME= -  rpathdirs= -  ltrpathdirs= -  names_already_handled= -  names_next_round='$1 $2' -  while test -n "$names_next_round"; do -    names_this_round="$names_next_round" -    names_next_round= -    for name in $names_this_round; do -      already_handled= -      for n in $names_already_handled; do -        if test "$n" = "$name"; then -          already_handled=yes -          break -        fi -      done -      if test -z "$already_handled"; then -        names_already_handled="$names_already_handled $name" -        dnl See if it was already located by an earlier AC_LIB_LINKFLAGS -        dnl or AC_LIB_HAVE_LINKFLAGS call. -        uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./-|ABCDEFGHIJKLMNOPQRSTUVWXYZ___|'` -        eval value=\"\$HAVE_LIB$uppername\" -        if test -n "$value"; then -          if test "$value" = yes; then -            eval value=\"\$LIB$uppername\" -            test -z "$value" || LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$value" -            eval value=\"\$LTLIB$uppername\" -            test -z "$value" || LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }$value" -          else -            dnl An earlier call to AC_LIB_HAVE_LINKFLAGS has determined -            dnl that this library doesn't exist. So just drop it. -            : -          fi -        else -          dnl Search the library lib$name in $additional_libdir and $LDFLAGS -          dnl and the already constructed $LIBNAME/$LTLIBNAME. -          found_dir= -          found_la= -          found_so= -          found_a= -          if test $use_additional = yes; then -            if test -n "$shlibext" && test -f "$additional_libdir/lib$name.$shlibext"; then -              found_dir="$additional_libdir" -              found_so="$additional_libdir/lib$name.$shlibext" -              if test -f "$additional_libdir/lib$name.la"; then -                found_la="$additional_libdir/lib$name.la" -              fi -            else -              if test -f "$additional_libdir/lib$name.$libext"; then -                found_dir="$additional_libdir" -                found_a="$additional_libdir/lib$name.$libext" -                if test -f "$additional_libdir/lib$name.la"; then -                  found_la="$additional_libdir/lib$name.la" -                fi -              fi -            fi -          fi -          if test "X$found_dir" = "X"; then -            for x in $LDFLAGS $LTLIB[]NAME; do -              AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) -              case "$x" in -                -L*) -                  dir=`echo "X$x" | sed -e 's/^X-L//'` -                  if test -n "$shlibext" && test -f "$dir/lib$name.$shlibext"; then -                    found_dir="$dir" -                    found_so="$dir/lib$name.$shlibext" -                    if test -f "$dir/lib$name.la"; then -                      found_la="$dir/lib$name.la" -                    fi -                  else -                    if test -f "$dir/lib$name.$libext"; then -                      found_dir="$dir" -                      found_a="$dir/lib$name.$libext" -                      if test -f "$dir/lib$name.la"; then -                        found_la="$dir/lib$name.la" -                      fi -                    fi -                  fi -                  ;; -              esac -              if test "X$found_dir" != "X"; then -                break -              fi -            done -          fi -          if test "X$found_dir" != "X"; then -            dnl Found the library. -            LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-L$found_dir -l$name" -            if test "X$found_so" != "X"; then -              dnl Linking with a shared library. We attempt to hardcode its -              dnl directory into the executable's runpath, unless it's the -              dnl standard /usr/lib. -              if test "$enable_rpath" = no || test "X$found_dir" = "X/usr/lib"; then -                dnl No hardcoding is needed. -                LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" -              else -                dnl Use an explicit option to hardcode DIR into the resulting -                dnl binary. -                dnl Potentially add DIR to ltrpathdirs. -                dnl The ltrpathdirs will be appended to $LTLIBNAME at the end. -                haveit= -                for x in $ltrpathdirs; do -                  if test "X$x" = "X$found_dir"; then -                    haveit=yes -                    break -                  fi -                done -                if test -z "$haveit"; then -                  ltrpathdirs="$ltrpathdirs $found_dir" -                fi -                dnl The hardcoding into $LIBNAME is system dependent. -                if test "$hardcode_direct" = yes; then -                  dnl Using DIR/libNAME.so during linking hardcodes DIR into the -                  dnl resulting binary. -                  LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" -                else -                  if test -n "$hardcode_libdir_flag_spec" && test "$hardcode_minus_L" = no; then -                    dnl Use an explicit option to hardcode DIR into the resulting -                    dnl binary. -                    LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" -                    dnl Potentially add DIR to rpathdirs. -                    dnl The rpathdirs will be appended to $LIBNAME at the end. -                    haveit= -                    for x in $rpathdirs; do -                      if test "X$x" = "X$found_dir"; then -                        haveit=yes -                        break -                      fi -                    done -                    if test -z "$haveit"; then -                      rpathdirs="$rpathdirs $found_dir" -                    fi -                  else -                    dnl Rely on "-L$found_dir". -                    dnl But don't add it if it's already contained in the LDFLAGS -                    dnl or the already constructed $LIBNAME -                    haveit= -                    for x in $LDFLAGS $LIB[]NAME; do -                      AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) -                      if test "X$x" = "X-L$found_dir"; then -                        haveit=yes -                        break -                      fi -                    done -                    if test -z "$haveit"; then -                      LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$found_dir" -                    fi -                    if test "$hardcode_minus_L" != no; then -                      dnl FIXME: Not sure whether we should use -                      dnl "-L$found_dir -l$name" or "-L$found_dir $found_so" -                      dnl here. -                      LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" -                    else -                      dnl We cannot use $hardcode_runpath_var and LD_RUN_PATH -                      dnl here, because this doesn't fit in flags passed to the -                      dnl compiler. So give up. No hardcoding. This affects only -                      dnl very old systems. -                      dnl FIXME: Not sure whether we should use -                      dnl "-L$found_dir -l$name" or "-L$found_dir $found_so" -                      dnl here. -                      LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-l$name" -                    fi -                  fi -                fi -              fi -            else -              if test "X$found_a" != "X"; then -                dnl Linking with a static library. -                LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_a" -              else -                dnl We shouldn't come here, but anyway it's good to have a -                dnl fallback. -                LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$found_dir -l$name" -              fi -            fi -            dnl Assume the include files are nearby. -            additional_includedir= -            case "$found_dir" in -              */lib | */lib/) -                basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e 's,/lib/*$,,'` -                additional_includedir="$basedir/include" -                ;; -            esac -            if test "X$additional_includedir" != "X"; then -              dnl Potentially add $additional_includedir to $INCNAME. -              dnl But don't add it -              dnl   1. if it's the standard /usr/include, -              dnl   2. if it's /usr/local/include and we are using GCC on Linux, -              dnl   3. if it's already present in $CPPFLAGS or the already -              dnl      constructed $INCNAME, -              dnl   4. if it doesn't exist as a directory. -              if test "X$additional_includedir" != "X/usr/include"; then -                haveit= -                if test "X$additional_includedir" = "X/usr/local/include"; then -                  if test -n "$GCC"; then -                    case $host_os in -                      linux* | gnu* | k*bsd*-gnu) haveit=yes;; -                    esac -                  fi -                fi -                if test -z "$haveit"; then -                  for x in $CPPFLAGS $INC[]NAME; do -                    AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) -                    if test "X$x" = "X-I$additional_includedir"; then -                      haveit=yes -                      break -                    fi -                  done -                  if test -z "$haveit"; then -                    if test -d "$additional_includedir"; then -                      dnl Really add $additional_includedir to $INCNAME. -                      INC[]NAME="${INC[]NAME}${INC[]NAME:+ }-I$additional_includedir" -                    fi -                  fi -                fi -              fi -            fi -            dnl Look for dependencies. -            if test -n "$found_la"; then -              dnl Read the .la file. It defines the variables -              dnl dlname, library_names, old_library, dependency_libs, current, -              dnl age, revision, installed, dlopen, dlpreopen, libdir. -              save_libdir="$libdir" -              case "$found_la" in -                */* | *\\*) . "$found_la" ;; -                *) . "./$found_la" ;; -              esac -              libdir="$save_libdir" -              dnl We use only dependency_libs. -              for dep in $dependency_libs; do -                case "$dep" in -                  -L*) -                    additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'` -                    dnl Potentially add $additional_libdir to $LIBNAME and $LTLIBNAME. -                    dnl But don't add it -                    dnl   1. if it's the standard /usr/lib, -                    dnl   2. if it's /usr/local/lib and we are using GCC on Linux, -                    dnl   3. if it's already present in $LDFLAGS or the already -                    dnl      constructed $LIBNAME, -                    dnl   4. if it doesn't exist as a directory. -                    if test "X$additional_libdir" != "X/usr/lib"; then -                      haveit= -                      if test "X$additional_libdir" = "X/usr/local/lib"; then -                        if test -n "$GCC"; then -                          case $host_os in -                            linux* | gnu* | k*bsd*-gnu) haveit=yes;; -                          esac -                        fi -                      fi -                      if test -z "$haveit"; then -                        haveit= -                        for x in $LDFLAGS $LIB[]NAME; do -                          AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) -                          if test "X$x" = "X-L$additional_libdir"; then -                            haveit=yes -                            break -                          fi -                        done -                        if test -z "$haveit"; then -                          if test -d "$additional_libdir"; then -                            dnl Really add $additional_libdir to $LIBNAME. -                            LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$additional_libdir" -                          fi -                        fi -                        haveit= -                        for x in $LDFLAGS $LTLIB[]NAME; do -                          AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) -                          if test "X$x" = "X-L$additional_libdir"; then -                            haveit=yes -                            break -                          fi -                        done -                        if test -z "$haveit"; then -                          if test -d "$additional_libdir"; then -                            dnl Really add $additional_libdir to $LTLIBNAME. -                            LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-L$additional_libdir" -                          fi -                        fi -                      fi -                    fi -                    ;; -                  -R*) -                    dir=`echo "X$dep" | sed -e 's/^X-R//'` -                    if test "$enable_rpath" != no; then -                      dnl Potentially add DIR to rpathdirs. -                      dnl The rpathdirs will be appended to $LIBNAME at the end. -                      haveit= -                      for x in $rpathdirs; do -                        if test "X$x" = "X$dir"; then -                          haveit=yes -                          break -                        fi -                      done -                      if test -z "$haveit"; then -                        rpathdirs="$rpathdirs $dir" -                      fi -                      dnl Potentially add DIR to ltrpathdirs. -                      dnl The ltrpathdirs will be appended to $LTLIBNAME at the end. -                      haveit= -                      for x in $ltrpathdirs; do -                        if test "X$x" = "X$dir"; then -                          haveit=yes -                          break -                        fi -                      done -                      if test -z "$haveit"; then -                        ltrpathdirs="$ltrpathdirs $dir" -                      fi -                    fi -                    ;; -                  -l*) -                    dnl Handle this in the next round. -                    names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'` -                    ;; -                  *.la) -                    dnl Handle this in the next round. Throw away the .la's -                    dnl directory; it is already contained in a preceding -L -                    dnl option. -                    names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'` -                    ;; -                  *) -                    dnl Most likely an immediate library name. -                    LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$dep" -                    LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }$dep" -                    ;; -                esac -              done -            fi -          else -            dnl Didn't find the library; assume it is in the system directories -            dnl known to the linker and runtime loader. (All the system -            dnl directories known to the linker should also be known to the -            dnl runtime loader, otherwise the system is severely misconfigured.) -            LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-l$name" -            LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-l$name" -          fi -        fi -      fi -    done -  done -  if test "X$rpathdirs" != "X"; then -    if test -n "$hardcode_libdir_separator"; then -      dnl Weird platform: only the last -rpath option counts, the user must -      dnl pass all path elements in one option. We can arrange that for a -      dnl single library, but not when more than one $LIBNAMEs are used. -      alldirs= -      for found_dir in $rpathdirs; do -        alldirs="${alldirs}${alldirs:+$hardcode_libdir_separator}$found_dir" -      done -      dnl Note: hardcode_libdir_flag_spec uses $libdir and $wl. -      acl_save_libdir="$libdir" -      libdir="$alldirs" -      eval flag=\"$hardcode_libdir_flag_spec\" -      libdir="$acl_save_libdir" -      LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$flag" -    else -      dnl The -rpath options are cumulative. -      for found_dir in $rpathdirs; do -        acl_save_libdir="$libdir" -        libdir="$found_dir" -        eval flag=\"$hardcode_libdir_flag_spec\" -        libdir="$acl_save_libdir" -        LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$flag" -      done -    fi -  fi -  if test "X$ltrpathdirs" != "X"; then -    dnl When using libtool, the option that works for both libraries and -    dnl executables is -R. The -R options are cumulative. -    for found_dir in $ltrpathdirs; do -      LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-R$found_dir" -    done -  fi -]) - -dnl AC_LIB_APPENDTOVAR(VAR, CONTENTS) appends the elements of CONTENTS to VAR, -dnl unless already present in VAR. -dnl Works only for CPPFLAGS, not for LIB* variables because that sometimes -dnl contains two or three consecutive elements that belong together. -AC_DEFUN([AC_LIB_APPENDTOVAR], -[ -  for element in [$2]; do -    haveit= -    for x in $[$1]; do -      AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) -      if test "X$x" = "X$element"; then -        haveit=yes -        break -      fi -    done -    if test -z "$haveit"; then -      [$1]="${[$1]}${[$1]:+ }$element" -    fi -  done -]) - -# lib-ld.m4 serial 3 (gettext-0.13) -dnl Copyright (C) 1996-2003 Free Software Foundation, Inc. -dnl This file is free software; the Free Software Foundation -dnl gives unlimited permission to copy and/or distribute it, -dnl with or without modifications, as long as this notice is preserved. - -dnl Subroutines of libtool.m4, -dnl with replacements s/AC_/AC_LIB/ and s/lt_cv/acl_cv/ to avoid collision -dnl with libtool.m4. - -dnl From libtool-1.4. Sets the variable with_gnu_ld to yes or no. -AC_DEFUN([AC_LIB_PROG_LD_GNU], -[AC_CACHE_CHECK([if the linker ($LD) is GNU ld], acl_cv_prog_gnu_ld, -[# I'd rather use --version here, but apparently some GNU ld's only accept -v. -case `$LD -v 2>&1 </dev/null` in -*GNU* | *'with BFD'*) -  acl_cv_prog_gnu_ld=yes ;; -*) -  acl_cv_prog_gnu_ld=no ;; -esac]) -with_gnu_ld=$acl_cv_prog_gnu_ld -]) - -dnl From libtool-1.4. Sets the variable LD. -AC_DEFUN([AC_LIB_PROG_LD], -[AC_ARG_WITH(gnu-ld, -[  --with-gnu-ld           assume the C compiler uses GNU ld [default=no]], -test "$withval" = no || with_gnu_ld=yes, with_gnu_ld=no) -AC_REQUIRE([AC_PROG_CC])dnl -AC_REQUIRE([AC_CANONICAL_HOST])dnl -# Prepare PATH_SEPARATOR. -# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then -  echo "#! /bin/sh" >conf$$.sh -  echo  "exit 0"   >>conf$$.sh -  chmod +x conf$$.sh -  if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then -    PATH_SEPARATOR=';' -  else -    PATH_SEPARATOR=: -  fi -  rm -f conf$$.sh -fi -ac_prog=ld -if test "$GCC" = yes; then -  # Check if gcc -print-prog-name=ld gives a path. -  AC_MSG_CHECKING([for ld used by GCC]) -  case $host in -  *-*-mingw*) -    # gcc leaves a trailing carriage return which upsets mingw -    ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; -  *) -    ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; -  esac -  case $ac_prog in -    # Accept absolute paths. -    [[\\/]* | [A-Za-z]:[\\/]*)] -      [re_direlt='/[^/][^/]*/\.\./'] -      # Canonicalize the path of ld -      ac_prog=`echo $ac_prog| sed 's%\\\\%/%g'` -      while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do -	ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"` -      done -      test -z "$LD" && LD="$ac_prog" -      ;; -  "") -    # If it fails, then pretend we aren't using GCC. -    ac_prog=ld -    ;; -  *) -    # If it is relative, then search for the first ld in PATH. -    with_gnu_ld=unknown -    ;; -  esac -elif test "$with_gnu_ld" = yes; then -  AC_MSG_CHECKING([for GNU ld]) -else -  AC_MSG_CHECKING([for non-GNU ld]) -fi -AC_CACHE_VAL(acl_cv_path_LD, -[if test -z "$LD"; then -  IFS="${IFS= 	}"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}" -  for ac_dir in $PATH; do -    test -z "$ac_dir" && ac_dir=. -    if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then -      acl_cv_path_LD="$ac_dir/$ac_prog" -      # Check to see if the program is GNU ld.  I'd rather use --version, -      # but apparently some GNU ld's only accept -v. -      # Break only if it was the GNU/non-GNU ld that we prefer. -      case `"$acl_cv_path_LD" -v 2>&1 < /dev/null` in -      *GNU* | *'with BFD'*) -	test "$with_gnu_ld" != no && break ;; -      *) -	test "$with_gnu_ld" != yes && break ;; -      esac -    fi -  done -  IFS="$ac_save_ifs" -else -  acl_cv_path_LD="$LD" # Let the user override the test with a path. -fi]) -LD="$acl_cv_path_LD" -if test -n "$LD"; then -  AC_MSG_RESULT($LD) -else -  AC_MSG_RESULT(no) -fi -test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH]) -AC_LIB_PROG_LD_GNU -]) - -# Do all the work for Automake.  This macro actually does too much -- -# some checks are only needed if your package does certain things. -# But this isn't really a big deal. - -# serial 1 - -dnl Usage: -dnl AM_INIT_AUTOMAKE(package,version, [no-define]) - -AC_DEFUN([AM_INIT_AUTOMAKE], -[AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl -AC_REQUIRE([AC_PROG_INSTALL]) -PACKAGE=[$1] -AC_SUBST(PACKAGE) -VERSION=[$2] -AC_SUBST(VERSION) -dnl test to see if srcdir already configured -if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then -  AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) -fi -ifelse([$3],, -AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) -AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])) -AC_REQUIRE([AM_SANITY_CHECK]) -AC_REQUIRE([AC_ARG_PROGRAM]) -dnl FIXME This is truly gross. -missing_dir=`cd $ac_aux_dir && pwd` -AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version}, $missing_dir) -AM_MISSING_PROG(AUTOCONF, autoconf, $missing_dir) -AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version}, $missing_dir) -AM_MISSING_PROG(AUTOHEADER, autoheader, $missing_dir) -AM_MISSING_PROG(MAKEINFO, makeinfo, $missing_dir) -AC_REQUIRE([AC_PROG_MAKE_SET])]) - -# Copyright 2002  Free Software Foundation, Inc. - -# 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 -# the Free Software Foundation; either version 2, or (at your option) -# any later version. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the -# GNU General Public License for more details. - -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA - -# AM_AUTOMAKE_VERSION(VERSION) -# ---------------------------- -# Automake X.Y traces this macro to ensure aclocal.m4 has been -# generated from the m4 files accompanying Automake X.Y. -AC_DEFUN([AM_AUTOMAKE_VERSION],[am__api_version="1.4"]) - -# AM_SET_CURRENT_AUTOMAKE_VERSION -# ------------------------------- -# Call AM_AUTOMAKE_VERSION so it can be traced. -# This function is AC_REQUIREd by AC_INIT_AUTOMAKE. -AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], -	 [AM_AUTOMAKE_VERSION([1.4-p6])]) - -# -# Check to make sure that the build environment is sane. -# - -AC_DEFUN([AM_SANITY_CHECK], -[AC_MSG_CHECKING([whether build environment is sane]) -# Just in case -sleep 1 -echo timestamp > conftestfile -# Do `set' in a subshell so we don't clobber the current shell's -# arguments.  Must try -L first in case configure is actually a -# symlink; some systems play weird games with the mod time of symlinks -# (eg FreeBSD returns the mod time of the symlink's containing -# directory). -if ( -   set X `ls -Lt $srcdir/configure conftestfile 2> /dev/null` -   if test "[$]*" = "X"; then -      # -L didn't work. -      set X `ls -t $srcdir/configure conftestfile` -   fi -   if test "[$]*" != "X $srcdir/configure conftestfile" \ -      && test "[$]*" != "X conftestfile $srcdir/configure"; then - -      # If neither matched, then we have a broken ls.  This can happen -      # if, for instance, CONFIG_SHELL is bash and it inherits a -      # broken ls alias from the environment.  This has actually -      # happened.  Such a system could not be considered "sane". -      AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a broken -alias in your environment]) -   fi - -   test "[$]2" = conftestfile -   ) -then -   # Ok. -   : -else -   AC_MSG_ERROR([newly created file is older than distributed files! -Check your system clock]) -fi -rm -f conftest* -AC_MSG_RESULT(yes)]) - -dnl AM_MISSING_PROG(NAME, PROGRAM, DIRECTORY) -dnl The program must properly implement --version. -AC_DEFUN([AM_MISSING_PROG], -[AC_MSG_CHECKING(for working $2) -# Run test in a subshell; some versions of sh will print an error if -# an executable is not found, even if stderr is redirected. -# Redirect stdin to placate older versions of autoconf.  Sigh. -if ($2 --version) < /dev/null > /dev/null 2>&1; then -   $1=$2 -   AC_MSG_RESULT(found) -else -   $1="$3/missing $2" -   AC_MSG_RESULT(missing) -fi -AC_SUBST($1)]) - -# Like AC_CONFIG_HEADER, but automatically create stamp file. - -AC_DEFUN([AM_CONFIG_HEADER], -[AC_PREREQ([2.12]) -AC_CONFIG_HEADER([$1]) -dnl When config.status generates a header, we must update the stamp-h file. -dnl This file resides in the same directory as the config header -dnl that is generated.  We must strip everything past the first ":", -dnl and everything past the last "/". -AC_OUTPUT_COMMANDS(changequote(<<,>>)dnl -ifelse(patsubst(<<$1>>, <<[^ ]>>, <<>>), <<>>, -<<test -z "<<$>>CONFIG_HEADERS" || echo timestamp > patsubst(<<$1>>, <<^\([^:]*/\)?.*>>, <<\1>>)stamp-h<<>>dnl>>, -<<am_indx=1 -for am_file in <<$1>>; do -  case " <<$>>CONFIG_HEADERS " in -  *" <<$>>am_file "*<<)>> -    echo timestamp > `echo <<$>>am_file | sed -e 's%:.*%%' -e 's%[^/]*$%%'`stamp-h$am_indx -    ;; -  esac -  am_indx=`expr "<<$>>am_indx" + 1` -done<<>>dnl>>) -changequote([,]))]) - - -# serial 1 - -# @defmac AC_PROG_CC_STDC -# @maindex PROG_CC_STDC -# @ovindex CC -# If the C compiler in not in ANSI C mode by default, try to add an option -# to output variable @code{CC} to make it so.  This macro tries various -# options that select ANSI C on some system or another.  It considers the -# compiler to be in ANSI C mode if it handles function prototypes correctly. -# -# If you use this macro, you should check after calling it whether the C -# compiler has been set to accept ANSI C; if not, the shell variable -# @code{am_cv_prog_cc_stdc} is set to @samp{no}.  If you wrote your source -# code in ANSI C, you can make an un-ANSIfied copy of it by using the -# program @code{ansi2knr}, which comes with Ghostscript. -# @end defmac - -AC_DEFUN([AM_PROG_CC_STDC], -[AC_REQUIRE([AC_PROG_CC]) -AC_BEFORE([$0], [AC_C_INLINE]) -AC_BEFORE([$0], [AC_C_CONST]) -dnl Force this before AC_PROG_CPP.  Some cpp's, eg on HPUX, require -dnl a magic option to avoid problems with ANSI preprocessor commands -dnl like #elif. -dnl FIXME: can't do this because then AC_AIX won't work due to a -dnl circular dependency. -dnl AC_BEFORE([$0], [AC_PROG_CPP]) -AC_MSG_CHECKING(for ${CC-cc} option to accept ANSI C) -AC_CACHE_VAL(am_cv_prog_cc_stdc, -[am_cv_prog_cc_stdc=no -ac_save_CC="$CC" -# Don't try gcc -ansi; that turns off useful extensions and -# breaks some systems' header files. -# AIX			-qlanglvl=ansi -# Ultrix and OSF/1	-std1 -# HP-UX			-Aa -D_HPUX_SOURCE -# SVR4			-Xc -D__EXTENSIONS__ -for ac_arg in "" -qlanglvl=ansi -std1 "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" -do -  CC="$ac_save_CC $ac_arg" -  AC_TRY_COMPILE( -[#include <stdarg.h> -#include <stdio.h> -#include <sys/types.h> -#include <sys/stat.h> -/* Most of the following tests are stolen from RCS 5.7's src/conf.sh.  */ -struct buf { int x; }; -FILE * (*rcsopen) (struct buf *, struct stat *, int); -static char *e (p, i) -     char **p; -     int i; -{ -  return p[i]; -} -static char *f (char * (*g) (char **, int), char **p, ...) -{ -  char *s; -  va_list v; -  va_start (v,p); -  s = g (p, va_arg (v,int)); -  va_end (v); -  return s; -} -int test (int i, double x); -struct s1 {int (*f) (int a);}; -struct s2 {int (*f) (double a);}; -int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); -int argc; -char **argv; -], [ -return f (e, argv, 0) != argv[0]  ||  f (e, argv, 1) != argv[1]; -], -[am_cv_prog_cc_stdc="$ac_arg"; break]) -done -CC="$ac_save_CC" -]) -if test -z "$am_cv_prog_cc_stdc"; then -  AC_MSG_RESULT([none needed]) -else -  AC_MSG_RESULT($am_cv_prog_cc_stdc) -fi -case "x$am_cv_prog_cc_stdc" in -  x|xno) ;; -  *) CC="$CC $am_cv_prog_cc_stdc" ;; -esac -]) - -# Add --enable-maintainer-mode option to configure. -# From Jim Meyering - -# serial 1 - -AC_DEFUN([AM_MAINTAINER_MODE], -[AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) -  dnl maintainer-mode is disabled by default -  AC_ARG_ENABLE(maintainer-mode, -[  --enable-maintainer-mode enable make rules and dependencies not useful -                          (and sometimes confusing) to the casual installer], -      USE_MAINTAINER_MODE=$enableval, -      USE_MAINTAINER_MODE=no) -  AC_MSG_RESULT($USE_MAINTAINER_MODE) -  AM_CONDITIONAL(MAINTAINER_MODE, test $USE_MAINTAINER_MODE = yes) -  MAINT=$MAINTAINER_MODE_TRUE -  AC_SUBST(MAINT)dnl -] -) - -# Define a conditional. - -AC_DEFUN([AM_CONDITIONAL], -[AC_SUBST($1_TRUE) -AC_SUBST($1_FALSE) -if $2; then -  $1_TRUE= -  $1_FALSE='#' -else -  $1_TRUE='#' -  $1_FALSE= -fi]) - - -# serial 1 - -AC_DEFUN([AM_WITH_DMALLOC], -[AC_MSG_CHECKING(if malloc debugging is wanted) -AC_ARG_WITH(dmalloc, -[  --with-dmalloc          use dmalloc, as in -                          ftp://ftp.letters.com/src/dmalloc/dmalloc.tar.gz], -[if test "$withval" = yes; then -  AC_MSG_RESULT(yes) -  AC_DEFINE(WITH_DMALLOC,1, -            [Define if using the dmalloc debugging malloc package]) -  LIBS="$LIBS -ldmalloc" -  LDFLAGS="$LDFLAGS -g" -else -  AC_MSG_RESULT(no) -fi], [AC_MSG_RESULT(no)]) -]) - diff --git a/cam/Makefile.am b/cam/Makefile.am deleted file mode 100644 index 7fa0249..0000000 --- a/cam/Makefile.am +++ /dev/null @@ -1,11 +0,0 @@ -## Process this file with automake to produce Makefile.in - -AUTOMAKE_OPTIONS = 1.4 foreign - -# A list of all the files in the current directory which can be regenerated -MAINTAINERCLEANFILES = Makefile.in				 - -EXTRA_DIST = README cam_bookmarks feh-cam gen-cam-menu - -camdir = $(bindir) -cam_SCRIPTS = feh-cam gen-cam-menu diff --git a/cam/Makefile.in b/cam/Makefile.in deleted file mode 100644 index d683a5b..0000000 --- a/cam/Makefile.in +++ /dev/null @@ -1,214 +0,0 @@ -# Makefile.in generated automatically by automake 1.4-p6 from Makefile.am - -# Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - - -SHELL = @SHELL@ - -srcdir = @srcdir@ -top_srcdir = @top_srcdir@ -VPATH = @srcdir@ -prefix = @prefix@ -exec_prefix = @exec_prefix@ - -bindir = @bindir@ -sbindir = @sbindir@ -libexecdir = @libexecdir@ -datadir = @datadir@ -sysconfdir = @sysconfdir@ -sharedstatedir = @sharedstatedir@ -localstatedir = @localstatedir@ -libdir = @libdir@ -infodir = @infodir@ -mandir = @mandir@ -includedir = @includedir@ -oldincludedir = /usr/include - -DESTDIR = - -pkgdatadir = $(datadir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ - -top_builddir = .. - -ACLOCAL = @ACLOCAL@ -AUTOCONF = @AUTOCONF@ -AUTOMAKE = @AUTOMAKE@ -AUTOHEADER = @AUTOHEADER@ - -INSTALL = @INSTALL@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(AM_INSTALL_PROGRAM_FLAGS) -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -transform = @program_transform_name@ - -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -host_alias = @host_alias@ -host_triplet = @host@ -CC = @CC@ -GIBLIB_CFLAGS = @GIBLIB_CFLAGS@ -GIBLIB_LIBS = @GIBLIB_LIBS@ -GTK_CFLAGS = @GTK_CFLAGS@ -GTK_CONFIG = @GTK_CONFIG@ -GTK_LIBS = @GTK_LIBS@ -HAVE_LIB = @HAVE_LIB@ -HAVE_XINERAMA = @HAVE_XINERAMA@ -IMLIB_CFLAGS = @IMLIB_CFLAGS@ -IMLIB_LIBS = @IMLIB_LIBS@ -LIB = @LIB@ -LTLIB = @LTLIB@ -MAINT = @MAINT@ -MAKEINFO = @MAKEINFO@ -PACKAGE = @PACKAGE@ -UP = @UP@ -VERSION = @VERSION@ -XINERAMA_LIBS = @XINERAMA_LIBS@ - -AUTOMAKE_OPTIONS = 1.4 foreign - -# A list of all the files in the current directory which can be regenerated -MAINTAINERCLEANFILES = Makefile.in				 - -EXTRA_DIST = README cam_bookmarks feh-cam gen-cam-menu - -camdir = $(bindir) -cam_SCRIPTS = feh-cam gen-cam-menu -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = ../src/config.h -CONFIG_CLEAN_FILES =  -SCRIPTS =  $(cam_SCRIPTS) - -DIST_COMMON =  README ChangeLog Makefile.am Makefile.in - - -DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST) - -TAR = tar -GZIP_ENV = --best -all: all-redirect -.SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.ac $(ACLOCAL_M4)  -	cd $(top_srcdir) && $(AUTOMAKE) --foreign --include-deps cam/Makefile - -Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status -	cd $(top_builddir) \ -	  && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status - - -install-camSCRIPTS: $(cam_SCRIPTS) -	@$(NORMAL_INSTALL) -	$(mkinstalldirs) $(DESTDIR)$(camdir) -	@list='$(cam_SCRIPTS)'; for p in $$list; do \ -	  if test -f $$p; then \ -	    echo " $(INSTALL_SCRIPT) $$p $(DESTDIR)$(camdir)/`echo $$p|sed '$(transform)'`"; \ -	    $(INSTALL_SCRIPT) $$p $(DESTDIR)$(camdir)/`echo $$p|sed '$(transform)'`; \ -	  else if test -f $(srcdir)/$$p; then \ -	    echo " $(INSTALL_SCRIPT) $(srcdir)/$$p $(DESTDIR)$(camdir)/`echo $$p|sed '$(transform)'`"; \ -	    $(INSTALL_SCRIPT) $(srcdir)/$$p $(DESTDIR)$(camdir)/`echo $$p|sed '$(transform)'`; \ -	  else :; fi; fi; \ -	done - -uninstall-camSCRIPTS: -	@$(NORMAL_UNINSTALL) -	list='$(cam_SCRIPTS)'; for p in $$list; do \ -	  rm -f $(DESTDIR)$(camdir)/`echo $$p|sed '$(transform)'`; \ -	done -tags: TAGS -TAGS: - - -distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir) - -subdir = cam - -distdir: $(DISTFILES) -	@for file in $(DISTFILES); do \ -	  d=$(srcdir); \ -	  if test -d $$d/$$file; then \ -	    cp -pr $$d/$$file $(distdir)/$$file; \ -	  else \ -	    test -f $(distdir)/$$file \ -	    || ln $$d/$$file $(distdir)/$$file 2> /dev/null \ -	    || cp -p $$d/$$file $(distdir)/$$file || :; \ -	  fi; \ -	done -info-am: -info: info-am -dvi-am: -dvi: dvi-am -check-am: all-am -check: check-am -installcheck-am: -installcheck: installcheck-am -install-exec-am: -install-exec: install-exec-am - -install-data-am: install-camSCRIPTS -install-data: install-data-am - -install-am: all-am -	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am -install: install-am -uninstall-am: uninstall-camSCRIPTS -uninstall: uninstall-am -all-am: Makefile $(SCRIPTS) -all-redirect: all-am -install-strip: -	$(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install -installdirs: -	$(mkinstalldirs)  $(DESTDIR)$(camdir) - - -mostlyclean-generic: - -clean-generic: - -distclean-generic: -	-rm -f Makefile $(CONFIG_CLEAN_FILES) -	-rm -f config.cache config.log stamp-h stamp-h[0-9]* - -maintainer-clean-generic: -	-test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) -mostlyclean-am:  mostlyclean-generic - -mostlyclean: mostlyclean-am - -clean-am:  clean-generic mostlyclean-am - -clean: clean-am - -distclean-am:  distclean-generic clean-am - -distclean: distclean-am - -maintainer-clean-am:  maintainer-clean-generic distclean-am -	@echo "This command is intended for maintainers to use;" -	@echo "it deletes files that may require special tools to rebuild." - -maintainer-clean: maintainer-clean-am - -.PHONY: uninstall-camSCRIPTS install-camSCRIPTS tags distdir info-am \ -info dvi-am dvi check check-am installcheck-am installcheck \ -install-exec-am install-exec install-data-am install-data install-am \ -install uninstall-am uninstall all-redirect all-am all installdirs \ -mostlyclean-generic distclean-generic clean-generic \ -maintainer-clean-generic clean mostlyclean distclean maintainer-clean - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/config.guess b/config.guess deleted file mode 100755 index 45bee13..0000000 --- a/config.guess +++ /dev/null @@ -1,1465 +0,0 @@ -#! /bin/sh -# Attempt to guess a canonical system name. -#   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -#   2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. - -timestamp='2005-04-22' - -# This file is free software; you can redistribute it and/or modify it -# under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -# -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program that contains a -# configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. - -# Originally written by Per Bothner <per@bothner.com>. -# Please send patches to <config-patches@gnu.org>.  Submit a context -# diff and a properly formatted ChangeLog entry. -# -# This script attempts to guess a canonical system name similar to -# config.sub.  If it succeeds, it prints the system name on stdout, and -# exits with 0.  Otherwise, it exits with 1. -# -# The plan is that this can be called by configure scripts if you -# don't specify an explicit build system type. - -me=`echo "$0" | sed -e 's,.*/,,'` - -usage="\ -Usage: $0 [OPTION] - -Output the configuration name of the system \`$me' is run on. - -Operation modes: -  -h, --help         print this help, then exit -  -t, --time-stamp   print date of last modification, then exit -  -v, --version      print version number, then exit - -Report bugs and patches to <config-patches@gnu.org>." - -version="\ -GNU config.guess ($timestamp) - -Originally written by Per Bothner. -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 -Free Software Foundation, Inc. - -This is free software; see the source for copying conditions.  There is NO -warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." - -help=" -Try \`$me --help' for more information." - -# Parse command line -while test $# -gt 0 ; do -  case $1 in -    --time-stamp | --time* | -t ) -       echo "$timestamp" ; exit 0 ;; -    --version | -v ) -       echo "$version" ; exit 0 ;; -    --help | --h* | -h ) -       echo "$usage"; exit 0 ;; -    -- )     # Stop option processing -       shift; break ;; -    - )	# Use stdin as input. -       break ;; -    -* ) -       echo "$me: invalid option $1$help" >&2 -       exit 1 ;; -    * ) -       break ;; -  esac -done - -if test $# != 0; then -  echo "$me: too many arguments$help" >&2 -  exit 1 -fi - -trap 'exit 1' 1 2 15 - -# CC_FOR_BUILD -- compiler used by this script. Note that the use of a -# compiler to aid in system detection is discouraged as it requires -# temporary files to be created and, as you can see below, it is a -# headache to deal with in a portable fashion. - -# Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still -# use `HOST_CC' if defined, but it is deprecated. - -# Portable tmp directory creation inspired by the Autoconf team. - -set_cc_for_build=' -trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; -trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; -: ${TMPDIR=/tmp} ; - { tmp=`(umask 077 && mktemp -d -q "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || - { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || - { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || - { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; -dummy=$tmp/dummy ; -tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; -case $CC_FOR_BUILD,$HOST_CC,$CC in - ,,)    echo "int x;" > $dummy.c ; -	for c in cc gcc c89 c99 ; do -	  if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then -	     CC_FOR_BUILD="$c"; break ; -	  fi ; -	done ; -	if test x"$CC_FOR_BUILD" = x ; then -	  CC_FOR_BUILD=no_compiler_found ; -	fi -	;; - ,,*)   CC_FOR_BUILD=$CC ;; - ,*,*)  CC_FOR_BUILD=$HOST_CC ;; -esac ;' - -# This is needed to find uname on a Pyramid OSx when run in the BSD universe. -# (ghazi@noc.rutgers.edu 1994-08-24) -if (test -f /.attbin/uname) >/dev/null 2>&1 ; then -	PATH=$PATH:/.attbin ; export PATH -fi - -UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown -UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown -UNAME_SYSTEM=`(uname -s) 2>/dev/null`  || UNAME_SYSTEM=unknown -UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown - -# Note: order is significant - the case branches are not exclusive. - -case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in -    *:NetBSD:*:*) -	# NetBSD (nbsd) targets should (where applicable) match one or -	# more of the tupples: *-*-netbsdelf*, *-*-netbsdaout*, -	# *-*-netbsdecoff* and *-*-netbsd*.  For targets that recently -	# switched to ELF, *-*-netbsd* would select the old -	# object file format.  This provides both forward -	# compatibility and a consistent mechanism for selecting the -	# object file format. -	# -	# Note: NetBSD doesn't particularly care about the vendor -	# portion of the name.  We always set it to "unknown". -	sysctl="sysctl -n hw.machine_arch" -	UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \ -	    /usr/sbin/$sysctl 2>/dev/null || echo unknown)` -	case "${UNAME_MACHINE_ARCH}" in -	    armeb) machine=armeb-unknown ;; -	    arm*) machine=arm-unknown ;; -	    sh3el) machine=shl-unknown ;; -	    sh3eb) machine=sh-unknown ;; -	    *) machine=${UNAME_MACHINE_ARCH}-unknown ;; -	esac -	# The Operating System including object format, if it has switched -	# to ELF recently, or will in the future. -	case "${UNAME_MACHINE_ARCH}" in -	    arm*|i386|m68k|ns32k|sh3*|sparc|vax) -		eval $set_cc_for_build -		if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ -			| grep __ELF__ >/dev/null -		then -		    # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). -		    # Return netbsd for either.  FIX? -		    os=netbsd -		else -		    os=netbsdelf -		fi -		;; -	    *) -	        os=netbsd -		;; -	esac -	# The OS release -	# Debian GNU/NetBSD machines have a different userland, and -	# thus, need a distinct triplet. However, they do not need -	# kernel version information, so it can be replaced with a -	# suitable tag, in the style of linux-gnu. -	case "${UNAME_VERSION}" in -	    Debian*) -		release='-gnu' -		;; -	    *) -		release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` -		;; -	esac -	# Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: -	# contains redundant information, the shorter form: -	# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. -	echo "${machine}-${os}${release}" -	exit 0 ;; -    amd64:OpenBSD:*:*) -	echo x86_64-unknown-openbsd${UNAME_RELEASE} -	exit 0 ;; -    amiga:OpenBSD:*:*) -	echo m68k-unknown-openbsd${UNAME_RELEASE} -	exit 0 ;; -    cats:OpenBSD:*:*) -	echo arm-unknown-openbsd${UNAME_RELEASE} -	exit 0 ;; -    hp300:OpenBSD:*:*) -	echo m68k-unknown-openbsd${UNAME_RELEASE} -	exit 0 ;; -    luna88k:OpenBSD:*:*) -    	echo m88k-unknown-openbsd${UNAME_RELEASE} -	exit 0 ;; -    mac68k:OpenBSD:*:*) -	echo m68k-unknown-openbsd${UNAME_RELEASE} -	exit 0 ;; -    macppc:OpenBSD:*:*) -	echo powerpc-unknown-openbsd${UNAME_RELEASE} -	exit 0 ;; -    mvme68k:OpenBSD:*:*) -	echo m68k-unknown-openbsd${UNAME_RELEASE} -	exit 0 ;; -    mvme88k:OpenBSD:*:*) -	echo m88k-unknown-openbsd${UNAME_RELEASE} -	exit 0 ;; -    mvmeppc:OpenBSD:*:*) -	echo powerpc-unknown-openbsd${UNAME_RELEASE} -	exit 0 ;; -    sgi:OpenBSD:*:*) -	echo mips64-unknown-openbsd${UNAME_RELEASE} -	exit 0 ;; -    sun3:OpenBSD:*:*) -	echo m68k-unknown-openbsd${UNAME_RELEASE} -	exit 0 ;; -    *:OpenBSD:*:*) -	echo ${UNAME_MACHINE}-unknown-openbsd${UNAME_RELEASE} -	exit 0 ;; -    *:ekkoBSD:*:*) -	echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} -	exit 0 ;; -    macppc:MirBSD:*:*) -	echo powerppc-unknown-mirbsd${UNAME_RELEASE} -	exit 0 ;; -    *:MirBSD:*:*) -	echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} -	exit 0 ;; -    alpha:OSF1:*:*) -	case $UNAME_RELEASE in -	*4.0) -		UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` -		;; -	*5.*) -	        UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` -		;; -	esac -	# According to Compaq, /usr/sbin/psrinfo has been available on -	# OSF/1 and Tru64 systems produced since 1995.  I hope that -	# covers most systems running today.  This code pipes the CPU -	# types through head -n 1, so we only detect the type of CPU 0. -	ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^  The alpha \(.*\) processor.*$/\1/p' | head -n 1` -	case "$ALPHA_CPU_TYPE" in -	    "EV4 (21064)") -		UNAME_MACHINE="alpha" ;; -	    "EV4.5 (21064)") -		UNAME_MACHINE="alpha" ;; -	    "LCA4 (21066/21068)") -		UNAME_MACHINE="alpha" ;; -	    "EV5 (21164)") -		UNAME_MACHINE="alphaev5" ;; -	    "EV5.6 (21164A)") -		UNAME_MACHINE="alphaev56" ;; -	    "EV5.6 (21164PC)") -		UNAME_MACHINE="alphapca56" ;; -	    "EV5.7 (21164PC)") -		UNAME_MACHINE="alphapca57" ;; -	    "EV6 (21264)") -		UNAME_MACHINE="alphaev6" ;; -	    "EV6.7 (21264A)") -		UNAME_MACHINE="alphaev67" ;; -	    "EV6.8CB (21264C)") -		UNAME_MACHINE="alphaev68" ;; -	    "EV6.8AL (21264B)") -		UNAME_MACHINE="alphaev68" ;; -	    "EV6.8CX (21264D)") -		UNAME_MACHINE="alphaev68" ;; -	    "EV6.9A (21264/EV69A)") -		UNAME_MACHINE="alphaev69" ;; -	    "EV7 (21364)") -		UNAME_MACHINE="alphaev7" ;; -	    "EV7.9 (21364A)") -		UNAME_MACHINE="alphaev79" ;; -	esac -	# A Pn.n version is a patched version. -	# A Vn.n version is a released version. -	# A Tn.n version is a released field test version. -	# A Xn.n version is an unreleased experimental baselevel. -	# 1.2 uses "1.2" for uname -r. -	echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` -	exit 0 ;; -    Alpha\ *:Windows_NT*:*) -	# How do we know it's Interix rather than the generic POSIX subsystem? -	# Should we change UNAME_MACHINE based on the output of uname instead -	# of the specific Alpha model? -	echo alpha-pc-interix -	exit 0 ;; -    21064:Windows_NT:50:3) -	echo alpha-dec-winnt3.5 -	exit 0 ;; -    Amiga*:UNIX_System_V:4.0:*) -	echo m68k-unknown-sysv4 -	exit 0;; -    *:[Aa]miga[Oo][Ss]:*:*) -	echo ${UNAME_MACHINE}-unknown-amigaos -	exit 0 ;; -    *:[Mm]orph[Oo][Ss]:*:*) -	echo ${UNAME_MACHINE}-unknown-morphos -	exit 0 ;; -    *:OS/390:*:*) -	echo i370-ibm-openedition -	exit 0 ;; -    *:z/VM:*:*) -	echo s390-ibm-zvmoe -	exit 0 ;; -    *:OS400:*:*) -        echo powerpc-ibm-os400 -	exit 0 ;; -    arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) -	echo arm-acorn-riscix${UNAME_RELEASE} -	exit 0;; -    SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) -	echo hppa1.1-hitachi-hiuxmpp -	exit 0;; -    Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) -	# akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. -	if test "`(/bin/universe) 2>/dev/null`" = att ; then -		echo pyramid-pyramid-sysv3 -	else -		echo pyramid-pyramid-bsd -	fi -	exit 0 ;; -    NILE*:*:*:dcosx) -	echo pyramid-pyramid-svr4 -	exit 0 ;; -    DRS?6000:unix:4.0:6*) -	echo sparc-icl-nx6 -	exit 0 ;; -    DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) -	case `/usr/bin/uname -p` in -	    sparc) echo sparc-icl-nx7 && exit 0 ;; -	esac ;; -    sun4H:SunOS:5.*:*) -	echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` -	exit 0 ;; -    sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) -	echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` -	exit 0 ;; -    i86pc:SunOS:5.*:*) -	echo i386-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` -	exit 0 ;; -    sun4*:SunOS:6*:*) -	# According to config.sub, this is the proper way to canonicalize -	# SunOS6.  Hard to guess exactly what SunOS6 will be like, but -	# it's likely to be more like Solaris than SunOS4. -	echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` -	exit 0 ;; -    sun4*:SunOS:*:*) -	case "`/usr/bin/arch -k`" in -	    Series*|S4*) -		UNAME_RELEASE=`uname -v` -		;; -	esac -	# Japanese Language versions have a version number like `4.1.3-JL'. -	echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` -	exit 0 ;; -    sun3*:SunOS:*:*) -	echo m68k-sun-sunos${UNAME_RELEASE} -	exit 0 ;; -    sun*:*:4.2BSD:*) -	UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` -	test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 -	case "`/bin/arch`" in -	    sun3) -		echo m68k-sun-sunos${UNAME_RELEASE} -		;; -	    sun4) -		echo sparc-sun-sunos${UNAME_RELEASE} -		;; -	esac -	exit 0 ;; -    aushp:SunOS:*:*) -	echo sparc-auspex-sunos${UNAME_RELEASE} -	exit 0 ;; -    # The situation for MiNT is a little confusing.  The machine name -    # can be virtually everything (everything which is not -    # "atarist" or "atariste" at least should have a processor -    # > m68000).  The system name ranges from "MiNT" over "FreeMiNT" -    # to the lowercase version "mint" (or "freemint").  Finally -    # the system name "TOS" denotes a system which is actually not -    # MiNT.  But MiNT is downward compatible to TOS, so this should -    # be no problem. -    atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) -        echo m68k-atari-mint${UNAME_RELEASE} -	exit 0 ;; -    atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) -	echo m68k-atari-mint${UNAME_RELEASE} -        exit 0 ;; -    *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) -        echo m68k-atari-mint${UNAME_RELEASE} -	exit 0 ;; -    milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) -        echo m68k-milan-mint${UNAME_RELEASE} -        exit 0 ;; -    hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) -        echo m68k-hades-mint${UNAME_RELEASE} -        exit 0 ;; -    *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) -        echo m68k-unknown-mint${UNAME_RELEASE} -        exit 0 ;; -    m68k:machten:*:*) -	echo m68k-apple-machten${UNAME_RELEASE} -	exit 0 ;; -    powerpc:machten:*:*) -	echo powerpc-apple-machten${UNAME_RELEASE} -	exit 0 ;; -    RISC*:Mach:*:*) -	echo mips-dec-mach_bsd4.3 -	exit 0 ;; -    RISC*:ULTRIX:*:*) -	echo mips-dec-ultrix${UNAME_RELEASE} -	exit 0 ;; -    VAX*:ULTRIX*:*:*) -	echo vax-dec-ultrix${UNAME_RELEASE} -	exit 0 ;; -    2020:CLIX:*:* | 2430:CLIX:*:*) -	echo clipper-intergraph-clix${UNAME_RELEASE} -	exit 0 ;; -    mips:*:*:UMIPS | mips:*:*:RISCos) -	eval $set_cc_for_build -	sed 's/^	//' << EOF >$dummy.c -#ifdef __cplusplus -#include <stdio.h>  /* for printf() prototype */ -	int main (int argc, char *argv[]) { -#else -	int main (argc, argv) int argc; char *argv[]; { -#endif -	#if defined (host_mips) && defined (MIPSEB) -	#if defined (SYSTYPE_SYSV) -	  printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); -	#endif -	#if defined (SYSTYPE_SVR4) -	  printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); -	#endif -	#if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) -	  printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); -	#endif -	#endif -	  exit (-1); -	} -EOF -	$CC_FOR_BUILD -o $dummy $dummy.c \ -	  && $dummy `echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` \ -	  && exit 0 -	echo mips-mips-riscos${UNAME_RELEASE} -	exit 0 ;; -    Motorola:PowerMAX_OS:*:*) -	echo powerpc-motorola-powermax -	exit 0 ;; -    Motorola:*:4.3:PL8-*) -	echo powerpc-harris-powermax -	exit 0 ;; -    Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) -	echo powerpc-harris-powermax -	exit 0 ;; -    Night_Hawk:Power_UNIX:*:*) -	echo powerpc-harris-powerunix -	exit 0 ;; -    m88k:CX/UX:7*:*) -	echo m88k-harris-cxux7 -	exit 0 ;; -    m88k:*:4*:R4*) -	echo m88k-motorola-sysv4 -	exit 0 ;; -    m88k:*:3*:R3*) -	echo m88k-motorola-sysv3 -	exit 0 ;; -    AViiON:dgux:*:*) -        # DG/UX returns AViiON for all architectures -        UNAME_PROCESSOR=`/usr/bin/uname -p` -	if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] -	then -	    if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ -	       [ ${TARGET_BINARY_INTERFACE}x = x ] -	    then -		echo m88k-dg-dgux${UNAME_RELEASE} -	    else -		echo m88k-dg-dguxbcs${UNAME_RELEASE} -	    fi -	else -	    echo i586-dg-dgux${UNAME_RELEASE} -	fi - 	exit 0 ;; -    M88*:DolphinOS:*:*)	# DolphinOS (SVR3) -	echo m88k-dolphin-sysv3 -	exit 0 ;; -    M88*:*:R3*:*) -	# Delta 88k system running SVR3 -	echo m88k-motorola-sysv3 -	exit 0 ;; -    XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) -	echo m88k-tektronix-sysv3 -	exit 0 ;; -    Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) -	echo m68k-tektronix-bsd -	exit 0 ;; -    *:IRIX*:*:*) -	echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` -	exit 0 ;; -    ????????:AIX?:[12].1:2)   # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. -	echo romp-ibm-aix      # uname -m gives an 8 hex-code CPU id -	exit 0 ;;              # Note that: echo "'`uname -s`'" gives 'AIX ' -    i*86:AIX:*:*) -	echo i386-ibm-aix -	exit 0 ;; -    ia64:AIX:*:*) -	if [ -x /usr/bin/oslevel ] ; then -		IBM_REV=`/usr/bin/oslevel` -	else -		IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} -	fi -	echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} -	exit 0 ;; -    *:AIX:2:3) -	if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then -		eval $set_cc_for_build -		sed 's/^		//' << EOF >$dummy.c -		#include <sys/systemcfg.h> - -		main() -			{ -			if (!__power_pc()) -				exit(1); -			puts("powerpc-ibm-aix3.2.5"); -			exit(0); -			} -EOF -		$CC_FOR_BUILD -o $dummy $dummy.c && $dummy && exit 0 -		echo rs6000-ibm-aix3.2.5 -	elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then -		echo rs6000-ibm-aix3.2.4 -	else -		echo rs6000-ibm-aix3.2 -	fi -	exit 0 ;; -    *:AIX:*:[45]) -	IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` -	if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then -		IBM_ARCH=rs6000 -	else -		IBM_ARCH=powerpc -	fi -	if [ -x /usr/bin/oslevel ] ; then -		IBM_REV=`/usr/bin/oslevel` -	else -		IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} -	fi -	echo ${IBM_ARCH}-ibm-aix${IBM_REV} -	exit 0 ;; -    *:AIX:*:*) -	echo rs6000-ibm-aix -	exit 0 ;; -    ibmrt:4.4BSD:*|romp-ibm:BSD:*) -	echo romp-ibm-bsd4.4 -	exit 0 ;; -    ibmrt:*BSD:*|romp-ibm:BSD:*)            # covers RT/PC BSD and -	echo romp-ibm-bsd${UNAME_RELEASE}   # 4.3 with uname added to -	exit 0 ;;                           # report: romp-ibm BSD 4.3 -    *:BOSX:*:*) -	echo rs6000-bull-bosx -	exit 0 ;; -    DPX/2?00:B.O.S.:*:*) -	echo m68k-bull-sysv3 -	exit 0 ;; -    9000/[34]??:4.3bsd:1.*:*) -	echo m68k-hp-bsd -	exit 0 ;; -    hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) -	echo m68k-hp-bsd4.4 -	exit 0 ;; -    9000/[34678]??:HP-UX:*:*) -	HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` -	case "${UNAME_MACHINE}" in -	    9000/31? )            HP_ARCH=m68000 ;; -	    9000/[34]?? )         HP_ARCH=m68k ;; -	    9000/[678][0-9][0-9]) -		if [ -x /usr/bin/getconf ]; then -		    sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` -                    sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` -                    case "${sc_cpu_version}" in -                      523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 -                      528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 -                      532)                      # CPU_PA_RISC2_0 -                        case "${sc_kernel_bits}" in -                          32) HP_ARCH="hppa2.0n" ;; -                          64) HP_ARCH="hppa2.0w" ;; -			  '') HP_ARCH="hppa2.0" ;;   # HP-UX 10.20 -                        esac ;; -                    esac -		fi -		if [ "${HP_ARCH}" = "" ]; then -		    eval $set_cc_for_build -		    sed 's/^              //' << EOF >$dummy.c - -              #define _HPUX_SOURCE -              #include <stdlib.h> -              #include <unistd.h> - -              int main () -              { -              #if defined(_SC_KERNEL_BITS) -                  long bits = sysconf(_SC_KERNEL_BITS); -              #endif -                  long cpu  = sysconf (_SC_CPU_VERSION); - -                  switch (cpu) -              	{ -              	case CPU_PA_RISC1_0: puts ("hppa1.0"); break; -              	case CPU_PA_RISC1_1: puts ("hppa1.1"); break; -              	case CPU_PA_RISC2_0: -              #if defined(_SC_KERNEL_BITS) -              	    switch (bits) -              		{ -              		case 64: puts ("hppa2.0w"); break; -              		case 32: puts ("hppa2.0n"); break; -              		default: puts ("hppa2.0"); break; -              		} break; -              #else  /* !defined(_SC_KERNEL_BITS) */ -              	    puts ("hppa2.0"); break; -              #endif -              	default: puts ("hppa1.0"); break; -              	} -                  exit (0); -              } -EOF -		    (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` -		    test -z "$HP_ARCH" && HP_ARCH=hppa -		fi ;; -	esac -	if [ ${HP_ARCH} = "hppa2.0w" ] -	then -	    # avoid double evaluation of $set_cc_for_build -	    test -n "$CC_FOR_BUILD" || eval $set_cc_for_build -	    if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E -) | grep __LP64__ >/dev/null -	    then -		HP_ARCH="hppa2.0w" -	    else -		HP_ARCH="hppa64" -	    fi -	fi -	echo ${HP_ARCH}-hp-hpux${HPUX_REV} -	exit 0 ;; -    ia64:HP-UX:*:*) -	HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` -	echo ia64-hp-hpux${HPUX_REV} -	exit 0 ;; -    3050*:HI-UX:*:*) -	eval $set_cc_for_build -	sed 's/^	//' << EOF >$dummy.c -	#include <unistd.h> -	int -	main () -	{ -	  long cpu = sysconf (_SC_CPU_VERSION); -	  /* The order matters, because CPU_IS_HP_MC68K erroneously returns -	     true for CPU_PA_RISC1_0.  CPU_IS_PA_RISC returns correct -	     results, however.  */ -	  if (CPU_IS_PA_RISC (cpu)) -	    { -	      switch (cpu) -		{ -		  case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; -		  case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; -		  case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; -		  default: puts ("hppa-hitachi-hiuxwe2"); break; -		} -	    } -	  else if (CPU_IS_HP_MC68K (cpu)) -	    puts ("m68k-hitachi-hiuxwe2"); -	  else puts ("unknown-hitachi-hiuxwe2"); -	  exit (0); -	} -EOF -	$CC_FOR_BUILD -o $dummy $dummy.c && $dummy && exit 0 -	echo unknown-hitachi-hiuxwe2 -	exit 0 ;; -    9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) -	echo hppa1.1-hp-bsd -	exit 0 ;; -    9000/8??:4.3bsd:*:*) -	echo hppa1.0-hp-bsd -	exit 0 ;; -    *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) -	echo hppa1.0-hp-mpeix -	exit 0 ;; -    hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) -	echo hppa1.1-hp-osf -	exit 0 ;; -    hp8??:OSF1:*:*) -	echo hppa1.0-hp-osf -	exit 0 ;; -    i*86:OSF1:*:*) -	if [ -x /usr/sbin/sysversion ] ; then -	    echo ${UNAME_MACHINE}-unknown-osf1mk -	else -	    echo ${UNAME_MACHINE}-unknown-osf1 -	fi -	exit 0 ;; -    parisc*:Lites*:*:*) -	echo hppa1.1-hp-lites -	exit 0 ;; -    C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) -	echo c1-convex-bsd -        exit 0 ;; -    C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) -	if getsysinfo -f scalar_acc -	then echo c32-convex-bsd -	else echo c2-convex-bsd -	fi -        exit 0 ;; -    C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) -	echo c34-convex-bsd -        exit 0 ;; -    C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) -	echo c38-convex-bsd -        exit 0 ;; -    C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) -	echo c4-convex-bsd -        exit 0 ;; -    CRAY*Y-MP:*:*:*) -	echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' -	exit 0 ;; -    CRAY*[A-Z]90:*:*:*) -	echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ -	| sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ -	      -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ -	      -e 's/\.[^.]*$/.X/' -	exit 0 ;; -    CRAY*TS:*:*:*) -	echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' -	exit 0 ;; -    CRAY*T3E:*:*:*) -	echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' -	exit 0 ;; -    CRAY*SV1:*:*:*) -	echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' -	exit 0 ;; -    *:UNICOS/mp:*:*) -	echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' -	exit 0 ;; -    F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) -	FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` -        FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` -        FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` -        echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" -        exit 0 ;; -    5000:UNIX_System_V:4.*:*) -        FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` -        FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` -        echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" -	exit 0 ;; -    i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) -	echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} -	exit 0 ;; -    sparc*:BSD/OS:*:*) -	echo sparc-unknown-bsdi${UNAME_RELEASE} -	exit 0 ;; -    *:BSD/OS:*:*) -	echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} -	exit 0 ;; -    *:FreeBSD:*:*) -	echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` -	exit 0 ;; -    i*:CYGWIN*:*) -	echo ${UNAME_MACHINE}-pc-cygwin -	exit 0 ;; -    i*:MINGW*:*) -	echo ${UNAME_MACHINE}-pc-mingw32 -	exit 0 ;; -    i*:PW*:*) -	echo ${UNAME_MACHINE}-pc-pw32 -	exit 0 ;; -    x86:Interix*:[34]*) -	echo i586-pc-interix${UNAME_RELEASE}|sed -e 's/\..*//' -	exit 0 ;; -    [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) -	echo i${UNAME_MACHINE}-pc-mks -	exit 0 ;; -    i*:Windows_NT*:* | Pentium*:Windows_NT*:*) -	# How do we know it's Interix rather than the generic POSIX subsystem? -	# It also conflicts with pre-2.0 versions of AT&T UWIN. Should we -	# UNAME_MACHINE based on the output of uname instead of i386? -	echo i586-pc-interix -	exit 0 ;; -    i*:UWIN*:*) -	echo ${UNAME_MACHINE}-pc-uwin -	exit 0 ;; -    amd64:CYGWIN*:*:*) -	echo x86_64-unknown-cygwin -	exit 0 ;; -    p*:CYGWIN*:*) -	echo powerpcle-unknown-cygwin -	exit 0 ;; -    prep*:SunOS:5.*:*) -	echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` -	exit 0 ;; -    *:GNU:*:*) -	# the GNU system -	echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` -	exit 0 ;; -    *:GNU/*:*:*) -	# other systems with GNU libc and userland -	echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu -	exit 0 ;; -    i*86:Minix:*:*) -	echo ${UNAME_MACHINE}-pc-minix -	exit 0 ;; -    arm*:Linux:*:*) -	echo ${UNAME_MACHINE}-unknown-linux-gnu -	exit 0 ;; -    cris:Linux:*:*) -	echo cris-axis-linux-gnu -	exit 0 ;; -    crisv32:Linux:*:*) -	echo crisv32-axis-linux-gnu -	exit 0 ;; -    frv:Linux:*:*) -    	echo frv-unknown-linux-gnu -	exit 0 ;; -    ia64:Linux:*:*) -	echo ${UNAME_MACHINE}-unknown-linux-gnu -	exit 0 ;; -    m32r*:Linux:*:*) -	echo ${UNAME_MACHINE}-unknown-linux-gnu -	exit 0 ;; -    m68*:Linux:*:*) -	echo ${UNAME_MACHINE}-unknown-linux-gnu -	exit 0 ;; -    mips:Linux:*:*) -	eval $set_cc_for_build -	sed 's/^	//' << EOF >$dummy.c -	#undef CPU -	#undef mips -	#undef mipsel -	#if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) -	CPU=mipsel -	#else -	#if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) -	CPU=mips -	#else -	CPU= -	#endif -	#endif -EOF -	eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=` -	test x"${CPU}" != x && echo "${CPU}-unknown-linux-gnu" && exit 0 -	;; -    mips64:Linux:*:*) -	eval $set_cc_for_build -	sed 's/^	//' << EOF >$dummy.c -	#undef CPU -	#undef mips64 -	#undef mips64el -	#if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) -	CPU=mips64el -	#else -	#if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) -	CPU=mips64 -	#else -	CPU= -	#endif -	#endif -EOF -	eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=` -	test x"${CPU}" != x && echo "${CPU}-unknown-linux-gnu" && exit 0 -	;; -    ppc:Linux:*:*) -	echo powerpc-unknown-linux-gnu -	exit 0 ;; -    ppc64:Linux:*:*) -	echo powerpc64-unknown-linux-gnu -	exit 0 ;; -    alpha:Linux:*:*) -	case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in -	  EV5)   UNAME_MACHINE=alphaev5 ;; -	  EV56)  UNAME_MACHINE=alphaev56 ;; -	  PCA56) UNAME_MACHINE=alphapca56 ;; -	  PCA57) UNAME_MACHINE=alphapca56 ;; -	  EV6)   UNAME_MACHINE=alphaev6 ;; -	  EV67)  UNAME_MACHINE=alphaev67 ;; -	  EV68*) UNAME_MACHINE=alphaev68 ;; -        esac -	objdump --private-headers /bin/sh | grep ld.so.1 >/dev/null -	if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi -	echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} -	exit 0 ;; -    parisc:Linux:*:* | hppa:Linux:*:*) -	# Look for CPU level -	case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in -	  PA7*) echo hppa1.1-unknown-linux-gnu ;; -	  PA8*) echo hppa2.0-unknown-linux-gnu ;; -	  *)    echo hppa-unknown-linux-gnu ;; -	esac -	exit 0 ;; -    parisc64:Linux:*:* | hppa64:Linux:*:*) -	echo hppa64-unknown-linux-gnu -	exit 0 ;; -    s390:Linux:*:* | s390x:Linux:*:*) -	echo ${UNAME_MACHINE}-ibm-linux -	exit 0 ;; -    sh64*:Linux:*:*) -    	echo ${UNAME_MACHINE}-unknown-linux-gnu -	exit 0 ;; -    sh*:Linux:*:*) -	echo ${UNAME_MACHINE}-unknown-linux-gnu -	exit 0 ;; -    sparc:Linux:*:* | sparc64:Linux:*:*) -	echo ${UNAME_MACHINE}-unknown-linux-gnu -	exit 0 ;; -    x86_64:Linux:*:*) -	echo x86_64-unknown-linux-gnu -	exit 0 ;; -    i*86:Linux:*:*) -	# The BFD linker knows what the default object file format is, so -	# first see if it will tell us. cd to the root directory to prevent -	# problems with other programs or directories called `ld' in the path. -	# Set LC_ALL=C to ensure ld outputs messages in English. -	ld_supported_targets=`cd /; LC_ALL=C ld --help 2>&1 \ -			 | sed -ne '/supported targets:/!d -				    s/[ 	][ 	]*/ /g -				    s/.*supported targets: *// -				    s/ .*// -				    p'` -        case "$ld_supported_targets" in -	  elf32-i386) -		TENTATIVE="${UNAME_MACHINE}-pc-linux-gnu" -		;; -	  a.out-i386-linux) -		echo "${UNAME_MACHINE}-pc-linux-gnuaout" -		exit 0 ;; -	  coff-i386) -		echo "${UNAME_MACHINE}-pc-linux-gnucoff" -		exit 0 ;; -	  "") -		# Either a pre-BFD a.out linker (linux-gnuoldld) or -		# one that does not give us useful --help. -		echo "${UNAME_MACHINE}-pc-linux-gnuoldld" -		exit 0 ;; -	esac -	# Determine whether the default compiler is a.out or elf -	eval $set_cc_for_build -	sed 's/^	//' << EOF >$dummy.c -	#include <features.h> -	#ifdef __ELF__ -	# ifdef __GLIBC__ -	#  if __GLIBC__ >= 2 -	LIBC=gnu -	#  else -	LIBC=gnulibc1 -	#  endif -	# else -	LIBC=gnulibc1 -	# endif -	#else -	#ifdef __INTEL_COMPILER -	LIBC=gnu -	#else -	LIBC=gnuaout -	#endif -	#endif -	#ifdef __dietlibc__ -	LIBC=dietlibc -	#endif -EOF -	eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^LIBC=` -	test x"${LIBC}" != x && echo "${UNAME_MACHINE}-pc-linux-${LIBC}" && exit 0 -	test x"${TENTATIVE}" != x && echo "${TENTATIVE}" && exit 0 -	;; -    i*86:DYNIX/ptx:4*:*) -	# ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. -	# earlier versions are messed up and put the nodename in both -	# sysname and nodename. -	echo i386-sequent-sysv4 -	exit 0 ;; -    i*86:UNIX_SV:4.2MP:2.*) -        # Unixware is an offshoot of SVR4, but it has its own version -        # number series starting with 2... -        # I am not positive that other SVR4 systems won't match this, -	# I just have to hope.  -- rms. -        # Use sysv4.2uw... so that sysv4* matches it. -	echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} -	exit 0 ;; -    i*86:OS/2:*:*) -	# If we were able to find `uname', then EMX Unix compatibility -	# is probably installed. -	echo ${UNAME_MACHINE}-pc-os2-emx -	exit 0 ;; -    i*86:XTS-300:*:STOP) -	echo ${UNAME_MACHINE}-unknown-stop -	exit 0 ;; -    i*86:atheos:*:*) -	echo ${UNAME_MACHINE}-unknown-atheos -	exit 0 ;; -	i*86:syllable:*:*) -	echo ${UNAME_MACHINE}-pc-syllable -	exit 0 ;; -    i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.0*:*) -	echo i386-unknown-lynxos${UNAME_RELEASE} -	exit 0 ;; -    i*86:*DOS:*:*) -	echo ${UNAME_MACHINE}-pc-msdosdjgpp -	exit 0 ;; -    i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) -	UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` -	if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then -		echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} -	else -		echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} -	fi -	exit 0 ;; -    i*86:*:5:[78]*) -	case `/bin/uname -X | grep "^Machine"` in -	    *486*)	     UNAME_MACHINE=i486 ;; -	    *Pentium)	     UNAME_MACHINE=i586 ;; -	    *Pent*|*Celeron) UNAME_MACHINE=i686 ;; -	esac -	echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} -	exit 0 ;; -    i*86:*:3.2:*) -	if test -f /usr/options/cb.name; then -		UNAME_REL=`sed -n 's/.*Version //p' </usr/options/cb.name` -		echo ${UNAME_MACHINE}-pc-isc$UNAME_REL -	elif /bin/uname -X 2>/dev/null >/dev/null ; then -		UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` -		(/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 -		(/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ -			&& UNAME_MACHINE=i586 -		(/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \ -			&& UNAME_MACHINE=i686 -		(/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ -			&& UNAME_MACHINE=i686 -		echo ${UNAME_MACHINE}-pc-sco$UNAME_REL -	else -		echo ${UNAME_MACHINE}-pc-sysv32 -	fi -	exit 0 ;; -    pc:*:*:*) -	# Left here for compatibility: -        # uname -m prints for DJGPP always 'pc', but it prints nothing about -        # the processor, so we play safe by assuming i386. -	echo i386-pc-msdosdjgpp -        exit 0 ;; -    Intel:Mach:3*:*) -	echo i386-pc-mach3 -	exit 0 ;; -    paragon:*:*:*) -	echo i860-intel-osf1 -	exit 0 ;; -    i860:*:4.*:*) # i860-SVR4 -	if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then -	  echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 -	else # Add other i860-SVR4 vendors below as they are discovered. -	  echo i860-unknown-sysv${UNAME_RELEASE}  # Unknown i860-SVR4 -	fi -	exit 0 ;; -    mini*:CTIX:SYS*5:*) -	# "miniframe" -	echo m68010-convergent-sysv -	exit 0 ;; -    mc68k:UNIX:SYSTEM5:3.51m) -	echo m68k-convergent-sysv -	exit 0 ;; -    M680?0:D-NIX:5.3:*) -	echo m68k-diab-dnix -	exit 0 ;; -    M68*:*:R3V[5678]*:*) -	test -r /sysV68 && echo 'm68k-motorola-sysv' && exit 0 ;; -    3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) -	OS_REL='' -	test -r /etc/.relid \ -	&& OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` -	/bin/uname -p 2>/dev/null | grep 86 >/dev/null \ -	  && echo i486-ncr-sysv4.3${OS_REL} && exit 0 -	/bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ -	  && echo i586-ncr-sysv4.3${OS_REL} && exit 0 ;; -    3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) -        /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ -          && echo i486-ncr-sysv4 && exit 0 ;; -    m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) -	echo m68k-unknown-lynxos${UNAME_RELEASE} -	exit 0 ;; -    mc68030:UNIX_System_V:4.*:*) -	echo m68k-atari-sysv4 -	exit 0 ;; -    TSUNAMI:LynxOS:2.*:*) -	echo sparc-unknown-lynxos${UNAME_RELEASE} -	exit 0 ;; -    rs6000:LynxOS:2.*:*) -	echo rs6000-unknown-lynxos${UNAME_RELEASE} -	exit 0 ;; -    PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.0*:*) -	echo powerpc-unknown-lynxos${UNAME_RELEASE} -	exit 0 ;; -    SM[BE]S:UNIX_SV:*:*) -	echo mips-dde-sysv${UNAME_RELEASE} -	exit 0 ;; -    RM*:ReliantUNIX-*:*:*) -	echo mips-sni-sysv4 -	exit 0 ;; -    RM*:SINIX-*:*:*) -	echo mips-sni-sysv4 -	exit 0 ;; -    *:SINIX-*:*:*) -	if uname -p 2>/dev/null >/dev/null ; then -		UNAME_MACHINE=`(uname -p) 2>/dev/null` -		echo ${UNAME_MACHINE}-sni-sysv4 -	else -		echo ns32k-sni-sysv -	fi -	exit 0 ;; -    PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort -                      # says <Richard.M.Bartel@ccMail.Census.GOV> -        echo i586-unisys-sysv4 -        exit 0 ;; -    *:UNIX_System_V:4*:FTX*) -	# From Gerald Hewes <hewes@openmarket.com>. -	# How about differentiating between stratus architectures? -djm -	echo hppa1.1-stratus-sysv4 -	exit 0 ;; -    *:*:*:FTX*) -	# From seanf@swdc.stratus.com. -	echo i860-stratus-sysv4 -	exit 0 ;; -    i*86:VOS:*:*) -	# From Paul.Green@stratus.com. -	echo ${UNAME_MACHINE}-stratus-vos -	exit 0 ;; -    *:VOS:*:*) -	# From Paul.Green@stratus.com. -	echo hppa1.1-stratus-vos -	exit 0 ;; -    mc68*:A/UX:*:*) -	echo m68k-apple-aux${UNAME_RELEASE} -	exit 0 ;; -    news*:NEWS-OS:6*:*) -	echo mips-sony-newsos6 -	exit 0 ;; -    R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) -	if [ -d /usr/nec ]; then -	        echo mips-nec-sysv${UNAME_RELEASE} -	else -	        echo mips-unknown-sysv${UNAME_RELEASE} -	fi -        exit 0 ;; -    BeBox:BeOS:*:*)	# BeOS running on hardware made by Be, PPC only. -	echo powerpc-be-beos -	exit 0 ;; -    BeMac:BeOS:*:*)	# BeOS running on Mac or Mac clone, PPC only. -	echo powerpc-apple-beos -	exit 0 ;; -    BePC:BeOS:*:*)	# BeOS running on Intel PC compatible. -	echo i586-pc-beos -	exit 0 ;; -    SX-4:SUPER-UX:*:*) -	echo sx4-nec-superux${UNAME_RELEASE} -	exit 0 ;; -    SX-5:SUPER-UX:*:*) -	echo sx5-nec-superux${UNAME_RELEASE} -	exit 0 ;; -    SX-6:SUPER-UX:*:*) -	echo sx6-nec-superux${UNAME_RELEASE} -	exit 0 ;; -    Power*:Rhapsody:*:*) -	echo powerpc-apple-rhapsody${UNAME_RELEASE} -	exit 0 ;; -    *:Rhapsody:*:*) -	echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} -	exit 0 ;; -    *:Darwin:*:*) -	UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown -	case $UNAME_PROCESSOR in -	    *86) UNAME_PROCESSOR=i686 ;; -	    unknown) UNAME_PROCESSOR=powerpc ;; -	esac -	echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} -	exit 0 ;; -    *:procnto*:*:* | *:QNX:[0123456789]*:*) -	UNAME_PROCESSOR=`uname -p` -	if test "$UNAME_PROCESSOR" = "x86"; then -		UNAME_PROCESSOR=i386 -		UNAME_MACHINE=pc -	fi -	echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} -	exit 0 ;; -    *:QNX:*:4*) -	echo i386-pc-qnx -	exit 0 ;; -    NSE-?:NONSTOP_KERNEL:*:*) -	echo nse-tandem-nsk${UNAME_RELEASE} -	exit 0 ;; -    NSR-?:NONSTOP_KERNEL:*:*) -	echo nsr-tandem-nsk${UNAME_RELEASE} -	exit 0 ;; -    *:NonStop-UX:*:*) -	echo mips-compaq-nonstopux -	exit 0 ;; -    BS2000:POSIX*:*:*) -	echo bs2000-siemens-sysv -	exit 0 ;; -    DS/*:UNIX_System_V:*:*) -	echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} -	exit 0 ;; -    *:Plan9:*:*) -	# "uname -m" is not consistent, so use $cputype instead. 386 -	# is converted to i386 for consistency with other x86 -	# operating systems. -	if test "$cputype" = "386"; then -	    UNAME_MACHINE=i386 -	else -	    UNAME_MACHINE="$cputype" -	fi -	echo ${UNAME_MACHINE}-unknown-plan9 -	exit 0 ;; -    *:TOPS-10:*:*) -	echo pdp10-unknown-tops10 -	exit 0 ;; -    *:TENEX:*:*) -	echo pdp10-unknown-tenex -	exit 0 ;; -    KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) -	echo pdp10-dec-tops20 -	exit 0 ;; -    XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) -	echo pdp10-xkl-tops20 -	exit 0 ;; -    *:TOPS-20:*:*) -	echo pdp10-unknown-tops20 -	exit 0 ;; -    *:ITS:*:*) -	echo pdp10-unknown-its -	exit 0 ;; -    SEI:*:*:SEIUX) -        echo mips-sei-seiux${UNAME_RELEASE} -	exit 0 ;; -    *:DragonFly:*:*) -	echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` -	exit 0 ;; -    *:*VMS:*:*) -    	UNAME_MACHINE=`(uname -p) 2>/dev/null` -	case "${UNAME_MACHINE}" in -	    A*) echo alpha-dec-vms && exit 0 ;; -	    I*) echo ia64-dec-vms && exit 0 ;; -	    V*) echo vax-dec-vms && exit 0 ;; -	esac ;; -    *:XENIX:*:SysV) -	echo i386-pc-xenix -	exit 0 ;; -esac - -#echo '(No uname command or uname output not recognized.)' 1>&2 -#echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2 - -eval $set_cc_for_build -cat >$dummy.c <<EOF -#ifdef _SEQUENT_ -# include <sys/types.h> -# include <sys/utsname.h> -#endif -main () -{ -#if defined (sony) -#if defined (MIPSEB) -  /* BFD wants "bsd" instead of "newsos".  Perhaps BFD should be changed, -     I don't know....  */ -  printf ("mips-sony-bsd\n"); exit (0); -#else -#include <sys/param.h> -  printf ("m68k-sony-newsos%s\n", -#ifdef NEWSOS4 -          "4" -#else -	  "" -#endif -         ); exit (0); -#endif -#endif - -#if defined (__arm) && defined (__acorn) && defined (__unix) -  printf ("arm-acorn-riscix"); exit (0); -#endif - -#if defined (hp300) && !defined (hpux) -  printf ("m68k-hp-bsd\n"); exit (0); -#endif - -#if defined (NeXT) -#if !defined (__ARCHITECTURE__) -#define __ARCHITECTURE__ "m68k" -#endif -  int version; -  version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; -  if (version < 4) -    printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version); -  else -    printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version); -  exit (0); -#endif - -#if defined (MULTIMAX) || defined (n16) -#if defined (UMAXV) -  printf ("ns32k-encore-sysv\n"); exit (0); -#else -#if defined (CMU) -  printf ("ns32k-encore-mach\n"); exit (0); -#else -  printf ("ns32k-encore-bsd\n"); exit (0); -#endif -#endif -#endif - -#if defined (__386BSD__) -  printf ("i386-pc-bsd\n"); exit (0); -#endif - -#if defined (sequent) -#if defined (i386) -  printf ("i386-sequent-dynix\n"); exit (0); -#endif -#if defined (ns32000) -  printf ("ns32k-sequent-dynix\n"); exit (0); -#endif -#endif - -#if defined (_SEQUENT_) -    struct utsname un; - -    uname(&un); - -    if (strncmp(un.version, "V2", 2) == 0) { -	printf ("i386-sequent-ptx2\n"); exit (0); -    } -    if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ -	printf ("i386-sequent-ptx1\n"); exit (0); -    } -    printf ("i386-sequent-ptx\n"); exit (0); - -#endif - -#if defined (vax) -# if !defined (ultrix) -#  include <sys/param.h> -#  if defined (BSD) -#   if BSD == 43 -      printf ("vax-dec-bsd4.3\n"); exit (0); -#   else -#    if BSD == 199006 -      printf ("vax-dec-bsd4.3reno\n"); exit (0); -#    else -      printf ("vax-dec-bsd\n"); exit (0); -#    endif -#   endif -#  else -    printf ("vax-dec-bsd\n"); exit (0); -#  endif -# else -    printf ("vax-dec-ultrix\n"); exit (0); -# endif -#endif - -#if defined (alliant) && defined (i860) -  printf ("i860-alliant-bsd\n"); exit (0); -#endif - -  exit (1); -} -EOF - -$CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && $dummy && exit 0 - -# Apollos put the system type in the environment. - -test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit 0; } - -# Convex versions that predate uname can use getsysinfo(1) - -if [ -x /usr/convex/getsysinfo ] -then -    case `getsysinfo -f cpu_type` in -    c1*) -	echo c1-convex-bsd -	exit 0 ;; -    c2*) -	if getsysinfo -f scalar_acc -	then echo c32-convex-bsd -	else echo c2-convex-bsd -	fi -	exit 0 ;; -    c34*) -	echo c34-convex-bsd -	exit 0 ;; -    c38*) -	echo c38-convex-bsd -	exit 0 ;; -    c4*) -	echo c4-convex-bsd -	exit 0 ;; -    esac -fi - -cat >&2 <<EOF -$0: unable to guess system type - -This script, last modified $timestamp, has failed to recognize -the operating system you are using. It is advised that you -download the most up to date version of the config scripts from - -  http://savannah.gnu.org/cgi-bin/viewcvs/*checkout*/config/config/config.guess -and -  http://savannah.gnu.org/cgi-bin/viewcvs/*checkout*/config/config/config.sub - -If the version you run ($0) is already up to date, please -send the following data and any information you think might be -pertinent to <config-patches@gnu.org> in order to provide the needed -information to handle your system. - -config.guess timestamp = $timestamp - -uname -m = `(uname -m) 2>/dev/null || echo unknown` -uname -r = `(uname -r) 2>/dev/null || echo unknown` -uname -s = `(uname -s) 2>/dev/null || echo unknown` -uname -v = `(uname -v) 2>/dev/null || echo unknown` - -/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` -/bin/uname -X     = `(/bin/uname -X) 2>/dev/null` - -hostinfo               = `(hostinfo) 2>/dev/null` -/bin/universe          = `(/bin/universe) 2>/dev/null` -/usr/bin/arch -k       = `(/usr/bin/arch -k) 2>/dev/null` -/bin/arch              = `(/bin/arch) 2>/dev/null` -/usr/bin/oslevel       = `(/usr/bin/oslevel) 2>/dev/null` -/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` - -UNAME_MACHINE = ${UNAME_MACHINE} -UNAME_RELEASE = ${UNAME_RELEASE} -UNAME_SYSTEM  = ${UNAME_SYSTEM} -UNAME_VERSION = ${UNAME_VERSION} -EOF - -exit 1 - -# Local variables: -# eval: (add-hook 'write-file-hooks 'time-stamp) -# time-stamp-start: "timestamp='" -# time-stamp-format: "%:y-%02m-%02d" -# time-stamp-end: "'" -# End: diff --git a/config.mk b/config.mk new file mode 100644 index 0000000..030254a --- /dev/null +++ b/config.mk @@ -0,0 +1,42 @@ +# Package name and version +package = feh +version = 1.4.1 + +# Prefix for all installed files +prefix = /usr/local + +# Directories for manuals, executables, docs, data, etc. +man_dir = $(prefix)/share/man +bin_dir = $(prefix)/bin +doc_dir = $(prefix)/share/doc +image_dir = $(prefix)/share/feh/images +font_dir = $(prefix)/share/feh/fonts + +# debug = 1 if you want debug mode +debug = + +# default CFLAGS +CFLAGS = -g -Wall -Wextra -O2 + +# Comment these out if you don't have libxinerama +xinerama = -DHAVE_LIBXINERAMA +xinerama_ld = -lXinerama + +# Put extra header directories here +extra_headers = + +# Put extra include (-Lfoo) directories here +extra_libs = + +dmalloc = -DWITH_DMALLOC +# Enable this to use dmalloc +#CFLAGS += $(dmalloc) + + +# You should not need to change anything below this line. + +CFLAGS += $(extra_headers) $(xinerama) -DPREFIX=\"$(prefix)\" \ +	-DPACKAGE=\"$(package)\" -DVERSION=\"$(version)\" $(debug) + +LDFLAGS = -lz -lpng -lX11 -lImlib2 -lfreetype -lXext -ldl -lm -lgiblib \ +	$(xinerama_ld) $(extra_includes) diff --git a/config.sub b/config.sub deleted file mode 100755 index 87a1ee4..0000000 --- a/config.sub +++ /dev/null @@ -1,1569 +0,0 @@ -#! /bin/sh -# Configuration validation subroutine script. -#   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -#   2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. - -timestamp='2005-04-22' - -# This file is (in principle) common to ALL GNU software. -# The presence of a machine in this file suggests that SOME GNU software -# can handle that machine.  It does not imply ALL GNU software can. -# -# This file is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, -# Boston, MA 02111-1307, USA. - -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program that contains a -# configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. - -# Please send patches to <config-patches@gnu.org>.  Submit a context -# diff and a properly formatted ChangeLog entry. -# -# Configuration subroutine to validate and canonicalize a configuration type. -# Supply the specified configuration type as an argument. -# If it is invalid, we print an error message on stderr and exit with code 1. -# Otherwise, we print the canonical config type on stdout and succeed. - -# This file is supposed to be the same for all GNU packages -# and recognize all the CPU types, system types and aliases -# that are meaningful with *any* GNU software. -# Each package is responsible for reporting which valid configurations -# it does not support.  The user should be able to distinguish -# a failure to support a valid configuration from a meaningless -# configuration. - -# The goal of this file is to map all the various variations of a given -# machine specification into a single specification in the form: -#	CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM -# or in some cases, the newer four-part form: -#	CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM -# It is wrong to echo any other type of specification. - -me=`echo "$0" | sed -e 's,.*/,,'` - -usage="\ -Usage: $0 [OPTION] CPU-MFR-OPSYS -       $0 [OPTION] ALIAS - -Canonicalize a configuration name. - -Operation modes: -  -h, --help         print this help, then exit -  -t, --time-stamp   print date of last modification, then exit -  -v, --version      print version number, then exit - -Report bugs and patches to <config-patches@gnu.org>." - -version="\ -GNU config.sub ($timestamp) - -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 -Free Software Foundation, Inc. - -This is free software; see the source for copying conditions.  There is NO -warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." - -help=" -Try \`$me --help' for more information." - -# Parse command line -while test $# -gt 0 ; do -  case $1 in -    --time-stamp | --time* | -t ) -       echo "$timestamp" ; exit 0 ;; -    --version | -v ) -       echo "$version" ; exit 0 ;; -    --help | --h* | -h ) -       echo "$usage"; exit 0 ;; -    -- )     # Stop option processing -       shift; break ;; -    - )	# Use stdin as input. -       break ;; -    -* ) -       echo "$me: invalid option $1$help" -       exit 1 ;; - -    *local*) -       # First pass through any local machine types. -       echo $1 -       exit 0;; - -    * ) -       break ;; -  esac -done - -case $# in - 0) echo "$me: missing argument$help" >&2 -    exit 1;; - 1) ;; - *) echo "$me: too many arguments$help" >&2 -    exit 1;; -esac - -# Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). -# Here we must recognize all the valid KERNEL-OS combinations. -maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` -case $maybe_os in -  nto-qnx* | linux-gnu* | linux-dietlibc | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | \ -  kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | storm-chaos* | os2-emx* | rtmk-nova*) -    os=-$maybe_os -    basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` -    ;; -  *) -    basic_machine=`echo $1 | sed 's/-[^-]*$//'` -    if [ $basic_machine != $1 ] -    then os=`echo $1 | sed 's/.*-/-/'` -    else os=; fi -    ;; -esac - -### Let's recognize common machines as not being operating systems so -### that things like config.sub decstation-3100 work.  We also -### recognize some manufacturers as not being operating systems, so we -### can provide default operating systems below. -case $os in -	-sun*os*) -		# Prevent following clause from handling this invalid input. -		;; -	-dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ -	-att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ -	-unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ -	-convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ -	-c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ -	-harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ -	-apple | -axis | -knuth | -cray) -		os= -		basic_machine=$1 -		;; -	-sim | -cisco | -oki | -wec | -winbond) -		os= -		basic_machine=$1 -		;; -	-scout) -		;; -	-wrs) -		os=-vxworks -		basic_machine=$1 -		;; -	-chorusos*) -		os=-chorusos -		basic_machine=$1 -		;; - 	-chorusrdb) - 		os=-chorusrdb -		basic_machine=$1 - 		;; -	-hiux*) -		os=-hiuxwe2 -		;; -	-sco5) -		os=-sco3.2v5 -		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` -		;; -	-sco4) -		os=-sco3.2v4 -		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` -		;; -	-sco3.2.[4-9]*) -		os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` -		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` -		;; -	-sco3.2v[4-9]*) -		# Don't forget version if it is 3.2v4 or newer. -		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` -		;; -	-sco*) -		os=-sco3.2v2 -		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` -		;; -	-udk*) -		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` -		;; -	-isc) -		os=-isc2.2 -		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` -		;; -	-clix*) -		basic_machine=clipper-intergraph -		;; -	-isc*) -		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` -		;; -	-lynx*) -		os=-lynxos -		;; -	-ptx*) -		basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` -		;; -	-windowsnt*) -		os=`echo $os | sed -e 's/windowsnt/winnt/'` -		;; -	-psos*) -		os=-psos -		;; -	-mint | -mint[0-9]*) -		basic_machine=m68k-atari -		os=-mint -		;; -esac - -# Decode aliases for certain CPU-COMPANY combinations. -case $basic_machine in -	# Recognize the basic CPU types without company name. -	# Some are omitted here because they have special meanings below. -	1750a | 580 \ -	| a29k \ -	| alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ -	| alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ -	| am33_2.0 \ -	| arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr \ -	| bfin \ -	| c4x | clipper \ -	| d10v | d30v | dlx | dsp16xx \ -	| fr30 | frv \ -	| h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ -	| i370 | i860 | i960 | ia64 \ -	| ip2k | iq2000 \ -	| m32r | m32rle | m68000 | m68k | m88k | maxq | mcore \ -	| mips | mipsbe | mipseb | mipsel | mipsle \ -	| mips16 \ -	| mips64 | mips64el \ -	| mips64vr | mips64vrel \ -	| mips64orion | mips64orionel \ -	| mips64vr4100 | mips64vr4100el \ -	| mips64vr4300 | mips64vr4300el \ -	| mips64vr5000 | mips64vr5000el \ -	| mipsisa32 | mipsisa32el \ -	| mipsisa32r2 | mipsisa32r2el \ -	| mipsisa64 | mipsisa64el \ -	| mipsisa64r2 | mipsisa64r2el \ -	| mipsisa64sb1 | mipsisa64sb1el \ -	| mipsisa64sr71k | mipsisa64sr71kel \ -	| mipstx39 | mipstx39el \ -	| mn10200 | mn10300 \ -	| msp430 \ -	| ns16k | ns32k \ -	| openrisc | or32 \ -	| pdp10 | pdp11 | pj | pjl \ -	| powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ -	| pyramid \ -	| sh | sh[1234] | sh[23]e | sh[34]eb | shbe | shle | sh[1234]le | sh3ele \ -	| sh64 | sh64le \ -	| sparc | sparc64 | sparc64b | sparc86x | sparclet | sparclite \ -	| sparcv8 | sparcv9 | sparcv9b \ -	| strongarm \ -	| tahoe | thumb | tic4x | tic80 | tron \ -	| v850 | v850e \ -	| we32k \ -	| x86 | xscale | xscalee[bl] | xstormy16 | xtensa \ -	| z8k) -		basic_machine=$basic_machine-unknown -		;; -	m6811 | m68hc11 | m6812 | m68hc12) -		# Motorola 68HC11/12. -		basic_machine=$basic_machine-unknown -		os=-none -		;; -	m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) -		;; - -	# We use `pc' rather than `unknown' -	# because (1) that's what they normally are, and -	# (2) the word "unknown" tends to confuse beginning users. -	i*86 | x86_64) -	  basic_machine=$basic_machine-pc -	  ;; -	# Object if more than one company name word. -	*-*-*) -		echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 -		exit 1 -		;; -	# Recognize the basic CPU types with company name. -	580-* \ -	| a29k-* \ -	| alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ -	| alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ -	| alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ -	| arm-*  | armbe-* | armle-* | armeb-* | armv*-* \ -	| avr-* \ -	| bfin-* | bs2000-* \ -	| c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \ -	| clipper-* | craynv-* | cydra-* \ -	| d10v-* | d30v-* | dlx-* \ -	| elxsi-* \ -	| f30[01]-* | f700-* | fr30-* | frv-* | fx80-* \ -	| h8300-* | h8500-* \ -	| hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ -	| i*86-* | i860-* | i960-* | ia64-* \ -	| ip2k-* | iq2000-* \ -	| m32r-* | m32rle-* \ -	| m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ -	| m88110-* | m88k-* | maxq-* | mcore-* \ -	| mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ -	| mips16-* \ -	| mips64-* | mips64el-* \ -	| mips64vr-* | mips64vrel-* \ -	| mips64orion-* | mips64orionel-* \ -	| mips64vr4100-* | mips64vr4100el-* \ -	| mips64vr4300-* | mips64vr4300el-* \ -	| mips64vr5000-* | mips64vr5000el-* \ -	| mipsisa32-* | mipsisa32el-* \ -	| mipsisa32r2-* | mipsisa32r2el-* \ -	| mipsisa64-* | mipsisa64el-* \ -	| mipsisa64r2-* | mipsisa64r2el-* \ -	| mipsisa64sb1-* | mipsisa64sb1el-* \ -	| mipsisa64sr71k-* | mipsisa64sr71kel-* \ -	| mipstx39-* | mipstx39el-* \ -	| mmix-* \ -	| msp430-* \ -	| none-* | np1-* | ns16k-* | ns32k-* \ -	| orion-* \ -	| pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ -	| powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ -	| pyramid-* \ -	| romp-* | rs6000-* \ -	| sh-* | sh[1234]-* | sh[23]e-* | sh[34]eb-* | shbe-* \ -	| shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ -	| sparc-* | sparc64-* | sparc64b-* | sparc86x-* | sparclet-* \ -	| sparclite-* \ -	| sparcv8-* | sparcv9-* | sparcv9b-* | strongarm-* | sv1-* | sx?-* \ -	| tahoe-* | thumb-* \ -	| tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ -	| tron-* \ -	| v850-* | v850e-* | vax-* \ -	| we32k-* \ -	| x86-* | x86_64-* | xps100-* | xscale-* | xscalee[bl]-* \ -	| xstormy16-* | xtensa-* \ -	| ymp-* \ -	| z8k-*) -		;; -	# Recognize the various machine names and aliases which stand -	# for a CPU type and a company and sometimes even an OS. -	386bsd) -		basic_machine=i386-unknown -		os=-bsd -		;; -	3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) -		basic_machine=m68000-att -		;; -	3b*) -		basic_machine=we32k-att -		;; -	a29khif) -		basic_machine=a29k-amd -		os=-udi -		;; -    	abacus) -		basic_machine=abacus-unknown -		;; -	adobe68k) -		basic_machine=m68010-adobe -		os=-scout -		;; -	alliant | fx80) -		basic_machine=fx80-alliant -		;; -	altos | altos3068) -		basic_machine=m68k-altos -		;; -	am29k) -		basic_machine=a29k-none -		os=-bsd -		;; -	amd64) -		basic_machine=x86_64-pc -		;; -	amd64-*) -		basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` -		;; -	amdahl) -		basic_machine=580-amdahl -		os=-sysv -		;; -	amiga | amiga-*) -		basic_machine=m68k-unknown -		;; -	amigaos | amigados) -		basic_machine=m68k-unknown -		os=-amigaos -		;; -	amigaunix | amix) -		basic_machine=m68k-unknown -		os=-sysv4 -		;; -	apollo68) -		basic_machine=m68k-apollo -		os=-sysv -		;; -	apollo68bsd) -		basic_machine=m68k-apollo -		os=-bsd -		;; -	aux) -		basic_machine=m68k-apple -		os=-aux -		;; -	balance) -		basic_machine=ns32k-sequent -		os=-dynix -		;; -	c90) -		basic_machine=c90-cray -		os=-unicos -		;; -	convex-c1) -		basic_machine=c1-convex -		os=-bsd -		;; -	convex-c2) -		basic_machine=c2-convex -		os=-bsd -		;; -	convex-c32) -		basic_machine=c32-convex -		os=-bsd -		;; -	convex-c34) -		basic_machine=c34-convex -		os=-bsd -		;; -	convex-c38) -		basic_machine=c38-convex -		os=-bsd -		;; -	cray | j90) -		basic_machine=j90-cray -		os=-unicos -		;; -	craynv) -		basic_machine=craynv-cray -		os=-unicosmp -		;; -	cr16c) -		basic_machine=cr16c-unknown -		os=-elf -		;; -	crds | unos) -		basic_machine=m68k-crds -		;; -	crisv32 | crisv32-* | etraxfs*) -		basic_machine=crisv32-axis -		;; -	cris | cris-* | etrax*) -		basic_machine=cris-axis -		;; -	crx) -		basic_machine=crx-unknown -		os=-elf -		;; -	da30 | da30-*) -		basic_machine=m68k-da30 -		;; -	decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) -		basic_machine=mips-dec -		;; -	decsystem10* | dec10*) -		basic_machine=pdp10-dec -		os=-tops10 -		;; -	decsystem20* | dec20*) -		basic_machine=pdp10-dec -		os=-tops20 -		;; -	delta | 3300 | motorola-3300 | motorola-delta \ -	      | 3300-motorola | delta-motorola) -		basic_machine=m68k-motorola -		;; -	delta88) -		basic_machine=m88k-motorola -		os=-sysv3 -		;; -	djgpp) -		basic_machine=i586-pc -		os=-msdosdjgpp -		;; -	dpx20 | dpx20-*) -		basic_machine=rs6000-bull -		os=-bosx -		;; -	dpx2* | dpx2*-bull) -		basic_machine=m68k-bull -		os=-sysv3 -		;; -	ebmon29k) -		basic_machine=a29k-amd -		os=-ebmon -		;; -	elxsi) -		basic_machine=elxsi-elxsi -		os=-bsd -		;; -	encore | umax | mmax) -		basic_machine=ns32k-encore -		;; -	es1800 | OSE68k | ose68k | ose | OSE) -		basic_machine=m68k-ericsson -		os=-ose -		;; -	fx2800) -		basic_machine=i860-alliant -		;; -	genix) -		basic_machine=ns32k-ns -		;; -	gmicro) -		basic_machine=tron-gmicro -		os=-sysv -		;; -	go32) -		basic_machine=i386-pc -		os=-go32 -		;; -	h3050r* | hiux*) -		basic_machine=hppa1.1-hitachi -		os=-hiuxwe2 -		;; -	h8300hms) -		basic_machine=h8300-hitachi -		os=-hms -		;; -	h8300xray) -		basic_machine=h8300-hitachi -		os=-xray -		;; -	h8500hms) -		basic_machine=h8500-hitachi -		os=-hms -		;; -	harris) -		basic_machine=m88k-harris -		os=-sysv3 -		;; -	hp300-*) -		basic_machine=m68k-hp -		;; -	hp300bsd) -		basic_machine=m68k-hp -		os=-bsd -		;; -	hp300hpux) -		basic_machine=m68k-hp -		os=-hpux -		;; -	hp3k9[0-9][0-9] | hp9[0-9][0-9]) -		basic_machine=hppa1.0-hp -		;; -	hp9k2[0-9][0-9] | hp9k31[0-9]) -		basic_machine=m68000-hp -		;; -	hp9k3[2-9][0-9]) -		basic_machine=m68k-hp -		;; -	hp9k6[0-9][0-9] | hp6[0-9][0-9]) -		basic_machine=hppa1.0-hp -		;; -	hp9k7[0-79][0-9] | hp7[0-79][0-9]) -		basic_machine=hppa1.1-hp -		;; -	hp9k78[0-9] | hp78[0-9]) -		# FIXME: really hppa2.0-hp -		basic_machine=hppa1.1-hp -		;; -	hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) -		# FIXME: really hppa2.0-hp -		basic_machine=hppa1.1-hp -		;; -	hp9k8[0-9][13679] | hp8[0-9][13679]) -		basic_machine=hppa1.1-hp -		;; -	hp9k8[0-9][0-9] | hp8[0-9][0-9]) -		basic_machine=hppa1.0-hp -		;; -	hppa-next) -		os=-nextstep3 -		;; -	hppaosf) -		basic_machine=hppa1.1-hp -		os=-osf -		;; -	hppro) -		basic_machine=hppa1.1-hp -		os=-proelf -		;; -	i370-ibm* | ibm*) -		basic_machine=i370-ibm -		;; -# I'm not sure what "Sysv32" means.  Should this be sysv3.2? -	i*86v32) -		basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` -		os=-sysv32 -		;; -	i*86v4*) -		basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` -		os=-sysv4 -		;; -	i*86v) -		basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` -		os=-sysv -		;; -	i*86sol2) -		basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` -		os=-solaris2 -		;; -	i386mach) -		basic_machine=i386-mach -		os=-mach -		;; -	i386-vsta | vsta) -		basic_machine=i386-unknown -		os=-vsta -		;; -	iris | iris4d) -		basic_machine=mips-sgi -		case $os in -		    -irix*) -			;; -		    *) -			os=-irix4 -			;; -		esac -		;; -	isi68 | isi) -		basic_machine=m68k-isi -		os=-sysv -		;; -	m88k-omron*) -		basic_machine=m88k-omron -		;; -	magnum | m3230) -		basic_machine=mips-mips -		os=-sysv -		;; -	merlin) -		basic_machine=ns32k-utek -		os=-sysv -		;; -	mingw32) -		basic_machine=i386-pc -		os=-mingw32 -		;; -	miniframe) -		basic_machine=m68000-convergent -		;; -	*mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) -		basic_machine=m68k-atari -		os=-mint -		;; -	mips3*-*) -		basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` -		;; -	mips3*) -		basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown -		;; -	monitor) -		basic_machine=m68k-rom68k -		os=-coff -		;; -	morphos) -		basic_machine=powerpc-unknown -		os=-morphos -		;; -	msdos) -		basic_machine=i386-pc -		os=-msdos -		;; -	mvs) -		basic_machine=i370-ibm -		os=-mvs -		;; -	ncr3000) -		basic_machine=i486-ncr -		os=-sysv4 -		;; -	netbsd386) -		basic_machine=i386-unknown -		os=-netbsd -		;; -	netwinder) -		basic_machine=armv4l-rebel -		os=-linux -		;; -	news | news700 | news800 | news900) -		basic_machine=m68k-sony -		os=-newsos -		;; -	news1000) -		basic_machine=m68030-sony -		os=-newsos -		;; -	news-3600 | risc-news) -		basic_machine=mips-sony -		os=-newsos -		;; -	necv70) -		basic_machine=v70-nec -		os=-sysv -		;; -	next | m*-next ) -		basic_machine=m68k-next -		case $os in -		    -nextstep* ) -			;; -		    -ns2*) -		      os=-nextstep2 -			;; -		    *) -		      os=-nextstep3 -			;; -		esac -		;; -	nh3000) -		basic_machine=m68k-harris -		os=-cxux -		;; -	nh[45]000) -		basic_machine=m88k-harris -		os=-cxux -		;; -	nindy960) -		basic_machine=i960-intel -		os=-nindy -		;; -	mon960) -		basic_machine=i960-intel -		os=-mon960 -		;; -	nonstopux) -		basic_machine=mips-compaq -		os=-nonstopux -		;; -	np1) -		basic_machine=np1-gould -		;; -	nsr-tandem) -		basic_machine=nsr-tandem -		;; -	op50n-* | op60c-*) -		basic_machine=hppa1.1-oki -		os=-proelf -		;; -	or32 | or32-*) -		basic_machine=or32-unknown -		os=-coff -		;; -	os400) -		basic_machine=powerpc-ibm -		os=-os400 -		;; -	OSE68000 | ose68000) -		basic_machine=m68000-ericsson -		os=-ose -		;; -	os68k) -		basic_machine=m68k-none -		os=-os68k -		;; -	pa-hitachi) -		basic_machine=hppa1.1-hitachi -		os=-hiuxwe2 -		;; -	paragon) -		basic_machine=i860-intel -		os=-osf -		;; -	pbd) -		basic_machine=sparc-tti -		;; -	pbb) -		basic_machine=m68k-tti -		;; -	pc532 | pc532-*) -		basic_machine=ns32k-pc532 -		;; -	pentium | p5 | k5 | k6 | nexgen | viac3) -		basic_machine=i586-pc -		;; -	pentiumpro | p6 | 6x86 | athlon | athlon_*) -		basic_machine=i686-pc -		;; -	pentiumii | pentium2 | pentiumiii | pentium3) -		basic_machine=i686-pc -		;; -	pentium4) -		basic_machine=i786-pc -		;; -	pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) -		basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` -		;; -	pentiumpro-* | p6-* | 6x86-* | athlon-*) -		basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` -		;; -	pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) -		basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` -		;; -	pentium4-*) -		basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` -		;; -	pn) -		basic_machine=pn-gould -		;; -	power)	basic_machine=power-ibm -		;; -	ppc)	basic_machine=powerpc-unknown -		;; -	ppc-*)	basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` -		;; -	ppcle | powerpclittle | ppc-le | powerpc-little) -		basic_machine=powerpcle-unknown -		;; -	ppcle-* | powerpclittle-*) -		basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` -		;; -	ppc64)	basic_machine=powerpc64-unknown -		;; -	ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` -		;; -	ppc64le | powerpc64little | ppc64-le | powerpc64-little) -		basic_machine=powerpc64le-unknown -		;; -	ppc64le-* | powerpc64little-*) -		basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` -		;; -	ps2) -		basic_machine=i386-ibm -		;; -	pw32) -		basic_machine=i586-unknown -		os=-pw32 -		;; -	rom68k) -		basic_machine=m68k-rom68k -		os=-coff -		;; -	rm[46]00) -		basic_machine=mips-siemens -		;; -	rtpc | rtpc-*) -		basic_machine=romp-ibm -		;; -	s390 | s390-*) -		basic_machine=s390-ibm -		;; -	s390x | s390x-*) -		basic_machine=s390x-ibm -		;; -	sa29200) -		basic_machine=a29k-amd -		os=-udi -		;; -	sb1) -		basic_machine=mipsisa64sb1-unknown -		;; -	sb1el) -		basic_machine=mipsisa64sb1el-unknown -		;; -	sei) -		basic_machine=mips-sei -		os=-seiux -		;; -	sequent) -		basic_machine=i386-sequent -		;; -	sh) -		basic_machine=sh-hitachi -		os=-hms -		;; -	sh64) -		basic_machine=sh64-unknown -		;; -	sparclite-wrs | simso-wrs) -		basic_machine=sparclite-wrs -		os=-vxworks -		;; -	sps7) -		basic_machine=m68k-bull -		os=-sysv2 -		;; -	spur) -		basic_machine=spur-unknown -		;; -	st2000) -		basic_machine=m68k-tandem -		;; -	stratus) -		basic_machine=i860-stratus -		os=-sysv4 -		;; -	sun2) -		basic_machine=m68000-sun -		;; -	sun2os3) -		basic_machine=m68000-sun -		os=-sunos3 -		;; -	sun2os4) -		basic_machine=m68000-sun -		os=-sunos4 -		;; -	sun3os3) -		basic_machine=m68k-sun -		os=-sunos3 -		;; -	sun3os4) -		basic_machine=m68k-sun -		os=-sunos4 -		;; -	sun4os3) -		basic_machine=sparc-sun -		os=-sunos3 -		;; -	sun4os4) -		basic_machine=sparc-sun -		os=-sunos4 -		;; -	sun4sol2) -		basic_machine=sparc-sun -		os=-solaris2 -		;; -	sun3 | sun3-*) -		basic_machine=m68k-sun -		;; -	sun4) -		basic_machine=sparc-sun -		;; -	sun386 | sun386i | roadrunner) -		basic_machine=i386-sun -		;; -	sv1) -		basic_machine=sv1-cray -		os=-unicos -		;; -	symmetry) -		basic_machine=i386-sequent -		os=-dynix -		;; -	t3e) -		basic_machine=alphaev5-cray -		os=-unicos -		;; -	t90) -		basic_machine=t90-cray -		os=-unicos -		;; -	tic54x | c54x*) -		basic_machine=tic54x-unknown -		os=-coff -		;; -	tic55x | c55x*) -		basic_machine=tic55x-unknown -		os=-coff -		;; -	tic6x | c6x*) -		basic_machine=tic6x-unknown -		os=-coff -		;; -	tx39) -		basic_machine=mipstx39-unknown -		;; -	tx39el) -		basic_machine=mipstx39el-unknown -		;; -	toad1) -		basic_machine=pdp10-xkl -		os=-tops20 -		;; -	tower | tower-32) -		basic_machine=m68k-ncr -		;; -	tpf) -		basic_machine=s390x-ibm -		os=-tpf -		;; -	udi29k) -		basic_machine=a29k-amd -		os=-udi -		;; -	ultra3) -		basic_machine=a29k-nyu -		os=-sym1 -		;; -	v810 | necv810) -		basic_machine=v810-nec -		os=-none -		;; -	vaxv) -		basic_machine=vax-dec -		os=-sysv -		;; -	vms) -		basic_machine=vax-dec -		os=-vms -		;; -	vpp*|vx|vx-*) -		basic_machine=f301-fujitsu -		;; -	vxworks960) -		basic_machine=i960-wrs -		os=-vxworks -		;; -	vxworks68) -		basic_machine=m68k-wrs -		os=-vxworks -		;; -	vxworks29k) -		basic_machine=a29k-wrs -		os=-vxworks -		;; -	w65*) -		basic_machine=w65-wdc -		os=-none -		;; -	w89k-*) -		basic_machine=hppa1.1-winbond -		os=-proelf -		;; -	xbox) -		basic_machine=i686-pc -		os=-mingw32 -		;; -	xps | xps100) -		basic_machine=xps100-honeywell -		;; -	ymp) -		basic_machine=ymp-cray -		os=-unicos -		;; -	z8k-*-coff) -		basic_machine=z8k-unknown -		os=-sim -		;; -	none) -		basic_machine=none-none -		os=-none -		;; - -# Here we handle the default manufacturer of certain CPU types.  It is in -# some cases the only manufacturer, in others, it is the most popular. -	w89k) -		basic_machine=hppa1.1-winbond -		;; -	op50n) -		basic_machine=hppa1.1-oki -		;; -	op60c) -		basic_machine=hppa1.1-oki -		;; -	romp) -		basic_machine=romp-ibm -		;; -	mmix) -		basic_machine=mmix-knuth -		;; -	rs6000) -		basic_machine=rs6000-ibm -		;; -	vax) -		basic_machine=vax-dec -		;; -	pdp10) -		# there are many clones, so DEC is not a safe bet -		basic_machine=pdp10-unknown -		;; -	pdp11) -		basic_machine=pdp11-dec -		;; -	we32k) -		basic_machine=we32k-att -		;; -	sh3 | sh4 | sh[34]eb | sh[1234]le | sh[23]ele) -		basic_machine=sh-unknown -		;; -	sh64) -		basic_machine=sh64-unknown -		;; -	sparc | sparcv8 | sparcv9 | sparcv9b) -		basic_machine=sparc-sun -		;; -	cydra) -		basic_machine=cydra-cydrome -		;; -	orion) -		basic_machine=orion-highlevel -		;; -	orion105) -		basic_machine=clipper-highlevel -		;; -	mac | mpw | mac-mpw) -		basic_machine=m68k-apple -		;; -	pmac | pmac-mpw) -		basic_machine=powerpc-apple -		;; -	*-unknown) -		# Make sure to match an already-canonicalized machine name. -		;; -	*) -		echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 -		exit 1 -		;; -esac - -# Here we canonicalize certain aliases for manufacturers. -case $basic_machine in -	*-digital*) -		basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` -		;; -	*-commodore*) -		basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` -		;; -	*) -		;; -esac - -# Decode manufacturer-specific aliases for certain operating systems. - -if [ x"$os" != x"" ] -then -case $os in -        # First match some system type aliases -        # that might get confused with valid system types. -	# -solaris* is a basic system type, with this one exception. -	-solaris1 | -solaris1.*) -		os=`echo $os | sed -e 's|solaris1|sunos4|'` -		;; -	-solaris) -		os=-solaris2 -		;; -	-svr4*) -		os=-sysv4 -		;; -	-unixware*) -		os=-sysv4.2uw -		;; -	-gnu/linux*) -		os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` -		;; -	# First accept the basic system types. -	# The portable systems comes first. -	# Each alternative MUST END IN A *, to match a version number. -	# -sysv* is not here because it comes later, after sysvr4. -	-gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ -	      | -*vms* | -sco* | -esix* | -isc* | -aix* | -sunos | -sunos[34]*\ -	      | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \ -	      | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ -	      | -aos* \ -	      | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ -	      | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ -	      | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* | -openbsd* \ -	      | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ -	      | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ -	      | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ -	      | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ -	      | -chorusos* | -chorusrdb* \ -	      | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ -	      | -mingw32* | -linux-gnu* | -linux-uclibc* | -uxpv* | -beos* | -mpeix* | -udk* \ -	      | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ -	      | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ -	      | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ -	      | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ -	      | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ -	      | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly*) -	# Remember, each alternative MUST END IN *, to match a version number. -		;; -	-qnx*) -		case $basic_machine in -		    x86-* | i*86-*) -			;; -		    *) -			os=-nto$os -			;; -		esac -		;; -	-nto-qnx*) -		;; -	-nto*) -		os=`echo $os | sed -e 's|nto|nto-qnx|'` -		;; -	-sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ -	      | -windows* | -osx | -abug | -netware* | -os9* | -beos* \ -	      | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) -		;; -	-mac*) -		os=`echo $os | sed -e 's|mac|macos|'` -		;; -	-linux-dietlibc) -		os=-linux-dietlibc -		;; -	-linux*) -		os=`echo $os | sed -e 's|linux|linux-gnu|'` -		;; -	-sunos5*) -		os=`echo $os | sed -e 's|sunos5|solaris2|'` -		;; -	-sunos6*) -		os=`echo $os | sed -e 's|sunos6|solaris3|'` -		;; -	-opened*) -		os=-openedition -		;; -        -os400*) -		os=-os400 -		;; -	-wince*) -		os=-wince -		;; -	-osfrose*) -		os=-osfrose -		;; -	-osf*) -		os=-osf -		;; -	-utek*) -		os=-bsd -		;; -	-dynix*) -		os=-bsd -		;; -	-acis*) -		os=-aos -		;; -	-atheos*) -		os=-atheos -		;; -	-syllable*) -		os=-syllable -		;; -	-386bsd) -		os=-bsd -		;; -	-ctix* | -uts*) -		os=-sysv -		;; -	-nova*) -		os=-rtmk-nova -		;; -	-ns2 ) -		os=-nextstep2 -		;; -	-nsk*) -		os=-nsk -		;; -	# Preserve the version number of sinix5. -	-sinix5.*) -		os=`echo $os | sed -e 's|sinix|sysv|'` -		;; -	-sinix*) -		os=-sysv4 -		;; -        -tpf*) -		os=-tpf -		;; -	-triton*) -		os=-sysv3 -		;; -	-oss*) -		os=-sysv3 -		;; -	-svr4) -		os=-sysv4 -		;; -	-svr3) -		os=-sysv3 -		;; -	-sysvr4) -		os=-sysv4 -		;; -	# This must come after -sysvr4. -	-sysv*) -		;; -	-ose*) -		os=-ose -		;; -	-es1800*) -		os=-ose -		;; -	-xenix) -		os=-xenix -		;; -	-*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) -		os=-mint -		;; -	-aros*) -		os=-aros -		;; -	-kaos*) -		os=-kaos -		;; -	-zvmoe) -		os=-zvmoe -		;; -	-none) -		;; -	*) -		# Get rid of the `-' at the beginning of $os. -		os=`echo $os | sed 's/[^-]*-//'` -		echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 -		exit 1 -		;; -esac -else - -# Here we handle the default operating systems that come with various machines. -# The value should be what the vendor currently ships out the door with their -# machine or put another way, the most popular os provided with the machine. - -# Note that if you're going to try to match "-MANUFACTURER" here (say, -# "-sun"), then you have to tell the case statement up towards the top -# that MANUFACTURER isn't an operating system.  Otherwise, code above -# will signal an error saying that MANUFACTURER isn't an operating -# system, and we'll never get to this point. - -case $basic_machine in -	*-acorn) -		os=-riscix1.2 -		;; -	arm*-rebel) -		os=-linux -		;; -	arm*-semi) -		os=-aout -		;; -    c4x-* | tic4x-*) -        os=-coff -        ;; -	# This must come before the *-dec entry. -	pdp10-*) -		os=-tops20 -		;; -	pdp11-*) -		os=-none -		;; -	*-dec | vax-*) -		os=-ultrix4.2 -		;; -	m68*-apollo) -		os=-domain -		;; -	i386-sun) -		os=-sunos4.0.2 -		;; -	m68000-sun) -		os=-sunos3 -		# This also exists in the configure program, but was not the -		# default. -		# os=-sunos4 -		;; -	m68*-cisco) -		os=-aout -		;; -	mips*-cisco) -		os=-elf -		;; -	mips*-*) -		os=-elf -		;; -	or32-*) -		os=-coff -		;; -	*-tti)	# must be before sparc entry or we get the wrong os. -		os=-sysv3 -		;; -	sparc-* | *-sun) -		os=-sunos4.1.1 -		;; -	*-be) -		os=-beos -		;; -	*-ibm) -		os=-aix -		;; -    	*-knuth) -		os=-mmixware -		;; -	*-wec) -		os=-proelf -		;; -	*-winbond) -		os=-proelf -		;; -	*-oki) -		os=-proelf -		;; -	*-hp) -		os=-hpux -		;; -	*-hitachi) -		os=-hiux -		;; -	i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) -		os=-sysv -		;; -	*-cbm) -		os=-amigaos -		;; -	*-dg) -		os=-dgux -		;; -	*-dolphin) -		os=-sysv3 -		;; -	m68k-ccur) -		os=-rtu -		;; -	m88k-omron*) -		os=-luna -		;; -	*-next ) -		os=-nextstep -		;; -	*-sequent) -		os=-ptx -		;; -	*-crds) -		os=-unos -		;; -	*-ns) -		os=-genix -		;; -	i370-*) -		os=-mvs -		;; -	*-next) -		os=-nextstep3 -		;; -	*-gould) -		os=-sysv -		;; -	*-highlevel) -		os=-bsd -		;; -	*-encore) -		os=-bsd -		;; -	*-sgi) -		os=-irix -		;; -	*-siemens) -		os=-sysv4 -		;; -	*-masscomp) -		os=-rtu -		;; -	f30[01]-fujitsu | f700-fujitsu) -		os=-uxpv -		;; -	*-rom68k) -		os=-coff -		;; -	*-*bug) -		os=-coff -		;; -	*-apple) -		os=-macos -		;; -	*-atari*) -		os=-mint -		;; -	*) -		os=-none -		;; -esac -fi - -# Here we handle the case where we know the os, and the CPU type, but not the -# manufacturer.  We pick the logical manufacturer. -vendor=unknown -case $basic_machine in -	*-unknown) -		case $os in -			-riscix*) -				vendor=acorn -				;; -			-sunos*) -				vendor=sun -				;; -			-aix*) -				vendor=ibm -				;; -			-beos*) -				vendor=be -				;; -			-hpux*) -				vendor=hp -				;; -			-mpeix*) -				vendor=hp -				;; -			-hiux*) -				vendor=hitachi -				;; -			-unos*) -				vendor=crds -				;; -			-dgux*) -				vendor=dg -				;; -			-luna*) -				vendor=omron -				;; -			-genix*) -				vendor=ns -				;; -			-mvs* | -opened*) -				vendor=ibm -				;; -			-os400*) -				vendor=ibm -				;; -			-ptx*) -				vendor=sequent -				;; -			-tpf*) -				vendor=ibm -				;; -			-vxsim* | -vxworks* | -windiss*) -				vendor=wrs -				;; -			-aux*) -				vendor=apple -				;; -			-hms*) -				vendor=hitachi -				;; -			-mpw* | -macos*) -				vendor=apple -				;; -			-*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) -				vendor=atari -				;; -			-vos*) -				vendor=stratus -				;; -		esac -		basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` -		;; -esac - -echo $basic_machine$os -exit 0 - -# Local variables: -# eval: (add-hook 'write-file-hooks 'time-stamp) -# time-stamp-start: "timestamp='" -# time-stamp-format: "%:y-%02m-%02d" -# time-stamp-end: "'" -# End: diff --git a/configure b/configure deleted file mode 100755 index d45ffe5..0000000 --- a/configure +++ /dev/null @@ -1,4626 +0,0 @@ -#! /bin/sh -# Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.59. -# -# Copyright (C) 2003 Free Software Foundation, Inc. -# This configure script is free software; the Free Software Foundation -# gives unlimited permission to copy, distribute and modify it. -## --------------------- ## -## M4sh Initialization.  ## -## --------------------- ## - -# Be Bourne compatible -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then -  emulate sh -  NULLCMD=: -  # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which -  # is contrary to our usage.  Disable this feature. -  alias -g '${1+"$@"}'='"$@"' -elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then -  set -o posix -fi -DUALCASE=1; export DUALCASE # for MKS sh - -# Support unset when possible. -if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then -  as_unset=unset -else -  as_unset=false -fi - - -# Work around bugs in pre-3.0 UWIN ksh. -$as_unset ENV MAIL MAILPATH -PS1='$ ' -PS2='> ' -PS4='+ ' - -# NLS nuisances. -for as_var in \ -  LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ -  LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ -  LC_TELEPHONE LC_TIME -do -  if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then -    eval $as_var=C; export $as_var -  else -    $as_unset $as_var -  fi -done - -# Required to use basename. -if expr a : '\(a\)' >/dev/null 2>&1; then -  as_expr=expr -else -  as_expr=false -fi - -if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then -  as_basename=basename -else -  as_basename=false -fi - - -# Name of the executable. -as_me=`$as_basename "$0" || -$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ -	 X"$0" : 'X\(//\)$' \| \ -	 X"$0" : 'X\(/\)$' \| \ -	 .     : '\(.\)' 2>/dev/null || -echo X/"$0" | -    sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; } -  	  /^X\/\(\/\/\)$/{ s//\1/; q; } -  	  /^X\/\(\/\).*/{ s//\1/; q; } -  	  s/.*/./; q'` - - -# PATH needs CR, and LINENO needs CR and PATH. -# Avoid depending upon Character Ranges. -as_cr_letters='abcdefghijklmnopqrstuvwxyz' -as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' -as_cr_Letters=$as_cr_letters$as_cr_LETTERS -as_cr_digits='0123456789' -as_cr_alnum=$as_cr_Letters$as_cr_digits - -# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then -  echo "#! /bin/sh" >conf$$.sh -  echo  "exit 0"   >>conf$$.sh -  chmod +x conf$$.sh -  if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then -    PATH_SEPARATOR=';' -  else -    PATH_SEPARATOR=: -  fi -  rm -f conf$$.sh -fi - - -  as_lineno_1=$LINENO -  as_lineno_2=$LINENO -  as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` -  test "x$as_lineno_1" != "x$as_lineno_2" && -  test "x$as_lineno_3"  = "x$as_lineno_2"  || { -  # Find who we are.  Look in the path if we contain no path at all -  # relative or not. -  case $0 in -    *[\\/]* ) as_myself=$0 ;; -    *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do -  IFS=$as_save_IFS -  test -z "$as_dir" && as_dir=. -  test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break -done - -       ;; -  esac -  # We did not find ourselves, most probably we were run as `sh COMMAND' -  # in which case we are not to be found in the path. -  if test "x$as_myself" = x; then -    as_myself=$0 -  fi -  if test ! -f "$as_myself"; then -    { echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2 -   { (exit 1); exit 1; }; } -  fi -  case $CONFIG_SHELL in -  '') -    as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH -do -  IFS=$as_save_IFS -  test -z "$as_dir" && as_dir=. -  for as_base in sh bash ksh sh5; do -	 case $as_dir in -	 /*) -	   if ("$as_dir/$as_base" -c ' -  as_lineno_1=$LINENO -  as_lineno_2=$LINENO -  as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` -  test "x$as_lineno_1" != "x$as_lineno_2" && -  test "x$as_lineno_3"  = "x$as_lineno_2" ') 2>/dev/null; then -	     $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; } -	     $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; } -	     CONFIG_SHELL=$as_dir/$as_base -	     export CONFIG_SHELL -	     exec "$CONFIG_SHELL" "$0" ${1+"$@"} -	   fi;; -	 esac -       done -done -;; -  esac - -  # Create $as_me.lineno as a copy of $as_myself, but with $LINENO -  # uniformly replaced by the line number.  The first 'sed' inserts a -  # line-number line before each line; the second 'sed' does the real -  # work.  The second script uses 'N' to pair each line-number line -  # with the numbered line, and appends trailing '-' during -  # substitution so that $LINENO is not a special case at line end. -  # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the -  # second 'sed' script.  Blame Lee E. McMahon for sed's syntax.  :-) -  sed '=' <$as_myself | -    sed ' -      N -      s,$,-, -      : loop -      s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3, -      t loop -      s,-$,, -      s,^['$as_cr_digits']*\n,, -    ' >$as_me.lineno && -  chmod +x $as_me.lineno || -    { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 -   { (exit 1); exit 1; }; } - -  # Don't try to exec as it changes $[0], causing all sort of problems -  # (the dirname of $[0] is not the place where we might find the -  # original and so on.  Autoconf is especially sensible to this). -  . ./$as_me.lineno -  # Exit status is that of the last command. -  exit -} - - -case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in -  *c*,-n*) ECHO_N= ECHO_C=' -' ECHO_T='	' ;; -  *c*,*  ) ECHO_N=-n ECHO_C= ECHO_T= ;; -  *)       ECHO_N= ECHO_C='\c' ECHO_T= ;; -esac - -if expr a : '\(a\)' >/dev/null 2>&1; then -  as_expr=expr -else -  as_expr=false -fi - -rm -f conf$$ conf$$.exe conf$$.file -echo >conf$$.file -if ln -s conf$$.file conf$$ 2>/dev/null; then -  # We could just check for DJGPP; but this test a) works b) is more generic -  # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04). -  if test -f conf$$.exe; then -    # Don't use ln at all; we don't have any links -    as_ln_s='cp -p' -  else -    as_ln_s='ln -s' -  fi -elif ln conf$$.file conf$$ 2>/dev/null; then -  as_ln_s=ln -else -  as_ln_s='cp -p' -fi -rm -f conf$$ conf$$.exe conf$$.file - -if mkdir -p . 2>/dev/null; then -  as_mkdir_p=: -else -  test -d ./-p && rmdir ./-p -  as_mkdir_p=false -fi - -as_executable_p="test -f" - -# Sed expression to map a string onto a valid CPP name. -as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" - -# Sed expression to map a string onto a valid variable name. -as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" - - -# IFS -# We need space, tab and new line, in precisely that order. -as_nl=' -' -IFS=" 	$as_nl" - -# CDPATH. -$as_unset CDPATH - - -# Name of the host. -# hostname on some systems (SVR3.2, Linux) returns a bogus exit status, -# so uname gets run too. -ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` - -exec 6>&1 - -# -# Initializations. -# -ac_default_prefix=/usr/local -ac_config_libobj_dir=. -cross_compiling=no -subdirs= -MFLAGS= -MAKEFLAGS= -SHELL=${CONFIG_SHELL-/bin/sh} - -# Maximum number of lines to put in a shell here document. -# This variable seems obsolete.  It should probably be removed, and -# only ac_max_sed_lines should be used. -: ${ac_max_here_lines=38} - -# Identity of this package. -PACKAGE_NAME= -PACKAGE_TARNAME= -PACKAGE_VERSION= -PACKAGE_STRING= -PACKAGE_BUGREPORT= - -ac_unique_file="src/main.c" -ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO SET_MAKE CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT MAINTAINER_MODE_TRUE MAINTAINER_MODE_FALSE MAINT IMLIB2_CONFIG IMLIB_LIBS IMLIB_CFLAGS IMLIB2_CFLAGS IMLIB2_LIBS GIBLIB_CONFIG GIBLIB_LIBS GIBLIB_CFLAGS HAVE_XINERAMA XINERAMA_LIBS LIBOBJS LTLIBOBJS' -ac_subst_files='' - -# Initialize some variables set by options. -ac_init_help= -ac_init_version=false -# The variables have the same names as the options, with -# dashes changed to underlines. -cache_file=/dev/null -exec_prefix=NONE -no_create= -no_recursion= -prefix=NONE -program_prefix=NONE -program_suffix=NONE -program_transform_name=s,x,x, -silent= -site= -srcdir= -verbose= -x_includes=NONE -x_libraries=NONE - -# Installation directory options. -# These are left unexpanded so users can "make install exec_prefix=/foo" -# and all the variables that are supposed to be based on exec_prefix -# by default will actually change. -# Use braces instead of parens because sh, perl, etc. also accept them. -bindir='${exec_prefix}/bin' -sbindir='${exec_prefix}/sbin' -libexecdir='${exec_prefix}/libexec' -datadir='${prefix}/share' -sysconfdir='${prefix}/etc' -sharedstatedir='${prefix}/com' -localstatedir='${prefix}/var' -libdir='${exec_prefix}/lib' -includedir='${prefix}/include' -oldincludedir='/usr/include' -infodir='${prefix}/info' -mandir='${prefix}/man' - -ac_prev= -for ac_option -do -  # If the previous option needs an argument, assign it. -  if test -n "$ac_prev"; then -    eval "$ac_prev=\$ac_option" -    ac_prev= -    continue -  fi - -  ac_optarg=`expr "x$ac_option" : 'x[^=]*=\(.*\)'` - -  # Accept the important Cygnus configure options, so we can diagnose typos. - -  case $ac_option in - -  -bindir | --bindir | --bindi | --bind | --bin | --bi) -    ac_prev=bindir ;; -  -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) -    bindir=$ac_optarg ;; - -  -build | --build | --buil | --bui | --bu) -    ac_prev=build_alias ;; -  -build=* | --build=* | --buil=* | --bui=* | --bu=*) -    build_alias=$ac_optarg ;; - -  -cache-file | --cache-file | --cache-fil | --cache-fi \ -  | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) -    ac_prev=cache_file ;; -  -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ -  | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) -    cache_file=$ac_optarg ;; - -  --config-cache | -C) -    cache_file=config.cache ;; - -  -datadir | --datadir | --datadi | --datad | --data | --dat | --da) -    ac_prev=datadir ;; -  -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \ -  | --da=*) -    datadir=$ac_optarg ;; - -  -disable-* | --disable-*) -    ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'` -    # Reject names that are not valid shell variable names. -    expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null && -      { echo "$as_me: error: invalid feature name: $ac_feature" >&2 -   { (exit 1); exit 1; }; } -    ac_feature=`echo $ac_feature | sed 's/-/_/g'` -    eval "enable_$ac_feature=no" ;; - -  -enable-* | --enable-*) -    ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` -    # Reject names that are not valid shell variable names. -    expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null && -      { echo "$as_me: error: invalid feature name: $ac_feature" >&2 -   { (exit 1); exit 1; }; } -    ac_feature=`echo $ac_feature | sed 's/-/_/g'` -    case $ac_option in -      *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;; -      *) ac_optarg=yes ;; -    esac -    eval "enable_$ac_feature='$ac_optarg'" ;; - -  -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ -  | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ -  | --exec | --exe | --ex) -    ac_prev=exec_prefix ;; -  -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ -  | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ -  | --exec=* | --exe=* | --ex=*) -    exec_prefix=$ac_optarg ;; - -  -gas | --gas | --ga | --g) -    # Obsolete; use --with-gas. -    with_gas=yes ;; - -  -help | --help | --hel | --he | -h) -    ac_init_help=long ;; -  -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) -    ac_init_help=recursive ;; -  -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) -    ac_init_help=short ;; - -  -host | --host | --hos | --ho) -    ac_prev=host_alias ;; -  -host=* | --host=* | --hos=* | --ho=*) -    host_alias=$ac_optarg ;; - -  -includedir | --includedir | --includedi | --included | --include \ -  | --includ | --inclu | --incl | --inc) -    ac_prev=includedir ;; -  -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ -  | --includ=* | --inclu=* | --incl=* | --inc=*) -    includedir=$ac_optarg ;; - -  -infodir | --infodir | --infodi | --infod | --info | --inf) -    ac_prev=infodir ;; -  -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) -    infodir=$ac_optarg ;; - -  -libdir | --libdir | --libdi | --libd) -    ac_prev=libdir ;; -  -libdir=* | --libdir=* | --libdi=* | --libd=*) -    libdir=$ac_optarg ;; - -  -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ -  | --libexe | --libex | --libe) -    ac_prev=libexecdir ;; -  -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ -  | --libexe=* | --libex=* | --libe=*) -    libexecdir=$ac_optarg ;; - -  -localstatedir | --localstatedir | --localstatedi | --localstated \ -  | --localstate | --localstat | --localsta | --localst \ -  | --locals | --local | --loca | --loc | --lo) -    ac_prev=localstatedir ;; -  -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ -  | --localstate=* | --localstat=* | --localsta=* | --localst=* \ -  | --locals=* | --local=* | --loca=* | --loc=* | --lo=*) -    localstatedir=$ac_optarg ;; - -  -mandir | --mandir | --mandi | --mand | --man | --ma | --m) -    ac_prev=mandir ;; -  -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) -    mandir=$ac_optarg ;; - -  -nfp | --nfp | --nf) -    # Obsolete; use --without-fp. -    with_fp=no ;; - -  -no-create | --no-create | --no-creat | --no-crea | --no-cre \ -  | --no-cr | --no-c | -n) -    no_create=yes ;; - -  -no-recursion | --no-recursion | --no-recursio | --no-recursi \ -  | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) -    no_recursion=yes ;; - -  -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ -  | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ -  | --oldin | --oldi | --old | --ol | --o) -    ac_prev=oldincludedir ;; -  -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ -  | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ -  | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) -    oldincludedir=$ac_optarg ;; - -  -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) -    ac_prev=prefix ;; -  -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) -    prefix=$ac_optarg ;; - -  -program-prefix | --program-prefix | --program-prefi | --program-pref \ -  | --program-pre | --program-pr | --program-p) -    ac_prev=program_prefix ;; -  -program-prefix=* | --program-prefix=* | --program-prefi=* \ -  | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) -    program_prefix=$ac_optarg ;; - -  -program-suffix | --program-suffix | --program-suffi | --program-suff \ -  | --program-suf | --program-su | --program-s) -    ac_prev=program_suffix ;; -  -program-suffix=* | --program-suffix=* | --program-suffi=* \ -  | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) -    program_suffix=$ac_optarg ;; - -  -program-transform-name | --program-transform-name \ -  | --program-transform-nam | --program-transform-na \ -  | --program-transform-n | --program-transform- \ -  | --program-transform | --program-transfor \ -  | --program-transfo | --program-transf \ -  | --program-trans | --program-tran \ -  | --progr-tra | --program-tr | --program-t) -    ac_prev=program_transform_name ;; -  -program-transform-name=* | --program-transform-name=* \ -  | --program-transform-nam=* | --program-transform-na=* \ -  | --program-transform-n=* | --program-transform-=* \ -  | --program-transform=* | --program-transfor=* \ -  | --program-transfo=* | --program-transf=* \ -  | --program-trans=* | --program-tran=* \ -  | --progr-tra=* | --program-tr=* | --program-t=*) -    program_transform_name=$ac_optarg ;; - -  -q | -quiet | --quiet | --quie | --qui | --qu | --q \ -  | -silent | --silent | --silen | --sile | --sil) -    silent=yes ;; - -  -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) -    ac_prev=sbindir ;; -  -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ -  | --sbi=* | --sb=*) -    sbindir=$ac_optarg ;; - -  -sharedstatedir | --sharedstatedir | --sharedstatedi \ -  | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ -  | --sharedst | --shareds | --shared | --share | --shar \ -  | --sha | --sh) -    ac_prev=sharedstatedir ;; -  -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ -  | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ -  | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ -  | --sha=* | --sh=*) -    sharedstatedir=$ac_optarg ;; - -  -site | --site | --sit) -    ac_prev=site ;; -  -site=* | --site=* | --sit=*) -    site=$ac_optarg ;; - -  -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) -    ac_prev=srcdir ;; -  -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) -    srcdir=$ac_optarg ;; - -  -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ -  | --syscon | --sysco | --sysc | --sys | --sy) -    ac_prev=sysconfdir ;; -  -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ -  | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) -    sysconfdir=$ac_optarg ;; - -  -target | --target | --targe | --targ | --tar | --ta | --t) -    ac_prev=target_alias ;; -  -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) -    target_alias=$ac_optarg ;; - -  -v | -verbose | --verbose | --verbos | --verbo | --verb) -    verbose=yes ;; - -  -version | --version | --versio | --versi | --vers | -V) -    ac_init_version=: ;; - -  -with-* | --with-*) -    ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` -    # Reject names that are not valid shell variable names. -    expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null && -      { echo "$as_me: error: invalid package name: $ac_package" >&2 -   { (exit 1); exit 1; }; } -    ac_package=`echo $ac_package| sed 's/-/_/g'` -    case $ac_option in -      *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;; -      *) ac_optarg=yes ;; -    esac -    eval "with_$ac_package='$ac_optarg'" ;; - -  -without-* | --without-*) -    ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'` -    # Reject names that are not valid shell variable names. -    expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null && -      { echo "$as_me: error: invalid package name: $ac_package" >&2 -   { (exit 1); exit 1; }; } -    ac_package=`echo $ac_package | sed 's/-/_/g'` -    eval "with_$ac_package=no" ;; - -  --x) -    # Obsolete; use --with-x. -    with_x=yes ;; - -  -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ -  | --x-incl | --x-inc | --x-in | --x-i) -    ac_prev=x_includes ;; -  -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ -  | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) -    x_includes=$ac_optarg ;; - -  -x-libraries | --x-libraries | --x-librarie | --x-librari \ -  | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) -    ac_prev=x_libraries ;; -  -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ -  | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) -    x_libraries=$ac_optarg ;; - -  -*) { echo "$as_me: error: unrecognized option: $ac_option -Try \`$0 --help' for more information." >&2 -   { (exit 1); exit 1; }; } -    ;; - -  *=*) -    ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` -    # Reject names that are not valid shell variable names. -    expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null && -      { echo "$as_me: error: invalid variable name: $ac_envvar" >&2 -   { (exit 1); exit 1; }; } -    ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` -    eval "$ac_envvar='$ac_optarg'" -    export $ac_envvar ;; - -  *) -    # FIXME: should be removed in autoconf 3.0. -    echo "$as_me: WARNING: you should use --build, --host, --target" >&2 -    expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && -      echo "$as_me: WARNING: invalid host type: $ac_option" >&2 -    : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option} -    ;; - -  esac -done - -if test -n "$ac_prev"; then -  ac_option=--`echo $ac_prev | sed 's/_/-/g'` -  { echo "$as_me: error: missing argument to $ac_option" >&2 -   { (exit 1); exit 1; }; } -fi - -# Be sure to have absolute paths. -for ac_var in exec_prefix prefix -do -  eval ac_val=$`echo $ac_var` -  case $ac_val in -    [\\/$]* | ?:[\\/]* | NONE | '' ) ;; -    *)  { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 -   { (exit 1); exit 1; }; };; -  esac -done - -# Be sure to have absolute paths. -for ac_var in bindir sbindir libexecdir datadir sysconfdir sharedstatedir \ -	      localstatedir libdir includedir oldincludedir infodir mandir -do -  eval ac_val=$`echo $ac_var` -  case $ac_val in -    [\\/$]* | ?:[\\/]* ) ;; -    *)  { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 -   { (exit 1); exit 1; }; };; -  esac -done - -# There might be people who depend on the old broken behavior: `$host' -# used to hold the argument of --host etc. -# FIXME: To remove some day. -build=$build_alias -host=$host_alias -target=$target_alias - -# FIXME: To remove some day. -if test "x$host_alias" != x; then -  if test "x$build_alias" = x; then -    cross_compiling=maybe -    echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. -    If a cross compiler is detected then cross compile mode will be used." >&2 -  elif test "x$build_alias" != "x$host_alias"; then -    cross_compiling=yes -  fi -fi - -ac_tool_prefix= -test -n "$host_alias" && ac_tool_prefix=$host_alias- - -test "$silent" = yes && exec 6>/dev/null - - -# Find the source files, if location was not specified. -if test -z "$srcdir"; then -  ac_srcdir_defaulted=yes -  # Try the directory containing this script, then its parent. -  ac_confdir=`(dirname "$0") 2>/dev/null || -$as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ -	 X"$0" : 'X\(//\)[^/]' \| \ -	 X"$0" : 'X\(//\)$' \| \ -	 X"$0" : 'X\(/\)' \| \ -	 .     : '\(.\)' 2>/dev/null || -echo X"$0" | -    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } -  	  /^X\(\/\/\)[^/].*/{ s//\1/; q; } -  	  /^X\(\/\/\)$/{ s//\1/; q; } -  	  /^X\(\/\).*/{ s//\1/; q; } -  	  s/.*/./; q'` -  srcdir=$ac_confdir -  if test ! -r $srcdir/$ac_unique_file; then -    srcdir=.. -  fi -else -  ac_srcdir_defaulted=no -fi -if test ! -r $srcdir/$ac_unique_file; then -  if test "$ac_srcdir_defaulted" = yes; then -    { echo "$as_me: error: cannot find sources ($ac_unique_file) in $ac_confdir or .." >&2 -   { (exit 1); exit 1; }; } -  else -    { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 -   { (exit 1); exit 1; }; } -  fi -fi -(cd $srcdir && test -r ./$ac_unique_file) 2>/dev/null || -  { echo "$as_me: error: sources are in $srcdir, but \`cd $srcdir' does not work" >&2 -   { (exit 1); exit 1; }; } -srcdir=`echo "$srcdir" | sed 's%\([^\\/]\)[\\/]*$%\1%'` -ac_env_build_alias_set=${build_alias+set} -ac_env_build_alias_value=$build_alias -ac_cv_env_build_alias_set=${build_alias+set} -ac_cv_env_build_alias_value=$build_alias -ac_env_host_alias_set=${host_alias+set} -ac_env_host_alias_value=$host_alias -ac_cv_env_host_alias_set=${host_alias+set} -ac_cv_env_host_alias_value=$host_alias -ac_env_target_alias_set=${target_alias+set} -ac_env_target_alias_value=$target_alias -ac_cv_env_target_alias_set=${target_alias+set} -ac_cv_env_target_alias_value=$target_alias -ac_env_CC_set=${CC+set} -ac_env_CC_value=$CC -ac_cv_env_CC_set=${CC+set} -ac_cv_env_CC_value=$CC -ac_env_CFLAGS_set=${CFLAGS+set} -ac_env_CFLAGS_value=$CFLAGS -ac_cv_env_CFLAGS_set=${CFLAGS+set} -ac_cv_env_CFLAGS_value=$CFLAGS -ac_env_LDFLAGS_set=${LDFLAGS+set} -ac_env_LDFLAGS_value=$LDFLAGS -ac_cv_env_LDFLAGS_set=${LDFLAGS+set} -ac_cv_env_LDFLAGS_value=$LDFLAGS -ac_env_CPPFLAGS_set=${CPPFLAGS+set} -ac_env_CPPFLAGS_value=$CPPFLAGS -ac_cv_env_CPPFLAGS_set=${CPPFLAGS+set} -ac_cv_env_CPPFLAGS_value=$CPPFLAGS - -# -# Report the --help message. -# -if test "$ac_init_help" = "long"; then -  # Omit some internal or obsolete options to make the list less imposing. -  # This message is too long to be a string in the A/UX 3.1 sh. -  cat <<_ACEOF -\`configure' configures this package to adapt to many kinds of systems. - -Usage: $0 [OPTION]... [VAR=VALUE]... - -To assign environment variables (e.g., CC, CFLAGS...), specify them as -VAR=VALUE.  See below for descriptions of some of the useful variables. - -Defaults for the options are specified in brackets. - -Configuration: -  -h, --help              display this help and exit -      --help=short        display options specific to this package -      --help=recursive    display the short help of all the included packages -  -V, --version           display version information and exit -  -q, --quiet, --silent   do not print \`checking...' messages -      --cache-file=FILE   cache test results in FILE [disabled] -  -C, --config-cache      alias for \`--cache-file=config.cache' -  -n, --no-create         do not create output files -      --srcdir=DIR        find the sources in DIR [configure dir or \`..'] - -_ACEOF - -  cat <<_ACEOF -Installation directories: -  --prefix=PREFIX         install architecture-independent files in PREFIX -			  [$ac_default_prefix] -  --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX -			  [PREFIX] - -By default, \`make install' will install all the files in -\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc.  You can specify -an installation prefix other than \`$ac_default_prefix' using \`--prefix', -for instance \`--prefix=\$HOME'. - -For better control, use the options below. - -Fine tuning of the installation directories: -  --bindir=DIR           user executables [EPREFIX/bin] -  --sbindir=DIR          system admin executables [EPREFIX/sbin] -  --libexecdir=DIR       program executables [EPREFIX/libexec] -  --datadir=DIR          read-only architecture-independent data [PREFIX/share] -  --sysconfdir=DIR       read-only single-machine data [PREFIX/etc] -  --sharedstatedir=DIR   modifiable architecture-independent data [PREFIX/com] -  --localstatedir=DIR    modifiable single-machine data [PREFIX/var] -  --libdir=DIR           object code libraries [EPREFIX/lib] -  --includedir=DIR       C header files [PREFIX/include] -  --oldincludedir=DIR    C header files for non-gcc [/usr/include] -  --infodir=DIR          info documentation [PREFIX/info] -  --mandir=DIR           man documentation [PREFIX/man] -_ACEOF - -  cat <<\_ACEOF - -Program names: -  --program-prefix=PREFIX            prepend PREFIX to installed program names -  --program-suffix=SUFFIX            append SUFFIX to installed program names -  --program-transform-name=PROGRAM   run sed PROGRAM on installed program names -_ACEOF -fi - -if test -n "$ac_init_help"; then - -  cat <<\_ACEOF - -Optional Features: -  --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no) -  --enable-FEATURE[=ARG]  include FEATURE [ARG=yes] -  --enable-maintainer-mode enable make rules and dependencies not useful -                          (and sometimes confusing) to the casual installer - -Optional Packages: -  --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes] -  --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no) -  --with-dmalloc          use dmalloc, as in -                          ftp://ftp.letters.com/src/dmalloc/dmalloc.tar.gz -  --with-imlib2=DIR       use imlib2 in <DIR> -  --with-imlib2-prefix=PFX       Prefix where imlib2 is installed (optional) -  --with-imlib2-exec-prefix=PFX Exec prefix where imlib2 is installed (optional) -  --with-giblib-prefix=PFX       Prefix where giblib is installed (optional) -  --with-giblib-exec-prefix=PFX Exec prefix where giblib is installed (optional) - -Some influential environment variables: -  CC          C compiler command -  CFLAGS      C compiler flags -  LDFLAGS     linker flags, e.g. -L<lib dir> if you have libraries in a -              nonstandard directory <lib dir> -  CPPFLAGS    C/C++ preprocessor flags, e.g. -I<include dir> if you have -              headers in a nonstandard directory <include dir> - -Use these variables to override the choices made by `configure' or to help -it to find libraries and programs with nonstandard names/locations. - -_ACEOF -fi - -if test "$ac_init_help" = "recursive"; then -  # If there are subdirs, report their specific --help. -  ac_popdir=`pwd` -  for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue -    test -d $ac_dir || continue -    ac_builddir=. - -if test "$ac_dir" != .; then -  ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` -  # A "../" for each directory in $ac_dir_suffix. -  ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'` -else -  ac_dir_suffix= ac_top_builddir= -fi - -case $srcdir in -  .)  # No --srcdir option.  We are building in place. -    ac_srcdir=. -    if test -z "$ac_top_builddir"; then -       ac_top_srcdir=. -    else -       ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'` -    fi ;; -  [\\/]* | ?:[\\/]* )  # Absolute path. -    ac_srcdir=$srcdir$ac_dir_suffix; -    ac_top_srcdir=$srcdir ;; -  *) # Relative path. -    ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix -    ac_top_srcdir=$ac_top_builddir$srcdir ;; -esac - -# Do not use `cd foo && pwd` to compute absolute paths, because -# the directories may not exist. -case `pwd` in -.) ac_abs_builddir="$ac_dir";; -*) -  case "$ac_dir" in -  .) ac_abs_builddir=`pwd`;; -  [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";; -  *) ac_abs_builddir=`pwd`/"$ac_dir";; -  esac;; -esac -case $ac_abs_builddir in -.) ac_abs_top_builddir=${ac_top_builddir}.;; -*) -  case ${ac_top_builddir}. in -  .) ac_abs_top_builddir=$ac_abs_builddir;; -  [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;; -  *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;; -  esac;; -esac -case $ac_abs_builddir in -.) ac_abs_srcdir=$ac_srcdir;; -*) -  case $ac_srcdir in -  .) ac_abs_srcdir=$ac_abs_builddir;; -  [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;; -  *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;; -  esac;; -esac -case $ac_abs_builddir in -.) ac_abs_top_srcdir=$ac_top_srcdir;; -*) -  case $ac_top_srcdir in -  .) ac_abs_top_srcdir=$ac_abs_builddir;; -  [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;; -  *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;; -  esac;; -esac - -    cd $ac_dir -    # Check for guested configure; otherwise get Cygnus style configure. -    if test -f $ac_srcdir/configure.gnu; then -      echo -      $SHELL $ac_srcdir/configure.gnu  --help=recursive -    elif test -f $ac_srcdir/configure; then -      echo -      $SHELL $ac_srcdir/configure  --help=recursive -    elif test -f $ac_srcdir/configure.ac || -	   test -f $ac_srcdir/configure.in; then -      echo -      $ac_configure --help -    else -      echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 -    fi -    cd "$ac_popdir" -  done -fi - -test -n "$ac_init_help" && exit 0 -if $ac_init_version; then -  cat <<\_ACEOF - -Copyright (C) 2003 Free Software Foundation, Inc. -This configure script is free software; the Free Software Foundation -gives unlimited permission to copy, distribute and modify it. -_ACEOF -  exit 0 -fi -exec 5>config.log -cat >&5 <<_ACEOF -This file contains any messages produced by compilers while -running configure, to aid debugging if configure makes a mistake. - -It was created by $as_me, which was -generated by GNU Autoconf 2.59.  Invocation command line was - -  $ $0 $@ - -_ACEOF -{ -cat <<_ASUNAME -## --------- ## -## Platform. ## -## --------- ## - -hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` -uname -m = `(uname -m) 2>/dev/null || echo unknown` -uname -r = `(uname -r) 2>/dev/null || echo unknown` -uname -s = `(uname -s) 2>/dev/null || echo unknown` -uname -v = `(uname -v) 2>/dev/null || echo unknown` - -/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` -/bin/uname -X     = `(/bin/uname -X) 2>/dev/null     || echo unknown` - -/bin/arch              = `(/bin/arch) 2>/dev/null              || echo unknown` -/usr/bin/arch -k       = `(/usr/bin/arch -k) 2>/dev/null       || echo unknown` -/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` -hostinfo               = `(hostinfo) 2>/dev/null               || echo unknown` -/bin/machine           = `(/bin/machine) 2>/dev/null           || echo unknown` -/usr/bin/oslevel       = `(/usr/bin/oslevel) 2>/dev/null       || echo unknown` -/bin/universe          = `(/bin/universe) 2>/dev/null          || echo unknown` - -_ASUNAME - -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do -  IFS=$as_save_IFS -  test -z "$as_dir" && as_dir=. -  echo "PATH: $as_dir" -done - -} >&5 - -cat >&5 <<_ACEOF - - -## ----------- ## -## Core tests. ## -## ----------- ## - -_ACEOF - - -# Keep a trace of the command line. -# Strip out --no-create and --no-recursion so they do not pile up. -# Strip out --silent because we don't want to record it for future runs. -# Also quote any args containing shell meta-characters. -# Make two passes to allow for proper duplicate-argument suppression. -ac_configure_args= -ac_configure_args0= -ac_configure_args1= -ac_sep= -ac_must_keep_next=false -for ac_pass in 1 2 -do -  for ac_arg -  do -    case $ac_arg in -    -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; -    -q | -quiet | --quiet | --quie | --qui | --qu | --q \ -    | -silent | --silent | --silen | --sile | --sil) -      continue ;; -    *" "*|*"	"*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*) -      ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; -    esac -    case $ac_pass in -    1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;; -    2) -      ac_configure_args1="$ac_configure_args1 '$ac_arg'" -      if test $ac_must_keep_next = true; then -	ac_must_keep_next=false # Got value, back to normal. -      else -	case $ac_arg in -	  *=* | --config-cache | -C | -disable-* | --disable-* \ -	  | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ -	  | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ -	  | -with-* | --with-* | -without-* | --without-* | --x) -	    case "$ac_configure_args0 " in -	      "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; -	    esac -	    ;; -	  -* ) ac_must_keep_next=true ;; -	esac -      fi -      ac_configure_args="$ac_configure_args$ac_sep'$ac_arg'" -      # Get rid of the leading space. -      ac_sep=" " -      ;; -    esac -  done -done -$as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; } -$as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export ac_configure_args1; } - -# When interrupted or exit'd, cleanup temporary files, and complete -# config.log.  We remove comments because anyway the quotes in there -# would cause problems or look ugly. -# WARNING: Be sure not to use single quotes in there, as some shells, -# such as our DU 5.0 friend, will then `close' the trap. -trap 'exit_status=$? -  # Save into config.log some information that might help in debugging. -  { -    echo - -    cat <<\_ASBOX -## ---------------- ## -## Cache variables. ## -## ---------------- ## -_ASBOX -    echo -    # The following way of writing the cache mishandles newlines in values, -{ -  (set) 2>&1 | -    case `(ac_space='"'"' '"'"'; set | grep ac_space) 2>&1` in -    *ac_space=\ *) -      sed -n \ -	"s/'"'"'/'"'"'\\\\'"'"''"'"'/g; -	  s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='"'"'\\2'"'"'/p" -      ;; -    *) -      sed -n \ -	"s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p" -      ;; -    esac; -} -    echo - -    cat <<\_ASBOX -## ----------------- ## -## Output variables. ## -## ----------------- ## -_ASBOX -    echo -    for ac_var in $ac_subst_vars -    do -      eval ac_val=$`echo $ac_var` -      echo "$ac_var='"'"'$ac_val'"'"'" -    done | sort -    echo - -    if test -n "$ac_subst_files"; then -      cat <<\_ASBOX -## ------------- ## -## Output files. ## -## ------------- ## -_ASBOX -      echo -      for ac_var in $ac_subst_files -      do -	eval ac_val=$`echo $ac_var` -	echo "$ac_var='"'"'$ac_val'"'"'" -      done | sort -      echo -    fi - -    if test -s confdefs.h; then -      cat <<\_ASBOX -## ----------- ## -## confdefs.h. ## -## ----------- ## -_ASBOX -      echo -      sed "/^$/d" confdefs.h | sort -      echo -    fi -    test "$ac_signal" != 0 && -      echo "$as_me: caught signal $ac_signal" -    echo "$as_me: exit $exit_status" -  } >&5 -  rm -f core *.core && -  rm -rf conftest* confdefs* conf$$* $ac_clean_files && -    exit $exit_status -     ' 0 -for ac_signal in 1 2 13 15; do -  trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal -done -ac_signal=0 - -# confdefs.h avoids OS command line length limits that DEFS can exceed. -rm -rf conftest* confdefs.h -# AIX cpp loses on an empty file, so make sure it contains at least a newline. -echo >confdefs.h - -# Predefined preprocessor variables. - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_NAME "$PACKAGE_NAME" -_ACEOF - - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_TARNAME "$PACKAGE_TARNAME" -_ACEOF - - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_VERSION "$PACKAGE_VERSION" -_ACEOF - - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_STRING "$PACKAGE_STRING" -_ACEOF - - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" -_ACEOF - - -# Let the site file select an alternate cache file if it wants to. -# Prefer explicitly selected file to automatically selected ones. -if test -z "$CONFIG_SITE"; then -  if test "x$prefix" != xNONE; then -    CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site" -  else -    CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site" -  fi -fi -for ac_site_file in $CONFIG_SITE; do -  if test -r "$ac_site_file"; then -    { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5 -echo "$as_me: loading site script $ac_site_file" >&6;} -    sed 's/^/| /' "$ac_site_file" >&5 -    . "$ac_site_file" -  fi -done - -if test -r "$cache_file"; then -  # Some versions of bash will fail to source /dev/null (special -  # files actually), so we avoid doing that. -  if test -f "$cache_file"; then -    { echo "$as_me:$LINENO: loading cache $cache_file" >&5 -echo "$as_me: loading cache $cache_file" >&6;} -    case $cache_file in -      [\\/]* | ?:[\\/]* ) . $cache_file;; -      *)                      . ./$cache_file;; -    esac -  fi -else -  { echo "$as_me:$LINENO: creating cache $cache_file" >&5 -echo "$as_me: creating cache $cache_file" >&6;} -  >$cache_file -fi - -# Check that the precious variables saved in the cache have kept the same -# value. -ac_cache_corrupted=false -for ac_var in `(set) 2>&1 | -	       sed -n 's/^ac_env_\([a-zA-Z_0-9]*\)_set=.*/\1/p'`; do -  eval ac_old_set=\$ac_cv_env_${ac_var}_set -  eval ac_new_set=\$ac_env_${ac_var}_set -  eval ac_old_val="\$ac_cv_env_${ac_var}_value" -  eval ac_new_val="\$ac_env_${ac_var}_value" -  case $ac_old_set,$ac_new_set in -    set,) -      { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 -echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} -      ac_cache_corrupted=: ;; -    ,set) -      { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5 -echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} -      ac_cache_corrupted=: ;; -    ,);; -    *) -      if test "x$ac_old_val" != "x$ac_new_val"; then -	{ echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5 -echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} -	{ echo "$as_me:$LINENO:   former value:  $ac_old_val" >&5 -echo "$as_me:   former value:  $ac_old_val" >&2;} -	{ echo "$as_me:$LINENO:   current value: $ac_new_val" >&5 -echo "$as_me:   current value: $ac_new_val" >&2;} -	ac_cache_corrupted=: -      fi;; -  esac -  # Pass precious variables to config.status. -  if test "$ac_new_set" = set; then -    case $ac_new_val in -    *" "*|*"	"*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*) -      ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; -    *) ac_arg=$ac_var=$ac_new_val ;; -    esac -    case " $ac_configure_args " in -      *" '$ac_arg' "*) ;; # Avoid dups.  Use of quotes ensures accuracy. -      *) ac_configure_args="$ac_configure_args '$ac_arg'" ;; -    esac -  fi -done -if $ac_cache_corrupted; then -  { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5 -echo "$as_me: error: changes in the environment can compromise the build" >&2;} -  { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 -echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;} -   { (exit 1); exit 1; }; } -fi - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - - - - - - - - - - - - - - - - - - - -am__api_version="1.4" -ac_aux_dir= -for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do -  if test -f $ac_dir/install-sh; then -    ac_aux_dir=$ac_dir -    ac_install_sh="$ac_aux_dir/install-sh -c" -    break -  elif test -f $ac_dir/install.sh; then -    ac_aux_dir=$ac_dir -    ac_install_sh="$ac_aux_dir/install.sh -c" -    break -  elif test -f $ac_dir/shtool; then -    ac_aux_dir=$ac_dir -    ac_install_sh="$ac_aux_dir/shtool install -c" -    break -  fi -done -if test -z "$ac_aux_dir"; then -  { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5 -echo "$as_me: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&2;} -   { (exit 1); exit 1; }; } -fi -ac_config_guess="$SHELL $ac_aux_dir/config.guess" -ac_config_sub="$SHELL $ac_aux_dir/config.sub" -ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure. - -# Find a good install program.  We prefer a C program (faster), -# so one script is as good as another.  But avoid the broken or -# incompatible versions: -# SysV /etc/install, /usr/sbin/install -# SunOS /usr/etc/install -# IRIX /sbin/install -# AIX /bin/install -# AmigaOS /C/install, which installs bootblocks on floppy discs -# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag -# AFS /usr/afsws/bin/install, which mishandles nonexistent args -# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" -# OS/2's system install, which has a completely different semantic -# ./install, which can be erroneously created by make from ./install.sh. -echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 -echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6 -if test -z "$INSTALL"; then -if test "${ac_cv_path_install+set}" = set; then -  echo $ECHO_N "(cached) $ECHO_C" >&6 -else -  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do -  IFS=$as_save_IFS -  test -z "$as_dir" && as_dir=. -  # Account for people who put trailing slashes in PATH elements. -case $as_dir/ in -  ./ | .// | /cC/* | \ -  /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ -  ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \ -  /usr/ucb/* ) ;; -  *) -    # OSF1 and SCO ODT 3.0 have their own names for install. -    # Don't use installbsd from OSF since it installs stuff as root -    # by default. -    for ac_prog in ginstall scoinst install; do -      for ac_exec_ext in '' $ac_executable_extensions; do -	if $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then -	  if test $ac_prog = install && -	    grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then -	    # AIX install.  It has an incompatible calling convention. -	    : -	  elif test $ac_prog = install && -	    grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then -	    # program-specific install script used by HP pwplus--don't use. -	    : -	  else -	    ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" -	    break 3 -	  fi -	fi -      done -    done -    ;; -esac -done - - -fi -  if test "${ac_cv_path_install+set}" = set; then -    INSTALL=$ac_cv_path_install -  else -    # As a last resort, use the slow shell script.  We don't cache a -    # path for INSTALL within a source directory, because that will -    # break other packages using the cache if that directory is -    # removed, or if the path is relative. -    INSTALL=$ac_install_sh -  fi -fi -echo "$as_me:$LINENO: result: $INSTALL" >&5 -echo "${ECHO_T}$INSTALL" >&6 - -# Use test -z because SunOS4 sh mishandles braces in ${var-val}. -# It thinks the first close brace ends the variable substitution. -test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' - -test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' - -test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' - -echo "$as_me:$LINENO: checking whether build environment is sane" >&5 -echo $ECHO_N "checking whether build environment is sane... $ECHO_C" >&6 -# Just in case -sleep 1 -echo timestamp > conftestfile -# Do `set' in a subshell so we don't clobber the current shell's -# arguments.  Must try -L first in case configure is actually a -# symlink; some systems play weird games with the mod time of symlinks -# (eg FreeBSD returns the mod time of the symlink's containing -# directory). -if ( -   set X `ls -Lt $srcdir/configure conftestfile 2> /dev/null` -   if test "$*" = "X"; then -      # -L didn't work. -      set X `ls -t $srcdir/configure conftestfile` -   fi -   if test "$*" != "X $srcdir/configure conftestfile" \ -      && test "$*" != "X conftestfile $srcdir/configure"; then - -      # If neither matched, then we have a broken ls.  This can happen -      # if, for instance, CONFIG_SHELL is bash and it inherits a -      # broken ls alias from the environment.  This has actually -      # happened.  Such a system could not be considered "sane". -      { { echo "$as_me:$LINENO: error: ls -t appears to fail.  Make sure there is not a broken -alias in your environment" >&5 -echo "$as_me: error: ls -t appears to fail.  Make sure there is not a broken -alias in your environment" >&2;} -   { (exit 1); exit 1; }; } -   fi - -   test "$2" = conftestfile -   ) -then -   # Ok. -   : -else -   { { echo "$as_me:$LINENO: error: newly created file is older than distributed files! -Check your system clock" >&5 -echo "$as_me: error: newly created file is older than distributed files! -Check your system clock" >&2;} -   { (exit 1); exit 1; }; } -fi -rm -f conftest* -echo "$as_me:$LINENO: result: yes" >&5 -echo "${ECHO_T}yes" >&6 -test "$program_prefix" != NONE && -  program_transform_name="s,^,$program_prefix,;$program_transform_name" -# Use a double $ so make ignores it. -test "$program_suffix" != NONE && -  program_transform_name="s,\$,$program_suffix,;$program_transform_name" -# Double any \ or $.  echo might interpret backslashes. -# By default was `s,x,x', remove it if useless. -cat <<\_ACEOF >conftest.sed -s/[\\$]/&&/g;s/;s,x,x,$// -_ACEOF -program_transform_name=`echo $program_transform_name | sed -f conftest.sed` -rm conftest.sed - -echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5 -echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6 -set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,:./+-,___p_,'` -if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\" = set"; then -  echo $ECHO_N "(cached) $ECHO_C" >&6 -else -  cat >conftest.make <<\_ACEOF -all: -	@echo 'ac_maketemp="$(MAKE)"' -_ACEOF -# GNU make sometimes prints "make[1]: Entering...", which would confuse us. -eval `${MAKE-make} -f conftest.make 2>/dev/null | grep temp=` -if test -n "$ac_maketemp"; then -  eval ac_cv_prog_make_${ac_make}_set=yes -else -  eval ac_cv_prog_make_${ac_make}_set=no -fi -rm -f conftest.make -fi -if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then -  echo "$as_me:$LINENO: result: yes" >&5 -echo "${ECHO_T}yes" >&6 -  SET_MAKE= -else -  echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -  SET_MAKE="MAKE=${MAKE-make}" -fi - - -PACKAGE=feh - -VERSION=1.4.1 - -if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then -  { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5 -echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;} -   { (exit 1); exit 1; }; } -fi - -cat >>confdefs.h <<_ACEOF -#define PACKAGE "$PACKAGE" -_ACEOF - - -cat >>confdefs.h <<_ACEOF -#define VERSION "$VERSION" -_ACEOF - - - -missing_dir=`cd $ac_aux_dir && pwd` -echo "$as_me:$LINENO: checking for working aclocal-${am__api_version}" >&5 -echo $ECHO_N "checking for working aclocal-${am__api_version}... $ECHO_C" >&6 -# Run test in a subshell; some versions of sh will print an error if -# an executable is not found, even if stderr is redirected. -# Redirect stdin to placate older versions of autoconf.  Sigh. -if (aclocal-${am__api_version} --version) < /dev/null > /dev/null 2>&1; then -   ACLOCAL=aclocal-${am__api_version} -   echo "$as_me:$LINENO: result: found" >&5 -echo "${ECHO_T}found" >&6 -else -   ACLOCAL="$missing_dir/missing aclocal-${am__api_version}" -   echo "$as_me:$LINENO: result: missing" >&5 -echo "${ECHO_T}missing" >&6 -fi - -echo "$as_me:$LINENO: checking for working autoconf" >&5 -echo $ECHO_N "checking for working autoconf... $ECHO_C" >&6 -# Run test in a subshell; some versions of sh will print an error if -# an executable is not found, even if stderr is redirected. -# Redirect stdin to placate older versions of autoconf.  Sigh. -if (autoconf --version) < /dev/null > /dev/null 2>&1; then -   AUTOCONF=autoconf -   echo "$as_me:$LINENO: result: found" >&5 -echo "${ECHO_T}found" >&6 -else -   AUTOCONF="$missing_dir/missing autoconf" -   echo "$as_me:$LINENO: result: missing" >&5 -echo "${ECHO_T}missing" >&6 -fi - -echo "$as_me:$LINENO: checking for working automake-${am__api_version}" >&5 -echo $ECHO_N "checking for working automake-${am__api_version}... $ECHO_C" >&6 -# Run test in a subshell; some versions of sh will print an error if -# an executable is not found, even if stderr is redirected. -# Redirect stdin to placate older versions of autoconf.  Sigh. -if (automake-${am__api_version} --version) < /dev/null > /dev/null 2>&1; then -   AUTOMAKE=automake-${am__api_version} -   echo "$as_me:$LINENO: result: found" >&5 -echo "${ECHO_T}found" >&6 -else -   AUTOMAKE="$missing_dir/missing automake-${am__api_version}" -   echo "$as_me:$LINENO: result: missing" >&5 -echo "${ECHO_T}missing" >&6 -fi - -echo "$as_me:$LINENO: checking for working autoheader" >&5 -echo $ECHO_N "checking for working autoheader... $ECHO_C" >&6 -# Run test in a subshell; some versions of sh will print an error if -# an executable is not found, even if stderr is redirected. -# Redirect stdin to placate older versions of autoconf.  Sigh. -if (autoheader --version) < /dev/null > /dev/null 2>&1; then -   AUTOHEADER=autoheader -   echo "$as_me:$LINENO: result: found" >&5 -echo "${ECHO_T}found" >&6 -else -   AUTOHEADER="$missing_dir/missing autoheader" -   echo "$as_me:$LINENO: result: missing" >&5 -echo "${ECHO_T}missing" >&6 -fi - -echo "$as_me:$LINENO: checking for working makeinfo" >&5 -echo $ECHO_N "checking for working makeinfo... $ECHO_C" >&6 -# Run test in a subshell; some versions of sh will print an error if -# an executable is not found, even if stderr is redirected. -# Redirect stdin to placate older versions of autoconf.  Sigh. -if (makeinfo --version) < /dev/null > /dev/null 2>&1; then -   MAKEINFO=makeinfo -   echo "$as_me:$LINENO: result: found" >&5 -echo "${ECHO_T}found" >&6 -else -   MAKEINFO="$missing_dir/missing makeinfo" -   echo "$as_me:$LINENO: result: missing" >&5 -echo "${ECHO_T}missing" >&6 -fi - - - -          ac_config_headers="$ac_config_headers src/config.h" - -          ac_config_commands="$ac_config_commands default-1" - - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test -n "$ac_tool_prefix"; then -  # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. -set dummy ${ac_tool_prefix}gcc; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_CC+set}" = set; then -  echo $ECHO_N "(cached) $ECHO_C" >&6 -else -  if test -n "$CC"; then -  ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do -  IFS=$as_save_IFS -  test -z "$as_dir" && as_dir=. -  for ac_exec_ext in '' $ac_executable_extensions; do -  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -    ac_cv_prog_CC="${ac_tool_prefix}gcc" -    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 -    break 2 -  fi -done -done - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then -  echo "$as_me:$LINENO: result: $CC" >&5 -echo "${ECHO_T}$CC" >&6 -else -  echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - -fi -if test -z "$ac_cv_prog_CC"; then -  ac_ct_CC=$CC -  # Extract the first word of "gcc", so it can be a program name with args. -set dummy gcc; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then -  echo $ECHO_N "(cached) $ECHO_C" >&6 -else -  if test -n "$ac_ct_CC"; then -  ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do -  IFS=$as_save_IFS -  test -z "$as_dir" && as_dir=. -  for ac_exec_ext in '' $ac_executable_extensions; do -  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -    ac_cv_prog_ac_ct_CC="gcc" -    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 -    break 2 -  fi -done -done - -fi -fi -ac_ct_CC=$ac_cv_prog_ac_ct_CC -if test -n "$ac_ct_CC"; then -  echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 -echo "${ECHO_T}$ac_ct_CC" >&6 -else -  echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - -  CC=$ac_ct_CC -else -  CC="$ac_cv_prog_CC" -fi - -if test -z "$CC"; then -  if test -n "$ac_tool_prefix"; then -  # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. -set dummy ${ac_tool_prefix}cc; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_CC+set}" = set; then -  echo $ECHO_N "(cached) $ECHO_C" >&6 -else -  if test -n "$CC"; then -  ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do -  IFS=$as_save_IFS -  test -z "$as_dir" && as_dir=. -  for ac_exec_ext in '' $ac_executable_extensions; do -  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -    ac_cv_prog_CC="${ac_tool_prefix}cc" -    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 -    break 2 -  fi -done -done - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then -  echo "$as_me:$LINENO: result: $CC" >&5 -echo "${ECHO_T}$CC" >&6 -else -  echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - -fi -if test -z "$ac_cv_prog_CC"; then -  ac_ct_CC=$CC -  # Extract the first word of "cc", so it can be a program name with args. -set dummy cc; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then -  echo $ECHO_N "(cached) $ECHO_C" >&6 -else -  if test -n "$ac_ct_CC"; then -  ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do -  IFS=$as_save_IFS -  test -z "$as_dir" && as_dir=. -  for ac_exec_ext in '' $ac_executable_extensions; do -  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -    ac_cv_prog_ac_ct_CC="cc" -    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 -    break 2 -  fi -done -done - -fi -fi -ac_ct_CC=$ac_cv_prog_ac_ct_CC -if test -n "$ac_ct_CC"; then -  echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 -echo "${ECHO_T}$ac_ct_CC" >&6 -else -  echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - -  CC=$ac_ct_CC -else -  CC="$ac_cv_prog_CC" -fi - -fi -if test -z "$CC"; then -  # Extract the first word of "cc", so it can be a program name with args. -set dummy cc; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_CC+set}" = set; then -  echo $ECHO_N "(cached) $ECHO_C" >&6 -else -  if test -n "$CC"; then -  ac_cv_prog_CC="$CC" # Let the user override the test. -else -  ac_prog_rejected=no -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do -  IFS=$as_save_IFS -  test -z "$as_dir" && as_dir=. -  for ac_exec_ext in '' $ac_executable_extensions; do -  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -    if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then -       ac_prog_rejected=yes -       continue -     fi -    ac_cv_prog_CC="cc" -    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 -    break 2 -  fi -done -done - -if test $ac_prog_rejected = yes; then -  # We found a bogon in the path, so make sure we never use it. -  set dummy $ac_cv_prog_CC -  shift -  if test $# != 0; then -    # We chose a different compiler from the bogus one. -    # However, it has the same basename, so the bogon will be chosen -    # first if we set CC to just the basename; use the full file name. -    shift -    ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" -  fi -fi -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then -  echo "$as_me:$LINENO: result: $CC" >&5 -echo "${ECHO_T}$CC" >&6 -else -  echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - -fi -if test -z "$CC"; then -  if test -n "$ac_tool_prefix"; then -  for ac_prog in cl -  do -    # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_CC+set}" = set; then -  echo $ECHO_N "(cached) $ECHO_C" >&6 -else -  if test -n "$CC"; then -  ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do -  IFS=$as_save_IFS -  test -z "$as_dir" && as_dir=. -  for ac_exec_ext in '' $ac_executable_extensions; do -  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -    ac_cv_prog_CC="$ac_tool_prefix$ac_prog" -    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 -    break 2 -  fi -done -done - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then -  echo "$as_me:$LINENO: result: $CC" >&5 -echo "${ECHO_T}$CC" >&6 -else -  echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - -    test -n "$CC" && break -  done -fi -if test -z "$CC"; then -  ac_ct_CC=$CC -  for ac_prog in cl -do -  # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then -  echo $ECHO_N "(cached) $ECHO_C" >&6 -else -  if test -n "$ac_ct_CC"; then -  ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do -  IFS=$as_save_IFS -  test -z "$as_dir" && as_dir=. -  for ac_exec_ext in '' $ac_executable_extensions; do -  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -    ac_cv_prog_ac_ct_CC="$ac_prog" -    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 -    break 2 -  fi -done -done - -fi -fi -ac_ct_CC=$ac_cv_prog_ac_ct_CC -if test -n "$ac_ct_CC"; then -  echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 -echo "${ECHO_T}$ac_ct_CC" >&6 -else -  echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - -  test -n "$ac_ct_CC" && break -done - -  CC=$ac_ct_CC -fi - -fi - - -test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH -See \`config.log' for more details." >&5 -echo "$as_me: error: no acceptable C compiler found in \$PATH -See \`config.log' for more details." >&2;} -   { (exit 1); exit 1; }; } - -# Provide some information about the compiler. -echo "$as_me:$LINENO:" \ -     "checking for C compiler version" >&5 -ac_compiler=`set X $ac_compile; echo $2` -{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5 -  (eval $ac_compiler --version </dev/null >&5) 2>&5 -  ac_status=$? -  echo "$as_me:$LINENO: \$? = $ac_status" >&5 -  (exit $ac_status); } -{ (eval echo "$as_me:$LINENO: \"$ac_compiler -v </dev/null >&5\"") >&5 -  (eval $ac_compiler -v </dev/null >&5) 2>&5 -  ac_status=$? -  echo "$as_me:$LINENO: \$? = $ac_status" >&5 -  (exit $ac_status); } -{ (eval echo "$as_me:$LINENO: \"$ac_compiler -V </dev/null >&5\"") >&5 -  (eval $ac_compiler -V </dev/null >&5) 2>&5 -  ac_status=$? -  echo "$as_me:$LINENO: \$? = $ac_status" >&5 -  (exit $ac_status); } - -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h.  */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h.  */ - -int -main () -{ - -  ; -  return 0; -} -_ACEOF -ac_clean_files_save=$ac_clean_files -ac_clean_files="$ac_clean_files a.out a.exe b.out" -# Try to create an executable without -o first, disregard a.out. -# It will help us diagnose broken compilers, and finding out an intuition -# of exeext. -echo "$as_me:$LINENO: checking for C compiler default output file name" >&5 -echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6 -ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` -if { (eval echo "$as_me:$LINENO: \"$ac_link_default\"") >&5 -  (eval $ac_link_default) 2>&5 -  ac_status=$? -  echo "$as_me:$LINENO: \$? = $ac_status" >&5 -  (exit $ac_status); }; then -  # Find the output, starting from the most likely.  This scheme is -# not robust to junk in `.', hence go to wildcards (a.*) only as a last -# resort. - -# Be careful to initialize this variable, since it used to be cached. -# Otherwise an old cache value of `no' led to `EXEEXT = no' in a Makefile. -ac_cv_exeext= -# b.out is created by i960 compilers. -for ac_file in a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out -do -  test -f "$ac_file" || continue -  case $ac_file in -    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj ) -	;; -    conftest.$ac_ext ) -	# This is the source file. -	;; -    [ab].out ) -	# We found the default executable, but exeext='' is most -	# certainly right. -	break;; -    *.* ) -	ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` -	# FIXME: I believe we export ac_cv_exeext for Libtool, -	# but it would be cool to find out if it's true.  Does anybody -	# maintain Libtool? --akim. -	export ac_cv_exeext -	break;; -    * ) -	break;; -  esac -done -else -  echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -{ { echo "$as_me:$LINENO: error: C compiler cannot create executables -See \`config.log' for more details." >&5 -echo "$as_me: error: C compiler cannot create executables -See \`config.log' for more details." >&2;} -   { (exit 77); exit 77; }; } -fi - -ac_exeext=$ac_cv_exeext -echo "$as_me:$LINENO: result: $ac_file" >&5 -echo "${ECHO_T}$ac_file" >&6 - -# Check the compiler produces executables we can run.  If not, either -# the compiler is broken, or we cross compile. -echo "$as_me:$LINENO: checking whether the C compiler works" >&5 -echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6 -# FIXME: These cross compiler hacks should be removed for Autoconf 3.0 -# If not cross compiling, check that we can run a simple program. -if test "$cross_compiling" != yes; then -  if { ac_try='./$ac_file' -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 -  (eval $ac_try) 2>&5 -  ac_status=$? -  echo "$as_me:$LINENO: \$? = $ac_status" >&5 -  (exit $ac_status); }; }; then -    cross_compiling=no -  else -    if test "$cross_compiling" = maybe; then -	cross_compiling=yes -    else -	{ { echo "$as_me:$LINENO: error: cannot run C compiled programs. -If you meant to cross compile, use \`--host'. -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot run C compiled programs. -If you meant to cross compile, use \`--host'. -See \`config.log' for more details." >&2;} -   { (exit 1); exit 1; }; } -    fi -  fi -fi -echo "$as_me:$LINENO: result: yes" >&5 -echo "${ECHO_T}yes" >&6 - -rm -f a.out a.exe conftest$ac_cv_exeext b.out -ac_clean_files=$ac_clean_files_save -# Check the compiler produces executables we can run.  If not, either -# the compiler is broken, or we cross compile. -echo "$as_me:$LINENO: checking whether we are cross compiling" >&5 -echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6 -echo "$as_me:$LINENO: result: $cross_compiling" >&5 -echo "${ECHO_T}$cross_compiling" >&6 - -echo "$as_me:$LINENO: checking for suffix of executables" >&5 -echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6 -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 -  (eval $ac_link) 2>&5 -  ac_status=$? -  echo "$as_me:$LINENO: \$? = $ac_status" >&5 -  (exit $ac_status); }; then -  # If both `conftest.exe' and `conftest' are `present' (well, observable) -# catch `conftest.exe'.  For instance with Cygwin, `ls conftest' will -# work properly (i.e., refer to `conftest.exe'), while it won't with -# `rm'. -for ac_file in conftest.exe conftest conftest.*; do -  test -f "$ac_file" || continue -  case $ac_file in -    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj ) ;; -    *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` -	  export ac_cv_exeext -	  break;; -    * ) break;; -  esac -done -else -  { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute suffix of executables: cannot compile and link -See \`config.log' for more details." >&2;} -   { (exit 1); exit 1; }; } -fi - -rm -f conftest$ac_cv_exeext -echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5 -echo "${ECHO_T}$ac_cv_exeext" >&6 - -rm -f conftest.$ac_ext -EXEEXT=$ac_cv_exeext -ac_exeext=$EXEEXT -echo "$as_me:$LINENO: checking for suffix of object files" >&5 -echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6 -if test "${ac_cv_objext+set}" = set; then -  echo $ECHO_N "(cached) $ECHO_C" >&6 -else -  cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h.  */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h.  */ - -int -main () -{ - -  ; -  return 0; -} -_ACEOF -rm -f conftest.o conftest.obj -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 -  (eval $ac_compile) 2>&5 -  ac_status=$? -  echo "$as_me:$LINENO: \$? = $ac_status" >&5 -  (exit $ac_status); }; then -  for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do -  case $ac_file in -    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg ) ;; -    *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` -       break;; -  esac -done -else -  echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -{ { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute suffix of object files: cannot compile -See \`config.log' for more details." >&2;} -   { (exit 1); exit 1; }; } -fi - -rm -f conftest.$ac_cv_objext conftest.$ac_ext -fi -echo "$as_me:$LINENO: result: $ac_cv_objext" >&5 -echo "${ECHO_T}$ac_cv_objext" >&6 -OBJEXT=$ac_cv_objext -ac_objext=$OBJEXT -echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 -echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6 -if test "${ac_cv_c_compiler_gnu+set}" = set; then -  echo $ECHO_N "(cached) $ECHO_C" >&6 -else -  cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h.  */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h.  */ - -int -main () -{ -#ifndef __GNUC__ -       choke me -#endif - -  ; -  return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 -  (eval $ac_compile) 2>conftest.er1 -  ac_status=$? -  grep -v '^ *+' conftest.er1 >conftest.err -  rm -f conftest.er1 -  cat conftest.err >&5 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5 -  (exit $ac_status); } && -	 { ac_try='test -z "$ac_c_werror_flag"			 || test ! -s conftest.err' -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 -  (eval $ac_try) 2>&5 -  ac_status=$? -  echo "$as_me:$LINENO: \$? = $ac_status" >&5 -  (exit $ac_status); }; } && -	 { ac_try='test -s conftest.$ac_objext' -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 -  (eval $ac_try) 2>&5 -  ac_status=$? -  echo "$as_me:$LINENO: \$? = $ac_status" >&5 -  (exit $ac_status); }; }; then -  ac_compiler_gnu=yes -else -  echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_compiler_gnu=no -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -ac_cv_c_compiler_gnu=$ac_compiler_gnu - -fi -echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 -echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6 -GCC=`test $ac_compiler_gnu = yes && echo yes` -ac_test_CFLAGS=${CFLAGS+set} -ac_save_CFLAGS=$CFLAGS -CFLAGS="-g" -echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 -echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6 -if test "${ac_cv_prog_cc_g+set}" = set; then -  echo $ECHO_N "(cached) $ECHO_C" >&6 -else -  cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h.  */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h.  */ - -int -main () -{ - -  ; -  return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 -  (eval $ac_compile) 2>conftest.er1 -  ac_status=$? -  grep -v '^ *+' conftest.er1 >conftest.err -  rm -f conftest.er1 -  cat conftest.err >&5 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5 -  (exit $ac_status); } && -	 { ac_try='test -z "$ac_c_werror_flag"			 || test ! -s conftest.err' -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 -  (eval $ac_try) 2>&5 -  ac_status=$? -  echo "$as_me:$LINENO: \$? = $ac_status" >&5 -  (exit $ac_status); }; } && -	 { ac_try='test -s conftest.$ac_objext' -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 -  (eval $ac_try) 2>&5 -  ac_status=$? -  echo "$as_me:$LINENO: \$? = $ac_status" >&5 -  (exit $ac_status); }; }; then -  ac_cv_prog_cc_g=yes -else -  echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_cv_prog_cc_g=no -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -fi -echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 -echo "${ECHO_T}$ac_cv_prog_cc_g" >&6 -if test "$ac_test_CFLAGS" = set; then -  CFLAGS=$ac_save_CFLAGS -elif test $ac_cv_prog_cc_g = yes; then -  if test "$GCC" = yes; then -    CFLAGS="-g -O2" -  else -    CFLAGS="-g" -  fi -else -  if test "$GCC" = yes; then -    CFLAGS="-O2" -  else -    CFLAGS= -  fi -fi -echo "$as_me:$LINENO: checking for $CC option to accept ANSI C" >&5 -echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6 -if test "${ac_cv_prog_cc_stdc+set}" = set; then -  echo $ECHO_N "(cached) $ECHO_C" >&6 -else -  ac_cv_prog_cc_stdc=no -ac_save_CC=$CC -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h.  */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h.  */ -#include <stdarg.h> -#include <stdio.h> -#include <sys/types.h> -#include <sys/stat.h> -/* Most of the following tests are stolen from RCS 5.7's src/conf.sh.  */ -struct buf { int x; }; -FILE * (*rcsopen) (struct buf *, struct stat *, int); -static char *e (p, i) -     char **p; -     int i; -{ -  return p[i]; -} -static char *f (char * (*g) (char **, int), char **p, ...) -{ -  char *s; -  va_list v; -  va_start (v,p); -  s = g (p, va_arg (v,int)); -  va_end (v); -  return s; -} - -/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default.  It has -   function prototypes and stuff, but not '\xHH' hex character constants. -   These don't provoke an error unfortunately, instead are silently treated -   as 'x'.  The following induces an error, until -std1 is added to get -   proper ANSI mode.  Curiously '\x00'!='x' always comes out true, for an -   array size at least.  It's necessary to write '\x00'==0 to get something -   that's true only with -std1.  */ -int osf4_cc_array ['\x00' == 0 ? 1 : -1]; - -int test (int i, double x); -struct s1 {int (*f) (int a);}; -struct s2 {int (*f) (double a);}; -int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); -int argc; -char **argv; -int -main () -{ -return f (e, argv, 0) != argv[0]  ||  f (e, argv, 1) != argv[1]; -  ; -  return 0; -} -_ACEOF -# Don't try gcc -ansi; that turns off useful extensions and -# breaks some systems' header files. -# AIX			-qlanglvl=ansi -# Ultrix and OSF/1	-std1 -# HP-UX 10.20 and later	-Ae -# HP-UX older versions	-Aa -D_HPUX_SOURCE -# SVR4			-Xc -D__EXTENSIONS__ -for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" -do -  CC="$ac_save_CC $ac_arg" -  rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 -  (eval $ac_compile) 2>conftest.er1 -  ac_status=$? -  grep -v '^ *+' conftest.er1 >conftest.err -  rm -f conftest.er1 -  cat conftest.err >&5 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5 -  (exit $ac_status); } && -	 { ac_try='test -z "$ac_c_werror_flag"			 || test ! -s conftest.err' -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 -  (eval $ac_try) 2>&5 -  ac_status=$? -  echo "$as_me:$LINENO: \$? = $ac_status" >&5 -  (exit $ac_status); }; } && -	 { ac_try='test -s conftest.$ac_objext' -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 -  (eval $ac_try) 2>&5 -  ac_status=$? -  echo "$as_me:$LINENO: \$? = $ac_status" >&5 -  (exit $ac_status); }; }; then -  ac_cv_prog_cc_stdc=$ac_arg -break -else -  echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -fi -rm -f conftest.err conftest.$ac_objext -done -rm -f conftest.$ac_ext conftest.$ac_objext -CC=$ac_save_CC - -fi - -case "x$ac_cv_prog_cc_stdc" in -  x|xno) -    echo "$as_me:$LINENO: result: none needed" >&5 -echo "${ECHO_T}none needed" >&6 ;; -  *) -    echo "$as_me:$LINENO: result: $ac_cv_prog_cc_stdc" >&5 -echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6 -    CC="$CC $ac_cv_prog_cc_stdc" ;; -esac - -# Some people use a C++ compiler to compile C.  Since we use `exit', -# in C++ we need to declare it.  In case someone uses the same compiler -# for both compiling C and C++ we need to have the C++ compiler decide -# the declaration of exit, since it's the most demanding environment. -cat >conftest.$ac_ext <<_ACEOF -#ifndef __cplusplus -  choke me -#endif -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 -  (eval $ac_compile) 2>conftest.er1 -  ac_status=$? -  grep -v '^ *+' conftest.er1 >conftest.err -  rm -f conftest.er1 -  cat conftest.err >&5 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5 -  (exit $ac_status); } && -	 { ac_try='test -z "$ac_c_werror_flag"			 || test ! -s conftest.err' -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 -  (eval $ac_try) 2>&5 -  ac_status=$? -  echo "$as_me:$LINENO: \$? = $ac_status" >&5 -  (exit $ac_status); }; } && -	 { ac_try='test -s conftest.$ac_objext' -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 -  (eval $ac_try) 2>&5 -  ac_status=$? -  echo "$as_me:$LINENO: \$? = $ac_status" >&5 -  (exit $ac_status); }; }; then -  for ac_declaration in \ -   '' \ -   'extern "C" void std::exit (int) throw (); using std::exit;' \ -   'extern "C" void std::exit (int); using std::exit;' \ -   'extern "C" void exit (int) throw ();' \ -   'extern "C" void exit (int);' \ -   'void exit (int);' -do -  cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h.  */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h.  */ -$ac_declaration -#include <stdlib.h> -int -main () -{ -exit (42); -  ; -  return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 -  (eval $ac_compile) 2>conftest.er1 -  ac_status=$? -  grep -v '^ *+' conftest.er1 >conftest.err -  rm -f conftest.er1 -  cat conftest.err >&5 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5 -  (exit $ac_status); } && -	 { ac_try='test -z "$ac_c_werror_flag"			 || test ! -s conftest.err' -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 -  (eval $ac_try) 2>&5 -  ac_status=$? -  echo "$as_me:$LINENO: \$? = $ac_status" >&5 -  (exit $ac_status); }; } && -	 { ac_try='test -s conftest.$ac_objext' -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 -  (eval $ac_try) 2>&5 -  ac_status=$? -  echo "$as_me:$LINENO: \$? = $ac_status" >&5 -  (exit $ac_status); }; }; then -  : -else -  echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -continue -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -  cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h.  */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h.  */ -$ac_declaration -int -main () -{ -exit (42); -  ; -  return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 -  (eval $ac_compile) 2>conftest.er1 -  ac_status=$? -  grep -v '^ *+' conftest.er1 >conftest.err -  rm -f conftest.er1 -  cat conftest.err >&5 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5 -  (exit $ac_status); } && -	 { ac_try='test -z "$ac_c_werror_flag"			 || test ! -s conftest.err' -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 -  (eval $ac_try) 2>&5 -  ac_status=$? -  echo "$as_me:$LINENO: \$? = $ac_status" >&5 -  (exit $ac_status); }; } && -	 { ac_try='test -s conftest.$ac_objext' -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 -  (eval $ac_try) 2>&5 -  ac_status=$? -  echo "$as_me:$LINENO: \$? = $ac_status" >&5 -  (exit $ac_status); }; }; then -  break -else -  echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -done -rm -f conftest* -if test -n "$ac_declaration"; then -  echo '#ifdef __cplusplus' >>confdefs.h -  echo $ac_declaration      >>confdefs.h -  echo '#endif'             >>confdefs.h -fi - -else -  echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - - - - -echo "$as_me:$LINENO: checking for ${CC-cc} option to accept ANSI C" >&5 -echo $ECHO_N "checking for ${CC-cc} option to accept ANSI C... $ECHO_C" >&6 -if test "${am_cv_prog_cc_stdc+set}" = set; then -  echo $ECHO_N "(cached) $ECHO_C" >&6 -else -  am_cv_prog_cc_stdc=no -ac_save_CC="$CC" -# Don't try gcc -ansi; that turns off useful extensions and -# breaks some systems' header files. -# AIX			-qlanglvl=ansi -# Ultrix and OSF/1	-std1 -# HP-UX			-Aa -D_HPUX_SOURCE -# SVR4			-Xc -D__EXTENSIONS__ -for ac_arg in "" -qlanglvl=ansi -std1 "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" -do -  CC="$ac_save_CC $ac_arg" -  cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h.  */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h.  */ -#include <stdarg.h> -#include <stdio.h> -#include <sys/types.h> -#include <sys/stat.h> -/* Most of the following tests are stolen from RCS 5.7's src/conf.sh.  */ -struct buf { int x; }; -FILE * (*rcsopen) (struct buf *, struct stat *, int); -static char *e (p, i) -     char **p; -     int i; -{ -  return p[i]; -} -static char *f (char * (*g) (char **, int), char **p, ...) -{ -  char *s; -  va_list v; -  va_start (v,p); -  s = g (p, va_arg (v,int)); -  va_end (v); -  return s; -} -int test (int i, double x); -struct s1 {int (*f) (int a);}; -struct s2 {int (*f) (double a);}; -int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); -int argc; -char **argv; - -int -main () -{ - -return f (e, argv, 0) != argv[0]  ||  f (e, argv, 1) != argv[1]; - -  ; -  return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 -  (eval $ac_compile) 2>conftest.er1 -  ac_status=$? -  grep -v '^ *+' conftest.er1 >conftest.err -  rm -f conftest.er1 -  cat conftest.err >&5 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5 -  (exit $ac_status); } && -	 { ac_try='test -z "$ac_c_werror_flag"			 || test ! -s conftest.err' -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 -  (eval $ac_try) 2>&5 -  ac_status=$? -  echo "$as_me:$LINENO: \$? = $ac_status" >&5 -  (exit $ac_status); }; } && -	 { ac_try='test -s conftest.$ac_objext' -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 -  (eval $ac_try) 2>&5 -  ac_status=$? -  echo "$as_me:$LINENO: \$? = $ac_status" >&5 -  (exit $ac_status); }; }; then -  am_cv_prog_cc_stdc="$ac_arg"; break -else -  echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -done -CC="$ac_save_CC" - -fi - -if test -z "$am_cv_prog_cc_stdc"; then -  echo "$as_me:$LINENO: result: none needed" >&5 -echo "${ECHO_T}none needed" >&6 -else -  echo "$as_me:$LINENO: result: $am_cv_prog_cc_stdc" >&5 -echo "${ECHO_T}$am_cv_prog_cc_stdc" >&6 -fi -case "x$am_cv_prog_cc_stdc" in -  x|xno) ;; -  *) CC="$CC $am_cv_prog_cc_stdc" ;; -esac - -echo "$as_me:$LINENO: checking for an ANSI C-conforming const" >&5 -echo $ECHO_N "checking for an ANSI C-conforming const... $ECHO_C" >&6 -if test "${ac_cv_c_const+set}" = set; then -  echo $ECHO_N "(cached) $ECHO_C" >&6 -else -  cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h.  */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h.  */ - -int -main () -{ -/* FIXME: Include the comments suggested by Paul. */ -#ifndef __cplusplus -  /* Ultrix mips cc rejects this.  */ -  typedef int charset[2]; -  const charset x; -  /* SunOS 4.1.1 cc rejects this.  */ -  char const *const *ccp; -  char **p; -  /* NEC SVR4.0.2 mips cc rejects this.  */ -  struct point {int x, y;}; -  static struct point const zero = {0,0}; -  /* AIX XL C 1.02.0.0 rejects this. -     It does not let you subtract one const X* pointer from another in -     an arm of an if-expression whose if-part is not a constant -     expression */ -  const char *g = "string"; -  ccp = &g + (g ? g-g : 0); -  /* HPUX 7.0 cc rejects these. */ -  ++ccp; -  p = (char**) ccp; -  ccp = (char const *const *) p; -  { /* SCO 3.2v4 cc rejects this.  */ -    char *t; -    char const *s = 0 ? (char *) 0 : (char const *) 0; - -    *t++ = 0; -  } -  { /* Someone thinks the Sun supposedly-ANSI compiler will reject this.  */ -    int x[] = {25, 17}; -    const int *foo = &x[0]; -    ++foo; -  } -  { /* Sun SC1.0 ANSI compiler rejects this -- but not the above. */ -    typedef const int *iptr; -    iptr p = 0; -    ++p; -  } -  { /* AIX XL C 1.02.0.0 rejects this saying -       "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */ -    struct s { int j; const int *ap[3]; }; -    struct s *b; b->j = 5; -  } -  { /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */ -    const int foo = 10; -  } -#endif - -  ; -  return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 -  (eval $ac_compile) 2>conftest.er1 -  ac_status=$? -  grep -v '^ *+' conftest.er1 >conftest.err -  rm -f conftest.er1 -  cat conftest.err >&5 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5 -  (exit $ac_status); } && -	 { ac_try='test -z "$ac_c_werror_flag"			 || test ! -s conftest.err' -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 -  (eval $ac_try) 2>&5 -  ac_status=$? -  echo "$as_me:$LINENO: \$? = $ac_status" >&5 -  (exit $ac_status); }; } && -	 { ac_try='test -s conftest.$ac_objext' -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 -  (eval $ac_try) 2>&5 -  ac_status=$? -  echo "$as_me:$LINENO: \$? = $ac_status" >&5 -  (exit $ac_status); }; }; then -  ac_cv_c_const=yes -else -  echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_cv_c_const=no -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -fi -echo "$as_me:$LINENO: result: $ac_cv_c_const" >&5 -echo "${ECHO_T}$ac_cv_c_const" >&6 -if test $ac_cv_c_const = no; then - -cat >>confdefs.h <<\_ACEOF -#define const -_ACEOF - -fi - - -# Find a good install program.  We prefer a C program (faster), -# so one script is as good as another.  But avoid the broken or -# incompatible versions: -# SysV /etc/install, /usr/sbin/install -# SunOS /usr/etc/install -# IRIX /sbin/install -# AIX /bin/install -# AmigaOS /C/install, which installs bootblocks on floppy discs -# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag -# AFS /usr/afsws/bin/install, which mishandles nonexistent args -# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" -# OS/2's system install, which has a completely different semantic -# ./install, which can be erroneously created by make from ./install.sh. -echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 -echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6 -if test -z "$INSTALL"; then -if test "${ac_cv_path_install+set}" = set; then -  echo $ECHO_N "(cached) $ECHO_C" >&6 -else -  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do -  IFS=$as_save_IFS -  test -z "$as_dir" && as_dir=. -  # Account for people who put trailing slashes in PATH elements. -case $as_dir/ in -  ./ | .// | /cC/* | \ -  /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ -  ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \ -  /usr/ucb/* ) ;; -  *) -    # OSF1 and SCO ODT 3.0 have their own names for install. -    # Don't use installbsd from OSF since it installs stuff as root -    # by default. -    for ac_prog in ginstall scoinst install; do -      for ac_exec_ext in '' $ac_executable_extensions; do -	if $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then -	  if test $ac_prog = install && -	    grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then -	    # AIX install.  It has an incompatible calling convention. -	    : -	  elif test $ac_prog = install && -	    grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then -	    # program-specific install script used by HP pwplus--don't use. -	    : -	  else -	    ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" -	    break 3 -	  fi -	fi -      done -    done -    ;; -esac -done - - -fi -  if test "${ac_cv_path_install+set}" = set; then -    INSTALL=$ac_cv_path_install -  else -    # As a last resort, use the slow shell script.  We don't cache a -    # path for INSTALL within a source directory, because that will -    # break other packages using the cache if that directory is -    # removed, or if the path is relative. -    INSTALL=$ac_install_sh -  fi -fi -echo "$as_me:$LINENO: result: $INSTALL" >&5 -echo "${ECHO_T}$INSTALL" >&6 - -# Use test -z because SunOS4 sh mishandles braces in ${var-val}. -# It thinks the first close brace ends the variable substitution. -test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' - -test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' - -test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' - -echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5 -echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6 -set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,:./+-,___p_,'` -if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\" = set"; then -  echo $ECHO_N "(cached) $ECHO_C" >&6 -else -  cat >conftest.make <<\_ACEOF -all: -	@echo 'ac_maketemp="$(MAKE)"' -_ACEOF -# GNU make sometimes prints "make[1]: Entering...", which would confuse us. -eval `${MAKE-make} -f conftest.make 2>/dev/null | grep temp=` -if test -n "$ac_maketemp"; then -  eval ac_cv_prog_make_${ac_make}_set=yes -else -  eval ac_cv_prog_make_${ac_make}_set=no -fi -rm -f conftest.make -fi -if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then -  echo "$as_me:$LINENO: result: yes" >&5 -echo "${ECHO_T}yes" >&6 -  SET_MAKE= -else -  echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -  SET_MAKE="MAKE=${MAKE-make}" -fi - - -echo "$as_me:$LINENO: checking whether to enable maintainer-specific portions of Makefiles" >&5 -echo $ECHO_N "checking whether to enable maintainer-specific portions of Makefiles... $ECHO_C" >&6 -    # Check whether --enable-maintainer-mode or --disable-maintainer-mode was given. -if test "${enable_maintainer_mode+set}" = set; then -  enableval="$enable_maintainer_mode" -  USE_MAINTAINER_MODE=$enableval -else -  USE_MAINTAINER_MODE=no -fi; -  echo "$as_me:$LINENO: result: $USE_MAINTAINER_MODE" >&5 -echo "${ECHO_T}$USE_MAINTAINER_MODE" >&6 - - -if test $USE_MAINTAINER_MODE = yes; then -  MAINTAINER_MODE_TRUE= -  MAINTAINER_MODE_FALSE='#' -else -  MAINTAINER_MODE_TRUE='#' -  MAINTAINER_MODE_FALSE= -fi -  MAINT=$MAINTAINER_MODE_TRUE - - -echo "$as_me:$LINENO: checking if malloc debugging is wanted" >&5 -echo $ECHO_N "checking if malloc debugging is wanted... $ECHO_C" >&6 - -# Check whether --with-dmalloc or --without-dmalloc was given. -if test "${with_dmalloc+set}" = set; then -  withval="$with_dmalloc" -  if test "$withval" = yes; then -  echo "$as_me:$LINENO: result: yes" >&5 -echo "${ECHO_T}yes" >&6 - -cat >>confdefs.h <<\_ACEOF -#define WITH_DMALLOC 1 -_ACEOF - -  LIBS="$LIBS -ldmalloc" -  LDFLAGS="$LDFLAGS -g" -else -  echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi -else -  echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi; - - - -# Check whether --with-imlib2 or --without-imlib2 was given. -if test "${with_imlib2+set}" = set; then -  withval="$with_imlib2" -  CFLAGS="$CFLAGS -I$withval/include" -        LIBS="-L$withval/lib $LIBS" -fi; - - - -# Check whether --with-imlib2-prefix or --without-imlib2-prefix was given. -if test "${with_imlib2_prefix+set}" = set; then -  withval="$with_imlib2_prefix" -  imlib2_config_prefix="$withval" -else -  imlib2_config_prefix="" -fi; - -# Check whether --with-imlib2-exec-prefix or --without-imlib2-exec-prefix was given. -if test "${with_imlib2_exec_prefix+set}" = set; then -  withval="$with_imlib2_exec_prefix" -  imlib2_config_exec_prefix="$withval" -else -  imlib2_config_exec_prefix="" -fi; - -  if test x$imlib2_config_exec_prefix != x ; then -     imlib2_config_args="$imlib2_config_args --exec-prefix=$imlib2_config_exec_prefix" -     if test x${IMLIB2_CONFIG+set} != xset ; then -       IMLIB2_CONFIG=$imlib2_config_exec_prefix/bin/imlib2-config -     fi -  fi -  if test x$imlib2_config_prefix != x ; then -     imlib2_config_args="$imlib2_config_args --prefix=$imlib2_config_prefix" -     if test x${IMLIB2_CONFIG+set} != xset ; then -       IMLIB2_CONFIG=$imlib2_config_prefix/bin/imlib2-config -     fi -  fi - -  # Extract the first word of "imlib2-config", so it can be a program name with args. -set dummy imlib2-config; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_path_IMLIB2_CONFIG+set}" = set; then -  echo $ECHO_N "(cached) $ECHO_C" >&6 -else -  case $IMLIB2_CONFIG in -  [\\/]* | ?:[\\/]*) -  ac_cv_path_IMLIB2_CONFIG="$IMLIB2_CONFIG" # Let the user override the test with a path. -  ;; -  *) -  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do -  IFS=$as_save_IFS -  test -z "$as_dir" && as_dir=. -  for ac_exec_ext in '' $ac_executable_extensions; do -  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -    ac_cv_path_IMLIB2_CONFIG="$as_dir/$ac_word$ac_exec_ext" -    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 -    break 2 -  fi -done -done - -  test -z "$ac_cv_path_IMLIB2_CONFIG" && ac_cv_path_IMLIB2_CONFIG="no" -  ;; -esac -fi -IMLIB2_CONFIG=$ac_cv_path_IMLIB2_CONFIG - -if test -n "$IMLIB2_CONFIG"; then -  echo "$as_me:$LINENO: result: $IMLIB2_CONFIG" >&5 -echo "${ECHO_T}$IMLIB2_CONFIG" >&6 -else -  echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - -  echo "$as_me:$LINENO: checking for imlib2 - version >= 1.0.0" >&5 -echo $ECHO_N "checking for imlib2 - version >= 1.0.0... $ECHO_C" >&6 - -  no_imlib2="" -  if test "$IMLIB2_CONFIG" = "no" ; then -     no_imlib2=yes -  else -     IMLIB2_CFLAGS="`$IMLIB2_CONFIG $imlib2_config_args --cflags`" -     IMLIB2_LIBS="`$IMLIB2_CONFIG $imlib2_config_args --libs`" - -        imlib2_config_major_version=`$IMLIB2_CONFIG $imlib2_config_args \ -         --version | sed 's/[^0-9]*\([0-9]*\).\([0-9]*\).\([0-9]*\)/\1/'` -        imlib2_config_minor_version=`$IMLIB2_CONFIG $imlib2_config_args \ -         --version | sed 's/[^0-9]*\([0-9]*\).\([0-9]*\).\([0-9]*\)/\2/'` -        imlib2_config_micro_version=`$IMLIB2_CONFIG $imlib2_config_args \ -         --version | sed 's/[^0-9]*\([0-9]*\).\([0-9]*\).\([0-9]*\)/\3/'` -        imlib2_wanted_major_version="1" -        imlib2_wanted_minor_version="0" -        imlib2_wanted_micro_version="0" - -        # Compare wanted version to what config script returned. -        # If I knew what library was being run, i'd probably also compile -        # a test program at this point (which also extracted and tested -        # the version in some library-specific way) -        if test "$imlib2_config_major_version" -lt \ -                        "$imlib2_wanted_major_version" \ -          -o \( "$imlib2_config_major_version" -eq \ -                        "$imlib2_wanted_major_version" \ -            -a "$imlib2_config_minor_version" -lt \ -                        "$imlib2_wanted_minor_version" \) \ -          -o \( "$imlib2_config_major_version" -eq \ -                        "$imlib2_wanted_major_version" \ -            -a "$imlib2_config_minor_version" -eq \ -                        "$imlib2_wanted_minor_version" \ -            -a "$imlib2_config_micro_version" -lt \ -                        "$imlib2_wanted_micro_version" \) ; then -          # older version found -          no_imlib2=yes -          echo -n "*** An old version of imlib2 " -          echo -n "($imlib2_config_major_version" -          echo -n ".$imlib2_config_minor_version" -          echo    ".$imlib2_config_micro_version) was found." -          echo -n "*** You need a version of imlib2 newer than " -          echo -n "$imlib2_wanted_major_version" -          echo -n ".$imlib2_wanted_minor_version" -          echo    ".$imlib2_wanted_micro_version." -          echo "***" -          echo "*** If you have already installed a sufficiently new version, this error" -          echo "*** probably means that the wrong copy of the imlib2-config shell script is" -          echo "*** being found. The easiest way to fix this is to remove the old version" -          echo "*** of imlib2, but you can also set the IMLIB2_CONFIG environment to point to the" -          echo "*** correct copy of imlib2-config. (In this case, you will have to" -          echo "*** modify your LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf" -          echo "*** so that the correct libraries are found at run-time)" -        fi - -  fi -  if test "x$no_imlib2" = x ; then -     echo "$as_me:$LINENO: result: yes" >&5 -echo "${ECHO_T}yes" >&6 - - - -  else -     echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -     if test "$IMLIB2_CONFIG" = "no" ; then -       echo "*** The imlib2-config script installed by imlib2 could not be found" -       echo "*** If imlib2 was installed in PREFIX, make sure PREFIX/bin is in" -       echo "*** your path, or set the IMLIB2_CONFIG environment variable to the" -       echo "*** full path to imlib2-config." -     fi -     IMLIB2_CFLAGS="" -     IMLIB2_LIBS="" -     { { echo "$as_me:$LINENO: error: Cannot find imlib2: Is imlib2-config in the path?" >&5 -echo "$as_me: error: Cannot find imlib2: Is imlib2-config in the path?" >&2;} -   { (exit 1); exit 1; }; } -  fi - - - - - - -IMLIB_LIBS=`imlib2-config --libs` -IMLIB_CFLAGS=`imlib2-config --cflags` - - - - - -# Check whether --with-giblib-prefix or --without-giblib-prefix was given. -if test "${with_giblib_prefix+set}" = set; then -  withval="$with_giblib_prefix" -  giblib_config_prefix="$withval" -else -  giblib_config_prefix="" -fi; - -# Check whether --with-giblib-exec-prefix or --without-giblib-exec-prefix was given. -if test "${with_giblib_exec_prefix+set}" = set; then -  withval="$with_giblib_exec_prefix" -  giblib_config_exec_prefix="$withval" -else -  giblib_config_exec_prefix="" -fi; - -  if test x$giblib_config_exec_prefix != x ; then -     giblib_config_args="$giblib_config_args --exec-prefix=$giblib_config_exec_prefix" -     if test x${GIBLIB_CONFIG+set} != xset ; then -       GIBLIB_CONFIG=$giblib_config_exec_prefix/bin/giblib-config -     fi -  fi -  if test x$giblib_config_prefix != x ; then -     giblib_config_args="$giblib_config_args --prefix=$giblib_config_prefix" -     if test x${GIBLIB_CONFIG+set} != xset ; then -       GIBLIB_CONFIG=$giblib_config_prefix/bin/giblib-config -     fi -  fi - -  # Extract the first word of "giblib-config", so it can be a program name with args. -set dummy giblib-config; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_path_GIBLIB_CONFIG+set}" = set; then -  echo $ECHO_N "(cached) $ECHO_C" >&6 -else -  case $GIBLIB_CONFIG in -  [\\/]* | ?:[\\/]*) -  ac_cv_path_GIBLIB_CONFIG="$GIBLIB_CONFIG" # Let the user override the test with a path. -  ;; -  *) -  as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do -  IFS=$as_save_IFS -  test -z "$as_dir" && as_dir=. -  for ac_exec_ext in '' $ac_executable_extensions; do -  if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then -    ac_cv_path_GIBLIB_CONFIG="$as_dir/$ac_word$ac_exec_ext" -    echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 -    break 2 -  fi -done -done - -  test -z "$ac_cv_path_GIBLIB_CONFIG" && ac_cv_path_GIBLIB_CONFIG="no" -  ;; -esac -fi -GIBLIB_CONFIG=$ac_cv_path_GIBLIB_CONFIG - -if test -n "$GIBLIB_CONFIG"; then -  echo "$as_me:$LINENO: result: $GIBLIB_CONFIG" >&5 -echo "${ECHO_T}$GIBLIB_CONFIG" >&6 -else -  echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - -  echo "$as_me:$LINENO: checking for giblib - version >= 1.2.4" >&5 -echo $ECHO_N "checking for giblib - version >= 1.2.4... $ECHO_C" >&6 - -  no_giblib="" -  if test "$GIBLIB_CONFIG" = "no" ; then -     no_giblib=yes -  else -     GIBLIB_CFLAGS="`$GIBLIB_CONFIG $giblib_config_args --cflags`" -     GIBLIB_LIBS="`$GIBLIB_CONFIG $giblib_config_args --libs`" - -        giblib_config_major_version=`$GIBLIB_CONFIG $giblib_config_args \ -         --version | sed 's/[^0-9]*\([0-9]*\).\([0-9]*\).\([0-9]*\)/\1/'` -        giblib_config_minor_version=`$GIBLIB_CONFIG $giblib_config_args \ -         --version | sed 's/[^0-9]*\([0-9]*\).\([0-9]*\).\([0-9]*\)/\2/'` -        giblib_config_micro_version=`$GIBLIB_CONFIG $giblib_config_args \ -         --version | sed 's/[^0-9]*\([0-9]*\).\([0-9]*\).\([0-9]*\)/\3/'` -        giblib_wanted_major_version="1" -        giblib_wanted_minor_version="2" -        giblib_wanted_micro_version="4" - -        # Compare wanted version to what config script returned. -        # If I knew what library was being run, i'd probably also compile -        # a test program at this point (which also extracted and tested -        # the version in some library-specific way) -        if test "$giblib_config_major_version" -lt \ -                        "$giblib_wanted_major_version" \ -          -o \( "$giblib_config_major_version" -eq \ -                        "$giblib_wanted_major_version" \ -            -a "$giblib_config_minor_version" -lt \ -                        "$giblib_wanted_minor_version" \) \ -          -o \( "$giblib_config_major_version" -eq \ -                        "$giblib_wanted_major_version" \ -            -a "$giblib_config_minor_version" -eq \ -                        "$giblib_wanted_minor_version" \ -            -a "$giblib_config_micro_version" -lt \ -                        "$giblib_wanted_micro_version" \) ; then -          # older version found -          no_giblib=yes -          echo -n "*** An old version of giblib " -          echo -n "($giblib_config_major_version" -          echo -n ".$giblib_config_minor_version" -          echo    ".$giblib_config_micro_version) was found." -          echo -n "*** You need a version of giblib newer than " -          echo -n "$giblib_wanted_major_version" -          echo -n ".$giblib_wanted_minor_version" -          echo    ".$giblib_wanted_micro_version." -          echo "***" -          echo "*** If you have already installed a sufficiently new version, this error" -          echo "*** probably means that the wrong copy of the giblib-config shell script is" -          echo "*** being found. The easiest way to fix this is to remove the old version" -          echo "*** of giblib, but you can also set the GIBLIB_CONFIG environment to point to the" -          echo "*** correct copy of giblib-config. (In this case, you will have to" -          echo "*** modify your LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf" -          echo "*** so that the correct libraries are found at run-time)" -        fi - -  fi -  if test "x$no_giblib" = x ; then -     echo "$as_me:$LINENO: result: yes" >&5 -echo "${ECHO_T}yes" >&6 - - - -  else -     echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -     if test "$GIBLIB_CONFIG" = "no" ; then -       echo "*** The giblib-config script installed by giblib could not be found" -       echo "*** If giblib was installed in PREFIX, make sure PREFIX/bin is in" -       echo "*** your path, or set the GIBLIB_CONFIG environment variable to the" -       echo "*** full path to giblib-config." -     fi -     GIBLIB_CFLAGS="" -     GIBLIB_LIBS="" -     { { echo "$as_me:$LINENO: error: Cannot find giblib: Is giblib-config in the path?" >&5 -echo "$as_me: error: Cannot find giblib: Is giblib-config in the path?" >&2;} -   { (exit 1); exit 1; }; } -  fi - - - - - - - -GIBLIB_LIBS=`giblib-config --libs` -GIBLIB_CFLAGS=`giblib-config --cflags` - - - -CFLAGS="-I/usr/X11R6/include $CFLAGS" -LIBS="-L/usr/X11R6/lib $LIBS -lm" - -echo "$as_me:$LINENO: checking for XMissingExtension in -lXext" >&5 -echo $ECHO_N "checking for XMissingExtension in -lXext... $ECHO_C" >&6 -if test "${ac_cv_lib_Xext_XMissingExtension+set}" = set; then -  echo $ECHO_N "(cached) $ECHO_C" >&6 -else -  ac_check_lib_save_LIBS=$LIBS -LIBS="-lXext  $LIBS" -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h.  */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h.  */ - -/* Override any gcc2 internal prototype to avoid an error.  */ -#ifdef __cplusplus -extern "C" -#endif -/* We use char because int might match the return type of a gcc2 -   builtin and then its argument prototype would still apply.  */ -char XMissingExtension (); -int -main () -{ -XMissingExtension (); -  ; -  return 0; -} -_ACEOF -rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 -  (eval $ac_link) 2>conftest.er1 -  ac_status=$? -  grep -v '^ *+' conftest.er1 >conftest.err -  rm -f conftest.er1 -  cat conftest.err >&5 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5 -  (exit $ac_status); } && -	 { ac_try='test -z "$ac_c_werror_flag"			 || test ! -s conftest.err' -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 -  (eval $ac_try) 2>&5 -  ac_status=$? -  echo "$as_me:$LINENO: \$? = $ac_status" >&5 -  (exit $ac_status); }; } && -	 { ac_try='test -s conftest$ac_exeext' -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 -  (eval $ac_try) 2>&5 -  ac_status=$? -  echo "$as_me:$LINENO: \$? = $ac_status" >&5 -  (exit $ac_status); }; }; then -  ac_cv_lib_Xext_XMissingExtension=yes -else -  echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_cv_lib_Xext_XMissingExtension=no -fi -rm -f conftest.err conftest.$ac_objext \ -      conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -echo "$as_me:$LINENO: result: $ac_cv_lib_Xext_XMissingExtension" >&5 -echo "${ECHO_T}$ac_cv_lib_Xext_XMissingExtension" >&6 -if test $ac_cv_lib_Xext_XMissingExtension = yes; then -  cat >>confdefs.h <<_ACEOF -#define HAVE_LIBXEXT 1 -_ACEOF - -  LIBS="-lXext $LIBS" - -else -  CFLAGS="$CFLAGS -I/usr/X11R6/include" -fi - - -echo "$as_me:$LINENO: checking for XineramaQueryScreens in -lXinerama" >&5 -echo $ECHO_N "checking for XineramaQueryScreens in -lXinerama... $ECHO_C" >&6 -if test "${ac_cv_lib_Xinerama_XineramaQueryScreens+set}" = set; then -  echo $ECHO_N "(cached) $ECHO_C" >&6 -else -  ac_check_lib_save_LIBS=$LIBS -LIBS="-lXinerama  $LIBS" -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h.  */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h.  */ - -/* Override any gcc2 internal prototype to avoid an error.  */ -#ifdef __cplusplus -extern "C" -#endif -/* We use char because int might match the return type of a gcc2 -   builtin and then its argument prototype would still apply.  */ -char XineramaQueryScreens (); -int -main () -{ -XineramaQueryScreens (); -  ; -  return 0; -} -_ACEOF -rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 -  (eval $ac_link) 2>conftest.er1 -  ac_status=$? -  grep -v '^ *+' conftest.er1 >conftest.err -  rm -f conftest.er1 -  cat conftest.err >&5 -  echo "$as_me:$LINENO: \$? = $ac_status" >&5 -  (exit $ac_status); } && -	 { ac_try='test -z "$ac_c_werror_flag"			 || test ! -s conftest.err' -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 -  (eval $ac_try) 2>&5 -  ac_status=$? -  echo "$as_me:$LINENO: \$? = $ac_status" >&5 -  (exit $ac_status); }; } && -	 { ac_try='test -s conftest$ac_exeext' -  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 -  (eval $ac_try) 2>&5 -  ac_status=$? -  echo "$as_me:$LINENO: \$? = $ac_status" >&5 -  (exit $ac_status); }; }; then -  ac_cv_lib_Xinerama_XineramaQueryScreens=yes -else -  echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_cv_lib_Xinerama_XineramaQueryScreens=no -fi -rm -f conftest.err conftest.$ac_objext \ -      conftest$ac_exeext conftest.$ac_ext -LIBS=$ac_check_lib_save_LIBS -fi -echo "$as_me:$LINENO: result: $ac_cv_lib_Xinerama_XineramaQueryScreens" >&5 -echo "${ECHO_T}$ac_cv_lib_Xinerama_XineramaQueryScreens" >&6 -if test $ac_cv_lib_Xinerama_XineramaQueryScreens = yes; then -  cat >>confdefs.h <<_ACEOF -#define HAVE_LIBXINERAMA 1 -_ACEOF - -  LIBS="-lXinerama $LIBS" - -else -  CFLAGS="$CFLAGS -I/usr/X11R6/include" -fi - - - - -echo "checking for pr0n.... found" - -                                                  ac_config_files="$ac_config_files Makefile feh.spec cam/Makefile src/Makefile src/ttfonts/Makefile" - -cat >confcache <<\_ACEOF -# This file is a shell script that caches the results of configure -# tests run on this system so they can be shared between configure -# scripts and configure runs, see configure's option --config-cache. -# It is not useful on other systems.  If it contains results you don't -# want to keep, you may remove or edit it. -# -# config.status only pays attention to the cache file if you give it -# the --recheck option to rerun configure. -# -# `ac_cv_env_foo' variables (set or unset) will be overridden when -# loading this file, other *unset* `ac_cv_foo' will be assigned the -# following values. - -_ACEOF - -# The following way of writing the cache mishandles newlines in values, -# but we know of no workaround that is simple, portable, and efficient. -# So, don't put newlines in cache variables' values. -# Ultrix sh set writes to stderr and can't be redirected directly, -# and sets the high bit in the cache file unless we assign to the vars. -{ -  (set) 2>&1 | -    case `(ac_space=' '; set | grep ac_space) 2>&1` in -    *ac_space=\ *) -      # `set' does not quote correctly, so add quotes (double-quote -      # substitution turns \\\\ into \\, and sed turns \\ into \). -      sed -n \ -	"s/'/'\\\\''/g; -	  s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" -      ;; -    *) -      # `set' quotes correctly as required by POSIX, so do not add quotes. -      sed -n \ -	"s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p" -      ;; -    esac; -} | -  sed ' -     t clear -     : clear -     s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ -     t end -     /^ac_cv_env/!s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ -     : end' >>confcache -if diff $cache_file confcache >/dev/null 2>&1; then :; else -  if test -w $cache_file; then -    test "x$cache_file" != "x/dev/null" && echo "updating cache $cache_file" -    cat confcache >$cache_file -  else -    echo "not updating unwritable cache $cache_file" -  fi -fi -rm -f confcache - -test "x$prefix" = xNONE && prefix=$ac_default_prefix -# Let make expand exec_prefix. -test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' - -# VPATH may cause trouble with some makes, so we remove $(srcdir), -# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and -# trailing colons and then remove the whole line if VPATH becomes empty -# (actually we leave an empty line to preserve line numbers). -if test "x$srcdir" = x.; then -  ac_vpsub='/^[	 ]*VPATH[	 ]*=/{ -s/:*\$(srcdir):*/:/; -s/:*\${srcdir}:*/:/; -s/:*@srcdir@:*/:/; -s/^\([^=]*=[	 ]*\):*/\1/; -s/:*$//; -s/^[^=]*=[	 ]*$//; -}' -fi - -DEFS=-DHAVE_CONFIG_H - -ac_libobjs= -ac_ltlibobjs= -for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue -  # 1. Remove the extension, and $U if already installed. -  ac_i=`echo "$ac_i" | -	 sed 's/\$U\././;s/\.o$//;s/\.obj$//'` -  # 2. Add them. -  ac_libobjs="$ac_libobjs $ac_i\$U.$ac_objext" -  ac_ltlibobjs="$ac_ltlibobjs $ac_i"'$U.lo' -done -LIBOBJS=$ac_libobjs - -LTLIBOBJS=$ac_ltlibobjs - - - -: ${CONFIG_STATUS=./config.status} -ac_clean_files_save=$ac_clean_files -ac_clean_files="$ac_clean_files $CONFIG_STATUS" -{ echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5 -echo "$as_me: creating $CONFIG_STATUS" >&6;} -cat >$CONFIG_STATUS <<_ACEOF -#! $SHELL -# Generated by $as_me. -# Run this file to recreate the current configuration. -# Compiler output produced by configure, useful for debugging -# configure, is in config.log if it exists. - -debug=false -ac_cs_recheck=false -ac_cs_silent=false -SHELL=\${CONFIG_SHELL-$SHELL} -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF -## --------------------- ## -## M4sh Initialization.  ## -## --------------------- ## - -# Be Bourne compatible -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then -  emulate sh -  NULLCMD=: -  # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which -  # is contrary to our usage.  Disable this feature. -  alias -g '${1+"$@"}'='"$@"' -elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then -  set -o posix -fi -DUALCASE=1; export DUALCASE # for MKS sh - -# Support unset when possible. -if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then -  as_unset=unset -else -  as_unset=false -fi - - -# Work around bugs in pre-3.0 UWIN ksh. -$as_unset ENV MAIL MAILPATH -PS1='$ ' -PS2='> ' -PS4='+ ' - -# NLS nuisances. -for as_var in \ -  LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ -  LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ -  LC_TELEPHONE LC_TIME -do -  if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then -    eval $as_var=C; export $as_var -  else -    $as_unset $as_var -  fi -done - -# Required to use basename. -if expr a : '\(a\)' >/dev/null 2>&1; then -  as_expr=expr -else -  as_expr=false -fi - -if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then -  as_basename=basename -else -  as_basename=false -fi - - -# Name of the executable. -as_me=`$as_basename "$0" || -$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ -	 X"$0" : 'X\(//\)$' \| \ -	 X"$0" : 'X\(/\)$' \| \ -	 .     : '\(.\)' 2>/dev/null || -echo X/"$0" | -    sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; } -  	  /^X\/\(\/\/\)$/{ s//\1/; q; } -  	  /^X\/\(\/\).*/{ s//\1/; q; } -  	  s/.*/./; q'` - - -# PATH needs CR, and LINENO needs CR and PATH. -# Avoid depending upon Character Ranges. -as_cr_letters='abcdefghijklmnopqrstuvwxyz' -as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' -as_cr_Letters=$as_cr_letters$as_cr_LETTERS -as_cr_digits='0123456789' -as_cr_alnum=$as_cr_Letters$as_cr_digits - -# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then -  echo "#! /bin/sh" >conf$$.sh -  echo  "exit 0"   >>conf$$.sh -  chmod +x conf$$.sh -  if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then -    PATH_SEPARATOR=';' -  else -    PATH_SEPARATOR=: -  fi -  rm -f conf$$.sh -fi - - -  as_lineno_1=$LINENO -  as_lineno_2=$LINENO -  as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` -  test "x$as_lineno_1" != "x$as_lineno_2" && -  test "x$as_lineno_3"  = "x$as_lineno_2"  || { -  # Find who we are.  Look in the path if we contain no path at all -  # relative or not. -  case $0 in -    *[\\/]* ) as_myself=$0 ;; -    *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do -  IFS=$as_save_IFS -  test -z "$as_dir" && as_dir=. -  test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break -done - -       ;; -  esac -  # We did not find ourselves, most probably we were run as `sh COMMAND' -  # in which case we are not to be found in the path. -  if test "x$as_myself" = x; then -    as_myself=$0 -  fi -  if test ! -f "$as_myself"; then -    { { echo "$as_me:$LINENO: error: cannot find myself; rerun with an absolute path" >&5 -echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2;} -   { (exit 1); exit 1; }; } -  fi -  case $CONFIG_SHELL in -  '') -    as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH -do -  IFS=$as_save_IFS -  test -z "$as_dir" && as_dir=. -  for as_base in sh bash ksh sh5; do -	 case $as_dir in -	 /*) -	   if ("$as_dir/$as_base" -c ' -  as_lineno_1=$LINENO -  as_lineno_2=$LINENO -  as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` -  test "x$as_lineno_1" != "x$as_lineno_2" && -  test "x$as_lineno_3"  = "x$as_lineno_2" ') 2>/dev/null; then -	     $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; } -	     $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; } -	     CONFIG_SHELL=$as_dir/$as_base -	     export CONFIG_SHELL -	     exec "$CONFIG_SHELL" "$0" ${1+"$@"} -	   fi;; -	 esac -       done -done -;; -  esac - -  # Create $as_me.lineno as a copy of $as_myself, but with $LINENO -  # uniformly replaced by the line number.  The first 'sed' inserts a -  # line-number line before each line; the second 'sed' does the real -  # work.  The second script uses 'N' to pair each line-number line -  # with the numbered line, and appends trailing '-' during -  # substitution so that $LINENO is not a special case at line end. -  # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the -  # second 'sed' script.  Blame Lee E. McMahon for sed's syntax.  :-) -  sed '=' <$as_myself | -    sed ' -      N -      s,$,-, -      : loop -      s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3, -      t loop -      s,-$,, -      s,^['$as_cr_digits']*\n,, -    ' >$as_me.lineno && -  chmod +x $as_me.lineno || -    { { echo "$as_me:$LINENO: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&5 -echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2;} -   { (exit 1); exit 1; }; } - -  # Don't try to exec as it changes $[0], causing all sort of problems -  # (the dirname of $[0] is not the place where we might find the -  # original and so on.  Autoconf is especially sensible to this). -  . ./$as_me.lineno -  # Exit status is that of the last command. -  exit -} - - -case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in -  *c*,-n*) ECHO_N= ECHO_C=' -' ECHO_T='	' ;; -  *c*,*  ) ECHO_N=-n ECHO_C= ECHO_T= ;; -  *)       ECHO_N= ECHO_C='\c' ECHO_T= ;; -esac - -if expr a : '\(a\)' >/dev/null 2>&1; then -  as_expr=expr -else -  as_expr=false -fi - -rm -f conf$$ conf$$.exe conf$$.file -echo >conf$$.file -if ln -s conf$$.file conf$$ 2>/dev/null; then -  # We could just check for DJGPP; but this test a) works b) is more generic -  # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04). -  if test -f conf$$.exe; then -    # Don't use ln at all; we don't have any links -    as_ln_s='cp -p' -  else -    as_ln_s='ln -s' -  fi -elif ln conf$$.file conf$$ 2>/dev/null; then -  as_ln_s=ln -else -  as_ln_s='cp -p' -fi -rm -f conf$$ conf$$.exe conf$$.file - -if mkdir -p . 2>/dev/null; then -  as_mkdir_p=: -else -  test -d ./-p && rmdir ./-p -  as_mkdir_p=false -fi - -as_executable_p="test -f" - -# Sed expression to map a string onto a valid CPP name. -as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" - -# Sed expression to map a string onto a valid variable name. -as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" - - -# IFS -# We need space, tab and new line, in precisely that order. -as_nl=' -' -IFS=" 	$as_nl" - -# CDPATH. -$as_unset CDPATH - -exec 6>&1 - -# Open the log real soon, to keep \$[0] and so on meaningful, and to -# report actual input values of CONFIG_FILES etc. instead of their -# values after options handling.  Logging --version etc. is OK. -exec 5>>config.log -{ -  echo -  sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX -## Running $as_me. ## -_ASBOX -} >&5 -cat >&5 <<_CSEOF - -This file was extended by $as_me, which was -generated by GNU Autoconf 2.59.  Invocation command line was - -  CONFIG_FILES    = $CONFIG_FILES -  CONFIG_HEADERS  = $CONFIG_HEADERS -  CONFIG_LINKS    = $CONFIG_LINKS -  CONFIG_COMMANDS = $CONFIG_COMMANDS -  $ $0 $@ - -_CSEOF -echo "on `(hostname || uname -n) 2>/dev/null | sed 1q`" >&5 -echo >&5 -_ACEOF - -# Files that config.status was made for. -if test -n "$ac_config_files"; then -  echo "config_files=\"$ac_config_files\"" >>$CONFIG_STATUS -fi - -if test -n "$ac_config_headers"; then -  echo "config_headers=\"$ac_config_headers\"" >>$CONFIG_STATUS -fi - -if test -n "$ac_config_links"; then -  echo "config_links=\"$ac_config_links\"" >>$CONFIG_STATUS -fi - -if test -n "$ac_config_commands"; then -  echo "config_commands=\"$ac_config_commands\"" >>$CONFIG_STATUS -fi - -cat >>$CONFIG_STATUS <<\_ACEOF - -ac_cs_usage="\ -\`$as_me' instantiates files from templates according to the -current configuration. - -Usage: $0 [OPTIONS] [FILE]... - -  -h, --help       print this help, then exit -  -V, --version    print version number, then exit -  -q, --quiet      do not print progress messages -  -d, --debug      don't remove temporary files -      --recheck    update $as_me by reconfiguring in the same conditions -  --file=FILE[:TEMPLATE] -		   instantiate the configuration file FILE -  --header=FILE[:TEMPLATE] -		   instantiate the configuration header FILE - -Configuration files: -$config_files - -Configuration headers: -$config_headers - -Configuration commands: -$config_commands - -Report bugs to <bug-autoconf@gnu.org>." -_ACEOF - -cat >>$CONFIG_STATUS <<_ACEOF -ac_cs_version="\\ -config.status -configured by $0, generated by GNU Autoconf 2.59, -  with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" - -Copyright (C) 2003 Free Software Foundation, Inc. -This config.status script is free software; the Free Software Foundation -gives unlimited permission to copy, distribute and modify it." -srcdir=$srcdir -INSTALL="$INSTALL" -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF -# If no file are specified by the user, then we need to provide default -# value.  By we need to know if files were specified by the user. -ac_need_defaults=: -while test $# != 0 -do -  case $1 in -  --*=*) -    ac_option=`expr "x$1" : 'x\([^=]*\)='` -    ac_optarg=`expr "x$1" : 'x[^=]*=\(.*\)'` -    ac_shift=: -    ;; -  -*) -    ac_option=$1 -    ac_optarg=$2 -    ac_shift=shift -    ;; -  *) # This is not an option, so the user has probably given explicit -     # arguments. -     ac_option=$1 -     ac_need_defaults=false;; -  esac - -  case $ac_option in -  # Handling of the options. -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF -  -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) -    ac_cs_recheck=: ;; -  --version | --vers* | -V ) -    echo "$ac_cs_version"; exit 0 ;; -  --he | --h) -    # Conflict between --help and --header -    { { echo "$as_me:$LINENO: error: ambiguous option: $1 -Try \`$0 --help' for more information." >&5 -echo "$as_me: error: ambiguous option: $1 -Try \`$0 --help' for more information." >&2;} -   { (exit 1); exit 1; }; };; -  --help | --hel | -h ) -    echo "$ac_cs_usage"; exit 0 ;; -  --debug | --d* | -d ) -    debug=: ;; -  --file | --fil | --fi | --f ) -    $ac_shift -    CONFIG_FILES="$CONFIG_FILES $ac_optarg" -    ac_need_defaults=false;; -  --header | --heade | --head | --hea ) -    $ac_shift -    CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg" -    ac_need_defaults=false;; -  -q | -quiet | --quiet | --quie | --qui | --qu | --q \ -  | -silent | --silent | --silen | --sile | --sil | --si | --s) -    ac_cs_silent=: ;; - -  # This is an error. -  -*) { { echo "$as_me:$LINENO: error: unrecognized option: $1 -Try \`$0 --help' for more information." >&5 -echo "$as_me: error: unrecognized option: $1 -Try \`$0 --help' for more information." >&2;} -   { (exit 1); exit 1; }; } ;; - -  *) ac_config_targets="$ac_config_targets $1" ;; - -  esac -  shift -done - -ac_configure_extra_args= - -if $ac_cs_silent; then -  exec 6>/dev/null -  ac_configure_extra_args="$ac_configure_extra_args --silent" -fi - -_ACEOF -cat >>$CONFIG_STATUS <<_ACEOF -if \$ac_cs_recheck; then -  echo "running $SHELL $0 " $ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6 -  exec $SHELL $0 $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion -fi - -_ACEOF - -cat >>$CONFIG_STATUS <<_ACEOF -# -# INIT-COMMANDS section. -# - - - -_ACEOF - - - -cat >>$CONFIG_STATUS <<\_ACEOF -for ac_config_target in $ac_config_targets -do -  case "$ac_config_target" in -  # Handling of arguments. -  "Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;; -  "feh.spec" ) CONFIG_FILES="$CONFIG_FILES feh.spec" ;; -  "cam/Makefile" ) CONFIG_FILES="$CONFIG_FILES cam/Makefile" ;; -  "src/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; -  "src/ttfonts/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/ttfonts/Makefile" ;; -  "default-1" ) CONFIG_COMMANDS="$CONFIG_COMMANDS default-1" ;; -  "src/config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS src/config.h" ;; -  *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5 -echo "$as_me: error: invalid argument: $ac_config_target" >&2;} -   { (exit 1); exit 1; }; };; -  esac -done - -# If the user did not use the arguments to specify the items to instantiate, -# then the envvar interface is used.  Set only those that are not. -# We use the long form for the default assignment because of an extremely -# bizarre bug on SunOS 4.1.3. -if $ac_need_defaults; then -  test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files -  test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers -  test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands -fi - -# Have a temporary directory for convenience.  Make it in the build tree -# simply because there is no reason to put it here, and in addition, -# creating and moving files from /tmp can sometimes cause problems. -# Create a temporary directory, and hook for its removal unless debugging. -$debug || -{ -  trap 'exit_status=$?; rm -rf $tmp && exit $exit_status' 0 -  trap '{ (exit 1); exit 1; }' 1 2 13 15 -} - -# Create a (secure) tmp directory for tmp files. - -{ -  tmp=`(umask 077 && mktemp -d -q "./confstatXXXXXX") 2>/dev/null` && -  test -n "$tmp" && test -d "$tmp" -}  || -{ -  tmp=./confstat$$-$RANDOM -  (umask 077 && mkdir $tmp) -} || -{ -   echo "$me: cannot create a temporary directory in ." >&2 -   { (exit 1); exit 1; } -} - -_ACEOF - -cat >>$CONFIG_STATUS <<_ACEOF - -# -# CONFIG_FILES section. -# - -# No need to generate the scripts if there are no CONFIG_FILES. -# This happens for instance when ./config.status config.h -if test -n "\$CONFIG_FILES"; then -  # Protect against being on the right side of a sed subst in config.status. -  sed 's/,@/@@/; s/@,/@@/; s/,;t t\$/@;t t/; /@;t t\$/s/[\\\\&,]/\\\\&/g; -   s/@@/,@/; s/@@/@,/; s/@;t t\$/,;t t/' >\$tmp/subs.sed <<\\CEOF -s,@SHELL@,$SHELL,;t t -s,@PATH_SEPARATOR@,$PATH_SEPARATOR,;t t -s,@PACKAGE_NAME@,$PACKAGE_NAME,;t t -s,@PACKAGE_TARNAME@,$PACKAGE_TARNAME,;t t -s,@PACKAGE_VERSION@,$PACKAGE_VERSION,;t t -s,@PACKAGE_STRING@,$PACKAGE_STRING,;t t -s,@PACKAGE_BUGREPORT@,$PACKAGE_BUGREPORT,;t t -s,@exec_prefix@,$exec_prefix,;t t -s,@prefix@,$prefix,;t t -s,@program_transform_name@,$program_transform_name,;t t -s,@bindir@,$bindir,;t t -s,@sbindir@,$sbindir,;t t -s,@libexecdir@,$libexecdir,;t t -s,@datadir@,$datadir,;t t -s,@sysconfdir@,$sysconfdir,;t t -s,@sharedstatedir@,$sharedstatedir,;t t -s,@localstatedir@,$localstatedir,;t t -s,@libdir@,$libdir,;t t -s,@includedir@,$includedir,;t t -s,@oldincludedir@,$oldincludedir,;t t -s,@infodir@,$infodir,;t t -s,@mandir@,$mandir,;t t -s,@build_alias@,$build_alias,;t t -s,@host_alias@,$host_alias,;t t -s,@target_alias@,$target_alias,;t t -s,@DEFS@,$DEFS,;t t -s,@ECHO_C@,$ECHO_C,;t t -s,@ECHO_N@,$ECHO_N,;t t -s,@ECHO_T@,$ECHO_T,;t t -s,@LIBS@,$LIBS,;t t -s,@INSTALL_PROGRAM@,$INSTALL_PROGRAM,;t t -s,@INSTALL_SCRIPT@,$INSTALL_SCRIPT,;t t -s,@INSTALL_DATA@,$INSTALL_DATA,;t t -s,@PACKAGE@,$PACKAGE,;t t -s,@VERSION@,$VERSION,;t t -s,@ACLOCAL@,$ACLOCAL,;t t -s,@AUTOCONF@,$AUTOCONF,;t t -s,@AUTOMAKE@,$AUTOMAKE,;t t -s,@AUTOHEADER@,$AUTOHEADER,;t t -s,@MAKEINFO@,$MAKEINFO,;t t -s,@SET_MAKE@,$SET_MAKE,;t t -s,@CC@,$CC,;t t -s,@CFLAGS@,$CFLAGS,;t t -s,@LDFLAGS@,$LDFLAGS,;t t -s,@CPPFLAGS@,$CPPFLAGS,;t t -s,@ac_ct_CC@,$ac_ct_CC,;t t -s,@EXEEXT@,$EXEEXT,;t t -s,@OBJEXT@,$OBJEXT,;t t -s,@MAINTAINER_MODE_TRUE@,$MAINTAINER_MODE_TRUE,;t t -s,@MAINTAINER_MODE_FALSE@,$MAINTAINER_MODE_FALSE,;t t -s,@MAINT@,$MAINT,;t t -s,@IMLIB2_CONFIG@,$IMLIB2_CONFIG,;t t -s,@IMLIB_LIBS@,$IMLIB_LIBS,;t t -s,@IMLIB_CFLAGS@,$IMLIB_CFLAGS,;t t -s,@IMLIB2_CFLAGS@,$IMLIB2_CFLAGS,;t t -s,@IMLIB2_LIBS@,$IMLIB2_LIBS,;t t -s,@GIBLIB_CONFIG@,$GIBLIB_CONFIG,;t t -s,@GIBLIB_LIBS@,$GIBLIB_LIBS,;t t -s,@GIBLIB_CFLAGS@,$GIBLIB_CFLAGS,;t t -s,@HAVE_XINERAMA@,$HAVE_XINERAMA,;t t -s,@XINERAMA_LIBS@,$XINERAMA_LIBS,;t t -s,@LIBOBJS@,$LIBOBJS,;t t -s,@LTLIBOBJS@,$LTLIBOBJS,;t t -CEOF - -_ACEOF - -  cat >>$CONFIG_STATUS <<\_ACEOF -  # Split the substitutions into bite-sized pieces for seds with -  # small command number limits, like on Digital OSF/1 and HP-UX. -  ac_max_sed_lines=48 -  ac_sed_frag=1 # Number of current file. -  ac_beg=1 # First line for current file. -  ac_end=$ac_max_sed_lines # Line after last line for current file. -  ac_more_lines=: -  ac_sed_cmds= -  while $ac_more_lines; do -    if test $ac_beg -gt 1; then -      sed "1,${ac_beg}d; ${ac_end}q" $tmp/subs.sed >$tmp/subs.frag -    else -      sed "${ac_end}q" $tmp/subs.sed >$tmp/subs.frag -    fi -    if test ! -s $tmp/subs.frag; then -      ac_more_lines=false -    else -      # The purpose of the label and of the branching condition is to -      # speed up the sed processing (if there are no `@' at all, there -      # is no need to browse any of the substitutions). -      # These are the two extra sed commands mentioned above. -      (echo ':t -  /@[a-zA-Z_][a-zA-Z_0-9]*@/!b' && cat $tmp/subs.frag) >$tmp/subs-$ac_sed_frag.sed -      if test -z "$ac_sed_cmds"; then -	ac_sed_cmds="sed -f $tmp/subs-$ac_sed_frag.sed" -      else -	ac_sed_cmds="$ac_sed_cmds | sed -f $tmp/subs-$ac_sed_frag.sed" -      fi -      ac_sed_frag=`expr $ac_sed_frag + 1` -      ac_beg=$ac_end -      ac_end=`expr $ac_end + $ac_max_sed_lines` -    fi -  done -  if test -z "$ac_sed_cmds"; then -    ac_sed_cmds=cat -  fi -fi # test -n "$CONFIG_FILES" - -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF -for ac_file in : $CONFIG_FILES; do test "x$ac_file" = x: && continue -  # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in". -  case $ac_file in -  - | *:- | *:-:* ) # input from stdin -	cat >$tmp/stdin -	ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` -	ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; -  *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` -	ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; -  * )   ac_file_in=$ac_file.in ;; -  esac - -  # Compute @srcdir@, @top_srcdir@, and @INSTALL@ for subdirectories. -  ac_dir=`(dirname "$ac_file") 2>/dev/null || -$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ -	 X"$ac_file" : 'X\(//\)[^/]' \| \ -	 X"$ac_file" : 'X\(//\)$' \| \ -	 X"$ac_file" : 'X\(/\)' \| \ -	 .     : '\(.\)' 2>/dev/null || -echo X"$ac_file" | -    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } -  	  /^X\(\/\/\)[^/].*/{ s//\1/; q; } -  	  /^X\(\/\/\)$/{ s//\1/; q; } -  	  /^X\(\/\).*/{ s//\1/; q; } -  	  s/.*/./; q'` -  { if $as_mkdir_p; then -    mkdir -p "$ac_dir" -  else -    as_dir="$ac_dir" -    as_dirs= -    while test ! -d "$as_dir"; do -      as_dirs="$as_dir $as_dirs" -      as_dir=`(dirname "$as_dir") 2>/dev/null || -$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ -	 X"$as_dir" : 'X\(//\)[^/]' \| \ -	 X"$as_dir" : 'X\(//\)$' \| \ -	 X"$as_dir" : 'X\(/\)' \| \ -	 .     : '\(.\)' 2>/dev/null || -echo X"$as_dir" | -    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } -  	  /^X\(\/\/\)[^/].*/{ s//\1/; q; } -  	  /^X\(\/\/\)$/{ s//\1/; q; } -  	  /^X\(\/\).*/{ s//\1/; q; } -  	  s/.*/./; q'` -    done -    test ! -n "$as_dirs" || mkdir $as_dirs -  fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5 -echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;} -   { (exit 1); exit 1; }; }; } - -  ac_builddir=. - -if test "$ac_dir" != .; then -  ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` -  # A "../" for each directory in $ac_dir_suffix. -  ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'` -else -  ac_dir_suffix= ac_top_builddir= -fi - -case $srcdir in -  .)  # No --srcdir option.  We are building in place. -    ac_srcdir=. -    if test -z "$ac_top_builddir"; then -       ac_top_srcdir=. -    else -       ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'` -    fi ;; -  [\\/]* | ?:[\\/]* )  # Absolute path. -    ac_srcdir=$srcdir$ac_dir_suffix; -    ac_top_srcdir=$srcdir ;; -  *) # Relative path. -    ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix -    ac_top_srcdir=$ac_top_builddir$srcdir ;; -esac - -# Do not use `cd foo && pwd` to compute absolute paths, because -# the directories may not exist. -case `pwd` in -.) ac_abs_builddir="$ac_dir";; -*) -  case "$ac_dir" in -  .) ac_abs_builddir=`pwd`;; -  [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";; -  *) ac_abs_builddir=`pwd`/"$ac_dir";; -  esac;; -esac -case $ac_abs_builddir in -.) ac_abs_top_builddir=${ac_top_builddir}.;; -*) -  case ${ac_top_builddir}. in -  .) ac_abs_top_builddir=$ac_abs_builddir;; -  [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;; -  *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;; -  esac;; -esac -case $ac_abs_builddir in -.) ac_abs_srcdir=$ac_srcdir;; -*) -  case $ac_srcdir in -  .) ac_abs_srcdir=$ac_abs_builddir;; -  [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;; -  *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;; -  esac;; -esac -case $ac_abs_builddir in -.) ac_abs_top_srcdir=$ac_top_srcdir;; -*) -  case $ac_top_srcdir in -  .) ac_abs_top_srcdir=$ac_abs_builddir;; -  [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;; -  *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;; -  esac;; -esac - - -  case $INSTALL in -  [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; -  *) ac_INSTALL=$ac_top_builddir$INSTALL ;; -  esac - -  # Let's still pretend it is `configure' which instantiates (i.e., don't -  # use $as_me), people would be surprised to read: -  #    /* config.h.  Generated by config.status.  */ -  if test x"$ac_file" = x-; then -    configure_input= -  else -    configure_input="$ac_file.  " -  fi -  configure_input=$configure_input"Generated from `echo $ac_file_in | -				     sed 's,.*/,,'` by configure." - -  # First look for the input files in the build tree, otherwise in the -  # src tree. -  ac_file_inputs=`IFS=: -    for f in $ac_file_in; do -      case $f in -      -) echo $tmp/stdin ;; -      [\\/$]*) -	 # Absolute (can't be DOS-style, as IFS=:) -	 test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 -echo "$as_me: error: cannot find input file: $f" >&2;} -   { (exit 1); exit 1; }; } -	 echo "$f";; -      *) # Relative -	 if test -f "$f"; then -	   # Build tree -	   echo "$f" -	 elif test -f "$srcdir/$f"; then -	   # Source tree -	   echo "$srcdir/$f" -	 else -	   # /dev/null tree -	   { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 -echo "$as_me: error: cannot find input file: $f" >&2;} -   { (exit 1); exit 1; }; } -	 fi;; -      esac -    done` || { (exit 1); exit 1; } - -  if test x"$ac_file" != x-; then -    { echo "$as_me:$LINENO: creating $ac_file" >&5 -echo "$as_me: creating $ac_file" >&6;} -    rm -f "$ac_file" -  fi -_ACEOF -cat >>$CONFIG_STATUS <<_ACEOF -  sed "$ac_vpsub -$extrasub -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF -:t -/@[a-zA-Z_][a-zA-Z_0-9]*@/!b -s,@configure_input@,$configure_input,;t t -s,@srcdir@,$ac_srcdir,;t t -s,@abs_srcdir@,$ac_abs_srcdir,;t t -s,@top_srcdir@,$ac_top_srcdir,;t t -s,@abs_top_srcdir@,$ac_abs_top_srcdir,;t t -s,@builddir@,$ac_builddir,;t t -s,@abs_builddir@,$ac_abs_builddir,;t t -s,@top_builddir@,$ac_top_builddir,;t t -s,@abs_top_builddir@,$ac_abs_top_builddir,;t t -s,@INSTALL@,$ac_INSTALL,;t t -" $ac_file_inputs | (eval "$ac_sed_cmds") >$tmp/out -  rm -f $tmp/stdin -  if test x"$ac_file" != x-; then -    mv $tmp/out $ac_file -  else -    cat $tmp/out -    rm -f $tmp/out -  fi - -done -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF - -# -# CONFIG_HEADER section. -# - -# These sed commands are passed to sed as "A NAME B NAME C VALUE D", where -# NAME is the cpp macro being defined and VALUE is the value it is being given. -# -# ac_d sets the value in "#define NAME VALUE" lines. -ac_dA='s,^\([	 ]*\)#\([	 ]*define[	 ][	 ]*\)' -ac_dB='[	 ].*$,\1#\2' -ac_dC=' ' -ac_dD=',;t' -# ac_u turns "#undef NAME" without trailing blanks into "#define NAME VALUE". -ac_uA='s,^\([	 ]*\)#\([	 ]*\)undef\([	 ][	 ]*\)' -ac_uB='$,\1#\2define\3' -ac_uC=' ' -ac_uD=',;t' - -for ac_file in : $CONFIG_HEADERS; do test "x$ac_file" = x: && continue -  # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in". -  case $ac_file in -  - | *:- | *:-:* ) # input from stdin -	cat >$tmp/stdin -	ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` -	ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; -  *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` -	ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; -  * )   ac_file_in=$ac_file.in ;; -  esac - -  test x"$ac_file" != x- && { echo "$as_me:$LINENO: creating $ac_file" >&5 -echo "$as_me: creating $ac_file" >&6;} - -  # First look for the input files in the build tree, otherwise in the -  # src tree. -  ac_file_inputs=`IFS=: -    for f in $ac_file_in; do -      case $f in -      -) echo $tmp/stdin ;; -      [\\/$]*) -	 # Absolute (can't be DOS-style, as IFS=:) -	 test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 -echo "$as_me: error: cannot find input file: $f" >&2;} -   { (exit 1); exit 1; }; } -	 # Do quote $f, to prevent DOS paths from being IFS'd. -	 echo "$f";; -      *) # Relative -	 if test -f "$f"; then -	   # Build tree -	   echo "$f" -	 elif test -f "$srcdir/$f"; then -	   # Source tree -	   echo "$srcdir/$f" -	 else -	   # /dev/null tree -	   { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 -echo "$as_me: error: cannot find input file: $f" >&2;} -   { (exit 1); exit 1; }; } -	 fi;; -      esac -    done` || { (exit 1); exit 1; } -  # Remove the trailing spaces. -  sed 's/[	 ]*$//' $ac_file_inputs >$tmp/in - -_ACEOF - -# Transform confdefs.h into two sed scripts, `conftest.defines' and -# `conftest.undefs', that substitutes the proper values into -# config.h.in to produce config.h.  The first handles `#define' -# templates, and the second `#undef' templates. -# And first: Protect against being on the right side of a sed subst in -# config.status.  Protect against being in an unquoted here document -# in config.status. -rm -f conftest.defines conftest.undefs -# Using a here document instead of a string reduces the quoting nightmare. -# Putting comments in sed scripts is not portable. -# -# `end' is used to avoid that the second main sed command (meant for -# 0-ary CPP macros) applies to n-ary macro definitions. -# See the Autoconf documentation for `clear'. -cat >confdef2sed.sed <<\_ACEOF -s/[\\&,]/\\&/g -s,[\\$`],\\&,g -t clear -: clear -s,^[	 ]*#[	 ]*define[	 ][	 ]*\([^	 (][^	 (]*\)\(([^)]*)\)[	 ]*\(.*\)$,${ac_dA}\1${ac_dB}\1\2${ac_dC}\3${ac_dD},gp -t end -s,^[	 ]*#[	 ]*define[	 ][	 ]*\([^	 ][^	 ]*\)[	 ]*\(.*\)$,${ac_dA}\1${ac_dB}\1${ac_dC}\2${ac_dD},gp -: end -_ACEOF -# If some macros were called several times there might be several times -# the same #defines, which is useless.  Nevertheless, we may not want to -# sort them, since we want the *last* AC-DEFINE to be honored. -uniq confdefs.h | sed -n -f confdef2sed.sed >conftest.defines -sed 's/ac_d/ac_u/g' conftest.defines >conftest.undefs -rm -f confdef2sed.sed - -# This sed command replaces #undef with comments.  This is necessary, for -# example, in the case of _POSIX_SOURCE, which is predefined and required -# on some systems where configure will not decide to define it. -cat >>conftest.undefs <<\_ACEOF -s,^[	 ]*#[	 ]*undef[	 ][	 ]*[a-zA-Z_][a-zA-Z_0-9]*,/* & */, -_ACEOF - -# Break up conftest.defines because some shells have a limit on the size -# of here documents, and old seds have small limits too (100 cmds). -echo '  # Handle all the #define templates only if necessary.' >>$CONFIG_STATUS -echo '  if grep "^[	 ]*#[	 ]*define" $tmp/in >/dev/null; then' >>$CONFIG_STATUS -echo '  # If there are no defines, we may have an empty if/fi' >>$CONFIG_STATUS -echo '  :' >>$CONFIG_STATUS -rm -f conftest.tail -while grep . conftest.defines >/dev/null -do -  # Write a limited-size here document to $tmp/defines.sed. -  echo '  cat >$tmp/defines.sed <<CEOF' >>$CONFIG_STATUS -  # Speed up: don't consider the non `#define' lines. -  echo '/^[	 ]*#[	 ]*define/!b' >>$CONFIG_STATUS -  # Work around the forget-to-reset-the-flag bug. -  echo 't clr' >>$CONFIG_STATUS -  echo ': clr' >>$CONFIG_STATUS -  sed ${ac_max_here_lines}q conftest.defines >>$CONFIG_STATUS -  echo 'CEOF -  sed -f $tmp/defines.sed $tmp/in >$tmp/out -  rm -f $tmp/in -  mv $tmp/out $tmp/in -' >>$CONFIG_STATUS -  sed 1,${ac_max_here_lines}d conftest.defines >conftest.tail -  rm -f conftest.defines -  mv conftest.tail conftest.defines -done -rm -f conftest.defines -echo '  fi # grep' >>$CONFIG_STATUS -echo >>$CONFIG_STATUS - -# Break up conftest.undefs because some shells have a limit on the size -# of here documents, and old seds have small limits too (100 cmds). -echo '  # Handle all the #undef templates' >>$CONFIG_STATUS -rm -f conftest.tail -while grep . conftest.undefs >/dev/null -do -  # Write a limited-size here document to $tmp/undefs.sed. -  echo '  cat >$tmp/undefs.sed <<CEOF' >>$CONFIG_STATUS -  # Speed up: don't consider the non `#undef' -  echo '/^[	 ]*#[	 ]*undef/!b' >>$CONFIG_STATUS -  # Work around the forget-to-reset-the-flag bug. -  echo 't clr' >>$CONFIG_STATUS -  echo ': clr' >>$CONFIG_STATUS -  sed ${ac_max_here_lines}q conftest.undefs >>$CONFIG_STATUS -  echo 'CEOF -  sed -f $tmp/undefs.sed $tmp/in >$tmp/out -  rm -f $tmp/in -  mv $tmp/out $tmp/in -' >>$CONFIG_STATUS -  sed 1,${ac_max_here_lines}d conftest.undefs >conftest.tail -  rm -f conftest.undefs -  mv conftest.tail conftest.undefs -done -rm -f conftest.undefs - -cat >>$CONFIG_STATUS <<\_ACEOF -  # Let's still pretend it is `configure' which instantiates (i.e., don't -  # use $as_me), people would be surprised to read: -  #    /* config.h.  Generated by config.status.  */ -  if test x"$ac_file" = x-; then -    echo "/* Generated by configure.  */" >$tmp/config.h -  else -    echo "/* $ac_file.  Generated by configure.  */" >$tmp/config.h -  fi -  cat $tmp/in >>$tmp/config.h -  rm -f $tmp/in -  if test x"$ac_file" != x-; then -    if diff $ac_file $tmp/config.h >/dev/null 2>&1; then -      { echo "$as_me:$LINENO: $ac_file is unchanged" >&5 -echo "$as_me: $ac_file is unchanged" >&6;} -    else -      ac_dir=`(dirname "$ac_file") 2>/dev/null || -$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ -	 X"$ac_file" : 'X\(//\)[^/]' \| \ -	 X"$ac_file" : 'X\(//\)$' \| \ -	 X"$ac_file" : 'X\(/\)' \| \ -	 .     : '\(.\)' 2>/dev/null || -echo X"$ac_file" | -    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } -  	  /^X\(\/\/\)[^/].*/{ s//\1/; q; } -  	  /^X\(\/\/\)$/{ s//\1/; q; } -  	  /^X\(\/\).*/{ s//\1/; q; } -  	  s/.*/./; q'` -      { if $as_mkdir_p; then -    mkdir -p "$ac_dir" -  else -    as_dir="$ac_dir" -    as_dirs= -    while test ! -d "$as_dir"; do -      as_dirs="$as_dir $as_dirs" -      as_dir=`(dirname "$as_dir") 2>/dev/null || -$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ -	 X"$as_dir" : 'X\(//\)[^/]' \| \ -	 X"$as_dir" : 'X\(//\)$' \| \ -	 X"$as_dir" : 'X\(/\)' \| \ -	 .     : '\(.\)' 2>/dev/null || -echo X"$as_dir" | -    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } -  	  /^X\(\/\/\)[^/].*/{ s//\1/; q; } -  	  /^X\(\/\/\)$/{ s//\1/; q; } -  	  /^X\(\/\).*/{ s//\1/; q; } -  	  s/.*/./; q'` -    done -    test ! -n "$as_dirs" || mkdir $as_dirs -  fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5 -echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;} -   { (exit 1); exit 1; }; }; } - -      rm -f $ac_file -      mv $tmp/config.h $ac_file -    fi -  else -    cat $tmp/config.h -    rm -f $tmp/config.h -  fi -done -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF - -# -# CONFIG_COMMANDS section. -# -for ac_file in : $CONFIG_COMMANDS; do test "x$ac_file" = x: && continue -  ac_dest=`echo "$ac_file" | sed 's,:.*,,'` -  ac_source=`echo "$ac_file" | sed 's,[^:]*:,,'` -  ac_dir=`(dirname "$ac_dest") 2>/dev/null || -$as_expr X"$ac_dest" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ -	 X"$ac_dest" : 'X\(//\)[^/]' \| \ -	 X"$ac_dest" : 'X\(//\)$' \| \ -	 X"$ac_dest" : 'X\(/\)' \| \ -	 .     : '\(.\)' 2>/dev/null || -echo X"$ac_dest" | -    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } -  	  /^X\(\/\/\)[^/].*/{ s//\1/; q; } -  	  /^X\(\/\/\)$/{ s//\1/; q; } -  	  /^X\(\/\).*/{ s//\1/; q; } -  	  s/.*/./; q'` -  { if $as_mkdir_p; then -    mkdir -p "$ac_dir" -  else -    as_dir="$ac_dir" -    as_dirs= -    while test ! -d "$as_dir"; do -      as_dirs="$as_dir $as_dirs" -      as_dir=`(dirname "$as_dir") 2>/dev/null || -$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ -	 X"$as_dir" : 'X\(//\)[^/]' \| \ -	 X"$as_dir" : 'X\(//\)$' \| \ -	 X"$as_dir" : 'X\(/\)' \| \ -	 .     : '\(.\)' 2>/dev/null || -echo X"$as_dir" | -    sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } -  	  /^X\(\/\/\)[^/].*/{ s//\1/; q; } -  	  /^X\(\/\/\)$/{ s//\1/; q; } -  	  /^X\(\/\).*/{ s//\1/; q; } -  	  s/.*/./; q'` -    done -    test ! -n "$as_dirs" || mkdir $as_dirs -  fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5 -echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;} -   { (exit 1); exit 1; }; }; } - -  ac_builddir=. - -if test "$ac_dir" != .; then -  ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` -  # A "../" for each directory in $ac_dir_suffix. -  ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'` -else -  ac_dir_suffix= ac_top_builddir= -fi - -case $srcdir in -  .)  # No --srcdir option.  We are building in place. -    ac_srcdir=. -    if test -z "$ac_top_builddir"; then -       ac_top_srcdir=. -    else -       ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'` -    fi ;; -  [\\/]* | ?:[\\/]* )  # Absolute path. -    ac_srcdir=$srcdir$ac_dir_suffix; -    ac_top_srcdir=$srcdir ;; -  *) # Relative path. -    ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix -    ac_top_srcdir=$ac_top_builddir$srcdir ;; -esac - -# Do not use `cd foo && pwd` to compute absolute paths, because -# the directories may not exist. -case `pwd` in -.) ac_abs_builddir="$ac_dir";; -*) -  case "$ac_dir" in -  .) ac_abs_builddir=`pwd`;; -  [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";; -  *) ac_abs_builddir=`pwd`/"$ac_dir";; -  esac;; -esac -case $ac_abs_builddir in -.) ac_abs_top_builddir=${ac_top_builddir}.;; -*) -  case ${ac_top_builddir}. in -  .) ac_abs_top_builddir=$ac_abs_builddir;; -  [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;; -  *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;; -  esac;; -esac -case $ac_abs_builddir in -.) ac_abs_srcdir=$ac_srcdir;; -*) -  case $ac_srcdir in -  .) ac_abs_srcdir=$ac_abs_builddir;; -  [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;; -  *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;; -  esac;; -esac -case $ac_abs_builddir in -.) ac_abs_top_srcdir=$ac_top_srcdir;; -*) -  case $ac_top_srcdir in -  .) ac_abs_top_srcdir=$ac_abs_builddir;; -  [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;; -  *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;; -  esac;; -esac - - -  { echo "$as_me:$LINENO: executing $ac_dest commands" >&5 -echo "$as_me: executing $ac_dest commands" >&6;} -  case $ac_dest in -    default-1 ) test -z "$CONFIG_HEADERS" || echo timestamp > src/stamp-h ;; -  esac -done -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF - -{ (exit 0); exit 0; } -_ACEOF -chmod +x $CONFIG_STATUS -ac_clean_files=$ac_clean_files_save - - -# configure is writing to config.log, and then calls config.status. -# config.status does its own redirection, appending to config.log. -# Unfortunately, on DOS this fails, as config.log is still kept open -# by configure, so config.status won't be able to write to it; its -# output is simply discarded.  So we exec the FD to /dev/null, -# effectively closing config.log, so it can be properly (re)opened and -# appended to by config.status.  When coming back to configure, we -# need to make the FD available again. -if test "$no_create" != yes; then -  ac_cs_success=: -  ac_config_status_args= -  test "$silent" = yes && -    ac_config_status_args="$ac_config_status_args --quiet" -  exec 5>/dev/null -  $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false -  exec 5>>config.log -  # Use ||, not &&, to avoid exiting from the if with $? = 1, which -  # would make configure fail if this is the last instruction. -  $ac_cs_success || { (exit 1); exit 1; } -fi - - -echo "" -echo "If you have used an earlier version of feh," -echo "please remove your ~/.fehrc config file." -echo "feh will create a new one when it is first run." diff --git a/configure.ac b/configure.ac deleted file mode 100644 index 9e14757..0000000 --- a/configure.ac +++ /dev/null @@ -1,67 +0,0 @@ -dnl Process this file with autoconf to create configure. - -AC_INIT -AC_CONFIG_SRCDIR([src/main.c]) -AM_INIT_AUTOMAKE(feh, 1.4.1) -AM_CONFIG_HEADER(src/config.h) - -AC_PROG_CC -AM_PROG_CC_STDC -AC_C_CONST - -AC_PROG_INSTALL -AC_PROG_MAKE_SET - -AM_MAINTAINER_MODE -AM_WITH_DMALLOC - -AC_ARG_WITH(imlib2, -        [  --with-imlib2=DIR       use imlib2 in <DIR>], -        [CFLAGS="$CFLAGS -I$withval/include" -        LIBS="-L$withval/lib $LIBS"]) - -AC_PATH_GENERIC(imlib2, 1.0.0, [ -  AC_SUBST(IMLIB_LIBS) -  AC_SUBST(IMLIB_CFLAGS) ], -  AC_MSG_ERROR(Cannot find imlib2: Is imlib2-config in the path?) ) -IMLIB_LIBS=`imlib2-config --libs` -IMLIB_CFLAGS=`imlib2-config --cflags` -AC_SUBST(IMLIB_LIBS) -AC_SUBST(IMLIB_CFLAGS) - -AC_PATH_GENERIC(giblib, 1.2.4, [ -  AC_SUBST(GIBLIB_LIBS) -  AC_SUBST(GIBLIB_CFLAGS) ], -  AC_MSG_ERROR(Cannot find giblib: Is giblib-config in the path?) ) - -dnl the above doesn't work for some reason :/ -GIBLIB_LIBS=`giblib-config --libs` -GIBLIB_CFLAGS=`giblib-config --cflags` -AC_SUBST(GIBLIB_LIBS) -AC_SUBST(GIBLIB_CFLAGS) - -dnl Check for Xinerama -CFLAGS="-I/usr/X11R6/include $CFLAGS" -LIBS="-L/usr/X11R6/lib $LIBS -lm" -AC_CHECK_LIB(Xext,XMissingExtension,, [CFLAGS="$CFLAGS -I/usr/X11R6/include"]) -AC_CHECK_LIB(Xinerama,XineramaQueryScreens,, [CFLAGS="$CFLAGS -I/usr/X11R6/include"]) -AC_SUBST(HAVE_XINERAMA) -AC_SUBST(XINERAMA_LIBS) - -dnl AC_CHECK_FUNC(getopt_long,,[AC_LIBOBJ="$AC_LIBOBJ getopt.o getopt1.o"]) -dnl AC_SUBST(AC_LIBOBJ) - -echo "checking for pr0n.... found" - -AC_CONFIG_FILES([Makefile \ -feh.spec \ -cam/Makefile \ -src/Makefile \ -src/ttfonts/Makefile \ -]) -AC_OUTPUT - -echo "" -echo "If you have used an earlier version of feh," -echo "please remove your ~/.fehrc config file." -echo "feh will create a new one when it is first run." diff --git a/configure.in b/configure.in deleted file mode 100644 index 2badc80..0000000 --- a/configure.in +++ /dev/null @@ -1,78 +0,0 @@ -dnl Process this file with autoconf to create configure. - -AC_INIT(src/main.c) -AM_INIT_AUTOMAKE(feh, 1.4.1) -AM_CONFIG_HEADER(src/config.h) - -AC_PROG_CC -AM_PROG_CC_STDC -AC_C_CONST - -AC_PROG_INSTALL -AC_PROG_MAKE_SET - -AM_MAINTAINER_MODE -AM_WITH_DMALLOC - -AC_ARG_WITH(imlib2, -        [  --with-imlib2=DIR       use imlib2 in <DIR>], -        [CFLAGS="$CFLAGS -I$withval/include" -        LIBS="-L$withval/lib $LIBS"]) - -AC_PATH_GENERIC(imlib2, 1.0.0, [ -  AC_SUBST(IMLIB_LIBS) -  AC_SUBST(IMLIB_CFLAGS) ], -  AC_MSG_ERROR(Cannot find imlib2: Is imlib2-config in the path?) ) -IMLIB_LIBS=`imlib2-config --libs` -IMLIB_CFLAGS=`imlib2-config --cflags` -AC_SUBST(IMLIB_LIBS) -AC_SUBST(IMLIB_CFLAGS) - -AC_PATH_GENERIC(giblib, 1.2.4, [ -  AC_SUBST(GIBLIB_LIBS) -  AC_SUBST(GIBLIB_CFLAGS) ], -  AC_MSG_ERROR(Cannot find giblib: Is giblib-config in the path?) ) - -dnl the above doesn't work for some reason :/ -GIBLIB_LIBS=`giblib-config --libs` -GIBLIB_CFLAGS=`giblib-config --cflags` -AC_SUBST(GIBLIB_LIBS) -AC_SUBST(GIBLIB_CFLAGS) - -dnl Check for Xinerama -AC_ARG_ENABLE(xinerama, -	AC_HELP_STRING([--disable-xinerama],[disable Xinerama multi screen support]), -	[ -	if test x"$enableval" = xyes; then -		with_xinerama="yes" -	else -		with_xinerama="no" -	fi -	], -	[with_xinerama="detect"] -) -if test x"$with_xinerama" != xno; then -	AC_CHECK_LIB(Xext,XMissingExtension,[ -		AC_CHECK_LIB(Xinerama,XineramaQueryScreens,[ -			AC_DEFINE(HAVE_LIBXINERAMA, [], [Enable Xinerama support]) -			LIBS="$LIBS -lXext -lXinerama" -		]) -	]) -fi - -dnl AC_CHECK_FUNC(getopt_long,,[LIBOBJS="$LIBOBJS getopt.o getopt1.o"]) -dnl AC_SUBST(LIBOBJS) - -echo "checking for pr0n.... found" - -AC_OUTPUT(Makefile \ -feh.spec \ -cam/Makefile \ -src/Makefile \ -src/ttfonts/Makefile \ -) - -echo "" -echo "If you have used an earlier version of feh," -echo "please remove your ~/.fehrc config file." -echo "feh will create a new one when it is first run." diff --git a/feh.spec.in b/feh.spec.in deleted file mode 100644 index a7b5926..0000000 --- a/feh.spec.in +++ /dev/null @@ -1,43 +0,0 @@ -Summary:    Image viewer using Imlib 2 -Name:       @PACKAGE@ -Version:    @VERSION@ -Release:    1 -Copyright:  BSD -Group:      Amusements/Graphics -Source:     %{name}-%{version}.tar.bz2 -Url:        https://derf.homelinux.org/~derf/projects/feh -BuildRoot:  /var/tmp/%{name}-%{version}-root - -%description -feh is a versatile and fast image viewer using imlib2, the -premier image file handling library. feh has many features, -from simple single file viewing, to multiple file modes using -a slideshow or multiple windows. feh supports the creation of -montages as index prints with many user-configurable options. - -%prep -%setup - -%build -export CFLAGS="$RPM_OPT_FLAGS" -%{configure} --prefix=%{_prefix} --bindir=%{_bindir} \ -             --mandir=%{_mandir} --datadir=%{_datadir} - -make CFLAGS="$RPM_OPT_FLAGS" - -%install -rm -rf $RPM_BUILD_ROOT -make DESTDIR=$RPM_BUILD_ROOT install - -%files -%defattr(-, root, root) -%{_bindir}/* -%{_mandir}/* -%{_datadir}/%{name}/* - -%doc AUTHORS ChangeLog README TODO - -%changelog -* Wed Aug 23 2000 Calum Selkirk <cselkirk@sophix.uklinux.net> -- removed the double entry for doc - diff --git a/gen-cam-menu.1 b/gen-cam-menu.1 deleted file mode 120000 index b562fc9..0000000 --- a/gen-cam-menu.1 +++ /dev/null @@ -1 +0,0 @@ -feh-cam.1
\ No newline at end of file diff --git a/install-sh b/install-sh deleted file mode 100755 index c122ef9..0000000 --- a/install-sh +++ /dev/null @@ -1,251 +0,0 @@ -#!/bin/sh -# -# install - install a program, script, or datafile -# This comes from X11R5 (mit/util/scripts/install.sh). -# -# Copyright 1991 by the Massachusetts Institute of Technology -# -# Permission to use, copy, modify, distribute, and sell this software and its -# documentation for any purpose is hereby granted without fee, provided that -# the above copyright notice appear in all copies and that both that -# copyright notice and this permission notice appear in supporting -# documentation, and that the name of M.I.T. not be used in advertising or -# publicity pertaining to distribution of the software without specific, -# written prior permission.  M.I.T. makes no representations about the -# suitability of this software for any purpose.  It is provided "as is" -# without express or implied warranty. -# -# Calling this script install-sh is preferred over install.sh, to prevent -# `make' implicit rules from creating a file called install from it -# when there is no Makefile. -# -# This script is compatible with the BSD install script, but was written -# from scratch.  It can only install one file at a time, a restriction -# shared with many OS's install programs. - - -# set DOITPROG to echo to test this script - -# Don't use :- since 4.3BSD and earlier shells don't like it. -doit="${DOITPROG-}" - - -# put in absolute paths if you don't have them in your path; or use env. vars. - -mvprog="${MVPROG-mv}" -cpprog="${CPPROG-cp}" -chmodprog="${CHMODPROG-chmod}" -chownprog="${CHOWNPROG-chown}" -chgrpprog="${CHGRPPROG-chgrp}" -stripprog="${STRIPPROG-strip}" -rmprog="${RMPROG-rm}" -mkdirprog="${MKDIRPROG-mkdir}" - -transformbasename="" -transform_arg="" -instcmd="$mvprog" -chmodcmd="$chmodprog 0755" -chowncmd="" -chgrpcmd="" -stripcmd="" -rmcmd="$rmprog -f" -mvcmd="$mvprog" -src="" -dst="" -dir_arg="" - -while [ x"$1" != x ]; do -    case $1 in -	-c) instcmd="$cpprog" -	    shift -	    continue;; - -	-d) dir_arg=true -	    shift -	    continue;; - -	-m) chmodcmd="$chmodprog $2" -	    shift -	    shift -	    continue;; - -	-o) chowncmd="$chownprog $2" -	    shift -	    shift -	    continue;; - -	-g) chgrpcmd="$chgrpprog $2" -	    shift -	    shift -	    continue;; - -	-s) stripcmd="$stripprog" -	    shift -	    continue;; - -	-t=*) transformarg=`echo $1 | sed 's/-t=//'` -	    shift -	    continue;; - -	-b=*) transformbasename=`echo $1 | sed 's/-b=//'` -	    shift -	    continue;; - -	*)  if [ x"$src" = x ] -	    then -		src=$1 -	    else -		# this colon is to work around a 386BSD /bin/sh bug -		: -		dst=$1 -	    fi -	    shift -	    continue;; -    esac -done - -if [ x"$src" = x ] -then -	echo "install:	no input file specified" -	exit 1 -else -	true -fi - -if [ x"$dir_arg" != x ]; then -	dst=$src -	src="" -	 -	if [ -d $dst ]; then -		instcmd=: -		chmodcmd="" -	else -		instcmd=mkdir -	fi -else - -# Waiting for this to be detected by the "$instcmd $src $dsttmp" command -# might cause directories to be created, which would be especially bad  -# if $src (and thus $dsttmp) contains '*'. - -	if [ -f $src -o -d $src ] -	then -		true -	else -		echo "install:  $src does not exist" -		exit 1 -	fi -	 -	if [ x"$dst" = x ] -	then -		echo "install:	no destination specified" -		exit 1 -	else -		true -	fi - -# If destination is a directory, append the input filename; if your system -# does not like double slashes in filenames, you may need to add some logic - -	if [ -d $dst ] -	then -		dst="$dst"/`basename $src` -	else -		true -	fi -fi - -## this sed command emulates the dirname command -dstdir=`echo $dst | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'` - -# Make sure that the destination directory exists. -#  this part is taken from Noah Friedman's mkinstalldirs script - -# Skip lots of stat calls in the usual case. -if [ ! -d "$dstdir" ]; then -defaultIFS=' 	 -' -IFS="${IFS-${defaultIFS}}" - -oIFS="${IFS}" -# Some sh's can't handle IFS=/ for some reason. -IFS='%' -set - `echo ${dstdir} | sed -e 's@/@%@g' -e 's@^%@/@'` -IFS="${oIFS}" - -pathcomp='' - -while [ $# -ne 0 ] ; do -	pathcomp="${pathcomp}${1}" -	shift - -	if [ ! -d "${pathcomp}" ] ; -        then -		$mkdirprog "${pathcomp}" -	else -		true -	fi - -	pathcomp="${pathcomp}/" -done -fi - -if [ x"$dir_arg" != x ] -then -	$doit $instcmd $dst && - -	if [ x"$chowncmd" != x ]; then $doit $chowncmd $dst; else true ; fi && -	if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dst; else true ; fi && -	if [ x"$stripcmd" != x ]; then $doit $stripcmd $dst; else true ; fi && -	if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dst; else true ; fi -else - -# If we're going to rename the final executable, determine the name now. - -	if [ x"$transformarg" = x ]  -	then -		dstfile=`basename $dst` -	else -		dstfile=`basename $dst $transformbasename |  -			sed $transformarg`$transformbasename -	fi - -# don't allow the sed command to completely eliminate the filename - -	if [ x"$dstfile" = x ]  -	then -		dstfile=`basename $dst` -	else -		true -	fi - -# Make a temp file name in the proper directory. - -	dsttmp=$dstdir/#inst.$$# - -# Move or copy the file name to the temp name - -	$doit $instcmd $src $dsttmp && - -	trap "rm -f ${dsttmp}" 0 && - -# and set any options; do chmod last to preserve setuid bits - -# If any of these fail, we abort the whole thing.  If we want to -# ignore errors from any of these, just make sure not to ignore -# errors from the above "$doit $instcmd $src $dsttmp" command. - -	if [ x"$chowncmd" != x ]; then $doit $chowncmd $dsttmp; else true;fi && -	if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dsttmp; else true;fi && -	if [ x"$stripcmd" != x ]; then $doit $stripcmd $dsttmp; else true;fi && -	if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dsttmp; else true;fi && - -# Now rename the file to the real destination. - -	$doit $rmcmd -f $dstdir/$dstfile && -	$doit $mvcmd $dsttmp $dstdir/$dstfile  - -fi && - - -exit 0 diff --git a/feh-cam.1 b/man/feh-cam.1 index dcd3f07..dcd3f07 100644 --- a/feh-cam.1 +++ b/man/feh-cam.1 diff --git a/missing b/missing deleted file mode 100755 index 22e101a..0000000 --- a/missing +++ /dev/null @@ -1,198 +0,0 @@ -#! /bin/sh -# Common stub for a few missing GNU programs while installing. -# Copyright (C) 1996, 1997, 2001, 2002 Free Software Foundation, Inc. -# Franc,ois Pinard <pinard@iro.umontreal.ca>, 1996. - -# 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 -# the Free Software Foundation; either version 2, or (at your option) -# any later version. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the -# GNU General Public License for more details. - -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -# 02111-1307, USA. - -if test $# -eq 0; then -  echo 1>&2 "Try \`$0 --help' for more information" -  exit 1 -fi - -# In the cases where this matters, `missing' is being run in the -# srcdir already. -if test -f configure.in; then -  configure_ac=configure.ac -else -  configure_ac=configure.in -fi - -case "$1" in - -  -h|--h|--he|--hel|--help) -    echo "\ -$0 [OPTION]... PROGRAM [ARGUMENT]... - -Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an -error status if there is no known handling for PROGRAM. - -Options: -  -h, --help      display this help and exit -  -v, --version   output version information and exit - -Supported PROGRAM values: -  aclocal      touch file \`aclocal.m4' -  autoconf     touch file \`configure' -  autoheader   touch file \`config.h.in' -  automake     touch all \`Makefile.in' files -  bison        create \`y.tab.[ch]', if possible, from existing .[ch] -  flex         create \`lex.yy.c', if possible, from existing .c -  lex          create \`lex.yy.c', if possible, from existing .c -  makeinfo     touch the output file -  yacc         create \`y.tab.[ch]', if possible, from existing .[ch]" -    ;; - -  -v|--v|--ve|--ver|--vers|--versi|--versio|--version) -    echo "missing - GNU libit 0.0" -    ;; - -  -*) -    echo 1>&2 "$0: Unknown \`$1' option" -    echo 1>&2 "Try \`$0 --help' for more information" -    exit 1 -    ;; - -  aclocal*) -    echo 1>&2 "\ -WARNING: \`$1' is missing on your system.  You should only need it if -         you modified \`acinclude.m4' or \`$configure_ac'.  You might want -         to install the \`Automake' and \`Perl' packages.  Grab them from -         any GNU archive site." -    touch aclocal.m4 -    ;; - -  autoconf) -    echo 1>&2 "\ -WARNING: \`$1' is missing on your system.  You should only need it if -         you modified \`$configure_ac'.  You might want to install the -         \`Autoconf' and \`GNU m4' packages.  Grab them from any GNU -         archive site." -    touch configure -    ;; - -  autoheader) -    echo 1>&2 "\ -WARNING: \`$1' is missing on your system.  You should only need it if -         you modified \`acconfig.h' or \`$configure_ac'.  You might want -         to install the \`Autoconf' and \`GNU m4' packages.  Grab them -         from any GNU archive site." -    files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' $configure_ac` -    test -z "$files" && files="config.h" -    touch_files= -    for f in $files; do -      case "$f" in -      *:*) touch_files="$touch_files "`echo "$f" | -				       sed -e 's/^[^:]*://' -e 's/:.*//'`;; -      *) touch_files="$touch_files $f.in";; -      esac -    done -    touch $touch_files -    ;; - -  automake*) -    echo 1>&2 "\ -WARNING: \`$1' is missing on your system.  You should only need it if -         you modified \`Makefile.am', \`acinclude.m4' or \`$configure_ac'. -         You might want to install the \`Automake' and \`Perl' packages. -         Grab them from any GNU archive site." -    find . -type f -name Makefile.am -print | -	   sed 's/\.am$/.in/' | -	   while read f; do touch "$f"; done -    ;; - -  bison|yacc) -    echo 1>&2 "\ -WARNING: \`$1' is missing on your system.  You should only need it if -         you modified a \`.y' file.  You may need the \`Bison' package -         in order for those modifications to take effect.  You can get -         \`Bison' from any GNU archive site." -    rm -f y.tab.c y.tab.h -    if [ $# -ne 1 ]; then -        eval LASTARG="\${$#}" -	case "$LASTARG" in -	*.y) -	    SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'` -	    if [ -f "$SRCFILE" ]; then -	         cp "$SRCFILE" y.tab.c -	    fi -	    SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'` -	    if [ -f "$SRCFILE" ]; then -	         cp "$SRCFILE" y.tab.h -	    fi -	  ;; -	esac -    fi -    if [ ! -f y.tab.h ]; then -	echo >y.tab.h -    fi -    if [ ! -f y.tab.c ]; then -	echo 'main() { return 0; }' >y.tab.c -    fi -    ;; - -  lex|flex) -    echo 1>&2 "\ -WARNING: \`$1' is missing on your system.  You should only need it if -         you modified a \`.l' file.  You may need the \`Flex' package -         in order for those modifications to take effect.  You can get -         \`Flex' from any GNU archive site." -    rm -f lex.yy.c -    if [ $# -ne 1 ]; then -        eval LASTARG="\${$#}" -	case "$LASTARG" in -	*.l) -	    SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'` -	    if [ -f "$SRCFILE" ]; then -	         cp "$SRCFILE" lex.yy.c -	    fi -	  ;; -	esac -    fi -    if [ ! -f lex.yy.c ]; then -	echo 'main() { return 0; }' >lex.yy.c -    fi -    ;; - -  makeinfo) -    echo 1>&2 "\ -WARNING: \`$1' is missing on your system.  You should only need it if -         you modified a \`.texi' or \`.texinfo' file, or any other file -         indirectly affecting the aspect of the manual.  The spurious -         call might also be the consequence of using a buggy \`make' (AIX, -         DU, IRIX).  You might want to install the \`Texinfo' package or -         the \`GNU make' package.  Grab either from any GNU archive site." -    file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'` -    if test -z "$file"; then -      file=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'` -      file=`sed -n '/^@setfilename/ { s/.* \([^ ]*\) *$/\1/; p; q; }' $file` -    fi -    touch $file -    ;; - -  *) -    echo 1>&2 "\ -WARNING: \`$1' is needed, and you do not seem to have it handy on your -         system.  You might have modified some files without having the -         proper tools for further handling them.  Check the \`README' file, -         it often tells you about the needed prerequirements for installing -         this package.  You may also peek at any GNU archive site, in case -         some other package would contain this missing \`$1' program." -    exit 1 -    ;; -esac - -exit 0 diff --git a/mkinstalldirs b/mkinstalldirs deleted file mode 100755 index 4f58503..0000000 --- a/mkinstalldirs +++ /dev/null @@ -1,40 +0,0 @@ -#! /bin/sh -# mkinstalldirs --- make directory hierarchy -# Author: Noah Friedman <friedman@prep.ai.mit.edu> -# Created: 1993-05-16 -# Public domain - -# $Id: mkinstalldirs,v 1.13 1999/01/05 03:18:55 bje Exp $ - -errstatus=0 - -for file -do -   set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'` -   shift - -   pathcomp= -   for d -   do -     pathcomp="$pathcomp$d" -     case "$pathcomp" in -       -* ) pathcomp=./$pathcomp ;; -     esac - -     if test ! -d "$pathcomp"; then -        echo "mkdir $pathcomp" - -        mkdir "$pathcomp" || lasterr=$? - -        if test ! -d "$pathcomp"; then -  	  errstatus=$lasterr -        fi -     fi - -     pathcomp="$pathcomp/" -   done -done - -exit $errstatus - -# mkinstalldirs ends here diff --git a/dev/checkopts.pl b/scripts/checkopts.pl index fb88c0f..fb88c0f 100755 --- a/dev/checkopts.pl +++ b/scripts/checkopts.pl diff --git a/src/Makefile b/src/Makefile new file mode 100644 index 0000000..5fdc498 --- /dev/null +++ b/src/Makefile @@ -0,0 +1,84 @@ +include ../config.mk + +OBJECTS = collage.o events.o feh_png.o filelist.o getopt.o getopt1.o imlib.o \ +	index.o ipc.o keyevents.o list.o main.o md5.o menu.o multiwindow.o \ +	options.o slideshow.o support.o thumbnail.o timers.o utils.o winwidget.o + +feh: $(OBJECTS) +	$(CC) $(CFLAGS) -o $@ $(OBJECTS) $(LDFLAGS) + + + +.c.o: +	$(CC) $(CFLAGS) -c $< + +collage.o: collage.c feh.h getopt.h structs.h menu.h ipc.h \ +	utils.h debug.h winwidget.h filelist.h options.h + +events.o: events.c feh.h getopt.h structs.h menu.h ipc.h \ +	utils.h debug.h filelist.h winwidget.h timers.h options.h \ +	events.h thumbnail.h + +feh_png.o: feh_png.c feh_png.h feh.h getopt.h structs.h menu.h \ +	ipc.h utils.h debug.h + +filelist.o: filelist.c feh.h getopt.h structs.h menu.h ipc.h \ +	utils.h debug.h filelist.h options.h + +getopt.o: getopt.c + +getopt1.o: getopt1.c getopt.h + +imlib.o: imlib.c feh.h getopt.h structs.h menu.h ipc.h utils.h \ +	debug.h filelist.h winwidget.h options.h + +index.o: index.c feh.h getopt.h structs.h menu.h ipc.h utils.h \ +	debug.h filelist.h winwidget.h options.h + +ipc.o: ipc.c feh.h getopt.h structs.h menu.h ipc.h utils.h \ +	debug.h options.h + +keyevents.o: keyevents.c feh.h getopt.h structs.h menu.h ipc.h \ +	utils.h debug.h thumbnail.h filelist.h winwidget.h options.h + +list.o: list.c feh.h getopt.h structs.h menu.h ipc.h utils.h \ +	debug.h filelist.h options.h + +main.o: main.c feh.h getopt.h structs.h menu.h ipc.h utils.h \ +	debug.h filelist.h winwidget.h timers.h options.h events.h \ +	support.h + +md5.o: md5.c md5.h + +menu.o: menu.c feh.h getopt.h structs.h menu.h ipc.h utils.h \ +	debug.h support.h thumbnail.h filelist.h winwidget.h options.h + +multiwindow.o: multiwindow.c feh.h getopt.h structs.h menu.h \ +	ipc.h utils.h debug.h winwidget.h timers.h filelist.h options.h + +options.o: options.c feh.h getopt.h structs.h menu.h ipc.h \ +	utils.h debug.h filelist.h options.h + +slideshow.o: slideshow.c feh.h getopt.h structs.h menu.h ipc.h \ +	utils.h debug.h filelist.h timers.h winwidget.h options.h + +support.o: support.c feh.h getopt.h structs.h menu.h ipc.h \ +	utils.h debug.h filelist.h options.h support.h + +thumbnail.o: thumbnail.c feh.h getopt.h structs.h menu.h ipc.h \ +	utils.h debug.h filelist.h winwidget.h options.h thumbnail.h \ +	md5.h feh_png.h + +timers.o: timers.c feh.h getopt.h structs.h menu.h ipc.h \ +	utils.h debug.h options.h timers.h + +utils.o: utils.c feh.h getopt.h structs.h menu.h ipc.h utils.h \ +	debug.h options.h + +winwidget.o: winwidget.c feh.h getopt.h structs.h menu.h ipc.h \ +	utils.h debug.h filelist.h winwidget.h options.h + +clean: +	rm -f feh *.o + +.PHONY: clean diff --git a/src/Makefile.am b/src/Makefile.am deleted file mode 100644 index b87f0e0..0000000 --- a/src/Makefile.am +++ /dev/null @@ -1,41 +0,0 @@ -# A list of all the files in the current directory which can be regenerated -MAINTAINERCLEANFILES = Makefile.in				 - -INCLUDES          = -I/usr/X11R6/include $(X_CFLAGS) \ -                    -I$(prefix)/include -I$(includedir) \ -                    -I. -I$(top_srcdir)/src \ -                    -I/usr/local/include/libpng \ -                    -DPREFIX=\""$(prefix)"\" \ -                    @IMLIB_CFLAGS@ @GIBLIB_CFLAGS@ -LIBOBJS = @LIBOBJS@ - -bin_PROGRAMS      = feh -feh_SOURCES       = main.c getopt.c getopt1.c getopt.h feh.h \ -options.c options.h winwidget.c winwidget.h menu.c menu.h structs.h \ -filelist.c filelist.h multiwindow.c imlib.c index.c slideshow.c \ -utils.c utils.h keyevents.c timers.c timers.h list.c collage.c debug.h \ -events.c events.h support.c support.h \ -thumbnail.c thumbnail.h ipc.c ipc.h md5.c md5.h feh_png.c feh_png.h - -feh_LDADD         = -lX11 -lz -lpng @IMLIB_LIBS@ @GIBLIB_LIBS@ - -images_DATA = about.png menubg_default.png menubg_sky.png \ -menubg_chrome.png menubg_brushed.png \ -menubg_pastel.png menubg_aluminium.png menubg_aqua.png \ -menubg_wood.png menubg_black.png - -imagesdir=$(prefix)/share/feh/images -EXTRA_DIST = $(images_DATA) - -test: -	@for i in test[0-9]* ; do \ -	  if test -x $$i ; then \ -	    echo "Executing test script $$i..." ; \ -	    ./$$i ; \ -	  fi ; \ -	done - -testclean: -	-rm -f _test*.jpg - -SUBDIRS = ttfonts diff --git a/src/Makefile.in b/src/Makefile.in deleted file mode 100644 index 1476066..0000000 --- a/src/Makefile.in +++ /dev/null @@ -1,495 +0,0 @@ -# Makefile.in generated automatically by automake 1.4-p6 from Makefile.am - -# Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -# A list of all the files in the current directory which can be regenerated - - -SHELL = @SHELL@ - -srcdir = @srcdir@ -top_srcdir = @top_srcdir@ -VPATH = @srcdir@ -prefix = @prefix@ -exec_prefix = @exec_prefix@ - -bindir = @bindir@ -sbindir = @sbindir@ -libexecdir = @libexecdir@ -datadir = @datadir@ -sysconfdir = @sysconfdir@ -sharedstatedir = @sharedstatedir@ -localstatedir = @localstatedir@ -libdir = @libdir@ -infodir = @infodir@ -mandir = @mandir@ -includedir = @includedir@ -oldincludedir = /usr/include - -DESTDIR = - -pkgdatadir = $(datadir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ - -top_builddir = .. - -ACLOCAL = @ACLOCAL@ -AUTOCONF = @AUTOCONF@ -AUTOMAKE = @AUTOMAKE@ -AUTOHEADER = @AUTOHEADER@ - -INSTALL = @INSTALL@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(AM_INSTALL_PROGRAM_FLAGS) -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -transform = @program_transform_name@ - -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -host_alias = @host_alias@ -host_triplet = @host@ -CC = @CC@ -GIBLIB_CFLAGS = @GIBLIB_CFLAGS@ -GIBLIB_LIBS = @GIBLIB_LIBS@ -GTK_CFLAGS = @GTK_CFLAGS@ -GTK_CONFIG = @GTK_CONFIG@ -GTK_LIBS = @GTK_LIBS@ -HAVE_LIB = @HAVE_LIB@ -HAVE_XINERAMA = @HAVE_XINERAMA@ -IMLIB_CFLAGS = @IMLIB_CFLAGS@ -IMLIB_LIBS = @IMLIB_LIBS@ -LIB = @LIB@ -LTLIB = @LTLIB@ -MAINT = @MAINT@ -MAKEINFO = @MAKEINFO@ -PACKAGE = @PACKAGE@ -UP = @UP@ -VERSION = @VERSION@ -XINERAMA_LIBS = @XINERAMA_LIBS@ - -MAINTAINERCLEANFILES = Makefile.in				 - -LDFLAGS = -L/usr/X11R6/lib -L/usr/local/lib -lz -lpng -INCLUDES = -I/usr/X11R6/include $(X_CFLAGS)                     -I$(prefix)/include -I$(includedir)                     -I. -I$(top_srcdir)/src                     -I/usr/local/include/libpng                     -DPREFIX=\""$(prefix)"\"                     @IMLIB_CFLAGS@ @GIBLIB_CFLAGS@ - -LIBOBJS = @LIBOBJS@ - -bin_PROGRAMS = feh -feh_SOURCES = main.c getopt.c getopt1.c getopt.h feh.h options.c options.h winwidget.c winwidget.h menu.c menu.h structs.h filelist.c filelist.h multiwindow.c imlib.c index.c slideshow.c utils.c utils.h keyevents.c timers.c timers.h list.c collage.c debug.h events.c events.h support.c support.h thumbnail.c thumbnail.h ipc.c ipc.h md5.c md5.h feh_png.c feh_png.h - - -feh_LDADD = -lX11 -lz -lpng @IMLIB_LIBS@ @GIBLIB_LIBS@ - -images_DATA = about.png menubg_default.png menubg_sky.png menubg_chrome.png menubg_brushed.png menubg_pastel.png menubg_aluminium.png menubg_aqua.png menubg_wood.png menubg_black.png - - -imagesdir = $(prefix)/share/feh/images -EXTRA_DIST = $(images_DATA) - -SUBDIRS = ttfonts -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = config.h -CONFIG_CLEAN_FILES =  -PROGRAMS =  $(bin_PROGRAMS) - - -DEFS = @DEFS@ -I. -I$(srcdir) -I. -CPPFLAGS = @CPPFLAGS@ -LIBS = @LIBS@ -feh_OBJECTS =  main.o getopt.o getopt1.o options.o winwidget.o menu.o \ -filelist.o multiwindow.o imlib.o index.o slideshow.o utils.o \ -keyevents.o timers.o list.o collage.o events.o support.o \ -thumbnail.o ipc.o md5.o feh_png.o -feh_DEPENDENCIES =  -feh_LDFLAGS =  -CFLAGS = @CFLAGS@ -COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ -DATA =  $(images_DATA) - -DIST_COMMON =  ./stamp-h.in Makefile.am Makefile.in config.h.in - - -DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST) - -TAR = tar -GZIP_ENV = --best -SOURCES = $(feh_SOURCES) -OBJECTS = $(feh_OBJECTS) - -all: all-redirect -.SUFFIXES: -.SUFFIXES: .S .c .o .s -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.ac $(ACLOCAL_M4)  -	cd $(top_srcdir) && $(AUTOMAKE) --foreign --include-deps src/Makefile - -Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status -	cd $(top_builddir) \ -	  && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status - - -config.h: stamp-h -	@if test ! -f $@; then \ -		rm -f stamp-h; \ -		$(MAKE) stamp-h; \ -	else :; fi -stamp-h: $(srcdir)/config.h.in $(top_builddir)/config.status -	cd $(top_builddir) \ -	  && CONFIG_FILES= CONFIG_HEADERS=src/config.h \ -	     $(SHELL) ./config.status -	@echo timestamp > stamp-h 2> /dev/null -$(srcdir)/config.h.in: @MAINTAINER_MODE_TRUE@$(srcdir)/stamp-h.in -	@if test ! -f $@; then \ -		rm -f $(srcdir)/stamp-h.in; \ -		$(MAKE) $(srcdir)/stamp-h.in; \ -	else :; fi -$(srcdir)/stamp-h.in: $(top_srcdir)/configure.ac $(ACLOCAL_M4)  -	cd $(top_srcdir) && $(AUTOHEADER) -	@echo timestamp > $(srcdir)/stamp-h.in 2> /dev/null - -mostlyclean-hdr: - -clean-hdr: - -distclean-hdr: -	-rm -f config.h - -maintainer-clean-hdr: - -mostlyclean-binPROGRAMS: - -clean-binPROGRAMS: -	-test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS) - -distclean-binPROGRAMS: - -maintainer-clean-binPROGRAMS: - -install-binPROGRAMS: $(bin_PROGRAMS) -	@$(NORMAL_INSTALL) -	$(mkinstalldirs) $(DESTDIR)$(bindir) -	@list='$(bin_PROGRAMS)'; for p in $$list; do \ -	  if test -f $$p; then \ -	    echo "  $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`"; \ -	     $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \ -	  else :; fi; \ -	done - -uninstall-binPROGRAMS: -	@$(NORMAL_UNINSTALL) -	list='$(bin_PROGRAMS)'; for p in $$list; do \ -	  rm -f $(DESTDIR)$(bindir)/`echo $$p|sed 's/$(EXEEXT)$$//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \ -	done - -.c.o: -	$(COMPILE) -c $< - -.s.o: -	$(COMPILE) -c $< - -.S.o: -	$(COMPILE) -c $< - -mostlyclean-compile: -	-rm -f *.o core *.core - -clean-compile: - -distclean-compile: -	-rm -f *.tab.c - -maintainer-clean-compile: - -feh: $(feh_OBJECTS) $(feh_DEPENDENCIES) -	@rm -f feh -	$(LINK) $(feh_LDFLAGS) $(feh_OBJECTS) $(feh_LDADD) $(LIBS) - -install-imagesDATA: $(images_DATA) -	@$(NORMAL_INSTALL) -	$(mkinstalldirs) $(DESTDIR)$(imagesdir) -	@list='$(images_DATA)'; for p in $$list; do \ -	  if test -f $(srcdir)/$$p; then \ -	    echo " $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(imagesdir)/$$p"; \ -	    $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(imagesdir)/$$p; \ -	  else if test -f $$p; then \ -	    echo " $(INSTALL_DATA) $$p $(DESTDIR)$(imagesdir)/$$p"; \ -	    $(INSTALL_DATA) $$p $(DESTDIR)$(imagesdir)/$$p; \ -	  fi; fi; \ -	done - -uninstall-imagesDATA: -	@$(NORMAL_UNINSTALL) -	list='$(images_DATA)'; for p in $$list; do \ -	  rm -f $(DESTDIR)$(imagesdir)/$$p; \ -	done - -# This directory's subdirectories are mostly independent; you can cd -# into them and run `make' without going through this Makefile. -# To change the values of `make' variables: instead of editing Makefiles, -# (1) if the variable is set in `config.status', edit `config.status' -#     (which will cause the Makefiles to be regenerated when you run `make'); -# (2) otherwise, pass the desired values on the `make' command line. - -@SET_MAKE@ - -all-recursive install-data-recursive install-exec-recursive \ -installdirs-recursive install-recursive uninstall-recursive  \ -check-recursive installcheck-recursive info-recursive dvi-recursive: -	@set fnord $(MAKEFLAGS); amf=$$2; \ -	dot_seen=no; \ -	target=`echo $@ | sed s/-recursive//`; \ -	list='$(SUBDIRS)'; for subdir in $$list; do \ -	  echo "Making $$target in $$subdir"; \ -	  if test "$$subdir" = "."; then \ -	    dot_seen=yes; \ -	    local_target="$$target-am"; \ -	  else \ -	    local_target="$$target"; \ -	  fi; \ -	  (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ -	   || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ -	done; \ -	if test "$$dot_seen" = "no"; then \ -	  $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ -	fi; test -z "$$fail" - -mostlyclean-recursive clean-recursive distclean-recursive \ -maintainer-clean-recursive: -	@set fnord $(MAKEFLAGS); amf=$$2; \ -	dot_seen=no; \ -	rev=''; list='$(SUBDIRS)'; for subdir in $$list; do \ -	  rev="$$subdir $$rev"; \ -	  test "$$subdir" != "." || dot_seen=yes; \ -	done; \ -	test "$$dot_seen" = "no" && rev=". $$rev"; \ -	target=`echo $@ | sed s/-recursive//`; \ -	for subdir in $$rev; do \ -	  echo "Making $$target in $$subdir"; \ -	  if test "$$subdir" = "."; then \ -	    local_target="$$target-am"; \ -	  else \ -	    local_target="$$target"; \ -	  fi; \ -	  (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ -	   || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ -	done && test -z "$$fail" -tags-recursive: -	list='$(SUBDIRS)'; for subdir in $$list; do \ -	  test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ -	done - -tags: TAGS - -ID: $(HEADERS) $(SOURCES) $(LISP) -	list='$(SOURCES) $(HEADERS)'; \ -	unique=`for i in $$list; do echo $$i; done | \ -	  awk '    { files[$$0] = 1; } \ -	       END { for (i in files) print i; }'`; \ -	here=`pwd` && cd $(srcdir) \ -	  && mkid -f$$here/ID $$unique $(LISP) - -TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) $(LISP) -	tags=; \ -	here=`pwd`; \ -	list='$(SUBDIRS)'; for subdir in $$list; do \ -   if test "$$subdir" = .; then :; else \ -	    test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \ -   fi; \ -	done; \ -	list='$(SOURCES) $(HEADERS)'; \ -	unique=`for i in $$list; do echo $$i; done | \ -	  awk '    { files[$$0] = 1; } \ -	       END { for (i in files) print i; }'`; \ -	test -z "$(ETAGS_ARGS)config.h.in$$unique$(LISP)$$tags" \ -	  || (cd $(srcdir) && etags -o $$here/TAGS $(ETAGS_ARGS) $$tags config.h.in $$unique $(LISP)) - -mostlyclean-tags: - -clean-tags: - -distclean-tags: -	-rm -f TAGS ID - -maintainer-clean-tags: - -distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir) - -subdir = src - -distdir: $(DISTFILES) -	@for file in $(DISTFILES); do \ -	  d=$(srcdir); \ -	  if test -d $$d/$$file; then \ -	    cp -pr $$d/$$file $(distdir)/$$file; \ -	  else \ -	    test -f $(distdir)/$$file \ -	    || ln $$d/$$file $(distdir)/$$file 2> /dev/null \ -	    || cp -p $$d/$$file $(distdir)/$$file || :; \ -	  fi; \ -	done -	for subdir in $(SUBDIRS); do \ -	  if test "$$subdir" = .; then :; else \ -	    test -d $(distdir)/$$subdir \ -	    || mkdir $(distdir)/$$subdir \ -	    || exit 1; \ -	    chmod 777 $(distdir)/$$subdir; \ -	    (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir=../$(top_distdir) distdir=../$(distdir)/$$subdir distdir) \ -	      || exit 1; \ -	  fi; \ -	done -collage.o: collage.c feh.h config.h getopt.h structs.h menu.h ipc.h \ -	utils.h debug.h winwidget.h filelist.h options.h -events.o: events.c feh.h config.h getopt.h structs.h menu.h ipc.h \ -	utils.h debug.h filelist.h winwidget.h timers.h options.h \ -	events.h thumbnail.h -feh_png.o: feh_png.c feh_png.h feh.h config.h getopt.h structs.h menu.h \ -	ipc.h utils.h debug.h -filelist.o: filelist.c feh.h config.h getopt.h structs.h menu.h ipc.h \ -	utils.h debug.h filelist.h options.h -getopt.o: getopt.c config.h -getopt1.o: getopt1.c config.h getopt.h -imlib.o: imlib.c feh.h config.h getopt.h structs.h menu.h ipc.h utils.h \ -	debug.h filelist.h winwidget.h options.h -index.o: index.c feh.h config.h getopt.h structs.h menu.h ipc.h utils.h \ -	debug.h filelist.h winwidget.h options.h -ipc.o: ipc.c feh.h config.h getopt.h structs.h menu.h ipc.h utils.h \ -	debug.h options.h -keyevents.o: keyevents.c feh.h config.h getopt.h structs.h menu.h ipc.h \ -	utils.h debug.h thumbnail.h filelist.h winwidget.h options.h -list.o: list.c feh.h config.h getopt.h structs.h menu.h ipc.h utils.h \ -	debug.h filelist.h options.h -main.o: main.c feh.h config.h getopt.h structs.h menu.h ipc.h utils.h \ -	debug.h filelist.h winwidget.h timers.h options.h events.h \ -	support.h -md5.o: md5.c md5.h -menu.o: menu.c feh.h config.h getopt.h structs.h menu.h ipc.h utils.h \ -	debug.h support.h thumbnail.h filelist.h winwidget.h options.h -multiwindow.o: multiwindow.c feh.h config.h getopt.h structs.h menu.h \ -	ipc.h utils.h debug.h winwidget.h timers.h filelist.h options.h -options.o: options.c feh.h config.h getopt.h structs.h menu.h ipc.h \ -	utils.h debug.h filelist.h options.h -slideshow.o: slideshow.c feh.h config.h getopt.h structs.h menu.h ipc.h \ -	utils.h debug.h filelist.h timers.h winwidget.h options.h -support.o: support.c feh.h config.h getopt.h structs.h menu.h ipc.h \ -	utils.h debug.h filelist.h options.h support.h -thumbnail.o: thumbnail.c feh.h config.h getopt.h structs.h menu.h ipc.h \ -	utils.h debug.h filelist.h winwidget.h options.h thumbnail.h \ -	md5.h feh_png.h -timers.o: timers.c feh.h config.h getopt.h structs.h menu.h ipc.h \ -	utils.h debug.h options.h timers.h -utils.o: utils.c feh.h config.h getopt.h structs.h menu.h ipc.h utils.h \ -	debug.h options.h -winwidget.o: winwidget.c feh.h config.h getopt.h structs.h menu.h ipc.h \ -	utils.h debug.h filelist.h winwidget.h options.h - -info-am: -info: info-recursive -dvi-am: -dvi: dvi-recursive -check-am: all-am -check: check-recursive -installcheck-am: -installcheck: installcheck-recursive -all-recursive-am: config.h -	$(MAKE) $(AM_MAKEFLAGS) all-recursive - -install-exec-am: install-binPROGRAMS -install-exec: install-exec-recursive - -install-data-am: install-imagesDATA -install-data: install-data-recursive - -install-am: all-am -	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am -install: install-recursive -uninstall-am: uninstall-binPROGRAMS uninstall-imagesDATA -uninstall: uninstall-recursive -all-am: Makefile $(PROGRAMS) $(DATA) config.h -all-redirect: all-recursive-am -install-strip: -	$(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install -installdirs: installdirs-recursive -installdirs-am: -	$(mkinstalldirs)  $(DESTDIR)$(bindir) $(DESTDIR)$(imagesdir) - - -mostlyclean-generic: - -clean-generic: - -distclean-generic: -	-rm -f Makefile $(CONFIG_CLEAN_FILES) -	-rm -f config.cache config.log stamp-h stamp-h[0-9]* - -maintainer-clean-generic: -	-test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) -mostlyclean-am:  mostlyclean-hdr mostlyclean-binPROGRAMS \ -		mostlyclean-compile mostlyclean-tags \ -		mostlyclean-generic - -mostlyclean: mostlyclean-recursive - -clean-am:  clean-hdr clean-binPROGRAMS clean-compile clean-tags \ -		clean-generic mostlyclean-am - -clean: clean-recursive - -distclean-am:  distclean-hdr distclean-binPROGRAMS distclean-compile \ -		distclean-tags distclean-generic clean-am - -distclean: distclean-recursive - -maintainer-clean-am:  maintainer-clean-hdr maintainer-clean-binPROGRAMS \ -		maintainer-clean-compile maintainer-clean-tags \ -		maintainer-clean-generic distclean-am -	@echo "This command is intended for maintainers to use;" -	@echo "it deletes files that may require special tools to rebuild." - -maintainer-clean: maintainer-clean-recursive - -.PHONY: mostlyclean-hdr distclean-hdr clean-hdr maintainer-clean-hdr \ -mostlyclean-binPROGRAMS distclean-binPROGRAMS clean-binPROGRAMS \ -maintainer-clean-binPROGRAMS uninstall-binPROGRAMS install-binPROGRAMS \ -mostlyclean-compile distclean-compile clean-compile \ -maintainer-clean-compile uninstall-imagesDATA install-imagesDATA \ -install-data-recursive uninstall-data-recursive install-exec-recursive \ -uninstall-exec-recursive installdirs-recursive uninstalldirs-recursive \ -all-recursive check-recursive installcheck-recursive info-recursive \ -dvi-recursive mostlyclean-recursive distclean-recursive clean-recursive \ -maintainer-clean-recursive tags tags-recursive mostlyclean-tags \ -distclean-tags clean-tags maintainer-clean-tags distdir info-am info \ -dvi-am dvi check check-am installcheck-am installcheck all-recursive-am \ -install-exec-am install-exec install-data-am install-data install-am \ -install uninstall-am uninstall all-redirect all-am all installdirs-am \ -installdirs mostlyclean-generic distclean-generic clean-generic \ -maintainer-clean-generic clean mostlyclean distclean maintainer-clean - - -test: -	@for i in test[0-9]* ; do \ -	  if test -x $$i ; then \ -	    echo "Executing test script $$i..." ; \ -	    ./$$i ; \ -	  fi ; \ -	done - -testclean: -	-rm -f _test*.jpg - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/src/config.h.in b/src/config.h.in deleted file mode 100644 index 042d07c..0000000 --- a/src/config.h.in +++ /dev/null @@ -1,16 +0,0 @@ -/* src/config.h.in.  Generated from configure.ac by autoheader.  */ - -/* Define to 1 if you have the `Xinerama' library (-lXinerama). */ -#undef HAVE_LIBXINERAMA - -/* Name of package */ -#undef PACKAGE - -/* Version number of package */ -#undef VERSION - -/* Define if using the dmalloc debugging malloc package */ -#undef WITH_DMALLOC - -/* Define to empty if `const' does not conform to ANSI C. */ -#undef const @@ -26,8 +26,6 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.  #ifndef FEH_H  #define FEH_H -#include "config.h" -  #include <X11/Xlib.h>  #include <X11/Xutil.h>  #include <X11/Xatom.h> diff --git a/src/getopt.c b/src/getopt.c index 5a8bb6c..d212b3a 100644 --- a/src/getopt.c +++ b/src/getopt.c @@ -27,10 +27,6 @@  #define _NO_PROTO  #endif -#ifdef HAVE_CONFIG_H -#include <config.h> -#endif -  #if !defined (__STDC__) || !__STDC__  /* This is a separate conditional since some stdc systems     reject `defined (const)'.  */ diff --git a/src/getopt1.c b/src/getopt1.c index dd74680..5a5c483 100644 --- a/src/getopt1.c +++ b/src/getopt1.c @@ -17,10 +17,6 @@     write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,     Boston, MA 02111-1307, USA.  */ -#ifdef HAVE_CONFIG_H -#include <config.h> -#endif -  #include "getopt.h"  #if !defined (__STDC__) || !__STDC__ diff --git a/src/stamp-h.in b/src/stamp-h.in deleted file mode 100644 index 9788f70..0000000 --- a/src/stamp-h.in +++ /dev/null @@ -1 +0,0 @@ -timestamp diff --git a/src/ttfonts/Makefile.am b/src/ttfonts/Makefile.am deleted file mode 100644 index 7df955a..0000000 --- a/src/ttfonts/Makefile.am +++ /dev/null @@ -1,13 +0,0 @@ -## Process this file with automake to produce Makefile.in - -AUTOMAKE_OPTIONS = 1.4 foreign - -# A list of all the files in the current directory which can be regenerated -MAINTAINERCLEANFILES = Makefile.in				 - -testfonts_DATA = \ -menu.style black.style yudit.ttf - -testfontsdir=$(prefix)/share/feh/fonts - -EXTRA_DIST = $(testfonts_DATA) diff --git a/src/ttfonts/Makefile.in b/src/ttfonts/Makefile.in deleted file mode 100644 index ae93e14..0000000 --- a/src/ttfonts/Makefile.in +++ /dev/null @@ -1,216 +0,0 @@ -# Makefile.in generated automatically by automake 1.4-p6 from Makefile.am - -# Copyright (C) 1994, 1995-8, 1999, 2001 Free Software Foundation, Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - - -SHELL = @SHELL@ - -srcdir = @srcdir@ -top_srcdir = @top_srcdir@ -VPATH = @srcdir@ -prefix = @prefix@ -exec_prefix = @exec_prefix@ - -bindir = @bindir@ -sbindir = @sbindir@ -libexecdir = @libexecdir@ -datadir = @datadir@ -sysconfdir = @sysconfdir@ -sharedstatedir = @sharedstatedir@ -localstatedir = @localstatedir@ -libdir = @libdir@ -infodir = @infodir@ -mandir = @mandir@ -includedir = @includedir@ -oldincludedir = /usr/include - -DESTDIR = - -pkgdatadir = $(datadir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ - -top_builddir = ../.. - -ACLOCAL = @ACLOCAL@ -AUTOCONF = @AUTOCONF@ -AUTOMAKE = @AUTOMAKE@ -AUTOHEADER = @AUTOHEADER@ - -INSTALL = @INSTALL@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(AM_INSTALL_PROGRAM_FLAGS) -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -transform = @program_transform_name@ - -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -host_alias = @host_alias@ -host_triplet = @host@ -CC = @CC@ -GIBLIB_CFLAGS = @GIBLIB_CFLAGS@ -GIBLIB_LIBS = @GIBLIB_LIBS@ -GTK_CFLAGS = @GTK_CFLAGS@ -GTK_CONFIG = @GTK_CONFIG@ -GTK_LIBS = @GTK_LIBS@ -HAVE_LIB = @HAVE_LIB@ -HAVE_XINERAMA = @HAVE_XINERAMA@ -IMLIB_CFLAGS = @IMLIB_CFLAGS@ -IMLIB_LIBS = @IMLIB_LIBS@ -LIB = @LIB@ -LTLIB = @LTLIB@ -MAINT = @MAINT@ -MAKEINFO = @MAKEINFO@ -PACKAGE = @PACKAGE@ -UP = @UP@ -VERSION = @VERSION@ -XINERAMA_LIBS = @XINERAMA_LIBS@ - -AUTOMAKE_OPTIONS = 1.4 foreign - -# A list of all the files in the current directory which can be regenerated -MAINTAINERCLEANFILES = Makefile.in				 - -testfonts_DATA =  menu.style black.style yudit.ttf - - -testfontsdir = $(prefix)/share/feh/fonts - -EXTRA_DIST = $(testfonts_DATA) -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = ../../src/config.h -CONFIG_CLEAN_FILES =  -DATA =  $(testfonts_DATA) - -DIST_COMMON =  Makefile.am Makefile.in - - -DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST) - -TAR = tar -GZIP_ENV = --best -all: all-redirect -.SUFFIXES: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.ac $(ACLOCAL_M4)  -	cd $(top_srcdir) && $(AUTOMAKE) --foreign --include-deps src/ttfonts/Makefile - -Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status -	cd $(top_builddir) \ -	  && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status - - -install-testfontsDATA: $(testfonts_DATA) -	@$(NORMAL_INSTALL) -	$(mkinstalldirs) $(DESTDIR)$(testfontsdir) -	@list='$(testfonts_DATA)'; for p in $$list; do \ -	  if test -f $(srcdir)/$$p; then \ -	    echo " $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(testfontsdir)/$$p"; \ -	    $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(testfontsdir)/$$p; \ -	  else if test -f $$p; then \ -	    echo " $(INSTALL_DATA) $$p $(DESTDIR)$(testfontsdir)/$$p"; \ -	    $(INSTALL_DATA) $$p $(DESTDIR)$(testfontsdir)/$$p; \ -	  fi; fi; \ -	done - -uninstall-testfontsDATA: -	@$(NORMAL_UNINSTALL) -	list='$(testfonts_DATA)'; for p in $$list; do \ -	  rm -f $(DESTDIR)$(testfontsdir)/$$p; \ -	done -tags: TAGS -TAGS: - - -distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir) - -subdir = src/ttfonts - -distdir: $(DISTFILES) -	@for file in $(DISTFILES); do \ -	  d=$(srcdir); \ -	  if test -d $$d/$$file; then \ -	    cp -pr $$d/$$file $(distdir)/$$file; \ -	  else \ -	    test -f $(distdir)/$$file \ -	    || ln $$d/$$file $(distdir)/$$file 2> /dev/null \ -	    || cp -p $$d/$$file $(distdir)/$$file || :; \ -	  fi; \ -	done -info-am: -info: info-am -dvi-am: -dvi: dvi-am -check-am: all-am -check: check-am -installcheck-am: -installcheck: installcheck-am -install-exec-am: -install-exec: install-exec-am - -install-data-am: install-testfontsDATA -install-data: install-data-am - -install-am: all-am -	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am -install: install-am -uninstall-am: uninstall-testfontsDATA -uninstall: uninstall-am -all-am: Makefile $(DATA) -all-redirect: all-am -install-strip: -	$(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install -installdirs: -	$(mkinstalldirs)  $(DESTDIR)$(testfontsdir) - - -mostlyclean-generic: - -clean-generic: - -distclean-generic: -	-rm -f Makefile $(CONFIG_CLEAN_FILES) -	-rm -f config.cache config.log stamp-h stamp-h[0-9]* - -maintainer-clean-generic: -	-test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) -mostlyclean-am:  mostlyclean-generic - -mostlyclean: mostlyclean-am - -clean-am:  clean-generic mostlyclean-am - -clean: clean-am - -distclean-am:  distclean-generic clean-am - -distclean: distclean-am - -maintainer-clean-am:  maintainer-clean-generic distclean-am -	@echo "This command is intended for maintainers to use;" -	@echo "it deletes files that may require special tools to rebuild." - -maintainer-clean: maintainer-clean-am - -.PHONY: uninstall-testfontsDATA install-testfontsDATA tags distdir \ -info-am info dvi-am dvi check check-am installcheck-am installcheck \ -install-exec-am install-exec install-data-am install-data install-am \ -install uninstall-am uninstall all-redirect all-am all installdirs \ -mostlyclean-generic distclean-generic clean-generic \ -maintainer-clean-generic clean mostlyclean distclean maintainer-clean - - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: | 
